diff --git a/DESCRIPTION b/DESCRIPTION index eab22c0..8792b61 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: tidytags Title: Importing and Analyzing Twitter Data Collected with Twitter Archiving Google Sheets -Version: 1.0 +Version: 1.0.0 License: MIT + file LICENSE Authors@R: c( person("K. Bret", "Staudt Willet", , diff --git a/codemeta.json b/codemeta.json index 6ddb85c..e487b2f 100644 --- a/codemeta.json +++ b/codemeta.json @@ -8,7 +8,7 @@ "codeRepository": "https://github.com/ropensci/tidytags", "issueTracker": "https://github.com/ropensci/tidytags/issues", "license": "https://spdx.org/licenses/MIT", - "version": "1.0", + "version": "1.0.0", "programmingLanguage": { "@type": "ComputerLanguage", "name": "R", @@ -273,7 +273,7 @@ }, "SystemRequirements": null }, - "fileSize": "23451.788KB", + "fileSize": "37343.932KB", "citation": [ { "@type": "SoftwareSourceCode", diff --git a/docs/CONTRIBUTING.html b/docs/CONTRIBUTING.html index db61e5b..2f5662d 100644 --- a/docs/CONTRIBUTING.html +++ b/docs/CONTRIBUTING.html @@ -129,8 +129,8 @@

Style

Be careful to only make style changes to the code you are contributing. If you find that there is a lot of code that doesn’t meet the style guide, it would be better to file an issue or a separate PR to fix that first.

 styler::style_pkg()
-spelling::spell_check_package()
-spelling::update_wordlist()
+spelling::spell_check_package() +spelling::update_wordlist()

Document

diff --git a/docs/articles/setup.html b/docs/articles/setup.html index 47277b6..ec2ec41 100644 --- a/docs/articles/setup.html +++ b/docs/articles/setup.html @@ -273,7 +273,7 @@

Getting helpemail Bret or reach out on Twitter: @bretsw and @jrosenberg6432.

You can also submit an issue on -Github.

+GitHub.

You may also wish to try some general troubleshooting strategies:

This vignette serves as an introduction to how to use many tidytags functions through the example of analyzing tweets associated with the 2019 annual convention of the Association for Educational Communications @@ -208,8 +208,8 @@

pull_tweet_data()tidytags allows you to gather quite a bit more information related to the TAGS-collected tweets with the pull_tweet_data() function. This function builds off the rtweet -package (via rtweet::lookup_tweets()) to query the -Twitter API.

+package (via rtweet::lookup_tweets() and +rtweet::users_data()) to query the Twitter API.

However, to access the Twitter API, whether through rtweet or tidytags, you will need to apply for developers’ access from Twitter. You do this through @@ -255,11 +255,11 @@

pull_tweet_data() example_after_rtweet_A <- pull_tweet_data(id_vector = example_df_all$id_str) example_after_rtweet_B <- pull_tweet_data(url_vector = example_df_all$status_url) -

When this vignette was run on Aug 05 22, the TAGS tracker had +

When this vignette was run on Aug 09 22, the TAGS tracker had collected 18 variables associated with 2564 tweets. The first method -searching with id_str collected 43 variables associated +searching with id_str collected 66 variables associated with 2195 tweets. The second method using -‘tidytags::get_char_tweet_ids()’ collected 43 variables associated with +‘tidytags::get_char_tweet_ids()’ collected 66 variables associated with 2195 tweets.

Notice how many more variables are in the dataset after using pull_tweet_data(), and how many more tweets are in the @@ -282,50 +282,73 @@

pull_tweet_data()example_after_rtweet <- pull_tweet_data(read_tags(tags_url)) dplyr::glimpse(example_after_rtweet) #> Rows: 2,195 -#> Columns: 43 -#> $ created_at <dttm> 2020-04-19 15:22:23, 2020-03-01 15:00:41, 2020-02-… -#> $ id <dbl> 1.251954e+18, 1.234207e+18, 1.229405e+18, 1.225138e… -#> $ id_str <chr> "1251954312772812801", "1234206946732830720", "1229… -#> $ full_text <chr> "RT @RoutledgeEd: Congrats to authors Joseph Rene C… -#> $ truncated <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA… -#> $ display_text_range <dbl> 140, 140, 140, 140, 268, 140, 140, 140, 140, 140, 2… -#> $ entities <list> [[<data.frame[1 x 2]>], [<data.frame[1 x 2]>], [<d… -#> $ source <chr> "<a href=\"https://mobile.twitter.com\" rel=\"nofol… -#> $ in_reply_to_status_id <dbl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… -#> $ in_reply_to_status_id_str <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… -#> $ in_reply_to_user_id <dbl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… -#> $ in_reply_to_user_id_str <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… -#> $ in_reply_to_screen_name <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… -#> $ geo <list> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA… -#> $ coordinates <list> [<data.frame[1 x 3]>], [<data.frame[1 x 3]>], [<da… -#> $ place <list> [<data.frame[1 x 3]>], [<data.frame[1 x 3]>], [<da… -#> $ contributors <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… -#> $ is_quote_status <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA… -#> $ retweet_count <int> 4, 28, 2, 2, 2, 9, 9, 9, 9, 9, 1, 9, 9, 9, 9, 9, 9,… -#> $ favorite_count <int> 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 21,… -#> $ favorited <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA… -#> $ retweeted <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA… -#> $ possibly_sensitive <lgl> NA, NA, NA, NA, FALSE, NA, NA, NA, NA, NA, FALSE, N… -#> $ lang <chr> "en", "en", "en", "en", "en", "en", "en", "en", "en… -#> $ retweeted_status <list> [<data.frame[1 x 30]>], [<data.frame[1 x 30]>], [<… -#> $ quoted_status_id <dbl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 1.218549e+1… -#> $ quoted_status_id_str <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "1218548635… -#> $ quoted_status_permalink <list> [<data.frame[1 x 3]>], [<data.frame[1 x 3]>], [<da… -#> $ quoted_status <list> [<data.frame[1 x 26]>], [<data.frame[1 x 26]>], [<… -#> $ text <chr> "RT @RoutledgeEd: Congrats to authors Joseph Rene C… -#> $ favorited_by <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… -#> $ scopes <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… -#> $ display_text_width <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… -#> $ quote_count <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… -#> $ timestamp_ms <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… -#> $ reply_count <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… -#> $ filter_level <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… -#> $ metadata <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… -#> $ query <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… -#> $ withheld_scope <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… -#> $ withheld_copyright <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… -#> $ withheld_in_countries <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… -#> $ possibly_sensitive_appealable <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> Columns: 66 +#> $ created_at <dttm> 2020-04-19 15:22:23, 2020-03-01 15:00:41, 2020… +#> $ id <dbl> 1.251954e+18, 1.234207e+18, 1.229405e+18, 1.225… +#> $ id_str <chr> "1251954312772812801", "1234206946732830720", "… +#> $ full_text <chr> "RT @RoutledgeEd: Congrats to authors Joseph Re… +#> $ truncated <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE… +#> $ display_text_range <dbl> 140, 140, 140, 140, 268, 140, 140, 140, 140, 14… +#> $ entities <list> [[<data.frame[1 x 2]>], [<data.frame[1 x 2]>],… +#> $ source <chr> "<a href=\"https://mobile.twitter.com\" rel=\"n… +#> $ in_reply_to_status_id <dbl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> $ in_reply_to_status_id_str <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> $ in_reply_to_user_id <dbl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> $ in_reply_to_user_id_str <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> $ in_reply_to_screen_name <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> $ geo <list> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA… +#> $ coordinates <list> [<data.frame[1 x 3]>], [<data.frame[1 x 3]>], … +#> $ place <list> [<data.frame[1 x 3]>], [<data.frame[1 x 3]>], … +#> $ contributors <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> $ is_quote_status <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE… +#> $ retweet_count <int> 4, 28, 2, 2, 2, 9, 9, 9, 9, 9, 1, 9, 9, 9, 9, 9… +#> $ favorite_count <int> 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0,… +#> $ favorited <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE… +#> $ retweeted <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE… +#> $ possibly_sensitive <lgl> NA, NA, NA, NA, FALSE, NA, NA, NA, NA, NA, FALS… +#> $ lang <chr> "en", "en", "en", "en", "en", "en", "en", "en",… +#> $ retweeted_status <list> [<data.frame[1 x 30]>], [<data.frame[1 x 30]>]… +#> $ quoted_status_id <dbl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 1.21854… +#> $ quoted_status_id_str <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, "121854… +#> $ quoted_status_permalink <list> [<data.frame[1 x 3]>], [<data.frame[1 x 3]>], … +#> $ quoted_status <list> [<data.frame[1 x 26]>], [<data.frame[1 x 26]>]… +#> $ text <chr> "RT @RoutledgeEd: Congrats to authors Joseph Re… +#> $ favorited_by <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> $ scopes <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> $ display_text_width <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> $ quote_count <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> $ timestamp_ms <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> $ reply_count <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> $ filter_level <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> $ metadata <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> $ query <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> $ withheld_scope <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> $ withheld_copyright <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> $ withheld_in_countries <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> $ possibly_sensitive_appealable <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> $ user_id <dbl> 1.251952e+18, 3.294167e+09, 9.225363e+17, 8.048… +#> $ user_id_str <chr> "1251951804398669825", "3294167372", "922536306… +#> $ name <chr> "Harriet Watkins", "Augusta Avram", "AECT GSA",… +#> $ screen_name <chr> "Harriet96152202", "ELTAugusta", "gsa_aect", "A… +#> $ location <chr> "", "British Columbia, Canada", "", "", "Moscow… +#> $ description <chr> "Love educational technology, online learning a… +#> $ url <chr> "https://t.co/ztRaRj9BLo", "https://t.co/OpLrmt… +#> $ protected <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE… +#> $ followers_count <int> 7, 789, 452, 2050, 2253, 452, 861, 1553, 1719, … +#> $ friends_count <int> 17, 1325, 47, 15, 1362, 47, 482, 714, 728, 0, 1… +#> $ listed_count <int> 0, 0, 4, 57, 178, 4, 6, 0, 149, 98, 124, 12, 12… +#> $ user_created_at <chr> "Sun Apr 19 19:12:33 +0000 2020", "Sun Jul 26 0… +#> $ favourites_count <int> 9, 5096, 147, 772, 4252, 147, 254, 4681, 6669, … +#> $ verified <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE… +#> $ statuses_count <int> 9, 7313, 2351, 1388, 12144, 2351, 261, 4980, 11… +#> $ profile_image_url_https <chr> "https://pbs.twimg.com/profile_images/125195195… +#> $ profile_banner_url <chr> "https://pbs.twimg.com/profile_banners/12519518… +#> $ default_profile <lgl> TRUE, FALSE, TRUE, TRUE, FALSE, TRUE, FALSE, FA… +#> $ default_profile_image <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE… +#> $ user_withheld_in_countries <list> [], [], [], [], [], [], [], [], [], [], [], []… +#> $ derived <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> $ user_withheld_scope <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +#> $ user_entities <list> [[<data.frame[1 x 5]>], [<data.frame[1 x 5]>]]…

At this point, the purpose of tidytags should be restated. TAGS tweet trackers are easily set up and maintained, and they do an excellent job passively collecting tweets over time. For instance, @@ -346,7 +369,7 @@

pull_tweet_data()rtweet returns information on -43 variables. Thus, tidytags brings together the +66 variables. Thus, tidytags brings together the breadth of TAGS with the depth of rtweet.

@@ -367,18 +390,330 @@

lookup_many_tweets()pull_tweet_data().

+

get_upstream_tweets() +

+

If your research questions conceptualize your tweet dataset as a +conversation or affinity space, it may be useful to retrieve and add +additional tweets. Specifically, TAGS collects tweets that contain one +or more keywords or text strings. For example, the TAGS tracker we have +been working with in this vignette collected tweets containing the +keywords: #aect19 OR #aect2019 OR +#aect19inspired. This is a reasonable approach, from a +researchers’ point of view. However, participants who have been +following or contributing to these hashtags would also see additional +tweets in these “conversations” because Twitter connects together tweets +that reply to other tweets into potentially lengthy reply +threads. Tweets in a reply thread are all displayed to a user +viewing tweets on Twitter’s platform, but because some tweets in a +thread may not contain the hashtag of interest, not all tweets in a +user’s experience of a conversation would be collected by TAGS. +Additionally, tweets contained in a reply thread but composed before the +TAGS tracker was initiated would also be left out of the dataset.

+

There is a solution to this problem. Because the Twitter API offers a +in_reply_to_status_id_str column, it is possible to +iteratively reconstruct reply threads in an upstream direction, +that is, retrieving tweets composed earlier than replies in the dataset. +We include the get_upstream_tweets() function in +tidytags to streamline this process. We also print +output at each iteration to demonstrate how the process is +progressing.

+
+example_with_upstream <-
+  get_upstream_tweets(example_after_rtweet)
+

The dataset contained 2195 tweets at the start. Running +get_upstream_tweets() added 29 new tweets.

+

Unfortunately, due to limitations in what information is provided by +the Twitter API, it is not practical to retrieve downstream +replies, or those tweets in a reply thread that follow a tweet in the +dataset but neglect to include the hashtag or keyword.

+
+

process_tweets()

After pull_tweet_data() is used to collect additional information from TAGS tweet IDs (in this case, the example_after_rtweet dataframe), the tidytags function process_tweets() can be -used to add user information about the tweeters through -rtweet::users_data(). process_tweets() also -calculates additional attributes and adds these to the dataframe as new -columns. Specifically, five new variables are added: mentions_count, -hashtags_count, urls_count, tweet_type, and is_self_reply. This results -in 71 variables associated with the collected tweets.

+used to calculate additional attributes and add these to the dataframe +as new columns. Specifically, five new variables are added: +mentions_count, hashtags_count, urls_count, tweet_type, and +is_self_reply. This results in 71 variables associated with the +collected tweets.

+
+example_processed <- process_tweets(example_after_rtweet)
+

Notice that you now have 71 variables associated 2195 tweets.

+

At this point, depending on your research questions, you may wish to +calculate some descriptive statistics associated with this tweet data. +For instance, the mean and standard deviation of hashtags per +tweet:

+
+mean_hash <- round(mean(example_processed$hashtags_count), 2)
+sd_hash <- round(sd(example_processed$hashtags_count), 2)
+

This shows that the mean number of hashtags per tweet is 1.48 with a +standard deviation of SD = 1.36.

+

Or, perhaps, the mean, median, and max number of mentions per +tweet would be useful to know:

+
+mean_mentions <- round(mean(example_processed$mentions_count), 2)
+sd_mentions <- round(sd(example_processed$mentions_count), 2)
+median_mentions <- median(example_processed$mentions_count)
+max_mentions <- max(example_processed$mentions_count)
+

The mean number of mentions per tweet is 1.35 (SD = 1.31). The median +is 1, and the maximum number of mentions in a tweet is 14.

+
+
+

get_url_domain() +

+

The tidytags function get_url_domain() +combines the expand_urls() function from the +longurl package and the domain() function +from the urltools package to easily return the domain +names of any hyperlinks including in tweets.

+

As an example, get_url_domain() finds that the domain in +the shortened URL “http://bit.ly/2SfWO3K” is “aect.org”:

+
+short_url <- "http://bit.ly/2SfWO3K"
+get_url_domain(short_url)
+#> [1] "aect.org"
+

It may also be of interest to examine which websites are linked to +most often in your dataset. get_url_domain() can be +combined with a function from base R like table() to +calculate frequency counts for domains present in the dataset. This +process is useful to get a picture of to where else on the Internet +tweeters are directing their readers’ attention.

+

Keep in mind, however, that this process takes a bit of time.

+
+example_urls <- dplyr::filter(example_processed, urls_count > 0)
+urls_list <- list()
+for(i in 1:nrow(example_urls)) {
+  urls_list[[i]] <- example_urls$entities[[i]]$urls$expanded_url
+}
+urls_vector <- unlist(urls_list)
+example_domains <- get_url_domain(urls_vector)
+domain_table <- tibble::as_tibble(table(example_domains))
+domain_table_sorted <- dplyr::arrange(domain_table, desc(n))
+head(domain_table_sorted, 20)
+#> # A tibble: 20 × 2
+#>    example_domains                 n
+#>    <chr>                       <int>
+#>  1 twitter.com                   127
+#>  2 convention2.allacademic.com    35
+#>  3 instagram.com                  24
+#>  4 aect.org                       20
+#>  5 docs.google.com                12
+#>  6 youtube.com                    11
+#>  7 drive.google.com                8
+#>  8 caranorth.com                   7
+#>  9 nodexlgraphgallery.org          7
+#> 10 sites.google.com                7
+#> 11 apps.apple.com                  6
+#> 12 litnet.co.za                    6
+#> 13 isfsu.blogspot.com              5
+#> 14 tecfa.unige.ch                  5
+#> 15 viral-notebook.com              5
+#> 16 app.core-apps.com               4
+#> 17 flipsnack.com                   4
+#> 18 linkedin.com                    4
+#> 19 play.google.com                 4
+#> 20 springer.com                    4
+

Unsurprisingly, in this dataset, by far the most common domain (as of +August 5, 2022) was “twitter.com”, meaning that AECT 2019 tweeters were +linking most often to other Twitter content. Other common domains +included “convention2.allacademic.com” (i.e., the host of the conference +website, including the schedule and session information) as well as +“instagram.com” and “youtube.com”, where tweeters likely shared +conference-related content.

+
+
+

filter_by_tweet_type() +

+

This function quickly subsets the data, returning just the tweets of +the type indicated (e.g., filter_by_tweet_type(df, "reply") +returns only reply tweets). The filter_by_tweet_type() +function can also be used to look at how many tweets of each type are +present in the dataset.

+

In the dataset of 2195 tweets, there are 62 replies, 1146 retweets, +100 quote tweets, and 457 tweets that are not replies, retweets, or +quote tweets.

+
+
+

create_edgelist() +

+

Another useful approach to social media research is social +network analysis. Getting started with social network analysis is +as simple as producing an edgelist, a two-column +dataframe listing senders and receivers. An edgelist +gives a complete accounting of whom is interacting with whom. In +Twitter, this is complicated somewhat by the number of ways a user is +able to interact with someone else, namely, through replying, +retweeting, quote tweeting, mentioning, and liking tweets. The +tidytags function create_edgelist() uses +filter_by_tweet_type() to create an edgelist that takes +into account three of these types of interaction. +create_edgelist() returns a dataframe with three columns: +two for the sender and receiver Twitter handles, and a third column +listing the tweet type (i.e., the form of interaction). The default is +for create_edgelist() to create an edgelist of all possible +interactions, but focusing on one type of interaction is easily +accomplished as well (e.g., looking at interactions through replies +using create_edgelist(df, "reply")).

+

Run create_edgelist() after completing +get_upstream_tweets() and process_tweets() for +a complete picture of the interactions.

+
+example_edgelist <-
+  create_edgelist(process_tweets(example_with_upstream))
+head(example_edgelist, 20)
+#>    tweet_type         sender        receiver
+#> 1       reply  nicolapallitt     eromerohall
+#> 2       reply       jeroen69         vdennen
+#> 3       reply    jmenglund03        bonni208
+#> 4       reply          DKSch           DKSch
+#> 5       reply          DKSch           DKSch
+#> 6       reply      _valeriei     eromerohall
+#> 7       reply    jmenglund03       SBarksway
+#> 8       reply       DrTerriC       mete_akca
+#> 9       reply       pazureka       SBarksway
+#> 10      reply       pazureka       SBarksway
+#> 11      reply    TAmankwatia     TAmankwatia
+#> 12      reply PaulineMuljana       robmoore3
+#> 13      reply          yinbk    DrVirtuality
+#> 14      reply    arasbozkurt     arasbozkurt
+#> 15      reply    arasbozkurt     arasbozkurt
+#> 16      reply    arasbozkurt     eromerohall
+#> 17      reply      correia65   AnnaRoseLeach
+#> 18      reply    jmenglund03  PaulineMuljana
+#> 19      reply PaulineMuljana AmyLomellini_ID
+#> 20      reply  teacherrogers   teacherrogers
+

We can then easily visualize the edgelist as a sociogram using the +tidygraph and ggraph packages.

+

First, create a graph object using tidygraph:

+
+if (requireNamespace("tidygraph", quietly = TRUE)) {
+  example_graph <-
+    tidygraph::as_tbl_graph(example_edgelist)
+  example_graph <-
+    dplyr::mutate(example_graph,
+                  popularity = tidygraph::centrality_degree(mode = 'in'))
+}
+

Then plot using ggraph:

+
+if (requireNamespace("ggraph", quietly = TRUE) &
+    requireNamespace("ggplot2", quietly = TRUE)
+) {
+  ggraph::ggraph(example_graph, layout = 'kk') +
+    ggraph::geom_edge_arc(alpha = .2,
+                          width = .5,
+                          strength = .5,
+                          edge_colour = 'steelblue'
+    ) +
+    ggraph::geom_node_point(alpha = .4, ggplot2::aes(size = popularity)) +
+    ggplot2::scale_size(range = c(1,10))
+}
+

plot of chunk network-visualization

+

Running create_edgelist() also provides a simple way to +re-look at how many tweets of each type are present in the dataset, +using the count() function from dplyr.

+
+dplyr::count(example_edgelist, tweet_type, sort = TRUE)
+#>   tweet_type    n
+#> 1    retweet 1146
+#> 2      quote  108
+#> 3      reply   71
+

Note that create_edgelist() does not yet accept +type = "mention" or type = "like" parameters +due to the complicated ways mentions are included in tweets as well as +limitations of the information provided by the Twitter API.

+
+
+

add_users_data() +

+

Finally, tidytags also has functionality to add +user-level data to an edgelist through the function +add_users_data(). These additional features are very useful +when taking an inferential approach to social network analysis, such as +building influence or selection models.

+
+example_senders_receivers_data <- add_users_data(example_edgelist)
+dplyr::glimpse(example_senders_receivers_data)
+#> Rows: 1,325
+#> Columns: 47
+#> $ tweet_type                       <chr> "reply", "reply", "reply", "reply", "reply",…
+#> $ sender                           <chr> "nicolapallitt", "jeroen69", "jmenglund03", …
+#> $ receiver                         <chr> "eromerohall", "vdennen", "bonni208", "DKSch…
+#> $ sender_id                        <dbl> 1.183683e+08, 6.848632e+06, 6.476904e+07, 3.…
+#> $ sender_id_str                    <chr> "118368334", "6848632", "64769037", "3865781…
+#> $ sender_name                      <chr> "Dr Nicola Pallitt", "Jeroen", "jennιғer eng…
+#> $ sender_location                  <chr> "Grahamstown, South Africa", "Boise, ID", "S…
+#> $ sender_description               <chr> "EdTech @Rhodes_Uni working in @CHERTL_RU & …
+#> $ sender_url                       <chr> "https://t.co/p1veXbw0pP", "https://t.co/GEk…
+#> $ sender_protected                 <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA…
+#> $ sender_followers_count           <int> 1753, 378, 663, 290, 290, 6324, 663, 5297, 1…
+#> $ sender_friends_count             <int> 1924, 379, 627, 86, 86, 6280, 627, 5825, 461…
+#> $ sender_listed_count              <int> 127, 7, 72, 15, 15, 416, 72, 261, 44, 44, 33…
+#> $ sender_created_at                <dttm> 2010-02-28 08:13:53, 2007-06-16 03:10:38, 2…
+#> $ sender_favourites_count          <int> 2040, 2847, 2052, 228, 228, 15749, 2052, 946…
+#> $ sender_verified                  <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA…
+#> $ sender_statuses_count            <int> 7157, 1537, 2918, 643, 643, 57099, 2918, 269…
+#> $ sender_profile_image_url_https   <chr> "https://pbs.twimg.com/profile_images/122079…
+#> $ sender_profile_banner_url        <chr> "https://pbs.twimg.com/profile_banners/11836…
+#> $ sender_default_profile           <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA…
+#> $ sender_default_profile_image     <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA…
+#> $ sender_withheld_in_countries     <list> [], [], [], [], [], [], [], [], [], [], [],…
+#> $ sender_derived                   <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
+#> $ sender_withheld_scope            <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
+#> $ sender_entities                  <list> [[<data.frame[1 x 5]>], [<data.frame[1 x 5]…
+#> $ receiver_id                      <dbl> 9.187479e+08, 1.423597e+08, 1.477788e+07, 3.…
+#> $ receiver_id_str                  <chr> "918747876", "142359679", "14777884", "38657…
+#> $ receiver_name                    <chr> "Dr. Enilda Romero-Hall (She/Her)", "Vanessa…
+#> $ receiver_location                <chr> "🇵🇦🇨🇦🇺🇸", "Tallahassee, FL", "Orange County,…
+#> $ receiver_description             <chr> "Associate Professor @UTKnoxville | Learning…
+#> $ receiver_url                     <chr> "https://t.co/bIbSToCw8t", "https://t.co/2br…
+#> $ receiver_protected               <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA…
+#> $ receiver_followers_count         <int> 1773, 1151, 7415, 290, 290, 1773, 329, 764, …
+#> $ receiver_friends_count           <int> 1345, 759, 3538, 86, 86, 1345, 480, 501, 480…
+#> $ receiver_listed_count            <int> 87, 40, 294, 15, 15, 87, 5, 28, 5, 5, 33, 57…
+#> $ receiver_created_at              <dttm> 2012-11-01 06:56:04, 2010-05-10 13:39:35, 2…
+#> $ receiver_favourites_count        <int> 7326, 1097, 23383, 228, 228, 7326, 2160, 196…
+#> $ receiver_verified                <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA…
+#> $ receiver_statuses_count          <int> 422, 2102, 20642, 643, 643, 422, 428, 1942, …
+#> $ receiver_profile_image_url_https <chr> "https://pbs.twimg.com/profile_images/141641…
+#> $ receiver_profile_banner_url      <chr> "https://pbs.twimg.com/profile_banners/91874…
+#> $ receiver_default_profile         <lgl> FALSE, TRUE, TRUE, FALSE, FALSE, FALSE, TRUE…
+#> $ receiver_default_profile_image   <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA…
+#> $ receiver_withheld_in_countries   <list> [], [], [], [], [], [], [], [], [], [], [],…
+#> $ receiver_derived                 <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
+#> $ receiver_withheld_scope          <lgl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
+#> $ receiver_entities                <list> [[<data.frame[1 x 5]>], [<data.frame[1 x 5]…
+
+
+

Getting help +

+

{tidytags} is still a work in progress, so we fully expect that there +are still some bugs to work out and functions to document better. If you +find an issue, have a question, or think of something that you really +wish {tidytags} would do for you, don’t hesitate to email Bret or reach out on Twitter: @bretsw and @jrosenberg6432.

+

You can also submit an issue on +GitHub.

+

You may also wish to try some general troubleshooting strategies:

+
diff --git a/docs/index.html b/docs/index.html index c5f84cf..5fff25a 100644 --- a/docs/index.html +++ b/docs/index.html @@ -137,7 +137,7 @@

-Minimal R Version +Minimal R Version CRAN @@ -272,7 +272,7 @@

Workflow

The following diagram represents how the functions included in the tidytags package may work together. These are presented in the figure below.

-TAGS workflow

+tidytags workflow


diff --git a/docs/news/index.html b/docs/news/index.html index 8a3d8dc..8bf24f5 100644 --- a/docs/news/index.html +++ b/docs/news/index.html @@ -89,7 +89,7 @@

BREAKING CHANGES

NEW FEATURES

diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml index 4a84946..f736cfa 100644 --- a/docs/pkgdown.yml +++ b/docs/pkgdown.yml @@ -4,7 +4,7 @@ pkgdown_sha: ~ articles: setup: setup.html tidytags-with-conf-hashtags: tidytags-with-conf-hashtags.html -last_built: 2022-08-06T03:55Z +last_built: 2022-08-09T05:16Z urls: reference: https://docs.ropensci.org/tidytags/reference article: https://docs.ropensci.org/tidytags/articles diff --git a/docs/reference/pull_tweet_data.html b/docs/reference/pull_tweet_data.html index fa3600d..79be073 100644 --- a/docs/reference/pull_tweet_data.html +++ b/docs/reference/pull_tweet_data.html @@ -83,7 +83,7 @@

Retrieve the fullest extent of status metadata available from the Twitter AP

-
pull_tweet_data(df, url_vector = NULL, id_vector = NULL, n = NULL)
+
pull_tweet_data(df = NULL, url_vector = NULL, id_vector = NULL, n = NULL)
diff --git a/tests/fixtures/different_tweet_types.yml b/tests/fixtures/different_tweet_types.yml new file mode 100644 index 0000000..e93acce --- /dev/null +++ b/tests/fixtures/different_tweet_types.yml @@ -0,0 +1,1463 @@ +http_interactions: +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1251954312772812801%2C1248064163211096064%2C1234206946732830720%2C1229405350178127872%2C1227652243870097408%2C1225505187453964288%2C1225137879921385472%2C1225122317849657345%2C1219758386436165633%2C1219043574555299840%2C1218920618336362500%2C1218907439116029956%2C1218892385037508609%2C1218665142210252800%2C1218660838011293696%2C1218658503570620422%2C1218658503570620422%2C1218616574489366530%2C1218584870714314753%2C1218551358095273984%2C1218548635333545984%2C1218548635333545984%2C1215086607218298881%2C1203781724628500486%2C1201677948849442817%2C1201589087444111361%2C1201493265226309633%2C1201488442741477376%2C1201488442741477376%2C1198987833354137604%2C1198986210720583680%2C1198986210720583680%2C1197316210242805761%2C1197299504631828480%2C1197297937241583616%2C1197297818295250944%2C1197297790105407489%2C1197297449670451201%2C1197297049064103937%2C1197296405200678912%2C1197296405200678912%2C1197271655015272448%2C1197266701206925313%2C1197266701206925313%2C1197082972219940864%2C1196910211816013824%2C1196910062196772865%2C1196910062196772865%2C1196610155212705792%2C1196514636595712002%2C1196169283157610502%2C1196166286113460225%2C1196166286113460225%2C1196022885195931648%2C1195791292464336896%2C1195789976405004294%2C1195789976405004294%2C1195738219175956480%2C1195523378867773440%2C1195492203747037186%2C1195475917163913218%2C1195367711276179456%2C1195363684689821696%2C1195360071464738817%2C1195358652133068800%2C1195358652133068800%2C1195354286458322944%2C1194613472857866241%2C1194600303703650304%2C1194600071163195398%2C1194600071163195398%2C1194563279902904321%2C1194531575570030592%2C1194530376900853760%2C1194530376900853760%2C1194426987810557955%2C1194422420855087104%2C1194422420855087104%2C1194417830122446848%2C1194417634982408192%2C1194414006221586432%2C1194413897207418881%2C1194410011612631040%2C1194410011612631040%2C1194354847157555202%2C1194342006153187328%2C1194338418274295813%2C1194337492054544387%2C1194335082930028544%2C1194330775493193729%2C1194330087124033542%2C1194330087124033542%2C1194325042697388032%2C1194324801118228481%2C1194317169565327366%2C1194315833855492096%2C1194315833855492096%2C1194283996697518082%2C1194265030621093890%2C1194260335512997888&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:47:12 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:47:12 GMT + x-transaction: 3e5be57ca2d03bdb + content-length: '45707' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '299' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '369' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Feb 05 18:21:36 +0000 2020","id":1225122317849657345,"id_str":"1225122317849657345","full_text":"Many + thanks to @AECTTechTrends for supporting our @gsa_aect with the Grad Member + Musings column! The latest guest author is #uidaho''s Ken Cox, a first year + doc student in our C&I program and a member of my #UISTEMEdRG. https:\/\/t.co\/8MuP9Mza8f + #aect #aect20 #aect19","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"uidaho","indices":[124,131]},{"text":"UISTEMEdRG","indices":[210,221]},{"text":"aect","indices":[247,252]},{"text":"aect20","indices":[253,260]},{"text":"aect19","indices":[261,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[15,30]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[50,59]}],"urls":[{"url":"https:\/\/t.co\/8MuP9Mza8f","expanded_url":"https:\/\/doi.org\/10.1007\/s11528-020-00477-5","display_url":"doi.org\/10.1007\/s11528\u2026","indices":[223,246]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Nov 16 02:05:59 +0000 2019","id":1195523378867773440,"id_str":"1195523378867773440","full_text":"RT + @emergeAfrica: If you missed this session with @nicolapallitt the recording + is now available https:\/\/t.co\/toMDHdVsAB \n@AECT #aect1\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[50,64]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[127,132]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[100,123]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2950104673,"id_str":"2950104673","name":"Ayodeji + Ibukun","screen_name":"lbukunAA","location":"Oklahoma, USA","description":"B.Engrg + MS MNSE","url":"https:\/\/t.co\/kVfuPQQfYs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kVfuPQQfYs","expanded_url":"http:\/\/www.ayoibukun.com","display_url":"ayoibukun.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":489,"listed_count":0,"created_at":"Mon + Dec 29 12:06:33 +0000 2014","favourites_count":665,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":154,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2950104673\/1574622610","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Nov 15 15:17:04 +0000 2019","id":1195360071464738817,"id_str":"1195360071464738817","full_text":"If + you missed this session with @nicolapallitt the recording is now available https:\/\/t.co\/toMDHdVsAB \n@AECT + #aect19 #emergeAfrica https:\/\/t.co\/FwbR75FNk4","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19","indices":[115,122]},{"text":"emergeAfrica","indices":[123,136]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[32,46]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[109,114]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[82,105]},{"url":"https:\/\/t.co\/FwbR75FNk4","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display_url":"twitter.com\/emergeAfrica\/s\u2026","indices":[137,160]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"quoted_status":{"created_at":"Thu + Nov 14 12:43:58 +0000 2019","id":1194959156878467072,"id_str":"1194959156878467072","full_text":"In + 30 minutes please join us\nWebinar room is ready https:\/\/t.co\/ej8SNvWvDZ\n@nicolapallitt presenting + https:\/\/t.co\/RWAtmzL8ox","truncated":false,"display_text_range":[0,102],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[76,90]}],"urls":[{"url":"https:\/\/t.co\/ej8SNvWvDZ","expanded_url":"http:\/\/zoom.us\/j\/603307386","display_url":"zoom.us\/j\/603307386","indices":[52,75]}],"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":7,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Nov 13 00:37:44 +0000 2019","id":1194414006221586432,"id_str":"1194414006221586432","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1050002301585383424,"id_str":"1050002301585383424","name":"@VT_IDT","screen_name":"vt_idt","location":"Blacksburg, + VA USA","description":"VT IDT grad program prepares its graduates to practice + in a variety of settings including industry, K-12, higher ed, non-profit, + and government.","url":"https:\/\/t.co\/9nRnDb3LeV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9nRnDb3LeV","expanded_url":"https:\/\/tinyurl.com\/y5zbq5lb","display_url":"tinyurl.com\/y5zbq5lb","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":104,"friends_count":126,"listed_count":0,"created_at":"Wed + Oct 10 12:37:11 +0000 2018","favourites_count":707,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":253,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1050409400655986688\/1jff4TTj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1050409400655986688\/1jff4TTj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1050002301585383424\/1539374470","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 20 21:53:01 +0000 2019","id":1197271655015272448,"id_str":"1197271655015272448","full_text":"AECT-RTD + Call for Nominations [Due 12\/1\/2019]. #aectRTD #aect19 #aect19inspired @AECT + https:\/\/t.co\/KCgYAFb1eC","truncated":false,"display_text_range":[0,85],"entities":{"hashtags":[{"text":"aectRTD","indices":[47,55]},{"text":"aect19","indices":[56,63]},{"text":"aect19inspired","indices":[64,79]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[80,85]}],"urls":[],"media":[{"id":1197271649692704768,"id_str":"1197271649692704768","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","url":"https:\/\/t.co\/KCgYAFb1eC","display_url":"pic.twitter.com\/KCgYAFb1eC","expanded_url":"https:\/\/twitter.com\/rtdaect\/status\/1197271655015272448\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1197271649692704768,"id_str":"1197271649692704768","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","url":"https:\/\/t.co\/KCgYAFb1eC","display_url":"pic.twitter.com\/KCgYAFb1eC","expanded_url":"https:\/\/twitter.com\/rtdaect\/status\/1197271655015272448\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1197270185960361984,"id_str":"1197270185960361984","name":"AECT + Research & Theory Division","screen_name":"aectrtd","location":"","description":"AECT''s + (https:\/\/t.co\/6DFTIdk9db) Research & Theory Division promotes development + and advancement of theory; and supports, fosters, and mentors emerging scholars. + #aectRTD","url":"https:\/\/t.co\/0AKlTYZtfT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0AKlTYZtfT","expanded_url":"https:\/\/sites.google.com\/view\/aectrtd\/home","display_url":"sites.google.com\/view\/aectrtd\/h\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/6DFTIdk9db","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[8,31]}]}},"protected":false,"followers_count":194,"friends_count":13,"listed_count":1,"created_at":"Wed + Nov 20 21:47:30 +0000 2019","favourites_count":66,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1197271108489080832\/wtFlrFm9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1197271108489080832\/wtFlrFm9_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Nov 20 23:36:52 +0000 2019","id":1197297790105407489,"id_str":"1197297790105407489","full_text":"RT + @aectrtd: AECT-RTD Call for Nominations [Due 12\/1\/2019]. #aectRTD #aect19 + #aect19inspired @AECT https:\/\/t.co\/KCgYAFb1eC","truncated":false,"display_text_range":[0,122],"entities":{"hashtags":[{"text":"aectRTD","indices":[60,68]},{"text":"aect19","indices":[69,76]},{"text":"aect19inspired","indices":[77,92]}],"symbols":[],"user_mentions":[{"screen_name":"aectrtd","name":"AECT + Research & Theory Division","id":1197270185960361984,"id_str":"1197270185960361984","indices":[3,11]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[93,98]}],"urls":[],"media":[{"id":1197271649692704768,"id_str":"1197271649692704768","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","url":"https:\/\/t.co\/KCgYAFb1eC","display_url":"pic.twitter.com\/KCgYAFb1eC","expanded_url":"https:\/\/twitter.com\/rtdaect\/status\/1197271655015272448\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"}},"source_status_id":1197271655015272448,"source_status_id_str":"1197271655015272448","source_user_id":1197270185960361984,"source_user_id_str":"1197270185960361984"}]},"extended_entities":{"media":[{"id":1197271649692704768,"id_str":"1197271649692704768","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","url":"https:\/\/t.co\/KCgYAFb1eC","display_url":"pic.twitter.com\/KCgYAFb1eC","expanded_url":"https:\/\/twitter.com\/rtdaect\/status\/1197271655015272448\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"}},"source_status_id":1197271655015272448,"source_status_id_str":"1197271655015272448","source_user_id":1197270185960361984,"source_user_id_str":"1197270185960361984","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Nov 20 21:53:01 +0000 2019","id":1197271655015272448,"id_str":"1197271655015272448","full_text":"AECT-RTD + Call for Nominations [Due 12\/1\/2019]. #aectRTD #aect19 #aect19inspired @AECT + https:\/\/t.co\/KCgYAFb1eC","truncated":false,"display_text_range":[0,85],"entities":{"hashtags":[{"text":"aectRTD","indices":[47,55]},{"text":"aect19","indices":[56,63]},{"text":"aect19inspired","indices":[64,79]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[80,85]}],"urls":[],"media":[{"id":1197271649692704768,"id_str":"1197271649692704768","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","url":"https:\/\/t.co\/KCgYAFb1eC","display_url":"pic.twitter.com\/KCgYAFb1eC","expanded_url":"https:\/\/twitter.com\/rtdaect\/status\/1197271655015272448\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1197271649692704768,"id_str":"1197271649692704768","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","url":"https:\/\/t.co\/KCgYAFb1eC","display_url":"pic.twitter.com\/KCgYAFb1eC","expanded_url":"https:\/\/twitter.com\/rtdaect\/status\/1197271655015272448\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1197270185960361984,"id_str":"1197270185960361984","name":"AECT + Research & Theory Division","screen_name":"aectrtd","location":"","description":"AECT''s + (https:\/\/t.co\/6DFTIdk9db) Research & Theory Division promotes development + and advancement of theory; and supports, fosters, and mentors emerging scholars. + #aectRTD","url":"https:\/\/t.co\/0AKlTYZtfT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0AKlTYZtfT","expanded_url":"https:\/\/sites.google.com\/view\/aectrtd\/home","display_url":"sites.google.com\/view\/aectrtd\/h\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/6DFTIdk9db","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[8,31]}]}},"protected":false,"followers_count":194,"friends_count":13,"listed_count":1,"created_at":"Wed + Nov 20 21:47:30 +0000 2019","favourites_count":66,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1197271108489080832\/wtFlrFm9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1197271108489080832\/wtFlrFm9_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Jan 18 22:16:43 +0000 2020","id":1218658503570620422,"id_str":"1218658503570620422","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2563684237,"id_str":"2563684237","name":"\ud835\ude1a\ud835\ude26\ud835\ude23\ud835\ude22\ud835\ude34\ud835\ude35\ud835\ude2a\ud835\ude22\ud835\ude2f + \ud835\ude13\ud835\ude30\ud835\ude31\ud835\ude26\ud835\ude3b \ud835\ude11\ud835\ude33., + M.Ed.","screen_name":"SebLopJr","location":"Beaumont, TX","description":"-Network + Admin -Ed.D student at @ISDT_SHSU -M.Ed. of Inst Tech from @SamHoustonState + -BAAS from @LamarUniversity -Google EDU *views expressed are my own*","url":"https:\/\/t.co\/UzLzwoVtIk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UzLzwoVtIk","expanded_url":"http:\/\/SebLopezJr.net","display_url":"SebLopezJr.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":760,"friends_count":2605,"listed_count":12,"created_at":"Thu + Jun 12 16:09:12 +0000 2014","favourites_count":13587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2025,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1129071740854951937\/YDv04AoR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1129071740854951937\/YDv04AoR_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2563684237\/1405631793","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0000A0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Jan 18 19:30:06 +0000 2020","id":1218616574489366530,"id_str":"1218616574489366530","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153141293,"id_str":"153141293","name":"Ana-Paula + Correia \u2600\ufe0f","screen_name":"correia65","location":"","description":"Professor + of Learning Technologies @OhioState @OSUehe. Director of @OSUcete. Learning + Designer. Researcher. Leader. @LEDresearch \ud83c\uddfa\ud83c\uddf8\ud83c\uddf5\ud83c\uddf9","url":"https:\/\/t.co\/mgeGAbT0AP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mgeGAbT0AP","expanded_url":"https:\/\/www.ana-paulacorreia.com\/","display_url":"ana-paulacorreia.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3494,"friends_count":3241,"listed_count":29,"created_at":"Mon + Jun 07 20:00:45 +0000 2010","favourites_count":10293,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":654,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1149684446838345728\/1XaCxgEx_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1149684446838345728\/1XaCxgEx_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153141293\/1562941057","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Nov 15 22:57:24 +0000 2019","id":1195475917163913218,"id_str":"1195475917163913218","full_text":"RT + @emergeAfrica: If you missed this session with @nicolapallitt the recording + is now available https:\/\/t.co\/toMDHdVsAB \n@AECT #aect1\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[50,64]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[127,132]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[100,123]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":123168263,"id_str":"123168263","name":"Irene + Maweu \ud83c\udf3b\ud83c\udf3b","screen_name":"wavinya66","location":"Kenya","description":"By + Faith \/ With Respect \/ Facilitating from the heart \/ Liberating Structures + Gospel \/ IAF Member","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":762,"friends_count":772,"listed_count":9,"created_at":"Mon + Mar 15 06:31:31 +0000 2010","favourites_count":10218,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5795,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123168263\/1610274071","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Nov 15 15:17:04 +0000 2019","id":1195360071464738817,"id_str":"1195360071464738817","full_text":"If + you missed this session with @nicolapallitt the recording is now available https:\/\/t.co\/toMDHdVsAB \n@AECT + #aect19 #emergeAfrica https:\/\/t.co\/FwbR75FNk4","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19","indices":[115,122]},{"text":"emergeAfrica","indices":[123,136]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[32,46]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[109,114]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[82,105]},{"url":"https:\/\/t.co\/FwbR75FNk4","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display_url":"twitter.com\/emergeAfrica\/s\u2026","indices":[137,160]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"quoted_status":{"created_at":"Thu + Nov 14 12:43:58 +0000 2019","id":1194959156878467072,"id_str":"1194959156878467072","full_text":"In + 30 minutes please join us\nWebinar room is ready https:\/\/t.co\/ej8SNvWvDZ\n@nicolapallitt presenting + https:\/\/t.co\/RWAtmzL8ox","truncated":false,"display_text_range":[0,102],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[76,90]}],"urls":[{"url":"https:\/\/t.co\/ej8SNvWvDZ","expanded_url":"http:\/\/zoom.us\/j\/603307386","display_url":"zoom.us\/j\/603307386","indices":[52,75]}],"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":7,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Nov 16 19:50:35 +0000 2019","id":1195791292464336896,"id_str":"1195791292464336896","full_text":"RT + @emergeAfrica: If you missed this session with @nicolapallitt the recording + is now available https:\/\/t.co\/toMDHdVsAB \n@AECT #aect1\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[50,64]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[127,132]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[100,123]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Nov 15 15:17:04 +0000 2019","id":1195360071464738817,"id_str":"1195360071464738817","full_text":"If + you missed this session with @nicolapallitt the recording is now available https:\/\/t.co\/toMDHdVsAB \n@AECT + #aect19 #emergeAfrica https:\/\/t.co\/FwbR75FNk4","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19","indices":[115,122]},{"text":"emergeAfrica","indices":[123,136]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[32,46]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[109,114]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[82,105]},{"url":"https:\/\/t.co\/FwbR75FNk4","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display_url":"twitter.com\/emergeAfrica\/s\u2026","indices":[137,160]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"quoted_status":{"created_at":"Thu + Nov 14 12:43:58 +0000 2019","id":1194959156878467072,"id_str":"1194959156878467072","full_text":"In + 30 minutes please join us\nWebinar room is ready https:\/\/t.co\/ej8SNvWvDZ\n@nicolapallitt presenting + https:\/\/t.co\/RWAtmzL8ox","truncated":false,"display_text_range":[0,102],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[76,90]}],"urls":[{"url":"https:\/\/t.co\/ej8SNvWvDZ","expanded_url":"http:\/\/zoom.us\/j\/603307386","display_url":"zoom.us\/j\/603307386","indices":[52,75]}],"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":7,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Nov 25 15:26:03 +0000 2019","id":1198986210720583680,"id_str":"1198986210720583680","full_text":"Interested + in earning comped hotel rooms in Las Vegas? Here is how I earned free accomodations + for #devlearn and #aect19 https:\/\/t.co\/Ov4Cf8WnNN https:\/\/t.co\/JKENJrx3H0","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"devlearn","indices":[99,108]},{"text":"aect19","indices":[113,120]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ov4Cf8WnNN","expanded_url":"https:\/\/buff.ly\/31VyM1B","display_url":"buff.ly\/31VyM1B","indices":[121,144]}],"media":[{"id":1198986208011071488,"id_str":"1198986208011071488","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EKOnmosXsAAduWD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKOnmosXsAAduWD.jpg","url":"https:\/\/t.co\/JKENJrx3H0","display_url":"pic.twitter.com\/JKENJrx3H0","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1198986210720583680\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":458,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":808,"resize":"fit"},"large":{"w":1330,"h":896,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1198986208011071488,"id_str":"1198986208011071488","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EKOnmosXsAAduWD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKOnmosXsAAduWD.jpg","url":"https:\/\/t.co\/JKENJrx3H0","display_url":"pic.twitter.com\/JKENJrx3H0","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1198986210720583680\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":458,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":808,"resize":"fit"},"large":{"w":1330,"h":896,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Jan 18 22:26:00 +0000 2020","id":1218660838011293696,"id_str":"1218660838011293696","full_text":"Great + up for the opportunity to present and write with @RitaFennelly and @WEHSLibrary + about the impact #socialmedia can have on #learning and beyond! #aect19 #instructionaldesign + #learningdesign #graduateschool https:\/\/t.co\/SiQNlWaJn9","truncated":false,"display_text_range":[0,210],"entities":{"hashtags":[{"text":"socialmedia","indices":[103,115]},{"text":"learning","indices":[128,137]},{"text":"aect19","indices":[150,157]},{"text":"instructionaldesign","indices":[158,178]},{"text":"learningdesign","indices":[179,194]},{"text":"graduateschool","indices":[195,210]}],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[55,68]},{"screen_name":"WEHSLibrary","name":"Weslaco + East High School Library-Renee Dyer","id":175049060,"id_str":"175049060","indices":[73,85]}],"urls":[{"url":"https:\/\/t.co\/SiQNlWaJn9","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984","display_url":"twitter.com\/AECT\/status\/12\u2026","indices":[211,234]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15635142,"id_str":"15635142","name":"Dr. + Kimberly N. LaPrairie","screen_name":"Tech_DrL","location":"Texas, USA","description":"\ud83d\udc69\ud83c\udffc\u200d\ud83c\udf93\ud83d\udc69\ud83c\udffc\u200d\ud83c\udfebAssoc + Prof of Instructional Systems Design & Technology\ud83d\udc69\ud83c\udffc\u200d\ud83d\udcbb\u2022 + Mom of 4\ud83d\udc68\ud83c\udffb\u200d\ud83d\udcbb\ud83d\udc71\ud83c\udffb\u200d\u2640\ufe0f\ud83d\udc67\ud83c\udffb\ud83e\uddd2\ud83c\udffc\u2022 + #FatFueled #Runner #PelotonRider\ud83e\udd51\ud83e\udd53\ud83c\udfc3\ud83c\udffc\u200d\u2640\ufe0f\ud83d\udeb4\ud83c\udffc\u200d\u2640\ufe0f","url":"https:\/\/t.co\/69VXyGUkoo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/69VXyGUkoo","expanded_url":"https:\/\/www.instagram.com\/Tech_DrL\/","display_url":"instagram.com\/Tech_DrL\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1470,"friends_count":1395,"listed_count":124,"created_at":"Mon + Jul 28 17:54:31 +0000 2008","favourites_count":4299,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6412,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1516648007651008515\/fwC4vMQz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1516648007651008515\/fwC4vMQz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15635142\/1531239446","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ED822F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"361610d5aa1f6719","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/361610d5aa1f6719.json","place_type":"city","name":"Conroe","full_name":"Conroe, + TX","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-95.679001,30.23105],[-95.3972667,30.23105],[-95.3972667,30.443978],[-95.679001,30.443978]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1218548635333545984,"quoted_status_id_str":"1218548635333545984","quoted_status_permalink":{"url":"https:\/\/t.co\/SiQNlWaJn9","expanded":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984","display":"twitter.com\/AECT\/status\/12\u2026"},"quoted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Nov 15 15:11:26 +0000 2019","id":1195358652133068800,"id_str":"1195358652133068800","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":155090409,"id_str":"155090409","name":"George + Station","screen_name":"harmonygritz","location":"California Central Coast","description":"#HigherEd + cruise ship has hit the Coronavirus iceberg; the orchestra plays on. My status: + unremitting beta, awaiting moderation. RT\/Like: just a bookmark, folks","url":"https:\/\/t.co\/gt8xIos5nQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gt8xIos5nQ","expanded_url":"http:\/\/riftofthemagi.blogspot.com","display_url":"riftofthemagi.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2276,"friends_count":4230,"listed_count":418,"created_at":"Sun + Jun 13 02:58:11 +0000 2010","favourites_count":24699,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":62781,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/570966498199494656\/StyDbq8-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/570966498199494656\/StyDbq8-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/155090409\/1620276700","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"B7F5F7","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 19:33:42 +0000 2019","id":1194337492054544387,"id_str":"1194337492054544387","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62065310,"id_str":"62065310","name":"Virginia + Rod\u00e9s","screen_name":"vrodes","location":"Uruguay","description":"comunicaci\u00f3n, + educaci\u00f3n, tecnolog\u00edas, organizaciones, g\u00e9nero y todas las + otras cosas mucho m\u00e1s importantes","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1724,"friends_count":512,"listed_count":118,"created_at":"Sat + Aug 01 16:25:36 +0000 2009","favourites_count":19053,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":29434,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"05570B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1454459426014965763\/8b6jYzNH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1454459426014965763\/8b6jYzNH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62065310\/1646621949","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3E0447","profile_sidebar_border_color":"B68B9E","profile_sidebar_fill_color":"758FF5","profile_text_color":"030303","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 18:12:57 +0000 2019","id":1194317169565327366,"id_str":"1194317169565327366","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153617129,"id_str":"153617129","name":"Lucy + Appert","screen_name":"Lucyappert","location":"New York, NY","description":"Director, + Educational Technology, New York University Faculty of Arts & Sciences","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":896,"friends_count":706,"listed_count":103,"created_at":"Wed + Jun 09 01:04:17 +0000 2010","favourites_count":3008,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6876,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1466444229266354181\/u-3lUjfw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1466444229266354181\/u-3lUjfw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153617129\/1401729538","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Jan 19 13:46:05 +0000 2020","id":1218892385037508609,"id_str":"1218892385037508609","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 13 13:50:21 +0000 2019","id":1194613472857866241,"id_str":"1194613472857866241","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":149239362,"id_str":"149239362","name":"umasslinguistics","screen_name":"UMassLinguistic","location":"Boston","description":"The + University Of Massachusetts Boston Applied Linguistics Department. Account + managed by @koutropoulos","url":"https:\/\/t.co\/rzrwRrVdjC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rzrwRrVdjC","expanded_url":"http:\/\/www.umb.edu\/umasslinguistics","display_url":"umb.edu\/umasslinguisti\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1627,"friends_count":763,"listed_count":58,"created_at":"Fri + May 28 19:49:42 +0000 2010","favourites_count":1545,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13393,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1518633375443173376\/epKXDCzk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1518633375443173376\/epKXDCzk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/149239362\/1390833190","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Jan 21 23:07:15 +0000 2020","id":1219758386436165633,"id_str":"1219758386436165633","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 19:04:17 +0000 2019","id":1194330087124033542,"id_str":"1194330087124033542","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14788950,"id_str":"14788950","name":"Leo + Havemann","screen_name":"leohavemann","location":"London, United Kingdom","description":"Higher, + open, digital ed @UCL_ProDev @OpenUCL | PGR in open\/ed policy, @IETatOU | + Fellow, @CODE_UoL | #go_gn #altc #m25ltg #LTHEchat #aptconf","url":"https:\/\/t.co\/d17qkjMDn5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/d17qkjMDn5","expanded_url":"http:\/\/leohavemann.wordpress.com","display_url":"leohavemann.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4344,"friends_count":5000,"listed_count":245,"created_at":"Thu + May 15 17:29:37 +0000 2008","favourites_count":89232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27808,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218565046424547329\/1Nj9kQQA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218565046424547329\/1Nj9kQQA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14788950\/1436434892","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F0EDFC","profile_text_color":"1C3716","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Nov 16 19:45:21 +0000 2019","id":1195789976405004294,"id_str":"1195789976405004294","full_text":"RT + @emergeAfrica: If you missed this session with @nicolapallitt the recording + is now available https:\/\/t.co\/toMDHdVsAB \n@AECT #aect1\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[50,64]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[127,132]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[100,123]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Nov 15 15:17:04 +0000 2019","id":1195360071464738817,"id_str":"1195360071464738817","full_text":"If + you missed this session with @nicolapallitt the recording is now available https:\/\/t.co\/toMDHdVsAB \n@AECT + #aect19 #emergeAfrica https:\/\/t.co\/FwbR75FNk4","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19","indices":[115,122]},{"text":"emergeAfrica","indices":[123,136]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[32,46]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[109,114]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[82,105]},{"url":"https:\/\/t.co\/FwbR75FNk4","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display_url":"twitter.com\/emergeAfrica\/s\u2026","indices":[137,160]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"quoted_status":{"created_at":"Thu + Nov 14 12:43:58 +0000 2019","id":1194959156878467072,"id_str":"1194959156878467072","full_text":"In + 30 minutes please join us\nWebinar room is ready https:\/\/t.co\/ej8SNvWvDZ\n@nicolapallitt presenting + https:\/\/t.co\/RWAtmzL8ox","truncated":false,"display_text_range":[0,102],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[76,90]}],"urls":[{"url":"https:\/\/t.co\/ej8SNvWvDZ","expanded_url":"http:\/\/zoom.us\/j\/603307386","display_url":"zoom.us\/j\/603307386","indices":[52,75]}],"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":7,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Nov 12 19:07:01 +0000 2019","id":1194330775493193729,"id_str":"1194330775493193729","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":139627261,"id_str":"139627261","name":"Sukaina + Walji","screen_name":"sukainaw","location":"","description":"Digital education + strategy and operations. Researching: #MOOCs #UnbundledHigherEd #Assessment + She\/Her. #FemEdtech","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2273,"friends_count":3081,"listed_count":118,"created_at":"Mon + May 03 05:51:45 +0000 2010","favourites_count":8987,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9118,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1401160636969664516\/grke-HQn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1401160636969664516\/grke-HQn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/139627261\/1658525255","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 19:37:23 +0000 2019","id":1194338418274295813,"id_str":"1194338418274295813","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Nov 13 08:24:55 +0000 2019","id":1194531575570030592,"id_str":"1194531575570030592","full_text":"@eromerohall + @emergeAfrica @AECT @aectclt @aectdddivision The flip code is https:\/\/t.co\/Tju65xaBYn + and this has been updated so there is no code\/password required to contribute + to the topic ''Collecting our #AECT19 HIghlights''","truncated":false,"display_text_range":[58,225],"entities":{"hashtags":[{"text":"AECT19","indices":[206,213]}],"symbols":[],"user_mentions":[{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[0,12]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[13,26]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[33,41]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[42,57]}],"urls":[{"url":"https:\/\/t.co\/Tju65xaBYn","expanded_url":"https:\/\/flipgrid.com\/aectemergeafrica","display_url":"flipgrid.com\/aectemergeafri\u2026","indices":[75,98]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1194337180057047041,"in_reply_to_status_id_str":"1194337180057047041","in_reply_to_user_id":918747876,"in_reply_to_user_id_str":"918747876","in_reply_to_screen_name":"eromerohall","user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Nov 13 12:57:06 +0000 2019","id":1194600071163195398,"id_str":"1194600071163195398","full_text":"RT + @nicolapallitt: I''m presenting an #AECT19 #aect19inspired report back webinar + for @emergeAfrica and would love to include your voices an\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[37,44]},{"text":"aect19inspired","indices":[45,60]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[85,98]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":52675234,"id_str":"52675234","name":"Gabriel + Konayuma","screen_name":"GabrielKonayuma","location":"Lusaka, Zambia","description":"A + Christian, Vocational Training educator specialised in learning, entrepreneurship, + educational technology.\n#edtech, #vocational_education, #entrepreneurship","url":"https:\/\/t.co\/ajMvMd1Eyh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ajMvMd1Eyh","expanded_url":"https:\/\/goo.gl\/nzZwHm","display_url":"goo.gl\/nzZwHm","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":571,"friends_count":1525,"listed_count":10,"created_at":"Wed + Jul 01 08:57:05 +0000 2009","favourites_count":3473,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4828,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643929621214437376\/9Q7jHSOH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643929621214437376\/9Q7jHSOH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52675234\/1608527579","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:18:35 +0000 2019","id":1194258188578820096,"id_str":"1194258188578820096","full_text":"I''m + presenting an #AECT19 #aect19inspired report back webinar for @emergeAfrica + and would love to include your voices and highlights - please share yours + via https:\/\/t.co\/mEnstr4iAs More info about the webinar is available at + https:\/\/t.co\/QGFyuIYLi4 @AECT @aectclt @aectdddivision https:\/\/t.co\/hGgYJQ1phR","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[18,25]},{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[66,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[250,255]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[256,264]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[265,280]}],"urls":[{"url":"https:\/\/t.co\/mEnstr4iAs","expanded_url":"https:\/\/admin.flipgrid.com\/manage\/grids\/2071013\/topics\/5843937","display_url":"admin.flipgrid.com\/manage\/grids\/2\u2026","indices":[158,181]},{"url":"https:\/\/t.co\/QGFyuIYLi4","expanded_url":"https:\/\/emergeafrica.net\/14-november-2019-report-back-from-aect19\/","display_url":"emergeafrica.net\/14-november-20\u2026","indices":[226,249]}],"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Nov 15 14:54:05 +0000 2019","id":1195354286458322944,"id_str":"1195354286458322944","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15654288,"id_str":"15654288","name":"Scott + J. Warren","screen_name":"constatively","location":"Denton, TX","description":"Professor + of learning tech; instructional design; ethics and greening schools\/orgs; + Business research - systems dev, operations, strategy","url":"https:\/\/t.co\/n5xEkVLkO1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/n5xEkVLkO1","expanded_url":"http:\/\/www.scottjwarren.net","display_url":"scottjwarren.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2186,"friends_count":4880,"listed_count":112,"created_at":"Wed + Jul 30 00:56:48 +0000 2008","favourites_count":62322,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15995,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1391548718940409862\/optqE67f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1391548718940409862\/optqE67f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15654288\/1523275532","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 13 00:52:10 +0000 2019","id":1194417634982408192,"id_str":"1194417634982408192","full_text":"@AECT + @aectclt report back from #AECT19 @emergeAfrica @aectdddivision https:\/\/t.co\/jNwgN3pw0R","truncated":false,"display_text_range":[0,69],"entities":{"hashtags":[{"text":"AECT19","indices":[32,39]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[6,14]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[40,53]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[54,69]}],"urls":[{"url":"https:\/\/t.co\/jNwgN3pw0R","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096","display_url":"twitter.com\/nicolapallitt\/\u2026","indices":[70,93]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194258188578820096,"quoted_status_id_str":"1194258188578820096","quoted_status_permalink":{"url":"https:\/\/t.co\/jNwgN3pw0R","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096","display":"twitter.com\/nicolapallitt\/\u2026"},"quoted_status":{"created_at":"Tue + Nov 12 14:18:35 +0000 2019","id":1194258188578820096,"id_str":"1194258188578820096","full_text":"I''m + presenting an #AECT19 #aect19inspired report back webinar for @emergeAfrica + and would love to include your voices and highlights - please share yours + via https:\/\/t.co\/mEnstr4iAs More info about the webinar is available at + https:\/\/t.co\/QGFyuIYLi4 @AECT @aectclt @aectdddivision https:\/\/t.co\/hGgYJQ1phR","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[18,25]},{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[66,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[250,255]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[256,264]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[265,280]}],"urls":[{"url":"https:\/\/t.co\/mEnstr4iAs","expanded_url":"https:\/\/admin.flipgrid.com\/manage\/grids\/2071013\/topics\/5843937","display_url":"admin.flipgrid.com\/manage\/grids\/2\u2026","indices":[158,181]},{"url":"https:\/\/t.co\/QGFyuIYLi4","expanded_url":"https:\/\/emergeafrica.net\/14-november-2019-report-back-from-aect19\/","display_url":"emergeafrica.net\/14-november-20\u2026","indices":[226,249]}],"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},{"created_at":"Wed + Nov 13 00:37:18 +0000 2019","id":1194413897207418881,"id_str":"1194413897207418881","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1003232844,"id_str":"1003232844","name":"Alicia + Johnson","screen_name":"onmyway2here","location":"Christiansburg, VA","description":"Instructional + Designer of Instructional Design (ID) Instruction PhD@virginiatechIDT. Good + days = Students, ID, Instruction, Research, Edtech, & Learning.","url":"https:\/\/t.co\/cCcuGeqoTV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cCcuGeqoTV","expanded_url":"https:\/\/liberalarts.vt.edu\/departments-and-schools\/school-of-education\/faculty\/alicia-johnson.html","display_url":"liberalarts.vt.edu\/departments-an\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":199,"friends_count":382,"listed_count":2,"created_at":"Tue + Dec 11 03:55:07 +0000 2012","favourites_count":4008,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":808,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3195564046\/04c6c148cecd8aeabb563780bedea34b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3195564046\/04c6c148cecd8aeabb563780bedea34b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1003232844\/1355198723","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Apr 19 19:22:23 +0000 2020","id":1251954312772812801,"id_str":"1251954312772812801","full_text":"RT + @RoutledgeEd: Congrats to authors Joseph Rene Corbeil, Maria Elena Corbeil, + and (not pictured) Badrul Khan, who received the Outstanding\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RoutledgeEd","name":"Routledge + Education Books","id":27606068,"id_str":"27606068","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1251951804398669825,"id_str":"1251951804398669825","name":"Harriet + Watkins","screen_name":"Harriet96152202","location":"","description":"Love + educational technology, online learning and just all the things \u2026 higher + ed!","url":"https:\/\/t.co\/ztRaRj9BLo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ztRaRj9BLo","expanded_url":"https:\/\/harrietwatkins.com\/","display_url":"harrietwatkins.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":17,"listed_count":0,"created_at":"Sun + Apr 19 19:12:33 +0000 2020","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1251951950163255299\/cxSX369n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1251951950163255299\/cxSX369n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251951804398669825\/1587323939","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 21:58:17 +0000 2019","id":1187126122376392704,"id_str":"1187126122376392704","full_text":"Congrats + to authors Joseph Rene Corbeil, Maria Elena Corbeil, and (not pictured) Badrul + Khan, who received the Outstanding Book Award from #AECT2019\u2019s Culture, + Learning, and Technology division \u2014 a global treatment of #learninganalytics + and #educationaldatamining. https:\/\/t.co\/aG1kf7a5ew","truncated":false,"display_text_range":[0,264],"entities":{"hashtags":[{"text":"AECT2019","indices":[139,148]},{"text":"learninganalytics","indices":[218,236]},{"text":"educationaldatamining","indices":[241,263]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27606068,"id_str":"27606068","name":"Routledge + Education Books","screen_name":"RoutledgeEd","location":"Global","description":"Supporting + educators, teachers, scholars and students with informative and practical + books based on leading research and classroom practice.","url":"http:\/\/t.co\/j4LZK9ypti","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/j4LZK9ypti","expanded_url":"http:\/\/www.routledge.com\/education","display_url":"routledge.com\/education","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":13833,"friends_count":3278,"listed_count":230,"created_at":"Mon + Mar 30 08:33:32 +0000 2009","favourites_count":2658,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10107,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"6A9ADA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27606068\/1629726175","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"6A9ADA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Nov 16 00:02:07 +0000 2019","id":1195492203747037186,"id_str":"1195492203747037186","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":114633938,"id_str":"114633938","name":"Matthea + Marquart - Please wear a mask","screen_name":"MattheaMarquart","location":"","description":"#OnlineEd + #SWTech #SocialWork #NonprofitManagement #HigherEd. Online Campus asst dean + & lecturer at @ColumbiaSSW. Educator, speaker, writer, API. Own opinions.","url":"https:\/\/t.co\/IOukCxS9HQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IOukCxS9HQ","expanded_url":"https:\/\/www.mattheamarquart.com\/","display_url":"mattheamarquart.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1977,"friends_count":4915,"listed_count":0,"created_at":"Tue + Feb 16 03:20:17 +0000 2010","favourites_count":22811,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6209,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1354180279691341824\/qsFbxLLY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1354180279691341824\/qsFbxLLY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/114633938\/1582152770","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Jan 18 22:43:06 +0000 2020","id":1218665142210252800,"id_str":"1218665142210252800","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14125173,"id_str":"14125173","name":"Trey + Martindale","screen_name":"treymartindale","location":"","description":"News + about #instructionaldesign and #onlinelearning , mostly in #highered .","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1170,"friends_count":0,"listed_count":98,"created_at":"Tue + Mar 11 16:32:25 +0000 2008","favourites_count":110,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4164,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1291200178553327619\/BcPSjP2-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1291200178553327619\/BcPSjP2-_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Dec 02 19:48:57 +0000 2019","id":1201589087444111361,"id_str":"1201589087444111361","full_text":"RT + @caranorth11: Kicking off my blog series talking about #devlearn and #aect19, + my first post talks about both conferences and my pick for\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"devlearn","indices":[58,67]},{"text":"aect19","indices":[72,79]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1059123581156700160,"id_str":"1059123581156700160","name":"80K + at Wembley","screen_name":"the80kcrew","location":"","description":"Quality + content from a quality bloke. Quote tweeted by John Cusack once. #boxing mostly","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":307,"friends_count":252,"listed_count":3,"created_at":"Sun + Nov 04 16:41:54 +0000 2018","favourites_count":8676,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7212,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494825221924081667\/yw2J2Rvj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494825221924081667\/yw2J2Rvj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1059123581156700160\/1582607612","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Dec 02 13:09:01 +0000 2019","id":1201488442741477376,"id_str":"1201488442741477376","full_text":"Kicking + off my blog series talking about #devlearn and #aect19, my first post talks + about both conferences and my pick for the top 3 pre-conference moments. @AnnaRoseLeach + @jachutchinson & @lxdify get shoutouts :) #instructionaldesign #conferences + https:\/\/t.co\/F4alIilVHy https:\/\/t.co\/Dxo29Ns7hq","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"devlearn","indices":[41,50]},{"text":"aect19","indices":[55,62]},{"text":"instructionaldesign","indices":[218,238]},{"text":"conferences","indices":[239,251]}],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[157,171]},{"screen_name":"jachutchinson","name":"Jac + Hutchinson","id":14799068,"id_str":"14799068","indices":[172,186]},{"screen_name":"lxdify","name":"Ceren + K\ud83d\udc9crkmaz \u2615","id":724195673143386112,"id_str":"724195673143386112","indices":[193,200]}],"urls":[{"url":"https:\/\/t.co\/F4alIilVHy","expanded_url":"https:\/\/buff.ly\/2rJmIE6","display_url":"buff.ly\/2rJmIE6","indices":[252,275]}],"media":[{"id":1201488440824680449,"id_str":"1201488440824680449","indices":[276,299],"media_url":"http:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","url":"https:\/\/t.co\/Dxo29Ns7hq","display_url":"pic.twitter.com\/Dxo29Ns7hq","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1201488442741477376\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":683,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1024,"h":683,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1201488440824680449,"id_str":"1201488440824680449","indices":[276,299],"media_url":"http:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","url":"https:\/\/t.co\/Dxo29Ns7hq","display_url":"pic.twitter.com\/Dxo29Ns7hq","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1201488442741477376\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":683,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1024,"h":683,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 13 00:52:56 +0000 2019","id":1194417830122446848,"id_str":"1194417830122446848","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 16:01:08 +0000 2019","id":1194283996697518082,"id_str":"1194283996697518082","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":182762965,"id_str":"182762965","name":"Chris + Rowell","screen_name":"Chri5rowell","location":"Camberwell, London ","description":"walk-write-work-a-bit + @ual\n\nSocialist \n\n.. all views my own (except for the ones I''ve RTed) + \ud83c\udf34","url":"https:\/\/t.co\/Dwwig9Iq7y","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Dwwig9Iq7y","expanded_url":"http:\/\/totallyrewired.wordpress.com\/","display_url":"totallyrewired.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2041,"friends_count":989,"listed_count":144,"created_at":"Wed + Aug 25 10:10:04 +0000 2010","favourites_count":58928,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":42638,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1519351341512110080\/Ko6X4aMk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1519351341512110080\/Ko6X4aMk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/182762965\/1573253647","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 20:42:40 +0000 2019","id":1194354847157555202,"id_str":"1194354847157555202","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2396037342,"id_str":"2396037342","name":"ETHE + Journal","screen_name":"ETHEjournal","location":"Barcelona","description":"A + @SpringerCompSci journal in #elearning #edtech #highered edited by @UOCuniversity + @DCU @Uniandes & https:\/\/t.co\/JZUjLLPPJF\nhttps:\/\/t.co\/PA7W9Ez4h5","url":"https:\/\/t.co\/veHy8MyuHV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/veHy8MyuHV","expanded_url":"http:\/\/ethe.uoc.edu","display_url":"ethe.uoc.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/JZUjLLPPJF","expanded_url":"http:\/\/vdu.lt\/en\/","display_url":"vdu.lt\/en\/","indices":[101,124]},{"url":"https:\/\/t.co\/PA7W9Ez4h5","expanded_url":"http:\/\/facebook.com\/ETHEjournal\/","display_url":"facebook.com\/ETHEjournal\/","indices":[125,148]}]}},"protected":false,"followers_count":4301,"friends_count":1500,"listed_count":500,"created_at":"Tue + Mar 18 11:11:24 +0000 2014","favourites_count":200,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18413,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/687928482169532416\/txuTx5OV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/687928482169532416\/txuTx5OV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2396037342\/1554713344","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 13 01:29:19 +0000 2019","id":1194426987810557955,"id_str":"1194426987810557955","full_text":"RT + @nicolapallitt: I''m presenting an #AECT19 #aect19inspired report back webinar + for @emergeAfrica and would love to include your voices an\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[37,44]},{"text":"aect19inspired","indices":[45,60]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[85,98]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:18:35 +0000 2019","id":1194258188578820096,"id_str":"1194258188578820096","full_text":"I''m + presenting an #AECT19 #aect19inspired report back webinar for @emergeAfrica + and would love to include your voices and highlights - please share yours + via https:\/\/t.co\/mEnstr4iAs More info about the webinar is available at + https:\/\/t.co\/QGFyuIYLi4 @AECT @aectclt @aectdddivision https:\/\/t.co\/hGgYJQ1phR","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[18,25]},{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[66,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[250,255]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[256,264]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[265,280]}],"urls":[{"url":"https:\/\/t.co\/mEnstr4iAs","expanded_url":"https:\/\/admin.flipgrid.com\/manage\/grids\/2071013\/topics\/5843937","display_url":"admin.flipgrid.com\/manage\/grids\/2\u2026","indices":[158,181]},{"url":"https:\/\/t.co\/QGFyuIYLi4","expanded_url":"https:\/\/emergeafrica.net\/14-november-2019-report-back-from-aect19\/","display_url":"emergeafrica.net\/14-november-20\u2026","indices":[226,249]}],"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 19 21:56:10 +0000 2019","id":1196910062196772865,"id_str":"1196910062196772865","full_text":"RT + @christieliuidtr: @AECT @aectclt report back from #AECT19 @emergeAfrica @aectdddivision + https:\/\/t.co\/jNwgN3pw0R","truncated":false,"display_text_range":[0,114],"entities":{"hashtags":[{"text":"AECT19","indices":[53,60]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[21,26]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[27,35]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[61,74]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[75,90]}],"urls":[{"url":"https:\/\/t.co\/jNwgN3pw0R","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096","display_url":"twitter.com\/nicolapallitt\/\u2026","indices":[91,114]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905212118127042560,"id_str":"905212118127042560","name":"AECT_CLT","screen_name":"aectclt","location":"","description":"AECT + Division Exploring culture, learning, and technology with particular emphases + on championing inclusiveness and equity. Conversation at #aectclt","url":"https:\/\/t.co\/yc2CmqxA5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yc2CmqxA5M","expanded_url":"https:\/\/sites.google.com\/view\/clt-home","display_url":"sites.google.com\/view\/clt-home","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":26,"listed_count":4,"created_at":"Tue + Sep 05 23:32:41 +0000 2017","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":486,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905212118127042560\/1506184813","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Nov 13 00:52:10 +0000 2019","id":1194417634982408192,"id_str":"1194417634982408192","full_text":"@AECT + @aectclt report back from #AECT19 @emergeAfrica @aectdddivision https:\/\/t.co\/jNwgN3pw0R","truncated":false,"display_text_range":[0,69],"entities":{"hashtags":[{"text":"AECT19","indices":[32,39]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[6,14]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[40,53]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[54,69]}],"urls":[{"url":"https:\/\/t.co\/jNwgN3pw0R","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096","display_url":"twitter.com\/nicolapallitt\/\u2026","indices":[70,93]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194258188578820096,"quoted_status_id_str":"1194258188578820096","quoted_status_permalink":{"url":"https:\/\/t.co\/jNwgN3pw0R","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096","display":"twitter.com\/nicolapallitt\/\u2026"},"quoted_status":{"created_at":"Tue + Nov 12 14:18:35 +0000 2019","id":1194258188578820096,"id_str":"1194258188578820096","full_text":"I''m + presenting an #AECT19 #aect19inspired report back webinar for @emergeAfrica + and would love to include your voices and highlights - please share yours + via https:\/\/t.co\/mEnstr4iAs More info about the webinar is available at + https:\/\/t.co\/QGFyuIYLi4 @AECT @aectclt @aectdddivision https:\/\/t.co\/hGgYJQ1phR","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[18,25]},{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[66,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[250,255]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[256,264]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[265,280]}],"urls":[{"url":"https:\/\/t.co\/mEnstr4iAs","expanded_url":"https:\/\/admin.flipgrid.com\/manage\/grids\/2071013\/topics\/5843937","display_url":"admin.flipgrid.com\/manage\/grids\/2\u2026","indices":[158,181]},{"url":"https:\/\/t.co\/QGFyuIYLi4","expanded_url":"https:\/\/emergeafrica.net\/14-november-2019-report-back-from-aect19\/","display_url":"emergeafrica.net\/14-november-20\u2026","indices":[226,249]}],"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"is_quote_status":true,"quoted_status_id":1194258188578820096,"quoted_status_id_str":"1194258188578820096","quoted_status_permalink":{"url":"https:\/\/t.co\/jNwgN3pw0R","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096","display":"twitter.com\/nicolapallitt\/\u2026"},"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Nov 12 18:43:16 +0000 2019","id":1194324801118228481,"id_str":"1194324801118228481","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":381743098,"id_str":"381743098","name":"margy + maclibrary","screen_name":"MargyMacLibrary","location":"YYJ","description":"she\/her\/hers + Retired MRU Librarian, settler on unceded Songhees, Esquimalt & WS\u00c1NE\u0106 + territory; interests:communications\/Indigenous matters\/GLAM\/SoTL\/science","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5249,"friends_count":5198,"listed_count":303,"created_at":"Wed + Sep 28 21:22:23 +0000 2011","favourites_count":759614,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":238385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1564365669\/margyphoto_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1564365669\/margyphoto_normal.JPG","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 19:51:38 +0000 2019","id":1194342006153187328,"id_str":"1194342006153187328","full_text":"RT + @nicolapallitt: I''m presenting an #AECT19 #aect19inspired report back webinar + for @emergeAfrica and would love to include your voices an\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[37,44]},{"text":"aect19inspired","indices":[45,60]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[85,98]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:18:35 +0000 2019","id":1194258188578820096,"id_str":"1194258188578820096","full_text":"I''m + presenting an #AECT19 #aect19inspired report back webinar for @emergeAfrica + and would love to include your voices and highlights - please share yours + via https:\/\/t.co\/mEnstr4iAs More info about the webinar is available at + https:\/\/t.co\/QGFyuIYLi4 @AECT @aectclt @aectdddivision https:\/\/t.co\/hGgYJQ1phR","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[18,25]},{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[66,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[250,255]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[256,264]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[265,280]}],"urls":[{"url":"https:\/\/t.co\/mEnstr4iAs","expanded_url":"https:\/\/admin.flipgrid.com\/manage\/grids\/2071013\/topics\/5843937","display_url":"admin.flipgrid.com\/manage\/grids\/2\u2026","indices":[158,181]},{"url":"https:\/\/t.co\/QGFyuIYLi4","expanded_url":"https:\/\/emergeafrica.net\/14-november-2019-report-back-from-aect19\/","display_url":"emergeafrica.net\/14-november-20\u2026","indices":[226,249]}],"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Dec 02 13:28:11 +0000 2019","id":1201493265226309633,"id_str":"1201493265226309633","full_text":"RT + @caranorth11: Kicking off my blog series talking about #devlearn and #aect19, + my first post talks about both conferences and my pick for\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"devlearn","indices":[58,67]},{"text":"aect19","indices":[72,79]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":32396916,"id_str":"32396916","name":"Betty + Dannewitz","screen_name":"ifyouaskbetty","location":"Detroit, MI","description":"","url":"https:\/\/t.co\/9W1hC09FJi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9W1hC09FJi","expanded_url":"http:\/\/www.ifyouaskbetty.com","display_url":"ifyouaskbetty.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":555,"friends_count":356,"listed_count":18,"created_at":"Fri + Apr 17 13:09:02 +0000 2009","favourites_count":3212,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1836,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1144765013145481216\/tQ8oD5Y-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1144765013145481216\/tQ8oD5Y-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/32396916\/1573763103","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Dec 02 13:09:01 +0000 2019","id":1201488442741477376,"id_str":"1201488442741477376","full_text":"Kicking + off my blog series talking about #devlearn and #aect19, my first post talks + about both conferences and my pick for the top 3 pre-conference moments. @AnnaRoseLeach + @jachutchinson & @lxdify get shoutouts :) #instructionaldesign #conferences + https:\/\/t.co\/F4alIilVHy https:\/\/t.co\/Dxo29Ns7hq","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"devlearn","indices":[41,50]},{"text":"aect19","indices":[55,62]},{"text":"instructionaldesign","indices":[218,238]},{"text":"conferences","indices":[239,251]}],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[157,171]},{"screen_name":"jachutchinson","name":"Jac + Hutchinson","id":14799068,"id_str":"14799068","indices":[172,186]},{"screen_name":"lxdify","name":"Ceren + K\ud83d\udc9crkmaz \u2615","id":724195673143386112,"id_str":"724195673143386112","indices":[193,200]}],"urls":[{"url":"https:\/\/t.co\/F4alIilVHy","expanded_url":"https:\/\/buff.ly\/2rJmIE6","display_url":"buff.ly\/2rJmIE6","indices":[252,275]}],"media":[{"id":1201488440824680449,"id_str":"1201488440824680449","indices":[276,299],"media_url":"http:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","url":"https:\/\/t.co\/Dxo29Ns7hq","display_url":"pic.twitter.com\/Dxo29Ns7hq","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1201488442741477376\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":683,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1024,"h":683,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1201488440824680449,"id_str":"1201488440824680449","indices":[276,299],"media_url":"http:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","url":"https:\/\/t.co\/Dxo29Ns7hq","display_url":"pic.twitter.com\/Dxo29Ns7hq","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1201488442741477376\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":683,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1024,"h":683,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Nov 15 15:17:04 +0000 2019","id":1195360071464738817,"id_str":"1195360071464738817","full_text":"If + you missed this session with @nicolapallitt the recording is now available https:\/\/t.co\/toMDHdVsAB \n@AECT + #aect19 #emergeAfrica https:\/\/t.co\/FwbR75FNk4","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19","indices":[115,122]},{"text":"emergeAfrica","indices":[123,136]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[32,46]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[109,114]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[82,105]},{"url":"https:\/\/t.co\/FwbR75FNk4","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display_url":"twitter.com\/emergeAfrica\/s\u2026","indices":[137,160]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"quoted_status":{"created_at":"Thu + Nov 14 12:43:58 +0000 2019","id":1194959156878467072,"id_str":"1194959156878467072","full_text":"In + 30 minutes please join us\nWebinar room is ready https:\/\/t.co\/ej8SNvWvDZ\n@nicolapallitt presenting + https:\/\/t.co\/RWAtmzL8ox","truncated":false,"display_text_range":[0,102],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[76,90]}],"urls":[{"url":"https:\/\/t.co\/ej8SNvWvDZ","expanded_url":"http:\/\/zoom.us\/j\/603307386","display_url":"zoom.us\/j\/603307386","indices":[52,75]}],"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":7,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Jan 09 01:43:17 +0000 2020","id":1215086607218298881,"id_str":"1215086607218298881","full_text":"RT + @AECT: We''re still recovering from #AECT19, but that doesn''t mean we haven''t + started planning for #AECT20 and beyond! Check out the futu\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[38,45]},{"text":"AECT20","indices":[101,108]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3192842900,"id_str":"3192842900","name":"FG\u272amez2, + Ed.D.\u2606\u5f61","screen_name":"DrFrankGomez","location":"","description":"Educator\u2022Ed + Tech\u2022Poet\u2022@edtechbsu Alumni\u2022\u03a6\u039a\u03a6 Member\u2022Research: + Digital Pedagogy & Technopedagogical Self-efficacy\u2022Striving for excellence\u2022Retweets + \u2260 Endorsements.","url":"https:\/\/t.co\/CNWGWDlenf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CNWGWDlenf","expanded_url":"http:\/\/goo.gl\/m8BYno","display_url":"goo.gl\/m8BYno","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":391,"friends_count":722,"listed_count":123,"created_at":"Tue + May 12 05:33:37 +0000 2015","favourites_count":6547,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3185,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598000520553369601\/tiaY0maa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598000520553369601\/tiaY0maa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3192842900\/1435711772","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 29 22:21:15 +0000 2019","id":1189306225319731200,"id_str":"1189306225319731200","full_text":"We''re + still recovering from #AECT19, but that doesn''t mean we haven''t started + planning for #AECT20 and beyond! Check out the future locations for upcoming + AECT International Conventions through 2025. Hopefully we''ll see you in #JAX! + https:\/\/t.co\/KUffDFfWwv","truncated":false,"display_text_range":[0,232],"entities":{"hashtags":[{"text":"AECT19","indices":[28,35]},{"text":"AECT20","indices":[91,98]},{"text":"JAX","indices":[227,231]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1189306203798528000,"id_str":"1189306203798528000","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","url":"https:\/\/t.co\/KUffDFfWwv","display_url":"pic.twitter.com\/KUffDFfWwv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1189306225319731200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1189306203798528000,"id_str":"1189306203798528000","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","url":"https:\/\/t.co\/KUffDFfWwv","display_url":"pic.twitter.com\/KUffDFfWwv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1189306225319731200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":29,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 20 21:33:20 +0000 2019","id":1197266701206925313,"id_str":"1197266701206925313","full_text":"You\u2019re + invited to our end of the semester writing sprints! This is to encourage \u2026.writing, + research and practice in educational technology and instructional design. + Mon Nov 25 & Mon Dec 9 - Join at Zoom https:\/\/t.co\/iOpaIVyGEy #aect19 + https:\/\/t.co\/dMps6EY09H","truncated":false,"display_text_range":[0,238],"entities":{"hashtags":[{"text":"aect19","indices":[231,238]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iOpaIVyGEy","expanded_url":"http:\/\/bit.ly\/monwrite","display_url":"bit.ly\/monwrite","indices":[207,230]}],"media":[{"id":1197266697054498819,"id_str":"1197266697054498819","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2Lt7NWsAM1VBA.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2Lt7NWsAM1VBA.png","url":"https:\/\/t.co\/dMps6EY09H","display_url":"pic.twitter.com\/dMps6EY09H","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1197266701206925313\/photo\/1","type":"photo","sizes":{"medium":{"w":714,"h":714,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":714,"h":714,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1197266697054498819,"id_str":"1197266697054498819","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2Lt7NWsAM1VBA.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2Lt7NWsAM1VBA.png","url":"https:\/\/t.co\/dMps6EY09H","display_url":"pic.twitter.com\/dMps6EY09H","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1197266701206925313\/photo\/1","type":"photo","sizes":{"medium":{"w":714,"h":714,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":714,"h":714,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Jan 18 15:10:58 +0000 2020","id":1218551358095273984,"id_str":"1218551358095273984","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 20 09:23:15 +0000 2019","id":1197082972219940864,"id_str":"1197082972219940864","full_text":"RT + @christieliuidtr: @AECT @aectclt report back from #AECT19 @emergeAfrica @aectdddivision + https:\/\/t.co\/jNwgN3pw0R","truncated":false,"display_text_range":[0,114],"entities":{"hashtags":[{"text":"AECT19","indices":[53,60]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[21,26]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[27,35]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[61,74]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[75,90]}],"urls":[{"url":"https:\/\/t.co\/jNwgN3pw0R","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096","display_url":"twitter.com\/nicolapallitt\/\u2026","indices":[91,114]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":123168263,"id_str":"123168263","name":"Irene + Maweu \ud83c\udf3b\ud83c\udf3b","screen_name":"wavinya66","location":"Kenya","description":"By + Faith \/ With Respect \/ Facilitating from the heart \/ Liberating Structures + Gospel \/ IAF Member","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":762,"friends_count":772,"listed_count":9,"created_at":"Mon + Mar 15 06:31:31 +0000 2010","favourites_count":10218,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5795,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123168263\/1610274071","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Nov 13 00:52:10 +0000 2019","id":1194417634982408192,"id_str":"1194417634982408192","full_text":"@AECT + @aectclt report back from #AECT19 @emergeAfrica @aectdddivision https:\/\/t.co\/jNwgN3pw0R","truncated":false,"display_text_range":[0,69],"entities":{"hashtags":[{"text":"AECT19","indices":[32,39]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[6,14]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[40,53]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[54,69]}],"urls":[{"url":"https:\/\/t.co\/jNwgN3pw0R","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096","display_url":"twitter.com\/nicolapallitt\/\u2026","indices":[70,93]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194258188578820096,"quoted_status_id_str":"1194258188578820096","quoted_status_permalink":{"url":"https:\/\/t.co\/jNwgN3pw0R","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096","display":"twitter.com\/nicolapallitt\/\u2026"},"quoted_status":{"created_at":"Tue + Nov 12 14:18:35 +0000 2019","id":1194258188578820096,"id_str":"1194258188578820096","full_text":"I''m + presenting an #AECT19 #aect19inspired report back webinar for @emergeAfrica + and would love to include your voices and highlights - please share yours + via https:\/\/t.co\/mEnstr4iAs More info about the webinar is available at + https:\/\/t.co\/QGFyuIYLi4 @AECT @aectclt @aectdddivision https:\/\/t.co\/hGgYJQ1phR","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[18,25]},{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[66,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[250,255]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[256,264]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[265,280]}],"urls":[{"url":"https:\/\/t.co\/mEnstr4iAs","expanded_url":"https:\/\/admin.flipgrid.com\/manage\/grids\/2071013\/topics\/5843937","display_url":"admin.flipgrid.com\/manage\/grids\/2\u2026","indices":[158,181]},{"url":"https:\/\/t.co\/QGFyuIYLi4","expanded_url":"https:\/\/emergeafrica.net\/14-november-2019-report-back-from-aect19\/","display_url":"emergeafrica.net\/14-november-20\u2026","indices":[226,249]}],"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"is_quote_status":true,"quoted_status_id":1194258188578820096,"quoted_status_id_str":"1194258188578820096","quoted_status_permalink":{"url":"https:\/\/t.co\/jNwgN3pw0R","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096","display":"twitter.com\/nicolapallitt\/\u2026"},"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Feb 17 14:00:51 +0000 2020","id":1229405350178127872,"id_str":"1229405350178127872","full_text":"RT + @tadousay: Many thanks to @AECTTechTrends for supporting our @gsa_aect with + the Grad Member Musings column! The latest guest author is #\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[29,44]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[64,73]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Feb 05 18:21:36 +0000 2020","id":1225122317849657345,"id_str":"1225122317849657345","full_text":"Many + thanks to @AECTTechTrends for supporting our @gsa_aect with the Grad Member + Musings column! The latest guest author is #uidaho''s Ken Cox, a first year + doc student in our C&I program and a member of my #UISTEMEdRG. https:\/\/t.co\/8MuP9Mza8f + #aect #aect20 #aect19","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"uidaho","indices":[124,131]},{"text":"UISTEMEdRG","indices":[210,221]},{"text":"aect","indices":[247,252]},{"text":"aect20","indices":[253,260]},{"text":"aect19","indices":[261,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[15,30]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[50,59]}],"urls":[{"url":"https:\/\/t.co\/8MuP9Mza8f","expanded_url":"https:\/\/doi.org\/10.1007\/s11528-020-00477-5","display_url":"doi.org\/10.1007\/s11528\u2026","indices":[223,246]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 20 23:37:27 +0000 2019","id":1197297937241583616,"id_str":"1197297937241583616","full_text":"RT + @aectrtd: AECT-RTD Call for Nominations [Due 12\/1\/2019]. #aectRTD #aect19 + #aect19inspired @AECT https:\/\/t.co\/KCgYAFb1eC","truncated":false,"display_text_range":[0,122],"entities":{"hashtags":[{"text":"aectRTD","indices":[60,68]},{"text":"aect19","indices":[69,76]},{"text":"aect19inspired","indices":[77,92]}],"symbols":[],"user_mentions":[{"screen_name":"aectrtd","name":"AECT + Research & Theory Division","id":1197270185960361984,"id_str":"1197270185960361984","indices":[3,11]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[93,98]}],"urls":[],"media":[{"id":1197271649692704768,"id_str":"1197271649692704768","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","url":"https:\/\/t.co\/KCgYAFb1eC","display_url":"pic.twitter.com\/KCgYAFb1eC","expanded_url":"https:\/\/twitter.com\/rtdaect\/status\/1197271655015272448\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"}},"source_status_id":1197271655015272448,"source_status_id_str":"1197271655015272448","source_user_id":1197270185960361984,"source_user_id_str":"1197270185960361984"}]},"extended_entities":{"media":[{"id":1197271649692704768,"id_str":"1197271649692704768","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","url":"https:\/\/t.co\/KCgYAFb1eC","display_url":"pic.twitter.com\/KCgYAFb1eC","expanded_url":"https:\/\/twitter.com\/rtdaect\/status\/1197271655015272448\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"}},"source_status_id":1197271655015272448,"source_status_id_str":"1197271655015272448","source_user_id":1197270185960361984,"source_user_id_str":"1197270185960361984","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":197077129,"id_str":"197077129","name":"Shonn + Cheng","screen_name":"shonn2nd","location":"Huntsville, Texas","description":"Assistant + Professor of Instructional Systems Design & Technology @SamHoustonState | + mastery goal orientation | \u3055\u3068\u307f \u3057\u3085\u3046\u3058","url":"https:\/\/t.co\/suOZ2lqHZO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/suOZ2lqHZO","expanded_url":"http:\/\/shonnslc.com","display_url":"shonnslc.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":577,"friends_count":1340,"listed_count":20,"created_at":"Thu + Sep 30 16:04:19 +0000 2010","favourites_count":6293,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1871,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1518784831479373824\/dksWzjgF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1518784831479373824\/dksWzjgF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/197077129\/1555358405","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Nov 20 21:53:01 +0000 2019","id":1197271655015272448,"id_str":"1197271655015272448","full_text":"AECT-RTD + Call for Nominations [Due 12\/1\/2019]. #aectRTD #aect19 #aect19inspired @AECT + https:\/\/t.co\/KCgYAFb1eC","truncated":false,"display_text_range":[0,85],"entities":{"hashtags":[{"text":"aectRTD","indices":[47,55]},{"text":"aect19","indices":[56,63]},{"text":"aect19inspired","indices":[64,79]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[80,85]}],"urls":[],"media":[{"id":1197271649692704768,"id_str":"1197271649692704768","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","url":"https:\/\/t.co\/KCgYAFb1eC","display_url":"pic.twitter.com\/KCgYAFb1eC","expanded_url":"https:\/\/twitter.com\/rtdaect\/status\/1197271655015272448\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1197271649692704768,"id_str":"1197271649692704768","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","url":"https:\/\/t.co\/KCgYAFb1eC","display_url":"pic.twitter.com\/KCgYAFb1eC","expanded_url":"https:\/\/twitter.com\/rtdaect\/status\/1197271655015272448\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1197270185960361984,"id_str":"1197270185960361984","name":"AECT + Research & Theory Division","screen_name":"aectrtd","location":"","description":"AECT''s + (https:\/\/t.co\/6DFTIdk9db) Research & Theory Division promotes development + and advancement of theory; and supports, fosters, and mentors emerging scholars. + #aectRTD","url":"https:\/\/t.co\/0AKlTYZtfT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0AKlTYZtfT","expanded_url":"https:\/\/sites.google.com\/view\/aectrtd\/home","display_url":"sites.google.com\/view\/aectrtd\/h\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/6DFTIdk9db","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[8,31]}]}},"protected":false,"followers_count":194,"friends_count":13,"listed_count":1,"created_at":"Wed + Nov 20 21:47:30 +0000 2019","favourites_count":66,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1197271108489080832\/wtFlrFm9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1197271108489080832\/wtFlrFm9_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Jan 19 23:46:51 +0000 2020","id":1219043574555299840,"id_str":"1219043574555299840","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1088189033266798598,"id_str":"1088189033266798598","name":"AECT + Division of Distance Learning","screen_name":"aectddl","location":"","description":"The + Division of Distance Learning is a special interest group of the Association + for Educational Communications and Technology (AECT).","url":"https:\/\/t.co\/Rg9uXQTkSM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Rg9uXQTkSM","expanded_url":"https:\/\/aect.org\/ddl.php","display_url":"aect.org\/ddl.php","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":861,"friends_count":482,"listed_count":6,"created_at":"Wed + Jan 23 21:37:37 +0000 2019","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088189033266798598\/1548280679","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Dec 08 21:01:42 +0000 2019","id":1203781724628500486,"id_str":"1203781724628500486","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":52675234,"id_str":"52675234","name":"Gabriel + Konayuma","screen_name":"GabrielKonayuma","location":"Lusaka, Zambia","description":"A + Christian, Vocational Training educator specialised in learning, entrepreneurship, + educational technology.\n#edtech, #vocational_education, #entrepreneurship","url":"https:\/\/t.co\/ajMvMd1Eyh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ajMvMd1Eyh","expanded_url":"https:\/\/goo.gl\/nzZwHm","display_url":"goo.gl\/nzZwHm","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":571,"friends_count":1525,"listed_count":10,"created_at":"Wed + Jul 01 08:57:05 +0000 2009","favourites_count":3473,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4828,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643929621214437376\/9Q7jHSOH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643929621214437376\/9Q7jHSOH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52675234\/1608527579","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 14:45:46 +0000 2019","id":1194265030621093890,"id_str":"1194265030621093890","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Jan 19 15:38:16 +0000 2020","id":1218920618336362500,"id_str":"1218920618336362500","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":89691945,"id_str":"89691945","name":"Cheryl + Hodgkinson-Williams","screen_name":"CherylHW","location":"Cape Town","description":"Open + Education and Social Justice Advocate. Emeritus Associate Professor, Centre + for Innovation in Learning & Teaching, University of Cape Town.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1553,"friends_count":714,"listed_count":61,"created_at":"Fri + Nov 13 12:51:42 +0000 2009","favourites_count":4681,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4980,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/468384357388804097\/jD8SSxSC_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/468384357388804097\/jD8SSxSC_normal.jpeg","profile_image_extensions_alt_text":null,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 19 21:56:46 +0000 2019","id":1196910211816013824,"id_str":"1196910211816013824","full_text":"RT + @nicolapallitt: I''m presenting an #AECT19 #aect19inspired report back webinar + for @emergeAfrica and would love to include your voices an\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[37,44]},{"text":"aect19inspired","indices":[45,60]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[85,98]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905212118127042560,"id_str":"905212118127042560","name":"AECT_CLT","screen_name":"aectclt","location":"","description":"AECT + Division Exploring culture, learning, and technology with particular emphases + on championing inclusiveness and equity. Conversation at #aectclt","url":"https:\/\/t.co\/yc2CmqxA5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yc2CmqxA5M","expanded_url":"https:\/\/sites.google.com\/view\/clt-home","display_url":"sites.google.com\/view\/clt-home","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":26,"listed_count":4,"created_at":"Tue + Sep 05 23:32:41 +0000 2017","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":486,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905212118127042560\/1506184813","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:18:35 +0000 2019","id":1194258188578820096,"id_str":"1194258188578820096","full_text":"I''m + presenting an #AECT19 #aect19inspired report back webinar for @emergeAfrica + and would love to include your voices and highlights - please share yours + via https:\/\/t.co\/mEnstr4iAs More info about the webinar is available at + https:\/\/t.co\/QGFyuIYLi4 @AECT @aectclt @aectdddivision https:\/\/t.co\/hGgYJQ1phR","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[18,25]},{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[66,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[250,255]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[256,264]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[265,280]}],"urls":[{"url":"https:\/\/t.co\/mEnstr4iAs","expanded_url":"https:\/\/admin.flipgrid.com\/manage\/grids\/2071013\/topics\/5843937","display_url":"admin.flipgrid.com\/manage\/grids\/2\u2026","indices":[158,181]},{"url":"https:\/\/t.co\/QGFyuIYLi4","expanded_url":"https:\/\/emergeafrica.net\/14-november-2019-report-back-from-aect19\/","display_url":"emergeafrica.net\/14-november-20\u2026","indices":[226,249]}],"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Nov 21 00:50:04 +0000 2019","id":1197316210242805761,"id_str":"1197316210242805761","full_text":"RT + @gsa_aect: You\u2019re invited to our end of the semester writing sprints! + This is to encourage \u2026.writing, research and practice in education\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":907084983390662656,"id_str":"907084983390662656","name":"Clement + Abai","screen_name":"clement_abai","location":"Stillwater, OK","description":"PhD + student in Learning, Design and Technology. Design-Based Research. Augmented + Reality, Virtual Reality, Mixed Reality and Learning","url":"https:\/\/t.co\/Be4qEbOXsm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Be4qEbOXsm","expanded_url":"http:\/\/clementabai.com","display_url":"clementabai.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":37,"listed_count":0,"created_at":"Mon + Sep 11 03:34:47 +0000 2017","favourites_count":190,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":134,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1512529733891895302\/DVRTYqgA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1512529733891895302\/DVRTYqgA_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Nov 20 21:33:20 +0000 2019","id":1197266701206925313,"id_str":"1197266701206925313","full_text":"You\u2019re + invited to our end of the semester writing sprints! This is to encourage \u2026.writing, + research and practice in educational technology and instructional design. + Mon Nov 25 & Mon Dec 9 - Join at Zoom https:\/\/t.co\/iOpaIVyGEy #aect19 + https:\/\/t.co\/dMps6EY09H","truncated":false,"display_text_range":[0,238],"entities":{"hashtags":[{"text":"aect19","indices":[231,238]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iOpaIVyGEy","expanded_url":"http:\/\/bit.ly\/monwrite","display_url":"bit.ly\/monwrite","indices":[207,230]}],"media":[{"id":1197266697054498819,"id_str":"1197266697054498819","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2Lt7NWsAM1VBA.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2Lt7NWsAM1VBA.png","url":"https:\/\/t.co\/dMps6EY09H","display_url":"pic.twitter.com\/dMps6EY09H","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1197266701206925313\/photo\/1","type":"photo","sizes":{"medium":{"w":714,"h":714,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":714,"h":714,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1197266697054498819,"id_str":"1197266697054498819","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2Lt7NWsAM1VBA.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2Lt7NWsAM1VBA.png","url":"https:\/\/t.co\/dMps6EY09H","display_url":"pic.twitter.com\/dMps6EY09H","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1197266701206925313\/photo\/1","type":"photo","sizes":{"medium":{"w":714,"h":714,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":714,"h":714,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 13 08:20:09 +0000 2019","id":1194530376900853760,"id_str":"1194530376900853760","full_text":"RT + @nicolapallitt: I''m presenting an #AECT19 #aect19inspired report back webinar + for @emergeAfrica and would love to include your voices an\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[37,44]},{"text":"aect19inspired","indices":[45,60]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[85,98]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2950104673,"id_str":"2950104673","name":"Ayodeji + Ibukun","screen_name":"lbukunAA","location":"Oklahoma, USA","description":"B.Engrg + MS MNSE","url":"https:\/\/t.co\/kVfuPQQfYs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kVfuPQQfYs","expanded_url":"http:\/\/www.ayoibukun.com","display_url":"ayoibukun.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":489,"listed_count":0,"created_at":"Mon + Dec 29 12:06:33 +0000 2014","favourites_count":665,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":154,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2950104673\/1574622610","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:18:35 +0000 2019","id":1194258188578820096,"id_str":"1194258188578820096","full_text":"I''m + presenting an #AECT19 #aect19inspired report back webinar for @emergeAfrica + and would love to include your voices and highlights - please share yours + via https:\/\/t.co\/mEnstr4iAs More info about the webinar is available at + https:\/\/t.co\/QGFyuIYLi4 @AECT @aectclt @aectdddivision https:\/\/t.co\/hGgYJQ1phR","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[18,25]},{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[66,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[250,255]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[256,264]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[265,280]}],"urls":[{"url":"https:\/\/t.co\/mEnstr4iAs","expanded_url":"https:\/\/admin.flipgrid.com\/manage\/grids\/2071013\/topics\/5843937","display_url":"admin.flipgrid.com\/manage\/grids\/2\u2026","indices":[158,181]},{"url":"https:\/\/t.co\/QGFyuIYLi4","expanded_url":"https:\/\/emergeafrica.net\/14-november-2019-report-back-from-aect19\/","display_url":"emergeafrica.net\/14-november-20\u2026","indices":[226,249]}],"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Nov 17 11:10:51 +0000 2019","id":1196022885195931648,"id_str":"1196022885195931648","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16645388,"id_str":"16645388","name":"Marko + Ter\u00e4s","screen_name":"markoteras","location":"Finland","description":"Critical + research of digitalization and datafication \/ speculative fiction \/ poetry + & arts as critique https:\/\/t.co\/plfWGV4Gdu \/ @_CreditEd network \/ @TampereUniSOC","url":"https:\/\/t.co\/tWEQqtKUoF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/tWEQqtKUoF","expanded_url":"https:\/\/markoteras.com","display_url":"markoteras.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/plfWGV4Gdu","expanded_url":"http:\/\/carde.group","display_url":"carde.group","indices":[103,126]}]}},"protected":false,"followers_count":1042,"friends_count":1200,"listed_count":81,"created_at":"Wed + Oct 08 05:53:06 +0000 2008","favourites_count":508,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3802,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1329065146593972226\/wicrsODl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1329065146593972226\/wicrsODl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16645388\/1616438817","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"423B31","profile_text_color":"8F8F8F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Nov 25 15:32:30 +0000 2019","id":1198987833354137604,"id_str":"1198987833354137604","full_text":"RT + @caranorth11: Interested in earning comped hotel rooms in Las Vegas? Here + is how I earned free accomodations for #devlearn and #aect19 h\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"devlearn","indices":[116,125]},{"text":"aect19","indices":[130,137]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21444864,"id_str":"21444864","name":"pattishank","screen_name":"pattishank","location":"Denver, + CO, USA","description":"Evidence-based instructional design for better workplace + #training, #learning, and #performance outcomes. Get my books on Amazon. https:\/\/t.co\/2E2tHK85j3","url":"http:\/\/t.co\/jjiHAb2wCj","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/jjiHAb2wCj","expanded_url":"http:\/\/www.pattishank.com","display_url":"pattishank.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/2E2tHK85j3","expanded_url":"http:\/\/pattishank.com","display_url":"pattishank.com","indices":[130,153]}]}},"protected":false,"followers_count":10691,"friends_count":5299,"listed_count":606,"created_at":"Fri + Feb 20 23:10:52 +0000 2009","favourites_count":4589,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":31816,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"59472F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1396505354297438209\/tpgmHuMD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1396505354297438209\/tpgmHuMD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21444864\/1632256053","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000515","profile_sidebar_fill_color":"061127","profile_text_color":"827972","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Nov 25 15:26:03 +0000 2019","id":1198986210720583680,"id_str":"1198986210720583680","full_text":"Interested + in earning comped hotel rooms in Las Vegas? Here is how I earned free accomodations + for #devlearn and #aect19 https:\/\/t.co\/Ov4Cf8WnNN https:\/\/t.co\/JKENJrx3H0","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"devlearn","indices":[99,108]},{"text":"aect19","indices":[113,120]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ov4Cf8WnNN","expanded_url":"https:\/\/buff.ly\/31VyM1B","display_url":"buff.ly\/31VyM1B","indices":[121,144]}],"media":[{"id":1198986208011071488,"id_str":"1198986208011071488","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EKOnmosXsAAduWD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKOnmosXsAAduWD.jpg","url":"https:\/\/t.co\/JKENJrx3H0","display_url":"pic.twitter.com\/JKENJrx3H0","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1198986210720583680\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":458,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":808,"resize":"fit"},"large":{"w":1330,"h":896,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1198986208011071488,"id_str":"1198986208011071488","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EKOnmosXsAAduWD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKOnmosXsAAduWD.jpg","url":"https:\/\/t.co\/JKENJrx3H0","display_url":"pic.twitter.com\/JKENJrx3H0","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1198986210720583680\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":458,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":808,"resize":"fit"},"large":{"w":1330,"h":896,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 14:27:06 +0000 2019","id":1194260335512997888,"id_str":"1194260335512997888","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":204949740,"id_str":"204949740","name":"Suzan + K\u00f6seo\u011flu","screen_name":"SuzanKoseoglu","location":"London, England","description":"educator\/researcher. + lecturer in L&T in higher education. online pedagogy, networked learning, + open scholarship, women empowerment and equity.","url":"https:\/\/t.co\/U6qNiQYvRB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/U6qNiQYvRB","expanded_url":"https:\/\/differentreadings.wordpress.com\/","display_url":"differentreadings.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1685,"friends_count":1421,"listed_count":66,"created_at":"Tue + Oct 19 20:45:53 +0000 2010","favourites_count":6674,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4817,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1383790471776858118\/7zte4_HU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1383790471776858118\/7zte4_HU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/204949740\/1618756263","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 18:44:14 +0000 2019","id":1194325042697388032,"id_str":"1194325042697388032","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/twitter.com\/MarkJ_ohnson\" rel=\"nofollow\"\u003eMark Johnson1\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1039965688000126977,"id_str":"1039965688000126977","name":"Mark + Johnson","screen_name":"MarkJ_ohnson","location":"United States of America","description":"Assistant + Manager at @K12Prospects. K-12 educational sales and marketing. Connecting + with educators. Business opportunities.\n#edtech #education #data","url":"https:\/\/t.co\/9DDpfIA8Ge","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9DDpfIA8Ge","expanded_url":"https:\/\/www.k12prospects.com\/","display_url":"k12prospects.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7370,"friends_count":6387,"listed_count":77,"created_at":"Wed + Sep 12 19:55:16 +0000 2018","favourites_count":19645,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":146990,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1039966314960437248\/yKL_4LvX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1039966314960437248\/yKL_4LvX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1039965688000126977\/1643812421","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 13 00:21:52 +0000 2019","id":1194410011612631040,"id_str":"1194410011612631040","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Dec 03 01:42:03 +0000 2019","id":1201677948849442817,"id_str":"1201677948849442817","full_text":"RT + @caranorth11: Kicking off my blog series talking about #devlearn and #aect19, + my first post talks about both conferences and my pick for\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"devlearn","indices":[58,67]},{"text":"aect19","indices":[72,79]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":171693619,"id_str":"171693619","name":"\ud83c\udfa4David + Gilbert Voice Over \ud83c\udfa4 #Easy24HourVoiceOver","screen_name":"DavidGilbertVO","location":"Global","description":"\"Giving + YOUR business a voice.\"\n#voiceover #corporate #elearning #commercial #explainer + #IVR\n\nGet a quote: david@davidgilbertvoiceover.com\n\n#Easy24HourVoiceOver","url":"https:\/\/t.co\/uBL3Hgo2Vg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uBL3Hgo2Vg","expanded_url":"https:\/\/sleek.bio\/davidgilbertvo","display_url":"sleek.bio\/davidgilbertvo","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3290,"friends_count":4967,"listed_count":62,"created_at":"Tue + Jul 27 23:21:56 +0000 2010","favourites_count":168945,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":76802,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1453064381051416577\/V4EuhqhN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1453064381051416577\/V4EuhqhN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/171693619\/1634848574","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Dec 02 13:09:01 +0000 2019","id":1201488442741477376,"id_str":"1201488442741477376","full_text":"Kicking + off my blog series talking about #devlearn and #aect19, my first post talks + about both conferences and my pick for the top 3 pre-conference moments. @AnnaRoseLeach + @jachutchinson & @lxdify get shoutouts :) #instructionaldesign #conferences + https:\/\/t.co\/F4alIilVHy https:\/\/t.co\/Dxo29Ns7hq","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"devlearn","indices":[41,50]},{"text":"aect19","indices":[55,62]},{"text":"instructionaldesign","indices":[218,238]},{"text":"conferences","indices":[239,251]}],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[157,171]},{"screen_name":"jachutchinson","name":"Jac + Hutchinson","id":14799068,"id_str":"14799068","indices":[172,186]},{"screen_name":"lxdify","name":"Ceren + K\ud83d\udc9crkmaz \u2615","id":724195673143386112,"id_str":"724195673143386112","indices":[193,200]}],"urls":[{"url":"https:\/\/t.co\/F4alIilVHy","expanded_url":"https:\/\/buff.ly\/2rJmIE6","display_url":"buff.ly\/2rJmIE6","indices":[252,275]}],"media":[{"id":1201488440824680449,"id_str":"1201488440824680449","indices":[276,299],"media_url":"http:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","url":"https:\/\/t.co\/Dxo29Ns7hq","display_url":"pic.twitter.com\/Dxo29Ns7hq","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1201488442741477376\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":683,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1024,"h":683,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1201488440824680449,"id_str":"1201488440824680449","indices":[276,299],"media_url":"http:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","url":"https:\/\/t.co\/Dxo29Ns7hq","display_url":"pic.twitter.com\/Dxo29Ns7hq","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1201488442741477376\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":683,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1024,"h":683,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Dec 02 13:09:01 +0000 2019","id":1201488442741477376,"id_str":"1201488442741477376","full_text":"Kicking + off my blog series talking about #devlearn and #aect19, my first post talks + about both conferences and my pick for the top 3 pre-conference moments. @AnnaRoseLeach + @jachutchinson & @lxdify get shoutouts :) #instructionaldesign #conferences + https:\/\/t.co\/F4alIilVHy https:\/\/t.co\/Dxo29Ns7hq","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"devlearn","indices":[41,50]},{"text":"aect19","indices":[55,62]},{"text":"instructionaldesign","indices":[218,238]},{"text":"conferences","indices":[239,251]}],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[157,171]},{"screen_name":"jachutchinson","name":"Jac + Hutchinson","id":14799068,"id_str":"14799068","indices":[172,186]},{"screen_name":"lxdify","name":"Ceren + K\ud83d\udc9crkmaz \u2615","id":724195673143386112,"id_str":"724195673143386112","indices":[193,200]}],"urls":[{"url":"https:\/\/t.co\/F4alIilVHy","expanded_url":"https:\/\/buff.ly\/2rJmIE6","display_url":"buff.ly\/2rJmIE6","indices":[252,275]}],"media":[{"id":1201488440824680449,"id_str":"1201488440824680449","indices":[276,299],"media_url":"http:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","url":"https:\/\/t.co\/Dxo29Ns7hq","display_url":"pic.twitter.com\/Dxo29Ns7hq","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1201488442741477376\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":683,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1024,"h":683,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1201488440824680449,"id_str":"1201488440824680449","indices":[276,299],"media_url":"http:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","url":"https:\/\/t.co\/Dxo29Ns7hq","display_url":"pic.twitter.com\/Dxo29Ns7hq","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1201488442741477376\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":683,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1024,"h":683,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Jan 18 17:24:08 +0000 2020","id":1218584870714314753,"id_str":"1218584870714314753","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17467478,"id_str":"17467478","name":"Marshall + G. Jones","screen_name":"marshallgjones","location":"Rock Hill, SC USA","description":"Professor + of Learning Design & Technology. Musician. Photographer. Tweeting about learning, + technology & whatever else strikes me. Tweets are my own.","url":"https:\/\/t.co\/HGRry3tHo4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HGRry3tHo4","expanded_url":"http:\/\/marshallgjones.com","display_url":"marshallgjones.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1022,"friends_count":889,"listed_count":71,"created_at":"Tue + Nov 18 18:26:51 +0000 2008","favourites_count":7553,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8342,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17467478\/1570054414","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 13 10:30:54 +0000 2019","id":1194563279902904321,"id_str":"1194563279902904321","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":961192358015627264,"id_str":"961192358015627264","name":"CRIT","screen_name":"lsbu_crit","location":"London, + England","description":"The Centre for Research Informed Teaching (CRIT) supports + colleagues across LSBU to develop teaching and learning, curriculum design + and pedagogic scholarship.","url":"https:\/\/t.co\/VVIUot3qHg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VVIUot3qHg","expanded_url":"http:\/\/www.lsbu.ac.uk\/about-us\/professional-services\/centre-for-research-informed-teaching","display_url":"lsbu.ac.uk\/about-us\/profe\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":312,"listed_count":3,"created_at":"Wed + Feb 07 10:58:11 +0000 2018","favourites_count":1493,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":578,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1081147310158028805\/T0-KcQJr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1081147310158028805\/T0-KcQJr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/961192358015627264\/1546602308","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Nov 16 16:19:41 +0000 2019","id":1195738219175956480,"id_str":"1195738219175956480","full_text":"RT + @emergeAfrica: If you missed this session with @nicolapallitt the recording + is now available https:\/\/t.co\/toMDHdVsAB \n@AECT #aect1\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[50,64]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[127,132]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[100,123]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2457094130,"id_str":"2457094130","name":"Dr. + Mohamed Ahmed","screen_name":"Mohamedmetwa","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":340,"friends_count":1710,"listed_count":1,"created_at":"Mon + Apr 21 20:32:18 +0000 2014","favourites_count":1448,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":357,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458343771407540224\/U64vcDqn_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458343771407540224\/U64vcDqn_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2457094130\/1398189550","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Nov 15 15:17:04 +0000 2019","id":1195360071464738817,"id_str":"1195360071464738817","full_text":"If + you missed this session with @nicolapallitt the recording is now available https:\/\/t.co\/toMDHdVsAB \n@AECT + #aect19 #emergeAfrica https:\/\/t.co\/FwbR75FNk4","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19","indices":[115,122]},{"text":"emergeAfrica","indices":[123,136]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[32,46]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[109,114]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[82,105]},{"url":"https:\/\/t.co\/FwbR75FNk4","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display_url":"twitter.com\/emergeAfrica\/s\u2026","indices":[137,160]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"quoted_status":{"created_at":"Thu + Nov 14 12:43:58 +0000 2019","id":1194959156878467072,"id_str":"1194959156878467072","full_text":"In + 30 minutes please join us\nWebinar room is ready https:\/\/t.co\/ej8SNvWvDZ\n@nicolapallitt presenting + https:\/\/t.co\/RWAtmzL8ox","truncated":false,"display_text_range":[0,102],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[76,90]}],"urls":[{"url":"https:\/\/t.co\/ej8SNvWvDZ","expanded_url":"http:\/\/zoom.us\/j\/603307386","display_url":"zoom.us\/j\/603307386","indices":[52,75]}],"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":7,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Mar 01 20:00:41 +0000 2020","id":1234206946732830720,"id_str":"1234206946732830720","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3294167372,"id_str":"3294167372","name":"Augusta + Avram","screen_name":"ELTAugusta","location":"British Columbia, Canada","description":"Language + Education #CdnELTchat","url":"https:\/\/t.co\/OpLrmtQUDp","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OpLrmtQUDp","expanded_url":"https:\/\/twitter.com\/LINCclass","display_url":"twitter.com\/LINCclass","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":789,"friends_count":1325,"listed_count":78,"created_at":"Sun + Jul 26 02:40:59 +0000 2015","favourites_count":5096,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7313,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/704165359020978176\/wbBjVGk1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/704165359020978176\/wbBjVGk1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3294167372\/1437949131","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Nov 15 15:31:25 +0000 2019","id":1195363684689821696,"id_str":"1195363684689821696","full_text":"RT + @emergeAfrica: If you missed this session with @nicolapallitt the recording + is now available https:\/\/t.co\/toMDHdVsAB \n@AECT #aect1\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[50,64]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[127,132]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[100,123]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Nov 15 15:17:04 +0000 2019","id":1195360071464738817,"id_str":"1195360071464738817","full_text":"If + you missed this session with @nicolapallitt the recording is now available https:\/\/t.co\/toMDHdVsAB \n@AECT + #aect19 #emergeAfrica https:\/\/t.co\/FwbR75FNk4","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19","indices":[115,122]},{"text":"emergeAfrica","indices":[123,136]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[32,46]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[109,114]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[82,105]},{"url":"https:\/\/t.co\/FwbR75FNk4","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display_url":"twitter.com\/emergeAfrica\/s\u2026","indices":[137,160]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"quoted_status":{"created_at":"Thu + Nov 14 12:43:58 +0000 2019","id":1194959156878467072,"id_str":"1194959156878467072","full_text":"In + 30 minutes please join us\nWebinar room is ready https:\/\/t.co\/ej8SNvWvDZ\n@nicolapallitt presenting + https:\/\/t.co\/RWAtmzL8ox","truncated":false,"display_text_range":[0,102],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[76,90]}],"urls":[{"url":"https:\/\/t.co\/ej8SNvWvDZ","expanded_url":"http:\/\/zoom.us\/j\/603307386","display_url":"zoom.us\/j\/603307386","indices":[52,75]}],"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":7,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Nov 18 19:44:54 +0000 2019","id":1196514636595712002,"id_str":"1196514636595712002","full_text":"RT + @SultanMutlaq: Third day #aect19inspired #AECTech2019 #aect19inspired Be inspired + https:\/\/t.co\/OdpkOCJKOG","truncated":false,"display_text_range":[0,108],"entities":{"hashtags":[{"text":"aect19inspired","indices":[28,43]},{"text":"AECTech2019","indices":[44,56]},{"text":"aect19inspired","indices":[57,72]}],"symbols":[],"user_mentions":[{"screen_name":"SultanMutlaq","name":"SultanMutlaq","id":370132373,"id_str":"370132373","indices":[3,16]}],"urls":[],"media":[{"id":1187068399836266496,"id_str":"1187068399836266496","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","url":"https:\/\/t.co\/OdpkOCJKOG","display_url":"pic.twitter.com\/OdpkOCJKOG","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1187068404655505410,"source_status_id_str":"1187068404655505410","source_user_id":370132373,"source_user_id_str":"370132373"}]},"extended_entities":{"media":[{"id":1187068399836266496,"id_str":"1187068399836266496","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","url":"https:\/\/t.co\/OdpkOCJKOG","display_url":"pic.twitter.com\/OdpkOCJKOG","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1187068404655505410,"source_status_id_str":"1187068404655505410","source_user_id":370132373,"source_user_id_str":"370132373","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1168887502817697794,"id_str":"1168887502817697794","name":"caroline","screen_name":"carolinem2040","location":"","description":"EME + 2040\ud83e\udd13\ud83d\udcd5\u270f\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":18,"listed_count":0,"created_at":"Tue + Sep 03 14:04:40 +0000 2019","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":36,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1168888173704949765\/FFnAmK2a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1168888173704949765\/FFnAmK2a_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 18:08:56 +0000 2019","id":1187068404655505410,"id_str":"1187068404655505410","full_text":"Third + day #aect19inspired #AECTech2019 #aect19inspired Be inspired https:\/\/t.co\/OdpkOCJKOG","truncated":false,"display_text_range":[0,66],"entities":{"hashtags":[{"text":"aect19inspired","indices":[10,25]},{"text":"AECTech2019","indices":[26,38]},{"text":"aect19inspired","indices":[39,54]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187068399836266496,"id_str":"1187068399836266496","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","url":"https:\/\/t.co\/OdpkOCJKOG","display_url":"pic.twitter.com\/OdpkOCJKOG","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187068399836266496,"id_str":"1187068399836266496","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","url":"https:\/\/t.co\/OdpkOCJKOG","display_url":"pic.twitter.com\/OdpkOCJKOG","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187052419324055552,"in_reply_to_status_id_str":"1187052419324055552","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Nov 12 18:07:38 +0000 2019","id":1194315833855492096,"id_str":"1194315833855492096","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":54487942,"id_str":"54487942","name":"Cheryl + Brown","screen_name":"cherybrown","location":"Christchurch City, New Zealand","description":"Assoc + Prof @UCNZ passionate about digital literacy, citizenship & identity, very + novice te Reo \u0101konga. She\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1504,"friends_count":1440,"listed_count":54,"created_at":"Tue + Jul 07 08:13:16 +0000 2009","favourites_count":5708,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2194,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/768075737064701952\/jZDTSdf9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/768075737064701952\/jZDTSdf9_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Feb 05 19:23:27 +0000 2020","id":1225137879921385472,"id_str":"1225137879921385472","full_text":"RT + @tadousay: Many thanks to @AECTTechTrends for supporting our @gsa_aect with + the Grad Member Musings column! The latest guest author is #\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[29,44]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[64,73]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":804807943,"id_str":"804807943","name":"TechTrends + Editor","screen_name":"AECTTechTrends","location":"","description":"Tweets + from the Editor of TechTrends, an AECT journal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2050,"friends_count":15,"listed_count":57,"created_at":"Wed + Sep 05 15:17:03 +0000 2012","favourites_count":772,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/804807943\/1483653902","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Feb 05 18:21:36 +0000 2020","id":1225122317849657345,"id_str":"1225122317849657345","full_text":"Many + thanks to @AECTTechTrends for supporting our @gsa_aect with the Grad Member + Musings column! The latest guest author is #uidaho''s Ken Cox, a first year + doc student in our C&I program and a member of my #UISTEMEdRG. https:\/\/t.co\/8MuP9Mza8f + #aect #aect20 #aect19","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"uidaho","indices":[124,131]},{"text":"UISTEMEdRG","indices":[210,221]},{"text":"aect","indices":[247,252]},{"text":"aect20","indices":[253,260]},{"text":"aect19","indices":[261,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[15,30]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[50,59]}],"urls":[{"url":"https:\/\/t.co\/8MuP9Mza8f","expanded_url":"https:\/\/doi.org\/10.1007\/s11528-020-00477-5","display_url":"doi.org\/10.1007\/s11528\u2026","indices":[223,246]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 19:24:08 +0000 2019","id":1194335082930028544,"id_str":"1194335082930028544","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":972084726155694080,"id_str":"972084726155694080","name":"Center + for Open Education Research (COER)","screen_name":"_COER_","location":"Oldenburg, + Germany","description":"Increase international collaborative research projects, + innovation & understanding in #OER, #edtech, #lifelonglearning & international + education.","url":"https:\/\/t.co\/sBEQLB6suC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sBEQLB6suC","expanded_url":"http:\/\/www.uni-oldenburg.de\/coer","display_url":"uni-oldenburg.de\/coer","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1354,"friends_count":1115,"listed_count":26,"created_at":"Fri + Mar 09 12:20:33 +0000 2018","favourites_count":1896,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1400,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/972096724327116802\/7WpFWeAH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/972096724327116802\/7WpFWeAH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/972084726155694080\/1520607289","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Nov 15 15:47:25 +0000 2019","id":1195367711276179456,"id_str":"1195367711276179456","full_text":"RT + @emergeAfrica: If you missed this session with @nicolapallitt the recording + is now available https:\/\/t.co\/toMDHdVsAB \n@AECT #aect1\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[50,64]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[127,132]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[100,123]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Nov 15 15:17:04 +0000 2019","id":1195360071464738817,"id_str":"1195360071464738817","full_text":"If + you missed this session with @nicolapallitt the recording is now available https:\/\/t.co\/toMDHdVsAB \n@AECT + #aect19 #emergeAfrica https:\/\/t.co\/FwbR75FNk4","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19","indices":[115,122]},{"text":"emergeAfrica","indices":[123,136]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[32,46]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[109,114]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[82,105]},{"url":"https:\/\/t.co\/FwbR75FNk4","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display_url":"twitter.com\/emergeAfrica\/s\u2026","indices":[137,160]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"quoted_status":{"created_at":"Thu + Nov 14 12:43:58 +0000 2019","id":1194959156878467072,"id_str":"1194959156878467072","full_text":"In + 30 minutes please join us\nWebinar room is ready https:\/\/t.co\/ej8SNvWvDZ\n@nicolapallitt presenting + https:\/\/t.co\/RWAtmzL8ox","truncated":false,"display_text_range":[0,102],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[76,90]}],"urls":[{"url":"https:\/\/t.co\/ej8SNvWvDZ","expanded_url":"http:\/\/zoom.us\/j\/603307386","display_url":"zoom.us\/j\/603307386","indices":[52,75]}],"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":7,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"}]' + recorded_at: 2022-08-09 02:47:14 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 diff --git a/tests/fixtures/lookup_many.yml b/tests/fixtures/lookup_many.yml new file mode 100644 index 0000000..352917f --- /dev/null +++ b/tests/fixtures/lookup_many.yml @@ -0,0 +1,359 @@ +http_interactions: +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1251954312772812801%2C1248064163211096064%2C1234206946732830720%2C1229405350178127872%2C1227652243870097408%2C1225505187453964288%2C1225137879921385472%2C1225122317849657345%2C1219758386436165633%2C1219043574555299840&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:24 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:24 GMT + x-transaction: 689e291c73a05b84 + content-length: '5113' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '296' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '56' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Feb 05 18:21:36 +0000 2020","id":1225122317849657345,"id_str":"1225122317849657345","full_text":"Many + thanks to @AECTTechTrends for supporting our @gsa_aect with the Grad Member + Musings column! The latest guest author is #uidaho''s Ken Cox, a first year + doc student in our C&I program and a member of my #UISTEMEdRG. https:\/\/t.co\/8MuP9Mza8f + #aect #aect20 #aect19","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"uidaho","indices":[124,131]},{"text":"UISTEMEdRG","indices":[210,221]},{"text":"aect","indices":[247,252]},{"text":"aect20","indices":[253,260]},{"text":"aect19","indices":[261,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[15,30]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[50,59]}],"urls":[{"url":"https:\/\/t.co\/8MuP9Mza8f","expanded_url":"https:\/\/doi.org\/10.1007\/s11528-020-00477-5","display_url":"doi.org\/10.1007\/s11528\u2026","indices":[223,246]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Jan 21 23:07:15 +0000 2020","id":1219758386436165633,"id_str":"1219758386436165633","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Apr 19 19:22:23 +0000 2020","id":1251954312772812801,"id_str":"1251954312772812801","full_text":"RT + @RoutledgeEd: Congrats to authors Joseph Rene Corbeil, Maria Elena Corbeil, + and (not pictured) Badrul Khan, who received the Outstanding\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RoutledgeEd","name":"Routledge + Education Books","id":27606068,"id_str":"27606068","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1251951804398669825,"id_str":"1251951804398669825","name":"Harriet + Watkins","screen_name":"Harriet96152202","location":"","description":"Love + educational technology, online learning and just all the things \u2026 higher + ed!","url":"https:\/\/t.co\/ztRaRj9BLo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ztRaRj9BLo","expanded_url":"https:\/\/harrietwatkins.com\/","display_url":"harrietwatkins.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":17,"listed_count":0,"created_at":"Sun + Apr 19 19:12:33 +0000 2020","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1251951950163255299\/cxSX369n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1251951950163255299\/cxSX369n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251951804398669825\/1587323939","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 21:58:17 +0000 2019","id":1187126122376392704,"id_str":"1187126122376392704","full_text":"Congrats + to authors Joseph Rene Corbeil, Maria Elena Corbeil, and (not pictured) Badrul + Khan, who received the Outstanding Book Award from #AECT2019\u2019s Culture, + Learning, and Technology division \u2014 a global treatment of #learninganalytics + and #educationaldatamining. https:\/\/t.co\/aG1kf7a5ew","truncated":false,"display_text_range":[0,264],"entities":{"hashtags":[{"text":"AECT2019","indices":[139,148]},{"text":"learninganalytics","indices":[218,236]},{"text":"educationaldatamining","indices":[241,263]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27606068,"id_str":"27606068","name":"Routledge + Education Books","screen_name":"RoutledgeEd","location":"Global","description":"Supporting + educators, teachers, scholars and students with informative and practical + books based on leading research and classroom practice.","url":"http:\/\/t.co\/j4LZK9ypti","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/j4LZK9ypti","expanded_url":"http:\/\/www.routledge.com\/education","display_url":"routledge.com\/education","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":13833,"friends_count":3278,"listed_count":230,"created_at":"Mon + Mar 30 08:33:32 +0000 2009","favourites_count":2658,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10107,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"6A9ADA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27606068\/1629726175","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"6A9ADA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Feb 17 14:00:51 +0000 2020","id":1229405350178127872,"id_str":"1229405350178127872","full_text":"RT + @tadousay: Many thanks to @AECTTechTrends for supporting our @gsa_aect with + the Grad Member Musings column! The latest guest author is #\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[29,44]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[64,73]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Feb 05 18:21:36 +0000 2020","id":1225122317849657345,"id_str":"1225122317849657345","full_text":"Many + thanks to @AECTTechTrends for supporting our @gsa_aect with the Grad Member + Musings column! The latest guest author is #uidaho''s Ken Cox, a first year + doc student in our C&I program and a member of my #UISTEMEdRG. https:\/\/t.co\/8MuP9Mza8f + #aect #aect20 #aect19","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"uidaho","indices":[124,131]},{"text":"UISTEMEdRG","indices":[210,221]},{"text":"aect","indices":[247,252]},{"text":"aect20","indices":[253,260]},{"text":"aect19","indices":[261,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[15,30]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[50,59]}],"urls":[{"url":"https:\/\/t.co\/8MuP9Mza8f","expanded_url":"https:\/\/doi.org\/10.1007\/s11528-020-00477-5","display_url":"doi.org\/10.1007\/s11528\u2026","indices":[223,246]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Jan 19 23:46:51 +0000 2020","id":1219043574555299840,"id_str":"1219043574555299840","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1088189033266798598,"id_str":"1088189033266798598","name":"AECT + Division of Distance Learning","screen_name":"aectddl","location":"","description":"The + Division of Distance Learning is a special interest group of the Association + for Educational Communications and Technology (AECT).","url":"https:\/\/t.co\/Rg9uXQTkSM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Rg9uXQTkSM","expanded_url":"https:\/\/aect.org\/ddl.php","display_url":"aect.org\/ddl.php","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":861,"friends_count":482,"listed_count":6,"created_at":"Wed + Jan 23 21:37:37 +0000 2019","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088189033266798598\/1548280679","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Mar 01 20:00:41 +0000 2020","id":1234206946732830720,"id_str":"1234206946732830720","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3294167372,"id_str":"3294167372","name":"Augusta + Avram","screen_name":"ELTAugusta","location":"British Columbia, Canada","description":"Language + Education #CdnELTchat","url":"https:\/\/t.co\/OpLrmtQUDp","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OpLrmtQUDp","expanded_url":"https:\/\/twitter.com\/LINCclass","display_url":"twitter.com\/LINCclass","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":789,"friends_count":1325,"listed_count":78,"created_at":"Sun + Jul 26 02:40:59 +0000 2015","favourites_count":5096,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7313,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/704165359020978176\/wbBjVGk1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/704165359020978176\/wbBjVGk1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3294167372\/1437949131","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Feb 05 19:23:27 +0000 2020","id":1225137879921385472,"id_str":"1225137879921385472","full_text":"RT + @tadousay: Many thanks to @AECTTechTrends for supporting our @gsa_aect with + the Grad Member Musings column! The latest guest author is #\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[29,44]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[64,73]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":804807943,"id_str":"804807943","name":"TechTrends + Editor","screen_name":"AECTTechTrends","location":"","description":"Tweets + from the Editor of TechTrends, an AECT journal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2050,"friends_count":15,"listed_count":57,"created_at":"Wed + Sep 05 15:17:03 +0000 2012","favourites_count":772,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/804807943\/1483653902","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Feb 05 18:21:36 +0000 2020","id":1225122317849657345,"id_str":"1225122317849657345","full_text":"Many + thanks to @AECTTechTrends for supporting our @gsa_aect with the Grad Member + Musings column! The latest guest author is #uidaho''s Ken Cox, a first year + doc student in our C&I program and a member of my #UISTEMEdRG. https:\/\/t.co\/8MuP9Mza8f + #aect #aect20 #aect19","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"uidaho","indices":[124,131]},{"text":"UISTEMEdRG","indices":[210,221]},{"text":"aect","indices":[247,252]},{"text":"aect20","indices":[253,260]},{"text":"aect19","indices":[261,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[15,30]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[50,59]}],"urls":[{"url":"https:\/\/t.co\/8MuP9Mza8f","expanded_url":"https:\/\/doi.org\/10.1007\/s11528-020-00477-5","display_url":"doi.org\/10.1007\/s11528\u2026","indices":[223,246]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:48:24 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1251954312772812801%2C1248064163211096064%2C1234206946732830720%2C1229405350178127872%2C1227652243870097408%2C1225505187453964288%2C1225137879921385472%2C1225122317849657345%2C1219758386436165633%2C1219043574555299840&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:24 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:24 GMT + x-transaction: c508df23d44739bd + content-length: '5113' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '295' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '54' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Feb 05 18:21:36 +0000 2020","id":1225122317849657345,"id_str":"1225122317849657345","full_text":"Many + thanks to @AECTTechTrends for supporting our @gsa_aect with the Grad Member + Musings column! The latest guest author is #uidaho''s Ken Cox, a first year + doc student in our C&I program and a member of my #UISTEMEdRG. https:\/\/t.co\/8MuP9Mza8f + #aect #aect20 #aect19","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"uidaho","indices":[124,131]},{"text":"UISTEMEdRG","indices":[210,221]},{"text":"aect","indices":[247,252]},{"text":"aect20","indices":[253,260]},{"text":"aect19","indices":[261,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[15,30]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[50,59]}],"urls":[{"url":"https:\/\/t.co\/8MuP9Mza8f","expanded_url":"https:\/\/doi.org\/10.1007\/s11528-020-00477-5","display_url":"doi.org\/10.1007\/s11528\u2026","indices":[223,246]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Jan 21 23:07:15 +0000 2020","id":1219758386436165633,"id_str":"1219758386436165633","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Apr 19 19:22:23 +0000 2020","id":1251954312772812801,"id_str":"1251954312772812801","full_text":"RT + @RoutledgeEd: Congrats to authors Joseph Rene Corbeil, Maria Elena Corbeil, + and (not pictured) Badrul Khan, who received the Outstanding\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RoutledgeEd","name":"Routledge + Education Books","id":27606068,"id_str":"27606068","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1251951804398669825,"id_str":"1251951804398669825","name":"Harriet + Watkins","screen_name":"Harriet96152202","location":"","description":"Love + educational technology, online learning and just all the things \u2026 higher + ed!","url":"https:\/\/t.co\/ztRaRj9BLo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ztRaRj9BLo","expanded_url":"https:\/\/harrietwatkins.com\/","display_url":"harrietwatkins.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":17,"listed_count":0,"created_at":"Sun + Apr 19 19:12:33 +0000 2020","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1251951950163255299\/cxSX369n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1251951950163255299\/cxSX369n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251951804398669825\/1587323939","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 21:58:17 +0000 2019","id":1187126122376392704,"id_str":"1187126122376392704","full_text":"Congrats + to authors Joseph Rene Corbeil, Maria Elena Corbeil, and (not pictured) Badrul + Khan, who received the Outstanding Book Award from #AECT2019\u2019s Culture, + Learning, and Technology division \u2014 a global treatment of #learninganalytics + and #educationaldatamining. https:\/\/t.co\/aG1kf7a5ew","truncated":false,"display_text_range":[0,264],"entities":{"hashtags":[{"text":"AECT2019","indices":[139,148]},{"text":"learninganalytics","indices":[218,236]},{"text":"educationaldatamining","indices":[241,263]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27606068,"id_str":"27606068","name":"Routledge + Education Books","screen_name":"RoutledgeEd","location":"Global","description":"Supporting + educators, teachers, scholars and students with informative and practical + books based on leading research and classroom practice.","url":"http:\/\/t.co\/j4LZK9ypti","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/j4LZK9ypti","expanded_url":"http:\/\/www.routledge.com\/education","display_url":"routledge.com\/education","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":13833,"friends_count":3278,"listed_count":230,"created_at":"Mon + Mar 30 08:33:32 +0000 2009","favourites_count":2658,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10107,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"6A9ADA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27606068\/1629726175","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"6A9ADA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Feb 17 14:00:51 +0000 2020","id":1229405350178127872,"id_str":"1229405350178127872","full_text":"RT + @tadousay: Many thanks to @AECTTechTrends for supporting our @gsa_aect with + the Grad Member Musings column! The latest guest author is #\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[29,44]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[64,73]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Feb 05 18:21:36 +0000 2020","id":1225122317849657345,"id_str":"1225122317849657345","full_text":"Many + thanks to @AECTTechTrends for supporting our @gsa_aect with the Grad Member + Musings column! The latest guest author is #uidaho''s Ken Cox, a first year + doc student in our C&I program and a member of my #UISTEMEdRG. https:\/\/t.co\/8MuP9Mza8f + #aect #aect20 #aect19","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"uidaho","indices":[124,131]},{"text":"UISTEMEdRG","indices":[210,221]},{"text":"aect","indices":[247,252]},{"text":"aect20","indices":[253,260]},{"text":"aect19","indices":[261,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[15,30]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[50,59]}],"urls":[{"url":"https:\/\/t.co\/8MuP9Mza8f","expanded_url":"https:\/\/doi.org\/10.1007\/s11528-020-00477-5","display_url":"doi.org\/10.1007\/s11528\u2026","indices":[223,246]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Jan 19 23:46:51 +0000 2020","id":1219043574555299840,"id_str":"1219043574555299840","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1088189033266798598,"id_str":"1088189033266798598","name":"AECT + Division of Distance Learning","screen_name":"aectddl","location":"","description":"The + Division of Distance Learning is a special interest group of the Association + for Educational Communications and Technology (AECT).","url":"https:\/\/t.co\/Rg9uXQTkSM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Rg9uXQTkSM","expanded_url":"https:\/\/aect.org\/ddl.php","display_url":"aect.org\/ddl.php","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":861,"friends_count":482,"listed_count":6,"created_at":"Wed + Jan 23 21:37:37 +0000 2019","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088189033266798598\/1548280679","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Mar 01 20:00:41 +0000 2020","id":1234206946732830720,"id_str":"1234206946732830720","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3294167372,"id_str":"3294167372","name":"Augusta + Avram","screen_name":"ELTAugusta","location":"British Columbia, Canada","description":"Language + Education #CdnELTchat","url":"https:\/\/t.co\/OpLrmtQUDp","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OpLrmtQUDp","expanded_url":"https:\/\/twitter.com\/LINCclass","display_url":"twitter.com\/LINCclass","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":789,"friends_count":1325,"listed_count":78,"created_at":"Sun + Jul 26 02:40:59 +0000 2015","favourites_count":5096,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7313,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/704165359020978176\/wbBjVGk1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/704165359020978176\/wbBjVGk1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3294167372\/1437949131","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Feb 05 19:23:27 +0000 2020","id":1225137879921385472,"id_str":"1225137879921385472","full_text":"RT + @tadousay: Many thanks to @AECTTechTrends for supporting our @gsa_aect with + the Grad Member Musings column! The latest guest author is #\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[29,44]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[64,73]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":804807943,"id_str":"804807943","name":"TechTrends + Editor","screen_name":"AECTTechTrends","location":"","description":"Tweets + from the Editor of TechTrends, an AECT journal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2050,"friends_count":15,"listed_count":57,"created_at":"Wed + Sep 05 15:17:03 +0000 2012","favourites_count":772,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/804807943\/1483653902","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Feb 05 18:21:36 +0000 2020","id":1225122317849657345,"id_str":"1225122317849657345","full_text":"Many + thanks to @AECTTechTrends for supporting our @gsa_aect with the Grad Member + Musings column! The latest guest author is #uidaho''s Ken Cox, a first year + doc student in our C&I program and a member of my #UISTEMEdRG. https:\/\/t.co\/8MuP9Mza8f + #aect #aect20 #aect19","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"uidaho","indices":[124,131]},{"text":"UISTEMEdRG","indices":[210,221]},{"text":"aect","indices":[247,252]},{"text":"aect20","indices":[253,260]},{"text":"aect19","indices":[261,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[15,30]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[50,59]}],"urls":[{"url":"https:\/\/t.co\/8MuP9Mza8f","expanded_url":"https:\/\/doi.org\/10.1007\/s11528-020-00477-5","display_url":"doi.org\/10.1007\/s11528\u2026","indices":[223,246]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:48:24 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 diff --git a/tests/fixtures/metadata_from_ids.yml b/tests/fixtures/metadata_from_ids.yml new file mode 100644 index 0000000..d9234a9 --- /dev/null +++ b/tests/fixtures/metadata_from_ids.yml @@ -0,0 +1,180 @@ +http_interactions: +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1251954312772812801%2C1248064163211096064%2C1234206946732830720%2C1229405350178127872%2C1227652243870097408%2C1225505187453964288%2C1225137879921385472%2C1225122317849657345%2C1219758386436165633%2C1219043574555299840&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:47:56 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:47:56 GMT + x-transaction: b7de3e897a74a8b2 + content-length: '5113' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '298' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '66' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Feb 05 18:21:36 +0000 2020","id":1225122317849657345,"id_str":"1225122317849657345","full_text":"Many + thanks to @AECTTechTrends for supporting our @gsa_aect with the Grad Member + Musings column! The latest guest author is #uidaho''s Ken Cox, a first year + doc student in our C&I program and a member of my #UISTEMEdRG. https:\/\/t.co\/8MuP9Mza8f + #aect #aect20 #aect19","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"uidaho","indices":[124,131]},{"text":"UISTEMEdRG","indices":[210,221]},{"text":"aect","indices":[247,252]},{"text":"aect20","indices":[253,260]},{"text":"aect19","indices":[261,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[15,30]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[50,59]}],"urls":[{"url":"https:\/\/t.co\/8MuP9Mza8f","expanded_url":"https:\/\/doi.org\/10.1007\/s11528-020-00477-5","display_url":"doi.org\/10.1007\/s11528\u2026","indices":[223,246]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Jan 21 23:07:15 +0000 2020","id":1219758386436165633,"id_str":"1219758386436165633","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Apr 19 19:22:23 +0000 2020","id":1251954312772812801,"id_str":"1251954312772812801","full_text":"RT + @RoutledgeEd: Congrats to authors Joseph Rene Corbeil, Maria Elena Corbeil, + and (not pictured) Badrul Khan, who received the Outstanding\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RoutledgeEd","name":"Routledge + Education Books","id":27606068,"id_str":"27606068","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1251951804398669825,"id_str":"1251951804398669825","name":"Harriet + Watkins","screen_name":"Harriet96152202","location":"","description":"Love + educational technology, online learning and just all the things \u2026 higher + ed!","url":"https:\/\/t.co\/ztRaRj9BLo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ztRaRj9BLo","expanded_url":"https:\/\/harrietwatkins.com\/","display_url":"harrietwatkins.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":17,"listed_count":0,"created_at":"Sun + Apr 19 19:12:33 +0000 2020","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1251951950163255299\/cxSX369n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1251951950163255299\/cxSX369n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251951804398669825\/1587323939","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 21:58:17 +0000 2019","id":1187126122376392704,"id_str":"1187126122376392704","full_text":"Congrats + to authors Joseph Rene Corbeil, Maria Elena Corbeil, and (not pictured) Badrul + Khan, who received the Outstanding Book Award from #AECT2019\u2019s Culture, + Learning, and Technology division \u2014 a global treatment of #learninganalytics + and #educationaldatamining. https:\/\/t.co\/aG1kf7a5ew","truncated":false,"display_text_range":[0,264],"entities":{"hashtags":[{"text":"AECT2019","indices":[139,148]},{"text":"learninganalytics","indices":[218,236]},{"text":"educationaldatamining","indices":[241,263]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27606068,"id_str":"27606068","name":"Routledge + Education Books","screen_name":"RoutledgeEd","location":"Global","description":"Supporting + educators, teachers, scholars and students with informative and practical + books based on leading research and classroom practice.","url":"http:\/\/t.co\/j4LZK9ypti","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/j4LZK9ypti","expanded_url":"http:\/\/www.routledge.com\/education","display_url":"routledge.com\/education","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":13833,"friends_count":3278,"listed_count":230,"created_at":"Mon + Mar 30 08:33:32 +0000 2009","favourites_count":2658,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10107,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"6A9ADA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27606068\/1629726175","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"6A9ADA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Feb 17 14:00:51 +0000 2020","id":1229405350178127872,"id_str":"1229405350178127872","full_text":"RT + @tadousay: Many thanks to @AECTTechTrends for supporting our @gsa_aect with + the Grad Member Musings column! The latest guest author is #\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[29,44]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[64,73]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Feb 05 18:21:36 +0000 2020","id":1225122317849657345,"id_str":"1225122317849657345","full_text":"Many + thanks to @AECTTechTrends for supporting our @gsa_aect with the Grad Member + Musings column! The latest guest author is #uidaho''s Ken Cox, a first year + doc student in our C&I program and a member of my #UISTEMEdRG. https:\/\/t.co\/8MuP9Mza8f + #aect #aect20 #aect19","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"uidaho","indices":[124,131]},{"text":"UISTEMEdRG","indices":[210,221]},{"text":"aect","indices":[247,252]},{"text":"aect20","indices":[253,260]},{"text":"aect19","indices":[261,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[15,30]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[50,59]}],"urls":[{"url":"https:\/\/t.co\/8MuP9Mza8f","expanded_url":"https:\/\/doi.org\/10.1007\/s11528-020-00477-5","display_url":"doi.org\/10.1007\/s11528\u2026","indices":[223,246]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Jan 19 23:46:51 +0000 2020","id":1219043574555299840,"id_str":"1219043574555299840","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1088189033266798598,"id_str":"1088189033266798598","name":"AECT + Division of Distance Learning","screen_name":"aectddl","location":"","description":"The + Division of Distance Learning is a special interest group of the Association + for Educational Communications and Technology (AECT).","url":"https:\/\/t.co\/Rg9uXQTkSM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Rg9uXQTkSM","expanded_url":"https:\/\/aect.org\/ddl.php","display_url":"aect.org\/ddl.php","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":861,"friends_count":482,"listed_count":6,"created_at":"Wed + Jan 23 21:37:37 +0000 2019","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088189033266798598\/1548280679","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Mar 01 20:00:41 +0000 2020","id":1234206946732830720,"id_str":"1234206946732830720","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3294167372,"id_str":"3294167372","name":"Augusta + Avram","screen_name":"ELTAugusta","location":"British Columbia, Canada","description":"Language + Education #CdnELTchat","url":"https:\/\/t.co\/OpLrmtQUDp","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OpLrmtQUDp","expanded_url":"https:\/\/twitter.com\/LINCclass","display_url":"twitter.com\/LINCclass","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":789,"friends_count":1325,"listed_count":78,"created_at":"Sun + Jul 26 02:40:59 +0000 2015","favourites_count":5096,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7313,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/704165359020978176\/wbBjVGk1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/704165359020978176\/wbBjVGk1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3294167372\/1437949131","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Feb 05 19:23:27 +0000 2020","id":1225137879921385472,"id_str":"1225137879921385472","full_text":"RT + @tadousay: Many thanks to @AECTTechTrends for supporting our @gsa_aect with + the Grad Member Musings column! The latest guest author is #\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[29,44]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[64,73]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":804807943,"id_str":"804807943","name":"TechTrends + Editor","screen_name":"AECTTechTrends","location":"","description":"Tweets + from the Editor of TechTrends, an AECT journal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2050,"friends_count":15,"listed_count":57,"created_at":"Wed + Sep 05 15:17:03 +0000 2012","favourites_count":772,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/804807943\/1483653902","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Feb 05 18:21:36 +0000 2020","id":1225122317849657345,"id_str":"1225122317849657345","full_text":"Many + thanks to @AECTTechTrends for supporting our @gsa_aect with the Grad Member + Musings column! The latest guest author is #uidaho''s Ken Cox, a first year + doc student in our C&I program and a member of my #UISTEMEdRG. https:\/\/t.co\/8MuP9Mza8f + #aect #aect20 #aect19","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"uidaho","indices":[124,131]},{"text":"UISTEMEdRG","indices":[210,221]},{"text":"aect","indices":[247,252]},{"text":"aect20","indices":[253,260]},{"text":"aect19","indices":[261,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[15,30]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[50,59]}],"urls":[{"url":"https:\/\/t.co\/8MuP9Mza8f","expanded_url":"https:\/\/doi.org\/10.1007\/s11528-020-00477-5","display_url":"doi.org\/10.1007\/s11528\u2026","indices":[223,246]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:47:56 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 diff --git a/tests/fixtures/metadata_from_urls.yml b/tests/fixtures/metadata_from_urls.yml new file mode 100644 index 0000000..add34a6 --- /dev/null +++ b/tests/fixtures/metadata_from_urls.yml @@ -0,0 +1,180 @@ +http_interactions: +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1251954312772812801%2C1248064163211096064%2C1234206946732830720%2C1229405350178127872%2C1227652243870097408%2C1225505187453964288%2C1225137879921385472%2C1225122317849657345%2C1219758386436165633%2C1219043574555299840&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:10 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:10 GMT + x-transaction: f89ef3b98126aebe + content-length: '5113' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '297' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '61' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Feb 05 18:21:36 +0000 2020","id":1225122317849657345,"id_str":"1225122317849657345","full_text":"Many + thanks to @AECTTechTrends for supporting our @gsa_aect with the Grad Member + Musings column! The latest guest author is #uidaho''s Ken Cox, a first year + doc student in our C&I program and a member of my #UISTEMEdRG. https:\/\/t.co\/8MuP9Mza8f + #aect #aect20 #aect19","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"uidaho","indices":[124,131]},{"text":"UISTEMEdRG","indices":[210,221]},{"text":"aect","indices":[247,252]},{"text":"aect20","indices":[253,260]},{"text":"aect19","indices":[261,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[15,30]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[50,59]}],"urls":[{"url":"https:\/\/t.co\/8MuP9Mza8f","expanded_url":"https:\/\/doi.org\/10.1007\/s11528-020-00477-5","display_url":"doi.org\/10.1007\/s11528\u2026","indices":[223,246]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Jan 21 23:07:15 +0000 2020","id":1219758386436165633,"id_str":"1219758386436165633","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Apr 19 19:22:23 +0000 2020","id":1251954312772812801,"id_str":"1251954312772812801","full_text":"RT + @RoutledgeEd: Congrats to authors Joseph Rene Corbeil, Maria Elena Corbeil, + and (not pictured) Badrul Khan, who received the Outstanding\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RoutledgeEd","name":"Routledge + Education Books","id":27606068,"id_str":"27606068","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1251951804398669825,"id_str":"1251951804398669825","name":"Harriet + Watkins","screen_name":"Harriet96152202","location":"","description":"Love + educational technology, online learning and just all the things \u2026 higher + ed!","url":"https:\/\/t.co\/ztRaRj9BLo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ztRaRj9BLo","expanded_url":"https:\/\/harrietwatkins.com\/","display_url":"harrietwatkins.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":17,"listed_count":0,"created_at":"Sun + Apr 19 19:12:33 +0000 2020","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1251951950163255299\/cxSX369n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1251951950163255299\/cxSX369n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251951804398669825\/1587323939","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 21:58:17 +0000 2019","id":1187126122376392704,"id_str":"1187126122376392704","full_text":"Congrats + to authors Joseph Rene Corbeil, Maria Elena Corbeil, and (not pictured) Badrul + Khan, who received the Outstanding Book Award from #AECT2019\u2019s Culture, + Learning, and Technology division \u2014 a global treatment of #learninganalytics + and #educationaldatamining. https:\/\/t.co\/aG1kf7a5ew","truncated":false,"display_text_range":[0,264],"entities":{"hashtags":[{"text":"AECT2019","indices":[139,148]},{"text":"learninganalytics","indices":[218,236]},{"text":"educationaldatamining","indices":[241,263]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27606068,"id_str":"27606068","name":"Routledge + Education Books","screen_name":"RoutledgeEd","location":"Global","description":"Supporting + educators, teachers, scholars and students with informative and practical + books based on leading research and classroom practice.","url":"http:\/\/t.co\/j4LZK9ypti","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/j4LZK9ypti","expanded_url":"http:\/\/www.routledge.com\/education","display_url":"routledge.com\/education","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":13833,"friends_count":3278,"listed_count":230,"created_at":"Mon + Mar 30 08:33:32 +0000 2009","favourites_count":2658,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10107,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"6A9ADA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27606068\/1629726175","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"6A9ADA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Feb 17 14:00:51 +0000 2020","id":1229405350178127872,"id_str":"1229405350178127872","full_text":"RT + @tadousay: Many thanks to @AECTTechTrends for supporting our @gsa_aect with + the Grad Member Musings column! The latest guest author is #\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[29,44]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[64,73]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Feb 05 18:21:36 +0000 2020","id":1225122317849657345,"id_str":"1225122317849657345","full_text":"Many + thanks to @AECTTechTrends for supporting our @gsa_aect with the Grad Member + Musings column! The latest guest author is #uidaho''s Ken Cox, a first year + doc student in our C&I program and a member of my #UISTEMEdRG. https:\/\/t.co\/8MuP9Mza8f + #aect #aect20 #aect19","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"uidaho","indices":[124,131]},{"text":"UISTEMEdRG","indices":[210,221]},{"text":"aect","indices":[247,252]},{"text":"aect20","indices":[253,260]},{"text":"aect19","indices":[261,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[15,30]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[50,59]}],"urls":[{"url":"https:\/\/t.co\/8MuP9Mza8f","expanded_url":"https:\/\/doi.org\/10.1007\/s11528-020-00477-5","display_url":"doi.org\/10.1007\/s11528\u2026","indices":[223,246]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Jan 19 23:46:51 +0000 2020","id":1219043574555299840,"id_str":"1219043574555299840","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1088189033266798598,"id_str":"1088189033266798598","name":"AECT + Division of Distance Learning","screen_name":"aectddl","location":"","description":"The + Division of Distance Learning is a special interest group of the Association + for Educational Communications and Technology (AECT).","url":"https:\/\/t.co\/Rg9uXQTkSM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Rg9uXQTkSM","expanded_url":"https:\/\/aect.org\/ddl.php","display_url":"aect.org\/ddl.php","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":861,"friends_count":482,"listed_count":6,"created_at":"Wed + Jan 23 21:37:37 +0000 2019","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088189033266798598\/1548280679","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Mar 01 20:00:41 +0000 2020","id":1234206946732830720,"id_str":"1234206946732830720","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3294167372,"id_str":"3294167372","name":"Augusta + Avram","screen_name":"ELTAugusta","location":"British Columbia, Canada","description":"Language + Education #CdnELTchat","url":"https:\/\/t.co\/OpLrmtQUDp","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OpLrmtQUDp","expanded_url":"https:\/\/twitter.com\/LINCclass","display_url":"twitter.com\/LINCclass","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":789,"friends_count":1325,"listed_count":78,"created_at":"Sun + Jul 26 02:40:59 +0000 2015","favourites_count":5096,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7313,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/704165359020978176\/wbBjVGk1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/704165359020978176\/wbBjVGk1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3294167372\/1437949131","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Feb 05 19:23:27 +0000 2020","id":1225137879921385472,"id_str":"1225137879921385472","full_text":"RT + @tadousay: Many thanks to @AECTTechTrends for supporting our @gsa_aect with + the Grad Member Musings column! The latest guest author is #\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[29,44]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[64,73]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":804807943,"id_str":"804807943","name":"TechTrends + Editor","screen_name":"AECTTechTrends","location":"","description":"Tweets + from the Editor of TechTrends, an AECT journal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2050,"friends_count":15,"listed_count":57,"created_at":"Wed + Sep 05 15:17:03 +0000 2012","favourites_count":772,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/804807943\/1483653902","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Feb 05 18:21:36 +0000 2020","id":1225122317849657345,"id_str":"1225122317849657345","full_text":"Many + thanks to @AECTTechTrends for supporting our @gsa_aect with the Grad Member + Musings column! The latest guest author is #uidaho''s Ken Cox, a first year + doc student in our C&I program and a member of my #UISTEMEdRG. https:\/\/t.co\/8MuP9Mza8f + #aect #aect20 #aect19","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"uidaho","indices":[124,131]},{"text":"UISTEMEdRG","indices":[210,221]},{"text":"aect","indices":[247,252]},{"text":"aect20","indices":[253,260]},{"text":"aect19","indices":[261,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[15,30]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[50,59]}],"urls":[{"url":"https:\/\/t.co\/8MuP9Mza8f","expanded_url":"https:\/\/doi.org\/10.1007\/s11528-020-00477-5","display_url":"doi.org\/10.1007\/s11528\u2026","indices":[223,246]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:48:10 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 diff --git a/tests/fixtures/upstream_tweets.yml b/tests/fixtures/upstream_tweets.yml new file mode 100644 index 0000000..53e685a --- /dev/null +++ b/tests/fixtures/upstream_tweets.yml @@ -0,0 +1,36404 @@ +http_interactions: +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1251954312772812801%2C1248064163211096064%2C1234206946732830720%2C1229405350178127872%2C1227652243870097408%2C1225505187453964288%2C1225137879921385472%2C1225122317849657345%2C1219758386436165633%2C1219043574555299840%2C1218920618336362500%2C1218907439116029956%2C1218892385037508609%2C1218665142210252800%2C1218660838011293696%2C1218658503570620422%2C1218658503570620422%2C1218616574489366530%2C1218584870714314753%2C1218551358095273984%2C1218548635333545984%2C1218548635333545984%2C1215086607218298881%2C1203781724628500486%2C1201677948849442817%2C1201589087444111361%2C1201493265226309633%2C1201488442741477376%2C1201488442741477376%2C1198987833354137604%2C1198986210720583680%2C1198986210720583680%2C1197316210242805761%2C1197299504631828480%2C1197297937241583616%2C1197297818295250944%2C1197297790105407489%2C1197297449670451201%2C1197297049064103937%2C1197296405200678912%2C1197296405200678912%2C1197271655015272448%2C1197266701206925313%2C1197266701206925313%2C1197082972219940864%2C1196910211816013824%2C1196910062196772865%2C1196910062196772865%2C1196610155212705792%2C1196514636595712002%2C1196169283157610502%2C1196166286113460225%2C1196166286113460225%2C1196022885195931648%2C1195791292464336896%2C1195789976405004294%2C1195789976405004294%2C1195738219175956480%2C1195523378867773440%2C1195492203747037186%2C1195475917163913218%2C1195367711276179456%2C1195363684689821696%2C1195360071464738817%2C1195358652133068800%2C1195358652133068800%2C1195354286458322944%2C1194613472857866241%2C1194600303703650304%2C1194600071163195398%2C1194600071163195398%2C1194563279902904321%2C1194531575570030592%2C1194530376900853760%2C1194530376900853760%2C1194426987810557955%2C1194422420855087104%2C1194422420855087104%2C1194417830122446848%2C1194417634982408192%2C1194414006221586432%2C1194413897207418881%2C1194410011612631040%2C1194410011612631040%2C1194354847157555202%2C1194342006153187328%2C1194338418274295813%2C1194337492054544387%2C1194335082930028544%2C1194330775493193729%2C1194330087124033542%2C1194330087124033542%2C1194325042697388032%2C1194324801118228481%2C1194317169565327366%2C1194315833855492096%2C1194315833855492096%2C1194283996697518082%2C1194265030621093890%2C1194260335512997888&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:38 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:38 GMT + x-transaction: 6554eb200fbbd71e + content-length: '45705' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '294' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '392' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Feb 05 18:21:36 +0000 2020","id":1225122317849657345,"id_str":"1225122317849657345","full_text":"Many + thanks to @AECTTechTrends for supporting our @gsa_aect with the Grad Member + Musings column! The latest guest author is #uidaho''s Ken Cox, a first year + doc student in our C&I program and a member of my #UISTEMEdRG. https:\/\/t.co\/8MuP9Mza8f + #aect #aect20 #aect19","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"uidaho","indices":[124,131]},{"text":"UISTEMEdRG","indices":[210,221]},{"text":"aect","indices":[247,252]},{"text":"aect20","indices":[253,260]},{"text":"aect19","indices":[261,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[15,30]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[50,59]}],"urls":[{"url":"https:\/\/t.co\/8MuP9Mza8f","expanded_url":"https:\/\/doi.org\/10.1007\/s11528-020-00477-5","display_url":"doi.org\/10.1007\/s11528\u2026","indices":[223,246]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Nov 16 02:05:59 +0000 2019","id":1195523378867773440,"id_str":"1195523378867773440","full_text":"RT + @emergeAfrica: If you missed this session with @nicolapallitt the recording + is now available https:\/\/t.co\/toMDHdVsAB \n@AECT #aect1\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[50,64]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[127,132]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[100,123]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2950104673,"id_str":"2950104673","name":"Ayodeji + Ibukun","screen_name":"lbukunAA","location":"Oklahoma, USA","description":"B.Engrg + MS MNSE","url":"https:\/\/t.co\/kVfuPQQfYs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kVfuPQQfYs","expanded_url":"http:\/\/www.ayoibukun.com","display_url":"ayoibukun.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":489,"listed_count":0,"created_at":"Mon + Dec 29 12:06:33 +0000 2014","favourites_count":665,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":154,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2950104673\/1574622610","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Nov 15 15:17:04 +0000 2019","id":1195360071464738817,"id_str":"1195360071464738817","full_text":"If + you missed this session with @nicolapallitt the recording is now available https:\/\/t.co\/toMDHdVsAB \n@AECT + #aect19 #emergeAfrica https:\/\/t.co\/FwbR75FNk4","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19","indices":[115,122]},{"text":"emergeAfrica","indices":[123,136]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[32,46]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[109,114]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[82,105]},{"url":"https:\/\/t.co\/FwbR75FNk4","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display_url":"twitter.com\/emergeAfrica\/s\u2026","indices":[137,160]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"quoted_status":{"created_at":"Thu + Nov 14 12:43:58 +0000 2019","id":1194959156878467072,"id_str":"1194959156878467072","full_text":"In + 30 minutes please join us\nWebinar room is ready https:\/\/t.co\/ej8SNvWvDZ\n@nicolapallitt presenting + https:\/\/t.co\/RWAtmzL8ox","truncated":false,"display_text_range":[0,102],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[76,90]}],"urls":[{"url":"https:\/\/t.co\/ej8SNvWvDZ","expanded_url":"http:\/\/zoom.us\/j\/603307386","display_url":"zoom.us\/j\/603307386","indices":[52,75]}],"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":7,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Nov 13 00:37:44 +0000 2019","id":1194414006221586432,"id_str":"1194414006221586432","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1050002301585383424,"id_str":"1050002301585383424","name":"@VT_IDT","screen_name":"vt_idt","location":"Blacksburg, + VA USA","description":"VT IDT grad program prepares its graduates to practice + in a variety of settings including industry, K-12, higher ed, non-profit, + and government.","url":"https:\/\/t.co\/9nRnDb3LeV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9nRnDb3LeV","expanded_url":"https:\/\/tinyurl.com\/y5zbq5lb","display_url":"tinyurl.com\/y5zbq5lb","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":104,"friends_count":126,"listed_count":0,"created_at":"Wed + Oct 10 12:37:11 +0000 2018","favourites_count":707,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":253,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1050409400655986688\/1jff4TTj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1050409400655986688\/1jff4TTj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1050002301585383424\/1539374470","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 20 21:53:01 +0000 2019","id":1197271655015272448,"id_str":"1197271655015272448","full_text":"AECT-RTD + Call for Nominations [Due 12\/1\/2019]. #aectRTD #aect19 #aect19inspired @AECT + https:\/\/t.co\/KCgYAFb1eC","truncated":false,"display_text_range":[0,85],"entities":{"hashtags":[{"text":"aectRTD","indices":[47,55]},{"text":"aect19","indices":[56,63]},{"text":"aect19inspired","indices":[64,79]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[80,85]}],"urls":[],"media":[{"id":1197271649692704768,"id_str":"1197271649692704768","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","url":"https:\/\/t.co\/KCgYAFb1eC","display_url":"pic.twitter.com\/KCgYAFb1eC","expanded_url":"https:\/\/twitter.com\/rtdaect\/status\/1197271655015272448\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1197271649692704768,"id_str":"1197271649692704768","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","url":"https:\/\/t.co\/KCgYAFb1eC","display_url":"pic.twitter.com\/KCgYAFb1eC","expanded_url":"https:\/\/twitter.com\/rtdaect\/status\/1197271655015272448\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1197270185960361984,"id_str":"1197270185960361984","name":"AECT + Research & Theory Division","screen_name":"aectrtd","location":"","description":"AECT''s + (https:\/\/t.co\/6DFTIdk9db) Research & Theory Division promotes development + and advancement of theory; and supports, fosters, and mentors emerging scholars. + #aectRTD","url":"https:\/\/t.co\/0AKlTYZtfT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0AKlTYZtfT","expanded_url":"https:\/\/sites.google.com\/view\/aectrtd\/home","display_url":"sites.google.com\/view\/aectrtd\/h\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/6DFTIdk9db","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[8,31]}]}},"protected":false,"followers_count":194,"friends_count":13,"listed_count":2,"created_at":"Wed + Nov 20 21:47:30 +0000 2019","favourites_count":66,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1197271108489080832\/wtFlrFm9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1197271108489080832\/wtFlrFm9_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Nov 20 23:36:52 +0000 2019","id":1197297790105407489,"id_str":"1197297790105407489","full_text":"RT + @aectrtd: AECT-RTD Call for Nominations [Due 12\/1\/2019]. #aectRTD #aect19 + #aect19inspired @AECT https:\/\/t.co\/KCgYAFb1eC","truncated":false,"display_text_range":[0,122],"entities":{"hashtags":[{"text":"aectRTD","indices":[60,68]},{"text":"aect19","indices":[69,76]},{"text":"aect19inspired","indices":[77,92]}],"symbols":[],"user_mentions":[{"screen_name":"aectrtd","name":"AECT + Research & Theory Division","id":1197270185960361984,"id_str":"1197270185960361984","indices":[3,11]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[93,98]}],"urls":[],"media":[{"id":1197271649692704768,"id_str":"1197271649692704768","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","url":"https:\/\/t.co\/KCgYAFb1eC","display_url":"pic.twitter.com\/KCgYAFb1eC","expanded_url":"https:\/\/twitter.com\/rtdaect\/status\/1197271655015272448\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"}},"source_status_id":1197271655015272448,"source_status_id_str":"1197271655015272448","source_user_id":1197270185960361984,"source_user_id_str":"1197270185960361984"}]},"extended_entities":{"media":[{"id":1197271649692704768,"id_str":"1197271649692704768","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","url":"https:\/\/t.co\/KCgYAFb1eC","display_url":"pic.twitter.com\/KCgYAFb1eC","expanded_url":"https:\/\/twitter.com\/rtdaect\/status\/1197271655015272448\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"}},"source_status_id":1197271655015272448,"source_status_id_str":"1197271655015272448","source_user_id":1197270185960361984,"source_user_id_str":"1197270185960361984","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Nov 20 21:53:01 +0000 2019","id":1197271655015272448,"id_str":"1197271655015272448","full_text":"AECT-RTD + Call for Nominations [Due 12\/1\/2019]. #aectRTD #aect19 #aect19inspired @AECT + https:\/\/t.co\/KCgYAFb1eC","truncated":false,"display_text_range":[0,85],"entities":{"hashtags":[{"text":"aectRTD","indices":[47,55]},{"text":"aect19","indices":[56,63]},{"text":"aect19inspired","indices":[64,79]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[80,85]}],"urls":[],"media":[{"id":1197271649692704768,"id_str":"1197271649692704768","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","url":"https:\/\/t.co\/KCgYAFb1eC","display_url":"pic.twitter.com\/KCgYAFb1eC","expanded_url":"https:\/\/twitter.com\/rtdaect\/status\/1197271655015272448\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1197271649692704768,"id_str":"1197271649692704768","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","url":"https:\/\/t.co\/KCgYAFb1eC","display_url":"pic.twitter.com\/KCgYAFb1eC","expanded_url":"https:\/\/twitter.com\/rtdaect\/status\/1197271655015272448\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1197270185960361984,"id_str":"1197270185960361984","name":"AECT + Research & Theory Division","screen_name":"aectrtd","location":"","description":"AECT''s + (https:\/\/t.co\/6DFTIdk9db) Research & Theory Division promotes development + and advancement of theory; and supports, fosters, and mentors emerging scholars. + #aectRTD","url":"https:\/\/t.co\/0AKlTYZtfT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0AKlTYZtfT","expanded_url":"https:\/\/sites.google.com\/view\/aectrtd\/home","display_url":"sites.google.com\/view\/aectrtd\/h\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/6DFTIdk9db","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[8,31]}]}},"protected":false,"followers_count":194,"friends_count":13,"listed_count":2,"created_at":"Wed + Nov 20 21:47:30 +0000 2019","favourites_count":66,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1197271108489080832\/wtFlrFm9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1197271108489080832\/wtFlrFm9_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Jan 18 22:16:43 +0000 2020","id":1218658503570620422,"id_str":"1218658503570620422","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2563684237,"id_str":"2563684237","name":"\ud835\ude1a\ud835\ude26\ud835\ude23\ud835\ude22\ud835\ude34\ud835\ude35\ud835\ude2a\ud835\ude22\ud835\ude2f + \ud835\ude13\ud835\ude30\ud835\ude31\ud835\ude26\ud835\ude3b \ud835\ude11\ud835\ude33., + M.Ed.","screen_name":"SebLopJr","location":"Beaumont, TX","description":"-Network + Admin -Ed.D student at @ISDT_SHSU -M.Ed. of Inst Tech from @SamHoustonState + -BAAS from @LamarUniversity -Google EDU *views expressed are my own*","url":"https:\/\/t.co\/UzLzwoVtIk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UzLzwoVtIk","expanded_url":"http:\/\/SebLopezJr.net","display_url":"SebLopezJr.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":760,"friends_count":2605,"listed_count":12,"created_at":"Thu + Jun 12 16:09:12 +0000 2014","favourites_count":13587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2025,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1129071740854951937\/YDv04AoR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1129071740854951937\/YDv04AoR_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2563684237\/1405631793","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0000A0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Jan 18 19:30:06 +0000 2020","id":1218616574489366530,"id_str":"1218616574489366530","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153141293,"id_str":"153141293","name":"Ana-Paula + Correia \u2600\ufe0f","screen_name":"correia65","location":"","description":"Professor + of Learning Technologies @OhioState @OSUehe. Director of @OSUcete. Learning + Designer. Researcher. Leader. @LEDresearch \ud83c\uddfa\ud83c\uddf8\ud83c\uddf5\ud83c\uddf9","url":"https:\/\/t.co\/mgeGAbT0AP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mgeGAbT0AP","expanded_url":"https:\/\/www.ana-paulacorreia.com\/","display_url":"ana-paulacorreia.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3494,"friends_count":3241,"listed_count":29,"created_at":"Mon + Jun 07 20:00:45 +0000 2010","favourites_count":10293,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":654,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1149684446838345728\/1XaCxgEx_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1149684446838345728\/1XaCxgEx_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153141293\/1562941057","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Nov 15 22:57:24 +0000 2019","id":1195475917163913218,"id_str":"1195475917163913218","full_text":"RT + @emergeAfrica: If you missed this session with @nicolapallitt the recording + is now available https:\/\/t.co\/toMDHdVsAB \n@AECT #aect1\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[50,64]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[127,132]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[100,123]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":123168263,"id_str":"123168263","name":"Irene + Maweu \ud83c\udf3b\ud83c\udf3b","screen_name":"wavinya66","location":"Kenya","description":"By + Faith \/ With Respect \/ Facilitating from the heart \/ Liberating Structures + Gospel \/ IAF Member","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":762,"friends_count":772,"listed_count":9,"created_at":"Mon + Mar 15 06:31:31 +0000 2010","favourites_count":10218,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5795,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123168263\/1610274071","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Nov 15 15:17:04 +0000 2019","id":1195360071464738817,"id_str":"1195360071464738817","full_text":"If + you missed this session with @nicolapallitt the recording is now available https:\/\/t.co\/toMDHdVsAB \n@AECT + #aect19 #emergeAfrica https:\/\/t.co\/FwbR75FNk4","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19","indices":[115,122]},{"text":"emergeAfrica","indices":[123,136]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[32,46]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[109,114]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[82,105]},{"url":"https:\/\/t.co\/FwbR75FNk4","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display_url":"twitter.com\/emergeAfrica\/s\u2026","indices":[137,160]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"quoted_status":{"created_at":"Thu + Nov 14 12:43:58 +0000 2019","id":1194959156878467072,"id_str":"1194959156878467072","full_text":"In + 30 minutes please join us\nWebinar room is ready https:\/\/t.co\/ej8SNvWvDZ\n@nicolapallitt presenting + https:\/\/t.co\/RWAtmzL8ox","truncated":false,"display_text_range":[0,102],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[76,90]}],"urls":[{"url":"https:\/\/t.co\/ej8SNvWvDZ","expanded_url":"http:\/\/zoom.us\/j\/603307386","display_url":"zoom.us\/j\/603307386","indices":[52,75]}],"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":7,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Nov 16 19:50:35 +0000 2019","id":1195791292464336896,"id_str":"1195791292464336896","full_text":"RT + @emergeAfrica: If you missed this session with @nicolapallitt the recording + is now available https:\/\/t.co\/toMDHdVsAB \n@AECT #aect1\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[50,64]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[127,132]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[100,123]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Nov 15 15:17:04 +0000 2019","id":1195360071464738817,"id_str":"1195360071464738817","full_text":"If + you missed this session with @nicolapallitt the recording is now available https:\/\/t.co\/toMDHdVsAB \n@AECT + #aect19 #emergeAfrica https:\/\/t.co\/FwbR75FNk4","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19","indices":[115,122]},{"text":"emergeAfrica","indices":[123,136]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[32,46]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[109,114]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[82,105]},{"url":"https:\/\/t.co\/FwbR75FNk4","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display_url":"twitter.com\/emergeAfrica\/s\u2026","indices":[137,160]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"quoted_status":{"created_at":"Thu + Nov 14 12:43:58 +0000 2019","id":1194959156878467072,"id_str":"1194959156878467072","full_text":"In + 30 minutes please join us\nWebinar room is ready https:\/\/t.co\/ej8SNvWvDZ\n@nicolapallitt presenting + https:\/\/t.co\/RWAtmzL8ox","truncated":false,"display_text_range":[0,102],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[76,90]}],"urls":[{"url":"https:\/\/t.co\/ej8SNvWvDZ","expanded_url":"http:\/\/zoom.us\/j\/603307386","display_url":"zoom.us\/j\/603307386","indices":[52,75]}],"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":7,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Nov 25 15:26:03 +0000 2019","id":1198986210720583680,"id_str":"1198986210720583680","full_text":"Interested + in earning comped hotel rooms in Las Vegas? Here is how I earned free accomodations + for #devlearn and #aect19 https:\/\/t.co\/Ov4Cf8WnNN https:\/\/t.co\/JKENJrx3H0","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"devlearn","indices":[99,108]},{"text":"aect19","indices":[113,120]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ov4Cf8WnNN","expanded_url":"https:\/\/buff.ly\/31VyM1B","display_url":"buff.ly\/31VyM1B","indices":[121,144]}],"media":[{"id":1198986208011071488,"id_str":"1198986208011071488","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EKOnmosXsAAduWD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKOnmosXsAAduWD.jpg","url":"https:\/\/t.co\/JKENJrx3H0","display_url":"pic.twitter.com\/JKENJrx3H0","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1198986210720583680\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":458,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":808,"resize":"fit"},"large":{"w":1330,"h":896,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1198986208011071488,"id_str":"1198986208011071488","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EKOnmosXsAAduWD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKOnmosXsAAduWD.jpg","url":"https:\/\/t.co\/JKENJrx3H0","display_url":"pic.twitter.com\/JKENJrx3H0","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1198986210720583680\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":458,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":808,"resize":"fit"},"large":{"w":1330,"h":896,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Jan 18 22:26:00 +0000 2020","id":1218660838011293696,"id_str":"1218660838011293696","full_text":"Great + up for the opportunity to present and write with @RitaFennelly and @WEHSLibrary + about the impact #socialmedia can have on #learning and beyond! #aect19 #instructionaldesign + #learningdesign #graduateschool https:\/\/t.co\/SiQNlWaJn9","truncated":false,"display_text_range":[0,210],"entities":{"hashtags":[{"text":"socialmedia","indices":[103,115]},{"text":"learning","indices":[128,137]},{"text":"aect19","indices":[150,157]},{"text":"instructionaldesign","indices":[158,178]},{"text":"learningdesign","indices":[179,194]},{"text":"graduateschool","indices":[195,210]}],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[55,68]},{"screen_name":"WEHSLibrary","name":"Weslaco + East High School Library-Renee Dyer","id":175049060,"id_str":"175049060","indices":[73,85]}],"urls":[{"url":"https:\/\/t.co\/SiQNlWaJn9","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984","display_url":"twitter.com\/AECT\/status\/12\u2026","indices":[211,234]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15635142,"id_str":"15635142","name":"Dr. + Kimberly N. LaPrairie","screen_name":"Tech_DrL","location":"Texas, USA","description":"\ud83d\udc69\ud83c\udffc\u200d\ud83c\udf93\ud83d\udc69\ud83c\udffc\u200d\ud83c\udfebAssoc + Prof of Instructional Systems Design & Technology\ud83d\udc69\ud83c\udffc\u200d\ud83d\udcbb\u2022 + Mom of 4\ud83d\udc68\ud83c\udffb\u200d\ud83d\udcbb\ud83d\udc71\ud83c\udffb\u200d\u2640\ufe0f\ud83d\udc67\ud83c\udffb\ud83e\uddd2\ud83c\udffc\u2022 + #FatFueled #Runner #PelotonRider\ud83e\udd51\ud83e\udd53\ud83c\udfc3\ud83c\udffc\u200d\u2640\ufe0f\ud83d\udeb4\ud83c\udffc\u200d\u2640\ufe0f","url":"https:\/\/t.co\/69VXyGUkoo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/69VXyGUkoo","expanded_url":"https:\/\/www.instagram.com\/Tech_DrL\/","display_url":"instagram.com\/Tech_DrL\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1470,"friends_count":1395,"listed_count":124,"created_at":"Mon + Jul 28 17:54:31 +0000 2008","favourites_count":4299,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6412,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1516648007651008515\/fwC4vMQz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1516648007651008515\/fwC4vMQz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15635142\/1531239446","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ED822F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"361610d5aa1f6719","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/361610d5aa1f6719.json","place_type":"city","name":"Conroe","full_name":"Conroe, + TX","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-95.679001,30.23105],[-95.3972667,30.23105],[-95.3972667,30.443978],[-95.679001,30.443978]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1218548635333545984,"quoted_status_id_str":"1218548635333545984","quoted_status_permalink":{"url":"https:\/\/t.co\/SiQNlWaJn9","expanded":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984","display":"twitter.com\/AECT\/status\/12\u2026"},"quoted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Nov 15 15:11:26 +0000 2019","id":1195358652133068800,"id_str":"1195358652133068800","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":155090409,"id_str":"155090409","name":"George + Station","screen_name":"harmonygritz","location":"California Central Coast","description":"#HigherEd + cruise ship has hit the Coronavirus iceberg; the orchestra plays on. My status: + unremitting beta, awaiting moderation. RT\/Like: just a bookmark, folks","url":"https:\/\/t.co\/gt8xIos5nQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gt8xIos5nQ","expanded_url":"http:\/\/riftofthemagi.blogspot.com","display_url":"riftofthemagi.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2276,"friends_count":4230,"listed_count":418,"created_at":"Sun + Jun 13 02:58:11 +0000 2010","favourites_count":24699,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":62781,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/570966498199494656\/StyDbq8-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/570966498199494656\/StyDbq8-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/155090409\/1620276700","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"B7F5F7","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 19:33:42 +0000 2019","id":1194337492054544387,"id_str":"1194337492054544387","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62065310,"id_str":"62065310","name":"Virginia + Rod\u00e9s","screen_name":"vrodes","location":"Uruguay","description":"comunicaci\u00f3n, + educaci\u00f3n, tecnolog\u00edas, organizaciones, g\u00e9nero y todas las + otras cosas mucho m\u00e1s importantes","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1724,"friends_count":512,"listed_count":118,"created_at":"Sat + Aug 01 16:25:36 +0000 2009","favourites_count":19053,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":29434,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"05570B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1454459426014965763\/8b6jYzNH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1454459426014965763\/8b6jYzNH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62065310\/1646621949","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3E0447","profile_sidebar_border_color":"B68B9E","profile_sidebar_fill_color":"758FF5","profile_text_color":"030303","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 18:12:57 +0000 2019","id":1194317169565327366,"id_str":"1194317169565327366","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153617129,"id_str":"153617129","name":"Lucy + Appert","screen_name":"Lucyappert","location":"New York, NY","description":"Director, + Educational Technology, New York University Faculty of Arts & Sciences","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":896,"friends_count":706,"listed_count":103,"created_at":"Wed + Jun 09 01:04:17 +0000 2010","favourites_count":3008,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6876,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1466444229266354181\/u-3lUjfw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1466444229266354181\/u-3lUjfw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153617129\/1401729538","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Jan 19 13:46:05 +0000 2020","id":1218892385037508609,"id_str":"1218892385037508609","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 13 13:50:21 +0000 2019","id":1194613472857866241,"id_str":"1194613472857866241","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":149239362,"id_str":"149239362","name":"umasslinguistics","screen_name":"UMassLinguistic","location":"Boston","description":"The + University Of Massachusetts Boston Applied Linguistics Department. Account + managed by @koutropoulos","url":"https:\/\/t.co\/rzrwRrVdjC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rzrwRrVdjC","expanded_url":"http:\/\/www.umb.edu\/umasslinguistics","display_url":"umb.edu\/umasslinguisti\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1627,"friends_count":763,"listed_count":58,"created_at":"Fri + May 28 19:49:42 +0000 2010","favourites_count":1545,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13393,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1518633375443173376\/epKXDCzk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1518633375443173376\/epKXDCzk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/149239362\/1390833190","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Jan 21 23:07:15 +0000 2020","id":1219758386436165633,"id_str":"1219758386436165633","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 19:04:17 +0000 2019","id":1194330087124033542,"id_str":"1194330087124033542","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14788950,"id_str":"14788950","name":"Leo + Havemann","screen_name":"leohavemann","location":"London, United Kingdom","description":"Higher, + open, digital ed @UCL_ProDev @OpenUCL | PGR in open\/ed policy, @IETatOU | + Fellow, @CODE_UoL | #go_gn #altc #m25ltg #LTHEchat #aptconf","url":"https:\/\/t.co\/d17qkjMDn5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/d17qkjMDn5","expanded_url":"http:\/\/leohavemann.wordpress.com","display_url":"leohavemann.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4344,"friends_count":5000,"listed_count":245,"created_at":"Thu + May 15 17:29:37 +0000 2008","favourites_count":89232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27808,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218565046424547329\/1Nj9kQQA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218565046424547329\/1Nj9kQQA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14788950\/1436434892","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F0EDFC","profile_text_color":"1C3716","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Nov 16 19:45:21 +0000 2019","id":1195789976405004294,"id_str":"1195789976405004294","full_text":"RT + @emergeAfrica: If you missed this session with @nicolapallitt the recording + is now available https:\/\/t.co\/toMDHdVsAB \n@AECT #aect1\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[50,64]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[127,132]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[100,123]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Nov 15 15:17:04 +0000 2019","id":1195360071464738817,"id_str":"1195360071464738817","full_text":"If + you missed this session with @nicolapallitt the recording is now available https:\/\/t.co\/toMDHdVsAB \n@AECT + #aect19 #emergeAfrica https:\/\/t.co\/FwbR75FNk4","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19","indices":[115,122]},{"text":"emergeAfrica","indices":[123,136]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[32,46]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[109,114]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[82,105]},{"url":"https:\/\/t.co\/FwbR75FNk4","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display_url":"twitter.com\/emergeAfrica\/s\u2026","indices":[137,160]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"quoted_status":{"created_at":"Thu + Nov 14 12:43:58 +0000 2019","id":1194959156878467072,"id_str":"1194959156878467072","full_text":"In + 30 minutes please join us\nWebinar room is ready https:\/\/t.co\/ej8SNvWvDZ\n@nicolapallitt presenting + https:\/\/t.co\/RWAtmzL8ox","truncated":false,"display_text_range":[0,102],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[76,90]}],"urls":[{"url":"https:\/\/t.co\/ej8SNvWvDZ","expanded_url":"http:\/\/zoom.us\/j\/603307386","display_url":"zoom.us\/j\/603307386","indices":[52,75]}],"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":7,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Nov 12 19:07:01 +0000 2019","id":1194330775493193729,"id_str":"1194330775493193729","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":139627261,"id_str":"139627261","name":"Sukaina + Walji","screen_name":"sukainaw","location":"","description":"Digital education + strategy and operations. Researching: #MOOCs #UnbundledHigherEd #Assessment + She\/Her. #FemEdtech","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2273,"friends_count":3081,"listed_count":118,"created_at":"Mon + May 03 05:51:45 +0000 2010","favourites_count":8987,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9118,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1401160636969664516\/grke-HQn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1401160636969664516\/grke-HQn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/139627261\/1658525255","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 19:37:23 +0000 2019","id":1194338418274295813,"id_str":"1194338418274295813","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Nov 13 08:24:55 +0000 2019","id":1194531575570030592,"id_str":"1194531575570030592","full_text":"@eromerohall + @emergeAfrica @AECT @aectclt @aectdddivision The flip code is https:\/\/t.co\/Tju65xaBYn + and this has been updated so there is no code\/password required to contribute + to the topic ''Collecting our #AECT19 HIghlights''","truncated":false,"display_text_range":[58,225],"entities":{"hashtags":[{"text":"AECT19","indices":[206,213]}],"symbols":[],"user_mentions":[{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[0,12]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[13,26]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[33,41]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[42,57]}],"urls":[{"url":"https:\/\/t.co\/Tju65xaBYn","expanded_url":"https:\/\/flipgrid.com\/aectemergeafrica","display_url":"flipgrid.com\/aectemergeafri\u2026","indices":[75,98]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1194337180057047041,"in_reply_to_status_id_str":"1194337180057047041","in_reply_to_user_id":918747876,"in_reply_to_user_id_str":"918747876","in_reply_to_screen_name":"eromerohall","user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Nov 13 12:57:06 +0000 2019","id":1194600071163195398,"id_str":"1194600071163195398","full_text":"RT + @nicolapallitt: I''m presenting an #AECT19 #aect19inspired report back webinar + for @emergeAfrica and would love to include your voices an\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[37,44]},{"text":"aect19inspired","indices":[45,60]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[85,98]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":52675234,"id_str":"52675234","name":"Gabriel + Konayuma","screen_name":"GabrielKonayuma","location":"Lusaka, Zambia","description":"A + Christian, Vocational Training educator specialised in learning, entrepreneurship, + educational technology.\n#edtech, #vocational_education, #entrepreneurship","url":"https:\/\/t.co\/ajMvMd1Eyh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ajMvMd1Eyh","expanded_url":"https:\/\/goo.gl\/nzZwHm","display_url":"goo.gl\/nzZwHm","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":571,"friends_count":1525,"listed_count":10,"created_at":"Wed + Jul 01 08:57:05 +0000 2009","favourites_count":3473,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4828,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643929621214437376\/9Q7jHSOH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643929621214437376\/9Q7jHSOH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52675234\/1608527579","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:18:35 +0000 2019","id":1194258188578820096,"id_str":"1194258188578820096","full_text":"I''m + presenting an #AECT19 #aect19inspired report back webinar for @emergeAfrica + and would love to include your voices and highlights - please share yours + via https:\/\/t.co\/mEnstr4iAs More info about the webinar is available at + https:\/\/t.co\/QGFyuIYLi4 @AECT @aectclt @aectdddivision https:\/\/t.co\/hGgYJQ1phR","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[18,25]},{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[66,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[250,255]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[256,264]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[265,280]}],"urls":[{"url":"https:\/\/t.co\/mEnstr4iAs","expanded_url":"https:\/\/admin.flipgrid.com\/manage\/grids\/2071013\/topics\/5843937","display_url":"admin.flipgrid.com\/manage\/grids\/2\u2026","indices":[158,181]},{"url":"https:\/\/t.co\/QGFyuIYLi4","expanded_url":"https:\/\/emergeafrica.net\/14-november-2019-report-back-from-aect19\/","display_url":"emergeafrica.net\/14-november-20\u2026","indices":[226,249]}],"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Nov 15 14:54:05 +0000 2019","id":1195354286458322944,"id_str":"1195354286458322944","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15654288,"id_str":"15654288","name":"Scott + J. Warren","screen_name":"constatively","location":"Denton, TX","description":"Professor + of learning tech; instructional design; ethics and greening schools\/orgs; + Business research - systems dev, operations, strategy","url":"https:\/\/t.co\/n5xEkVLkO1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/n5xEkVLkO1","expanded_url":"http:\/\/www.scottjwarren.net","display_url":"scottjwarren.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2186,"friends_count":4880,"listed_count":112,"created_at":"Wed + Jul 30 00:56:48 +0000 2008","favourites_count":62322,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15995,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1391548718940409862\/optqE67f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1391548718940409862\/optqE67f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15654288\/1523275532","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 13 00:52:10 +0000 2019","id":1194417634982408192,"id_str":"1194417634982408192","full_text":"@AECT + @aectclt report back from #AECT19 @emergeAfrica @aectdddivision https:\/\/t.co\/jNwgN3pw0R","truncated":false,"display_text_range":[0,69],"entities":{"hashtags":[{"text":"AECT19","indices":[32,39]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[6,14]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[40,53]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[54,69]}],"urls":[{"url":"https:\/\/t.co\/jNwgN3pw0R","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096","display_url":"twitter.com\/nicolapallitt\/\u2026","indices":[70,93]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194258188578820096,"quoted_status_id_str":"1194258188578820096","quoted_status_permalink":{"url":"https:\/\/t.co\/jNwgN3pw0R","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096","display":"twitter.com\/nicolapallitt\/\u2026"},"quoted_status":{"created_at":"Tue + Nov 12 14:18:35 +0000 2019","id":1194258188578820096,"id_str":"1194258188578820096","full_text":"I''m + presenting an #AECT19 #aect19inspired report back webinar for @emergeAfrica + and would love to include your voices and highlights - please share yours + via https:\/\/t.co\/mEnstr4iAs More info about the webinar is available at + https:\/\/t.co\/QGFyuIYLi4 @AECT @aectclt @aectdddivision https:\/\/t.co\/hGgYJQ1phR","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[18,25]},{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[66,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[250,255]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[256,264]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[265,280]}],"urls":[{"url":"https:\/\/t.co\/mEnstr4iAs","expanded_url":"https:\/\/admin.flipgrid.com\/manage\/grids\/2071013\/topics\/5843937","display_url":"admin.flipgrid.com\/manage\/grids\/2\u2026","indices":[158,181]},{"url":"https:\/\/t.co\/QGFyuIYLi4","expanded_url":"https:\/\/emergeafrica.net\/14-november-2019-report-back-from-aect19\/","display_url":"emergeafrica.net\/14-november-20\u2026","indices":[226,249]}],"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},{"created_at":"Wed + Nov 13 00:37:18 +0000 2019","id":1194413897207418881,"id_str":"1194413897207418881","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1003232844,"id_str":"1003232844","name":"Alicia + Johnson","screen_name":"onmyway2here","location":"Christiansburg, VA","description":"Instructional + Designer of Instructional Design (ID) Instruction PhD@virginiatechIDT. Good + days = Students, ID, Instruction, Research, Edtech, & Learning.","url":"https:\/\/t.co\/cCcuGeqoTV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cCcuGeqoTV","expanded_url":"https:\/\/liberalarts.vt.edu\/departments-and-schools\/school-of-education\/faculty\/alicia-johnson.html","display_url":"liberalarts.vt.edu\/departments-an\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":199,"friends_count":382,"listed_count":2,"created_at":"Tue + Dec 11 03:55:07 +0000 2012","favourites_count":4008,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":808,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3195564046\/04c6c148cecd8aeabb563780bedea34b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3195564046\/04c6c148cecd8aeabb563780bedea34b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1003232844\/1355198723","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Apr 19 19:22:23 +0000 2020","id":1251954312772812801,"id_str":"1251954312772812801","full_text":"RT + @RoutledgeEd: Congrats to authors Joseph Rene Corbeil, Maria Elena Corbeil, + and (not pictured) Badrul Khan, who received the Outstanding\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RoutledgeEd","name":"Routledge + Education Books","id":27606068,"id_str":"27606068","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1251951804398669825,"id_str":"1251951804398669825","name":"Harriet + Watkins","screen_name":"Harriet96152202","location":"","description":"Love + educational technology, online learning and just all the things \u2026 higher + ed!","url":"https:\/\/t.co\/ztRaRj9BLo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ztRaRj9BLo","expanded_url":"https:\/\/harrietwatkins.com\/","display_url":"harrietwatkins.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":17,"listed_count":0,"created_at":"Sun + Apr 19 19:12:33 +0000 2020","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1251951950163255299\/cxSX369n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1251951950163255299\/cxSX369n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251951804398669825\/1587323939","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 21:58:17 +0000 2019","id":1187126122376392704,"id_str":"1187126122376392704","full_text":"Congrats + to authors Joseph Rene Corbeil, Maria Elena Corbeil, and (not pictured) Badrul + Khan, who received the Outstanding Book Award from #AECT2019\u2019s Culture, + Learning, and Technology division \u2014 a global treatment of #learninganalytics + and #educationaldatamining. https:\/\/t.co\/aG1kf7a5ew","truncated":false,"display_text_range":[0,264],"entities":{"hashtags":[{"text":"AECT2019","indices":[139,148]},{"text":"learninganalytics","indices":[218,236]},{"text":"educationaldatamining","indices":[241,263]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27606068,"id_str":"27606068","name":"Routledge + Education Books","screen_name":"RoutledgeEd","location":"Global","description":"Supporting + educators, teachers, scholars and students with informative and practical + books based on leading research and classroom practice.","url":"http:\/\/t.co\/j4LZK9ypti","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/j4LZK9ypti","expanded_url":"http:\/\/www.routledge.com\/education","display_url":"routledge.com\/education","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":13833,"friends_count":3278,"listed_count":230,"created_at":"Mon + Mar 30 08:33:32 +0000 2009","favourites_count":2658,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10107,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"6A9ADA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27606068\/1629726175","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"6A9ADA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Nov 16 00:02:07 +0000 2019","id":1195492203747037186,"id_str":"1195492203747037186","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":114633938,"id_str":"114633938","name":"Matthea + Marquart - Please wear a mask","screen_name":"MattheaMarquart","location":"","description":"#OnlineEd + #SWTech #SocialWork #NonprofitManagement #HigherEd. Online Campus asst dean + & lecturer at @ColumbiaSSW. Educator, speaker, writer, API. Own opinions.","url":"https:\/\/t.co\/IOukCxS9HQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IOukCxS9HQ","expanded_url":"https:\/\/www.mattheamarquart.com\/","display_url":"mattheamarquart.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1977,"friends_count":4915,"listed_count":0,"created_at":"Tue + Feb 16 03:20:17 +0000 2010","favourites_count":22811,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6209,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1354180279691341824\/qsFbxLLY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1354180279691341824\/qsFbxLLY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/114633938\/1582152770","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Jan 18 22:43:06 +0000 2020","id":1218665142210252800,"id_str":"1218665142210252800","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14125173,"id_str":"14125173","name":"Trey + Martindale","screen_name":"treymartindale","location":"","description":"News + about #instructionaldesign and #onlinelearning , mostly in #highered .","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1170,"friends_count":0,"listed_count":98,"created_at":"Tue + Mar 11 16:32:25 +0000 2008","favourites_count":110,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4164,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1291200178553327619\/BcPSjP2-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1291200178553327619\/BcPSjP2-_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Dec 02 19:48:57 +0000 2019","id":1201589087444111361,"id_str":"1201589087444111361","full_text":"RT + @caranorth11: Kicking off my blog series talking about #devlearn and #aect19, + my first post talks about both conferences and my pick for\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"devlearn","indices":[58,67]},{"text":"aect19","indices":[72,79]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1059123581156700160,"id_str":"1059123581156700160","name":"80K + at Wembley","screen_name":"the80kcrew","location":"","description":"Quality + content from a quality bloke. Quote tweeted by John Cusack once. #boxing mostly","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":307,"friends_count":252,"listed_count":3,"created_at":"Sun + Nov 04 16:41:54 +0000 2018","favourites_count":8676,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7212,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494825221924081667\/yw2J2Rvj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494825221924081667\/yw2J2Rvj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1059123581156700160\/1582607612","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Dec 02 13:09:01 +0000 2019","id":1201488442741477376,"id_str":"1201488442741477376","full_text":"Kicking + off my blog series talking about #devlearn and #aect19, my first post talks + about both conferences and my pick for the top 3 pre-conference moments. @AnnaRoseLeach + @jachutchinson & @lxdify get shoutouts :) #instructionaldesign #conferences + https:\/\/t.co\/F4alIilVHy https:\/\/t.co\/Dxo29Ns7hq","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"devlearn","indices":[41,50]},{"text":"aect19","indices":[55,62]},{"text":"instructionaldesign","indices":[218,238]},{"text":"conferences","indices":[239,251]}],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[157,171]},{"screen_name":"jachutchinson","name":"Jac + Hutchinson","id":14799068,"id_str":"14799068","indices":[172,186]},{"screen_name":"lxdify","name":"Ceren + K\ud83d\udc9crkmaz \u2615","id":724195673143386112,"id_str":"724195673143386112","indices":[193,200]}],"urls":[{"url":"https:\/\/t.co\/F4alIilVHy","expanded_url":"https:\/\/buff.ly\/2rJmIE6","display_url":"buff.ly\/2rJmIE6","indices":[252,275]}],"media":[{"id":1201488440824680449,"id_str":"1201488440824680449","indices":[276,299],"media_url":"http:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","url":"https:\/\/t.co\/Dxo29Ns7hq","display_url":"pic.twitter.com\/Dxo29Ns7hq","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1201488442741477376\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":683,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1024,"h":683,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1201488440824680449,"id_str":"1201488440824680449","indices":[276,299],"media_url":"http:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","url":"https:\/\/t.co\/Dxo29Ns7hq","display_url":"pic.twitter.com\/Dxo29Ns7hq","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1201488442741477376\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":683,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1024,"h":683,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 13 00:52:56 +0000 2019","id":1194417830122446848,"id_str":"1194417830122446848","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 16:01:08 +0000 2019","id":1194283996697518082,"id_str":"1194283996697518082","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":182762965,"id_str":"182762965","name":"Chris + Rowell","screen_name":"Chri5rowell","location":"Camberwell, London ","description":"walk-write-work-a-bit + @ual\n\nSocialist \n\n.. all views my own (except for the ones I''ve RTed) + \ud83c\udf34","url":"https:\/\/t.co\/Dwwig9Iq7y","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Dwwig9Iq7y","expanded_url":"http:\/\/totallyrewired.wordpress.com\/","display_url":"totallyrewired.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2041,"friends_count":989,"listed_count":144,"created_at":"Wed + Aug 25 10:10:04 +0000 2010","favourites_count":58928,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":42638,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1519351341512110080\/Ko6X4aMk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1519351341512110080\/Ko6X4aMk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/182762965\/1573253647","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 20:42:40 +0000 2019","id":1194354847157555202,"id_str":"1194354847157555202","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2396037342,"id_str":"2396037342","name":"ETHE + Journal","screen_name":"ETHEjournal","location":"Barcelona","description":"A + @SpringerCompSci journal in #elearning #edtech #highered edited by @UOCuniversity + @DCU @Uniandes & https:\/\/t.co\/JZUjLLPPJF\nhttps:\/\/t.co\/PA7W9Ez4h5","url":"https:\/\/t.co\/veHy8MyuHV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/veHy8MyuHV","expanded_url":"http:\/\/ethe.uoc.edu","display_url":"ethe.uoc.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/JZUjLLPPJF","expanded_url":"http:\/\/vdu.lt\/en\/","display_url":"vdu.lt\/en\/","indices":[101,124]},{"url":"https:\/\/t.co\/PA7W9Ez4h5","expanded_url":"http:\/\/facebook.com\/ETHEjournal\/","display_url":"facebook.com\/ETHEjournal\/","indices":[125,148]}]}},"protected":false,"followers_count":4301,"friends_count":1500,"listed_count":500,"created_at":"Tue + Mar 18 11:11:24 +0000 2014","favourites_count":200,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18413,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/687928482169532416\/txuTx5OV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/687928482169532416\/txuTx5OV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2396037342\/1554713344","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 13 01:29:19 +0000 2019","id":1194426987810557955,"id_str":"1194426987810557955","full_text":"RT + @nicolapallitt: I''m presenting an #AECT19 #aect19inspired report back webinar + for @emergeAfrica and would love to include your voices an\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[37,44]},{"text":"aect19inspired","indices":[45,60]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[85,98]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:18:35 +0000 2019","id":1194258188578820096,"id_str":"1194258188578820096","full_text":"I''m + presenting an #AECT19 #aect19inspired report back webinar for @emergeAfrica + and would love to include your voices and highlights - please share yours + via https:\/\/t.co\/mEnstr4iAs More info about the webinar is available at + https:\/\/t.co\/QGFyuIYLi4 @AECT @aectclt @aectdddivision https:\/\/t.co\/hGgYJQ1phR","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[18,25]},{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[66,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[250,255]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[256,264]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[265,280]}],"urls":[{"url":"https:\/\/t.co\/mEnstr4iAs","expanded_url":"https:\/\/admin.flipgrid.com\/manage\/grids\/2071013\/topics\/5843937","display_url":"admin.flipgrid.com\/manage\/grids\/2\u2026","indices":[158,181]},{"url":"https:\/\/t.co\/QGFyuIYLi4","expanded_url":"https:\/\/emergeafrica.net\/14-november-2019-report-back-from-aect19\/","display_url":"emergeafrica.net\/14-november-20\u2026","indices":[226,249]}],"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 19 21:56:10 +0000 2019","id":1196910062196772865,"id_str":"1196910062196772865","full_text":"RT + @christieliuidtr: @AECT @aectclt report back from #AECT19 @emergeAfrica @aectdddivision + https:\/\/t.co\/jNwgN3pw0R","truncated":false,"display_text_range":[0,114],"entities":{"hashtags":[{"text":"AECT19","indices":[53,60]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[21,26]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[27,35]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[61,74]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[75,90]}],"urls":[{"url":"https:\/\/t.co\/jNwgN3pw0R","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096","display_url":"twitter.com\/nicolapallitt\/\u2026","indices":[91,114]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905212118127042560,"id_str":"905212118127042560","name":"AECT_CLT","screen_name":"aectclt","location":"","description":"AECT + Division Exploring culture, learning, and technology with particular emphases + on championing inclusiveness and equity. Conversation at #aectclt","url":"https:\/\/t.co\/yc2CmqxA5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yc2CmqxA5M","expanded_url":"https:\/\/sites.google.com\/view\/clt-home","display_url":"sites.google.com\/view\/clt-home","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":26,"listed_count":4,"created_at":"Tue + Sep 05 23:32:41 +0000 2017","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":486,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905212118127042560\/1506184813","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Nov 13 00:52:10 +0000 2019","id":1194417634982408192,"id_str":"1194417634982408192","full_text":"@AECT + @aectclt report back from #AECT19 @emergeAfrica @aectdddivision https:\/\/t.co\/jNwgN3pw0R","truncated":false,"display_text_range":[0,69],"entities":{"hashtags":[{"text":"AECT19","indices":[32,39]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[6,14]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[40,53]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[54,69]}],"urls":[{"url":"https:\/\/t.co\/jNwgN3pw0R","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096","display_url":"twitter.com\/nicolapallitt\/\u2026","indices":[70,93]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194258188578820096,"quoted_status_id_str":"1194258188578820096","quoted_status_permalink":{"url":"https:\/\/t.co\/jNwgN3pw0R","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096","display":"twitter.com\/nicolapallitt\/\u2026"},"quoted_status":{"created_at":"Tue + Nov 12 14:18:35 +0000 2019","id":1194258188578820096,"id_str":"1194258188578820096","full_text":"I''m + presenting an #AECT19 #aect19inspired report back webinar for @emergeAfrica + and would love to include your voices and highlights - please share yours + via https:\/\/t.co\/mEnstr4iAs More info about the webinar is available at + https:\/\/t.co\/QGFyuIYLi4 @AECT @aectclt @aectdddivision https:\/\/t.co\/hGgYJQ1phR","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[18,25]},{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[66,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[250,255]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[256,264]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[265,280]}],"urls":[{"url":"https:\/\/t.co\/mEnstr4iAs","expanded_url":"https:\/\/admin.flipgrid.com\/manage\/grids\/2071013\/topics\/5843937","display_url":"admin.flipgrid.com\/manage\/grids\/2\u2026","indices":[158,181]},{"url":"https:\/\/t.co\/QGFyuIYLi4","expanded_url":"https:\/\/emergeafrica.net\/14-november-2019-report-back-from-aect19\/","display_url":"emergeafrica.net\/14-november-20\u2026","indices":[226,249]}],"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"is_quote_status":true,"quoted_status_id":1194258188578820096,"quoted_status_id_str":"1194258188578820096","quoted_status_permalink":{"url":"https:\/\/t.co\/jNwgN3pw0R","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096","display":"twitter.com\/nicolapallitt\/\u2026"},"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Nov 12 18:43:16 +0000 2019","id":1194324801118228481,"id_str":"1194324801118228481","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":381743098,"id_str":"381743098","name":"margy + maclibrary","screen_name":"MargyMacLibrary","location":"YYJ","description":"she\/her\/hers + Retired MRU Librarian, settler on unceded Songhees, Esquimalt & WS\u00c1NE\u0106 + territory; interests:communications\/Indigenous matters\/GLAM\/SoTL\/science","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5249,"friends_count":5198,"listed_count":303,"created_at":"Wed + Sep 28 21:22:23 +0000 2011","favourites_count":759614,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":238385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1564365669\/margyphoto_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1564365669\/margyphoto_normal.JPG","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 19:51:38 +0000 2019","id":1194342006153187328,"id_str":"1194342006153187328","full_text":"RT + @nicolapallitt: I''m presenting an #AECT19 #aect19inspired report back webinar + for @emergeAfrica and would love to include your voices an\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[37,44]},{"text":"aect19inspired","indices":[45,60]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[85,98]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:18:35 +0000 2019","id":1194258188578820096,"id_str":"1194258188578820096","full_text":"I''m + presenting an #AECT19 #aect19inspired report back webinar for @emergeAfrica + and would love to include your voices and highlights - please share yours + via https:\/\/t.co\/mEnstr4iAs More info about the webinar is available at + https:\/\/t.co\/QGFyuIYLi4 @AECT @aectclt @aectdddivision https:\/\/t.co\/hGgYJQ1phR","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[18,25]},{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[66,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[250,255]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[256,264]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[265,280]}],"urls":[{"url":"https:\/\/t.co\/mEnstr4iAs","expanded_url":"https:\/\/admin.flipgrid.com\/manage\/grids\/2071013\/topics\/5843937","display_url":"admin.flipgrid.com\/manage\/grids\/2\u2026","indices":[158,181]},{"url":"https:\/\/t.co\/QGFyuIYLi4","expanded_url":"https:\/\/emergeafrica.net\/14-november-2019-report-back-from-aect19\/","display_url":"emergeafrica.net\/14-november-20\u2026","indices":[226,249]}],"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Dec 02 13:28:11 +0000 2019","id":1201493265226309633,"id_str":"1201493265226309633","full_text":"RT + @caranorth11: Kicking off my blog series talking about #devlearn and #aect19, + my first post talks about both conferences and my pick for\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"devlearn","indices":[58,67]},{"text":"aect19","indices":[72,79]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":32396916,"id_str":"32396916","name":"Betty + Dannewitz","screen_name":"ifyouaskbetty","location":"Detroit, MI","description":"","url":"https:\/\/t.co\/9W1hC09FJi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9W1hC09FJi","expanded_url":"http:\/\/www.ifyouaskbetty.com","display_url":"ifyouaskbetty.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":555,"friends_count":356,"listed_count":18,"created_at":"Fri + Apr 17 13:09:02 +0000 2009","favourites_count":3212,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1836,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1144765013145481216\/tQ8oD5Y-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1144765013145481216\/tQ8oD5Y-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/32396916\/1573763103","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Dec 02 13:09:01 +0000 2019","id":1201488442741477376,"id_str":"1201488442741477376","full_text":"Kicking + off my blog series talking about #devlearn and #aect19, my first post talks + about both conferences and my pick for the top 3 pre-conference moments. @AnnaRoseLeach + @jachutchinson & @lxdify get shoutouts :) #instructionaldesign #conferences + https:\/\/t.co\/F4alIilVHy https:\/\/t.co\/Dxo29Ns7hq","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"devlearn","indices":[41,50]},{"text":"aect19","indices":[55,62]},{"text":"instructionaldesign","indices":[218,238]},{"text":"conferences","indices":[239,251]}],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[157,171]},{"screen_name":"jachutchinson","name":"Jac + Hutchinson","id":14799068,"id_str":"14799068","indices":[172,186]},{"screen_name":"lxdify","name":"Ceren + K\ud83d\udc9crkmaz \u2615","id":724195673143386112,"id_str":"724195673143386112","indices":[193,200]}],"urls":[{"url":"https:\/\/t.co\/F4alIilVHy","expanded_url":"https:\/\/buff.ly\/2rJmIE6","display_url":"buff.ly\/2rJmIE6","indices":[252,275]}],"media":[{"id":1201488440824680449,"id_str":"1201488440824680449","indices":[276,299],"media_url":"http:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","url":"https:\/\/t.co\/Dxo29Ns7hq","display_url":"pic.twitter.com\/Dxo29Ns7hq","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1201488442741477376\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":683,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1024,"h":683,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1201488440824680449,"id_str":"1201488440824680449","indices":[276,299],"media_url":"http:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","url":"https:\/\/t.co\/Dxo29Ns7hq","display_url":"pic.twitter.com\/Dxo29Ns7hq","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1201488442741477376\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":683,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1024,"h":683,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Nov 15 15:17:04 +0000 2019","id":1195360071464738817,"id_str":"1195360071464738817","full_text":"If + you missed this session with @nicolapallitt the recording is now available https:\/\/t.co\/toMDHdVsAB \n@AECT + #aect19 #emergeAfrica https:\/\/t.co\/FwbR75FNk4","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19","indices":[115,122]},{"text":"emergeAfrica","indices":[123,136]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[32,46]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[109,114]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[82,105]},{"url":"https:\/\/t.co\/FwbR75FNk4","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display_url":"twitter.com\/emergeAfrica\/s\u2026","indices":[137,160]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"quoted_status":{"created_at":"Thu + Nov 14 12:43:58 +0000 2019","id":1194959156878467072,"id_str":"1194959156878467072","full_text":"In + 30 minutes please join us\nWebinar room is ready https:\/\/t.co\/ej8SNvWvDZ\n@nicolapallitt presenting + https:\/\/t.co\/RWAtmzL8ox","truncated":false,"display_text_range":[0,102],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[76,90]}],"urls":[{"url":"https:\/\/t.co\/ej8SNvWvDZ","expanded_url":"http:\/\/zoom.us\/j\/603307386","display_url":"zoom.us\/j\/603307386","indices":[52,75]}],"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":7,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Jan 09 01:43:17 +0000 2020","id":1215086607218298881,"id_str":"1215086607218298881","full_text":"RT + @AECT: We''re still recovering from #AECT19, but that doesn''t mean we haven''t + started planning for #AECT20 and beyond! Check out the futu\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[38,45]},{"text":"AECT20","indices":[101,108]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3192842900,"id_str":"3192842900","name":"FG\u272amez2, + Ed.D.\u2606\u5f61","screen_name":"DrFrankGomez","location":"","description":"Educator\u2022Ed + Tech\u2022Poet\u2022@edtechbsu Alumni\u2022\u03a6\u039a\u03a6 Member\u2022Research: + Digital Pedagogy & Technopedagogical Self-efficacy\u2022Striving for excellence\u2022Retweets + \u2260 Endorsements.","url":"https:\/\/t.co\/CNWGWDlenf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CNWGWDlenf","expanded_url":"http:\/\/goo.gl\/m8BYno","display_url":"goo.gl\/m8BYno","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":391,"friends_count":722,"listed_count":123,"created_at":"Tue + May 12 05:33:37 +0000 2015","favourites_count":6547,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3185,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598000520553369601\/tiaY0maa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598000520553369601\/tiaY0maa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3192842900\/1435711772","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 29 22:21:15 +0000 2019","id":1189306225319731200,"id_str":"1189306225319731200","full_text":"We''re + still recovering from #AECT19, but that doesn''t mean we haven''t started + planning for #AECT20 and beyond! Check out the future locations for upcoming + AECT International Conventions through 2025. Hopefully we''ll see you in #JAX! + https:\/\/t.co\/KUffDFfWwv","truncated":false,"display_text_range":[0,232],"entities":{"hashtags":[{"text":"AECT19","indices":[28,35]},{"text":"AECT20","indices":[91,98]},{"text":"JAX","indices":[227,231]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1189306203798528000,"id_str":"1189306203798528000","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","url":"https:\/\/t.co\/KUffDFfWwv","display_url":"pic.twitter.com\/KUffDFfWwv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1189306225319731200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1189306203798528000,"id_str":"1189306203798528000","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","url":"https:\/\/t.co\/KUffDFfWwv","display_url":"pic.twitter.com\/KUffDFfWwv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1189306225319731200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":29,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 20 21:33:20 +0000 2019","id":1197266701206925313,"id_str":"1197266701206925313","full_text":"You\u2019re + invited to our end of the semester writing sprints! This is to encourage \u2026.writing, + research and practice in educational technology and instructional design. + Mon Nov 25 & Mon Dec 9 - Join at Zoom https:\/\/t.co\/iOpaIVyGEy #aect19 + https:\/\/t.co\/dMps6EY09H","truncated":false,"display_text_range":[0,238],"entities":{"hashtags":[{"text":"aect19","indices":[231,238]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iOpaIVyGEy","expanded_url":"http:\/\/bit.ly\/monwrite","display_url":"bit.ly\/monwrite","indices":[207,230]}],"media":[{"id":1197266697054498819,"id_str":"1197266697054498819","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2Lt7NWsAM1VBA.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2Lt7NWsAM1VBA.png","url":"https:\/\/t.co\/dMps6EY09H","display_url":"pic.twitter.com\/dMps6EY09H","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1197266701206925313\/photo\/1","type":"photo","sizes":{"medium":{"w":714,"h":714,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":714,"h":714,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1197266697054498819,"id_str":"1197266697054498819","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2Lt7NWsAM1VBA.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2Lt7NWsAM1VBA.png","url":"https:\/\/t.co\/dMps6EY09H","display_url":"pic.twitter.com\/dMps6EY09H","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1197266701206925313\/photo\/1","type":"photo","sizes":{"medium":{"w":714,"h":714,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":714,"h":714,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Jan 18 15:10:58 +0000 2020","id":1218551358095273984,"id_str":"1218551358095273984","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 20 09:23:15 +0000 2019","id":1197082972219940864,"id_str":"1197082972219940864","full_text":"RT + @christieliuidtr: @AECT @aectclt report back from #AECT19 @emergeAfrica @aectdddivision + https:\/\/t.co\/jNwgN3pw0R","truncated":false,"display_text_range":[0,114],"entities":{"hashtags":[{"text":"AECT19","indices":[53,60]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[21,26]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[27,35]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[61,74]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[75,90]}],"urls":[{"url":"https:\/\/t.co\/jNwgN3pw0R","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096","display_url":"twitter.com\/nicolapallitt\/\u2026","indices":[91,114]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":123168263,"id_str":"123168263","name":"Irene + Maweu \ud83c\udf3b\ud83c\udf3b","screen_name":"wavinya66","location":"Kenya","description":"By + Faith \/ With Respect \/ Facilitating from the heart \/ Liberating Structures + Gospel \/ IAF Member","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":762,"friends_count":772,"listed_count":9,"created_at":"Mon + Mar 15 06:31:31 +0000 2010","favourites_count":10218,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5795,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123168263\/1610274071","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Nov 13 00:52:10 +0000 2019","id":1194417634982408192,"id_str":"1194417634982408192","full_text":"@AECT + @aectclt report back from #AECT19 @emergeAfrica @aectdddivision https:\/\/t.co\/jNwgN3pw0R","truncated":false,"display_text_range":[0,69],"entities":{"hashtags":[{"text":"AECT19","indices":[32,39]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[6,14]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[40,53]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[54,69]}],"urls":[{"url":"https:\/\/t.co\/jNwgN3pw0R","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096","display_url":"twitter.com\/nicolapallitt\/\u2026","indices":[70,93]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194258188578820096,"quoted_status_id_str":"1194258188578820096","quoted_status_permalink":{"url":"https:\/\/t.co\/jNwgN3pw0R","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096","display":"twitter.com\/nicolapallitt\/\u2026"},"quoted_status":{"created_at":"Tue + Nov 12 14:18:35 +0000 2019","id":1194258188578820096,"id_str":"1194258188578820096","full_text":"I''m + presenting an #AECT19 #aect19inspired report back webinar for @emergeAfrica + and would love to include your voices and highlights - please share yours + via https:\/\/t.co\/mEnstr4iAs More info about the webinar is available at + https:\/\/t.co\/QGFyuIYLi4 @AECT @aectclt @aectdddivision https:\/\/t.co\/hGgYJQ1phR","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[18,25]},{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[66,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[250,255]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[256,264]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[265,280]}],"urls":[{"url":"https:\/\/t.co\/mEnstr4iAs","expanded_url":"https:\/\/admin.flipgrid.com\/manage\/grids\/2071013\/topics\/5843937","display_url":"admin.flipgrid.com\/manage\/grids\/2\u2026","indices":[158,181]},{"url":"https:\/\/t.co\/QGFyuIYLi4","expanded_url":"https:\/\/emergeafrica.net\/14-november-2019-report-back-from-aect19\/","display_url":"emergeafrica.net\/14-november-20\u2026","indices":[226,249]}],"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"is_quote_status":true,"quoted_status_id":1194258188578820096,"quoted_status_id_str":"1194258188578820096","quoted_status_permalink":{"url":"https:\/\/t.co\/jNwgN3pw0R","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096","display":"twitter.com\/nicolapallitt\/\u2026"},"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Feb 17 14:00:51 +0000 2020","id":1229405350178127872,"id_str":"1229405350178127872","full_text":"RT + @tadousay: Many thanks to @AECTTechTrends for supporting our @gsa_aect with + the Grad Member Musings column! The latest guest author is #\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[29,44]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[64,73]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Feb 05 18:21:36 +0000 2020","id":1225122317849657345,"id_str":"1225122317849657345","full_text":"Many + thanks to @AECTTechTrends for supporting our @gsa_aect with the Grad Member + Musings column! The latest guest author is #uidaho''s Ken Cox, a first year + doc student in our C&I program and a member of my #UISTEMEdRG. https:\/\/t.co\/8MuP9Mza8f + #aect #aect20 #aect19","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"uidaho","indices":[124,131]},{"text":"UISTEMEdRG","indices":[210,221]},{"text":"aect","indices":[247,252]},{"text":"aect20","indices":[253,260]},{"text":"aect19","indices":[261,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[15,30]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[50,59]}],"urls":[{"url":"https:\/\/t.co\/8MuP9Mza8f","expanded_url":"https:\/\/doi.org\/10.1007\/s11528-020-00477-5","display_url":"doi.org\/10.1007\/s11528\u2026","indices":[223,246]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 20 23:37:27 +0000 2019","id":1197297937241583616,"id_str":"1197297937241583616","full_text":"RT + @aectrtd: AECT-RTD Call for Nominations [Due 12\/1\/2019]. #aectRTD #aect19 + #aect19inspired @AECT https:\/\/t.co\/KCgYAFb1eC","truncated":false,"display_text_range":[0,122],"entities":{"hashtags":[{"text":"aectRTD","indices":[60,68]},{"text":"aect19","indices":[69,76]},{"text":"aect19inspired","indices":[77,92]}],"symbols":[],"user_mentions":[{"screen_name":"aectrtd","name":"AECT + Research & Theory Division","id":1197270185960361984,"id_str":"1197270185960361984","indices":[3,11]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[93,98]}],"urls":[],"media":[{"id":1197271649692704768,"id_str":"1197271649692704768","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","url":"https:\/\/t.co\/KCgYAFb1eC","display_url":"pic.twitter.com\/KCgYAFb1eC","expanded_url":"https:\/\/twitter.com\/rtdaect\/status\/1197271655015272448\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"}},"source_status_id":1197271655015272448,"source_status_id_str":"1197271655015272448","source_user_id":1197270185960361984,"source_user_id_str":"1197270185960361984"}]},"extended_entities":{"media":[{"id":1197271649692704768,"id_str":"1197271649692704768","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","url":"https:\/\/t.co\/KCgYAFb1eC","display_url":"pic.twitter.com\/KCgYAFb1eC","expanded_url":"https:\/\/twitter.com\/rtdaect\/status\/1197271655015272448\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"}},"source_status_id":1197271655015272448,"source_status_id_str":"1197271655015272448","source_user_id":1197270185960361984,"source_user_id_str":"1197270185960361984","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":197077129,"id_str":"197077129","name":"Shonn + Cheng","screen_name":"shonn2nd","location":"Huntsville, Texas","description":"Assistant + Professor of Instructional Systems Design & Technology @SamHoustonState | + mastery goal orientation | \u3055\u3068\u307f \u3057\u3085\u3046\u3058","url":"https:\/\/t.co\/suOZ2lqHZO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/suOZ2lqHZO","expanded_url":"http:\/\/shonnslc.com","display_url":"shonnslc.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":577,"friends_count":1340,"listed_count":20,"created_at":"Thu + Sep 30 16:04:19 +0000 2010","favourites_count":6293,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1871,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1518784831479373824\/dksWzjgF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1518784831479373824\/dksWzjgF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/197077129\/1555358405","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Nov 20 21:53:01 +0000 2019","id":1197271655015272448,"id_str":"1197271655015272448","full_text":"AECT-RTD + Call for Nominations [Due 12\/1\/2019]. #aectRTD #aect19 #aect19inspired @AECT + https:\/\/t.co\/KCgYAFb1eC","truncated":false,"display_text_range":[0,85],"entities":{"hashtags":[{"text":"aectRTD","indices":[47,55]},{"text":"aect19","indices":[56,63]},{"text":"aect19inspired","indices":[64,79]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[80,85]}],"urls":[],"media":[{"id":1197271649692704768,"id_str":"1197271649692704768","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","url":"https:\/\/t.co\/KCgYAFb1eC","display_url":"pic.twitter.com\/KCgYAFb1eC","expanded_url":"https:\/\/twitter.com\/rtdaect\/status\/1197271655015272448\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1197271649692704768,"id_str":"1197271649692704768","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2QONOUYAAnuHr.jpg","url":"https:\/\/t.co\/KCgYAFb1eC","display_url":"pic.twitter.com\/KCgYAFb1eC","expanded_url":"https:\/\/twitter.com\/rtdaect\/status\/1197271655015272448\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1197270185960361984,"id_str":"1197270185960361984","name":"AECT + Research & Theory Division","screen_name":"aectrtd","location":"","description":"AECT''s + (https:\/\/t.co\/6DFTIdk9db) Research & Theory Division promotes development + and advancement of theory; and supports, fosters, and mentors emerging scholars. + #aectRTD","url":"https:\/\/t.co\/0AKlTYZtfT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0AKlTYZtfT","expanded_url":"https:\/\/sites.google.com\/view\/aectrtd\/home","display_url":"sites.google.com\/view\/aectrtd\/h\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/6DFTIdk9db","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[8,31]}]}},"protected":false,"followers_count":194,"friends_count":13,"listed_count":2,"created_at":"Wed + Nov 20 21:47:30 +0000 2019","favourites_count":66,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1197271108489080832\/wtFlrFm9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1197271108489080832\/wtFlrFm9_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Jan 19 23:46:51 +0000 2020","id":1219043574555299840,"id_str":"1219043574555299840","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1088189033266798598,"id_str":"1088189033266798598","name":"AECT + Division of Distance Learning","screen_name":"aectddl","location":"","description":"The + Division of Distance Learning is a special interest group of the Association + for Educational Communications and Technology (AECT).","url":"https:\/\/t.co\/Rg9uXQTkSM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Rg9uXQTkSM","expanded_url":"https:\/\/aect.org\/ddl.php","display_url":"aect.org\/ddl.php","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":861,"friends_count":482,"listed_count":6,"created_at":"Wed + Jan 23 21:37:37 +0000 2019","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088189033266798598\/1548280679","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Dec 08 21:01:42 +0000 2019","id":1203781724628500486,"id_str":"1203781724628500486","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":52675234,"id_str":"52675234","name":"Gabriel + Konayuma","screen_name":"GabrielKonayuma","location":"Lusaka, Zambia","description":"A + Christian, Vocational Training educator specialised in learning, entrepreneurship, + educational technology.\n#edtech, #vocational_education, #entrepreneurship","url":"https:\/\/t.co\/ajMvMd1Eyh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ajMvMd1Eyh","expanded_url":"https:\/\/goo.gl\/nzZwHm","display_url":"goo.gl\/nzZwHm","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":571,"friends_count":1525,"listed_count":10,"created_at":"Wed + Jul 01 08:57:05 +0000 2009","favourites_count":3473,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4828,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643929621214437376\/9Q7jHSOH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643929621214437376\/9Q7jHSOH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52675234\/1608527579","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 14:45:46 +0000 2019","id":1194265030621093890,"id_str":"1194265030621093890","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Jan 19 15:38:16 +0000 2020","id":1218920618336362500,"id_str":"1218920618336362500","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":89691945,"id_str":"89691945","name":"Cheryl + Hodgkinson-Williams","screen_name":"CherylHW","location":"Cape Town","description":"Open + Education and Social Justice Advocate. Emeritus Associate Professor, Centre + for Innovation in Learning & Teaching, University of Cape Town.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1553,"friends_count":714,"listed_count":61,"created_at":"Fri + Nov 13 12:51:42 +0000 2009","favourites_count":4681,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4980,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/468384357388804097\/jD8SSxSC_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/468384357388804097\/jD8SSxSC_normal.jpeg","profile_image_extensions_alt_text":null,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 19 21:56:46 +0000 2019","id":1196910211816013824,"id_str":"1196910211816013824","full_text":"RT + @nicolapallitt: I''m presenting an #AECT19 #aect19inspired report back webinar + for @emergeAfrica and would love to include your voices an\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[37,44]},{"text":"aect19inspired","indices":[45,60]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[85,98]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905212118127042560,"id_str":"905212118127042560","name":"AECT_CLT","screen_name":"aectclt","location":"","description":"AECT + Division Exploring culture, learning, and technology with particular emphases + on championing inclusiveness and equity. Conversation at #aectclt","url":"https:\/\/t.co\/yc2CmqxA5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yc2CmqxA5M","expanded_url":"https:\/\/sites.google.com\/view\/clt-home","display_url":"sites.google.com\/view\/clt-home","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":26,"listed_count":4,"created_at":"Tue + Sep 05 23:32:41 +0000 2017","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":486,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905212118127042560\/1506184813","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:18:35 +0000 2019","id":1194258188578820096,"id_str":"1194258188578820096","full_text":"I''m + presenting an #AECT19 #aect19inspired report back webinar for @emergeAfrica + and would love to include your voices and highlights - please share yours + via https:\/\/t.co\/mEnstr4iAs More info about the webinar is available at + https:\/\/t.co\/QGFyuIYLi4 @AECT @aectclt @aectdddivision https:\/\/t.co\/hGgYJQ1phR","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[18,25]},{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[66,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[250,255]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[256,264]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[265,280]}],"urls":[{"url":"https:\/\/t.co\/mEnstr4iAs","expanded_url":"https:\/\/admin.flipgrid.com\/manage\/grids\/2071013\/topics\/5843937","display_url":"admin.flipgrid.com\/manage\/grids\/2\u2026","indices":[158,181]},{"url":"https:\/\/t.co\/QGFyuIYLi4","expanded_url":"https:\/\/emergeafrica.net\/14-november-2019-report-back-from-aect19\/","display_url":"emergeafrica.net\/14-november-20\u2026","indices":[226,249]}],"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Nov 21 00:50:04 +0000 2019","id":1197316210242805761,"id_str":"1197316210242805761","full_text":"RT + @gsa_aect: You\u2019re invited to our end of the semester writing sprints! + This is to encourage \u2026.writing, research and practice in education\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":907084983390662656,"id_str":"907084983390662656","name":"Clement + Abai","screen_name":"clement_abai","location":"Stillwater, OK","description":"PhD + student in Learning, Design and Technology. Design-Based Research. Augmented + Reality, Virtual Reality, Mixed Reality and Learning","url":"https:\/\/t.co\/Be4qEbOXsm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Be4qEbOXsm","expanded_url":"http:\/\/clementabai.com","display_url":"clementabai.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":37,"listed_count":0,"created_at":"Mon + Sep 11 03:34:47 +0000 2017","favourites_count":190,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":134,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1512529733891895302\/DVRTYqgA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1512529733891895302\/DVRTYqgA_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Nov 20 21:33:20 +0000 2019","id":1197266701206925313,"id_str":"1197266701206925313","full_text":"You\u2019re + invited to our end of the semester writing sprints! This is to encourage \u2026.writing, + research and practice in educational technology and instructional design. + Mon Nov 25 & Mon Dec 9 - Join at Zoom https:\/\/t.co\/iOpaIVyGEy #aect19 + https:\/\/t.co\/dMps6EY09H","truncated":false,"display_text_range":[0,238],"entities":{"hashtags":[{"text":"aect19","indices":[231,238]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iOpaIVyGEy","expanded_url":"http:\/\/bit.ly\/monwrite","display_url":"bit.ly\/monwrite","indices":[207,230]}],"media":[{"id":1197266697054498819,"id_str":"1197266697054498819","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2Lt7NWsAM1VBA.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2Lt7NWsAM1VBA.png","url":"https:\/\/t.co\/dMps6EY09H","display_url":"pic.twitter.com\/dMps6EY09H","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1197266701206925313\/photo\/1","type":"photo","sizes":{"medium":{"w":714,"h":714,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":714,"h":714,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1197266697054498819,"id_str":"1197266697054498819","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/media\/EJ2Lt7NWsAM1VBA.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJ2Lt7NWsAM1VBA.png","url":"https:\/\/t.co\/dMps6EY09H","display_url":"pic.twitter.com\/dMps6EY09H","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1197266701206925313\/photo\/1","type":"photo","sizes":{"medium":{"w":714,"h":714,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":714,"h":714,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 13 08:20:09 +0000 2019","id":1194530376900853760,"id_str":"1194530376900853760","full_text":"RT + @nicolapallitt: I''m presenting an #AECT19 #aect19inspired report back webinar + for @emergeAfrica and would love to include your voices an\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[37,44]},{"text":"aect19inspired","indices":[45,60]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[85,98]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2950104673,"id_str":"2950104673","name":"Ayodeji + Ibukun","screen_name":"lbukunAA","location":"Oklahoma, USA","description":"B.Engrg + MS MNSE","url":"https:\/\/t.co\/kVfuPQQfYs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kVfuPQQfYs","expanded_url":"http:\/\/www.ayoibukun.com","display_url":"ayoibukun.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":489,"listed_count":0,"created_at":"Mon + Dec 29 12:06:33 +0000 2014","favourites_count":665,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":154,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2950104673\/1574622610","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:18:35 +0000 2019","id":1194258188578820096,"id_str":"1194258188578820096","full_text":"I''m + presenting an #AECT19 #aect19inspired report back webinar for @emergeAfrica + and would love to include your voices and highlights - please share yours + via https:\/\/t.co\/mEnstr4iAs More info about the webinar is available at + https:\/\/t.co\/QGFyuIYLi4 @AECT @aectclt @aectdddivision https:\/\/t.co\/hGgYJQ1phR","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[18,25]},{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[66,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[250,255]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[256,264]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[265,280]}],"urls":[{"url":"https:\/\/t.co\/mEnstr4iAs","expanded_url":"https:\/\/admin.flipgrid.com\/manage\/grids\/2071013\/topics\/5843937","display_url":"admin.flipgrid.com\/manage\/grids\/2\u2026","indices":[158,181]},{"url":"https:\/\/t.co\/QGFyuIYLi4","expanded_url":"https:\/\/emergeafrica.net\/14-november-2019-report-back-from-aect19\/","display_url":"emergeafrica.net\/14-november-20\u2026","indices":[226,249]}],"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Nov 17 11:10:51 +0000 2019","id":1196022885195931648,"id_str":"1196022885195931648","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16645388,"id_str":"16645388","name":"Marko + Ter\u00e4s","screen_name":"markoteras","location":"Finland","description":"Critical + research of digitalization and datafication \/ speculative fiction \/ poetry + & arts as critique https:\/\/t.co\/plfWGV4Gdu \/ @_CreditEd network \/ @TampereUniSOC","url":"https:\/\/t.co\/tWEQqtKUoF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/tWEQqtKUoF","expanded_url":"https:\/\/markoteras.com","display_url":"markoteras.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/plfWGV4Gdu","expanded_url":"http:\/\/carde.group","display_url":"carde.group","indices":[103,126]}]}},"protected":false,"followers_count":1042,"friends_count":1200,"listed_count":81,"created_at":"Wed + Oct 08 05:53:06 +0000 2008","favourites_count":508,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3802,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1329065146593972226\/wicrsODl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1329065146593972226\/wicrsODl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16645388\/1616438817","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"423B31","profile_text_color":"8F8F8F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Nov 25 15:32:30 +0000 2019","id":1198987833354137604,"id_str":"1198987833354137604","full_text":"RT + @caranorth11: Interested in earning comped hotel rooms in Las Vegas? Here + is how I earned free accomodations for #devlearn and #aect19 h\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"devlearn","indices":[116,125]},{"text":"aect19","indices":[130,137]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21444864,"id_str":"21444864","name":"pattishank","screen_name":"pattishank","location":"Denver, + CO, USA","description":"Evidence-based instructional design for better workplace + #training, #learning, and #performance outcomes. Get my books on Amazon. https:\/\/t.co\/2E2tHK85j3","url":"http:\/\/t.co\/jjiHAb2wCj","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/jjiHAb2wCj","expanded_url":"http:\/\/www.pattishank.com","display_url":"pattishank.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/2E2tHK85j3","expanded_url":"http:\/\/pattishank.com","display_url":"pattishank.com","indices":[130,153]}]}},"protected":false,"followers_count":10691,"friends_count":5299,"listed_count":606,"created_at":"Fri + Feb 20 23:10:52 +0000 2009","favourites_count":4589,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":31816,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"59472F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1396505354297438209\/tpgmHuMD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1396505354297438209\/tpgmHuMD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21444864\/1632256053","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000515","profile_sidebar_fill_color":"061127","profile_text_color":"827972","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Nov 25 15:26:03 +0000 2019","id":1198986210720583680,"id_str":"1198986210720583680","full_text":"Interested + in earning comped hotel rooms in Las Vegas? Here is how I earned free accomodations + for #devlearn and #aect19 https:\/\/t.co\/Ov4Cf8WnNN https:\/\/t.co\/JKENJrx3H0","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"devlearn","indices":[99,108]},{"text":"aect19","indices":[113,120]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ov4Cf8WnNN","expanded_url":"https:\/\/buff.ly\/31VyM1B","display_url":"buff.ly\/31VyM1B","indices":[121,144]}],"media":[{"id":1198986208011071488,"id_str":"1198986208011071488","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EKOnmosXsAAduWD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKOnmosXsAAduWD.jpg","url":"https:\/\/t.co\/JKENJrx3H0","display_url":"pic.twitter.com\/JKENJrx3H0","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1198986210720583680\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":458,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":808,"resize":"fit"},"large":{"w":1330,"h":896,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1198986208011071488,"id_str":"1198986208011071488","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EKOnmosXsAAduWD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKOnmosXsAAduWD.jpg","url":"https:\/\/t.co\/JKENJrx3H0","display_url":"pic.twitter.com\/JKENJrx3H0","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1198986210720583680\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":458,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":808,"resize":"fit"},"large":{"w":1330,"h":896,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 14:27:06 +0000 2019","id":1194260335512997888,"id_str":"1194260335512997888","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":204949740,"id_str":"204949740","name":"Suzan + K\u00f6seo\u011flu","screen_name":"SuzanKoseoglu","location":"London, England","description":"educator\/researcher. + lecturer in L&T in higher education. online pedagogy, networked learning, + open scholarship, women empowerment and equity.","url":"https:\/\/t.co\/U6qNiQYvRB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/U6qNiQYvRB","expanded_url":"https:\/\/differentreadings.wordpress.com\/","display_url":"differentreadings.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1685,"friends_count":1421,"listed_count":66,"created_at":"Tue + Oct 19 20:45:53 +0000 2010","favourites_count":6674,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4817,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1383790471776858118\/7zte4_HU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1383790471776858118\/7zte4_HU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/204949740\/1618756263","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 18:44:14 +0000 2019","id":1194325042697388032,"id_str":"1194325042697388032","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/twitter.com\/MarkJ_ohnson\" rel=\"nofollow\"\u003eMark Johnson1\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1039965688000126977,"id_str":"1039965688000126977","name":"Mark + Johnson","screen_name":"MarkJ_ohnson","location":"United States of America","description":"Assistant + Manager at @K12Prospects. K-12 educational sales and marketing. Connecting + with educators. Business opportunities.\n#edtech #education #data","url":"https:\/\/t.co\/9DDpfIA8Ge","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9DDpfIA8Ge","expanded_url":"https:\/\/www.k12prospects.com\/","display_url":"k12prospects.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7370,"friends_count":6387,"listed_count":77,"created_at":"Wed + Sep 12 19:55:16 +0000 2018","favourites_count":19645,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":146990,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1039966314960437248\/yKL_4LvX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1039966314960437248\/yKL_4LvX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1039965688000126977\/1643812421","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 13 00:21:52 +0000 2019","id":1194410011612631040,"id_str":"1194410011612631040","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Dec 03 01:42:03 +0000 2019","id":1201677948849442817,"id_str":"1201677948849442817","full_text":"RT + @caranorth11: Kicking off my blog series talking about #devlearn and #aect19, + my first post talks about both conferences and my pick for\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"devlearn","indices":[58,67]},{"text":"aect19","indices":[72,79]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":171693619,"id_str":"171693619","name":"\ud83c\udfa4David + Gilbert Voice Over \ud83c\udfa4 #Easy24HourVoiceOver","screen_name":"DavidGilbertVO","location":"Global","description":"\"Giving + YOUR business a voice.\"\n#voiceover #corporate #elearning #commercial #explainer + #IVR\n\nGet a quote: david@davidgilbertvoiceover.com\n\n#Easy24HourVoiceOver","url":"https:\/\/t.co\/uBL3Hgo2Vg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uBL3Hgo2Vg","expanded_url":"https:\/\/sleek.bio\/davidgilbertvo","display_url":"sleek.bio\/davidgilbertvo","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3290,"friends_count":4967,"listed_count":62,"created_at":"Tue + Jul 27 23:21:56 +0000 2010","favourites_count":168945,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":76802,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1453064381051416577\/V4EuhqhN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1453064381051416577\/V4EuhqhN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/171693619\/1634848574","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Dec 02 13:09:01 +0000 2019","id":1201488442741477376,"id_str":"1201488442741477376","full_text":"Kicking + off my blog series talking about #devlearn and #aect19, my first post talks + about both conferences and my pick for the top 3 pre-conference moments. @AnnaRoseLeach + @jachutchinson & @lxdify get shoutouts :) #instructionaldesign #conferences + https:\/\/t.co\/F4alIilVHy https:\/\/t.co\/Dxo29Ns7hq","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"devlearn","indices":[41,50]},{"text":"aect19","indices":[55,62]},{"text":"instructionaldesign","indices":[218,238]},{"text":"conferences","indices":[239,251]}],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[157,171]},{"screen_name":"jachutchinson","name":"Jac + Hutchinson","id":14799068,"id_str":"14799068","indices":[172,186]},{"screen_name":"lxdify","name":"Ceren + K\ud83d\udc9crkmaz \u2615","id":724195673143386112,"id_str":"724195673143386112","indices":[193,200]}],"urls":[{"url":"https:\/\/t.co\/F4alIilVHy","expanded_url":"https:\/\/buff.ly\/2rJmIE6","display_url":"buff.ly\/2rJmIE6","indices":[252,275]}],"media":[{"id":1201488440824680449,"id_str":"1201488440824680449","indices":[276,299],"media_url":"http:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","url":"https:\/\/t.co\/Dxo29Ns7hq","display_url":"pic.twitter.com\/Dxo29Ns7hq","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1201488442741477376\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":683,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1024,"h":683,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1201488440824680449,"id_str":"1201488440824680449","indices":[276,299],"media_url":"http:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","url":"https:\/\/t.co\/Dxo29Ns7hq","display_url":"pic.twitter.com\/Dxo29Ns7hq","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1201488442741477376\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":683,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1024,"h":683,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Dec 02 13:09:01 +0000 2019","id":1201488442741477376,"id_str":"1201488442741477376","full_text":"Kicking + off my blog series talking about #devlearn and #aect19, my first post talks + about both conferences and my pick for the top 3 pre-conference moments. @AnnaRoseLeach + @jachutchinson & @lxdify get shoutouts :) #instructionaldesign #conferences + https:\/\/t.co\/F4alIilVHy https:\/\/t.co\/Dxo29Ns7hq","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"devlearn","indices":[41,50]},{"text":"aect19","indices":[55,62]},{"text":"instructionaldesign","indices":[218,238]},{"text":"conferences","indices":[239,251]}],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[157,171]},{"screen_name":"jachutchinson","name":"Jac + Hutchinson","id":14799068,"id_str":"14799068","indices":[172,186]},{"screen_name":"lxdify","name":"Ceren + K\ud83d\udc9crkmaz \u2615","id":724195673143386112,"id_str":"724195673143386112","indices":[193,200]}],"urls":[{"url":"https:\/\/t.co\/F4alIilVHy","expanded_url":"https:\/\/buff.ly\/2rJmIE6","display_url":"buff.ly\/2rJmIE6","indices":[252,275]}],"media":[{"id":1201488440824680449,"id_str":"1201488440824680449","indices":[276,299],"media_url":"http:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","url":"https:\/\/t.co\/Dxo29Ns7hq","display_url":"pic.twitter.com\/Dxo29Ns7hq","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1201488442741477376\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":683,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1024,"h":683,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1201488440824680449,"id_str":"1201488440824680449","indices":[276,299],"media_url":"http:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EKyLXwUX0AEAKjR.jpg","url":"https:\/\/t.co\/Dxo29Ns7hq","display_url":"pic.twitter.com\/Dxo29Ns7hq","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1201488442741477376\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":683,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1024,"h":683,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Jan 18 17:24:08 +0000 2020","id":1218584870714314753,"id_str":"1218584870714314753","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17467478,"id_str":"17467478","name":"Marshall + G. Jones","screen_name":"marshallgjones","location":"Rock Hill, SC USA","description":"Professor + of Learning Design & Technology. Musician. Photographer. Tweeting about learning, + technology & whatever else strikes me. Tweets are my own.","url":"https:\/\/t.co\/HGRry3tHo4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HGRry3tHo4","expanded_url":"http:\/\/marshallgjones.com","display_url":"marshallgjones.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1022,"friends_count":889,"listed_count":71,"created_at":"Tue + Nov 18 18:26:51 +0000 2008","favourites_count":7553,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8342,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17467478\/1570054414","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 13 10:30:54 +0000 2019","id":1194563279902904321,"id_str":"1194563279902904321","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":961192358015627264,"id_str":"961192358015627264","name":"CRIT","screen_name":"lsbu_crit","location":"London, + England","description":"The Centre for Research Informed Teaching (CRIT) supports + colleagues across LSBU to develop teaching and learning, curriculum design + and pedagogic scholarship.","url":"https:\/\/t.co\/VVIUot3qHg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VVIUot3qHg","expanded_url":"http:\/\/www.lsbu.ac.uk\/about-us\/professional-services\/centre-for-research-informed-teaching","display_url":"lsbu.ac.uk\/about-us\/profe\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":312,"listed_count":3,"created_at":"Wed + Feb 07 10:58:11 +0000 2018","favourites_count":1493,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":578,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1081147310158028805\/T0-KcQJr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1081147310158028805\/T0-KcQJr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/961192358015627264\/1546602308","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Nov 16 16:19:41 +0000 2019","id":1195738219175956480,"id_str":"1195738219175956480","full_text":"RT + @emergeAfrica: If you missed this session with @nicolapallitt the recording + is now available https:\/\/t.co\/toMDHdVsAB \n@AECT #aect1\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[50,64]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[127,132]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[100,123]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2457094130,"id_str":"2457094130","name":"Dr. + Mohamed Ahmed","screen_name":"Mohamedmetwa","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":340,"friends_count":1710,"listed_count":1,"created_at":"Mon + Apr 21 20:32:18 +0000 2014","favourites_count":1448,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":357,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458343771407540224\/U64vcDqn_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458343771407540224\/U64vcDqn_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2457094130\/1398189550","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Nov 15 15:17:04 +0000 2019","id":1195360071464738817,"id_str":"1195360071464738817","full_text":"If + you missed this session with @nicolapallitt the recording is now available https:\/\/t.co\/toMDHdVsAB \n@AECT + #aect19 #emergeAfrica https:\/\/t.co\/FwbR75FNk4","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19","indices":[115,122]},{"text":"emergeAfrica","indices":[123,136]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[32,46]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[109,114]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[82,105]},{"url":"https:\/\/t.co\/FwbR75FNk4","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display_url":"twitter.com\/emergeAfrica\/s\u2026","indices":[137,160]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"quoted_status":{"created_at":"Thu + Nov 14 12:43:58 +0000 2019","id":1194959156878467072,"id_str":"1194959156878467072","full_text":"In + 30 minutes please join us\nWebinar room is ready https:\/\/t.co\/ej8SNvWvDZ\n@nicolapallitt presenting + https:\/\/t.co\/RWAtmzL8ox","truncated":false,"display_text_range":[0,102],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[76,90]}],"urls":[{"url":"https:\/\/t.co\/ej8SNvWvDZ","expanded_url":"http:\/\/zoom.us\/j\/603307386","display_url":"zoom.us\/j\/603307386","indices":[52,75]}],"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":7,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Mar 01 20:00:41 +0000 2020","id":1234206946732830720,"id_str":"1234206946732830720","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3294167372,"id_str":"3294167372","name":"Augusta + Avram","screen_name":"ELTAugusta","location":"British Columbia, Canada","description":"Language + Education #CdnELTchat","url":"https:\/\/t.co\/OpLrmtQUDp","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OpLrmtQUDp","expanded_url":"https:\/\/twitter.com\/LINCclass","display_url":"twitter.com\/LINCclass","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":789,"friends_count":1325,"listed_count":78,"created_at":"Sun + Jul 26 02:40:59 +0000 2015","favourites_count":5096,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7313,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/704165359020978176\/wbBjVGk1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/704165359020978176\/wbBjVGk1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3294167372\/1437949131","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Nov 15 15:31:25 +0000 2019","id":1195363684689821696,"id_str":"1195363684689821696","full_text":"RT + @emergeAfrica: If you missed this session with @nicolapallitt the recording + is now available https:\/\/t.co\/toMDHdVsAB \n@AECT #aect1\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[50,64]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[127,132]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[100,123]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Nov 15 15:17:04 +0000 2019","id":1195360071464738817,"id_str":"1195360071464738817","full_text":"If + you missed this session with @nicolapallitt the recording is now available https:\/\/t.co\/toMDHdVsAB \n@AECT + #aect19 #emergeAfrica https:\/\/t.co\/FwbR75FNk4","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19","indices":[115,122]},{"text":"emergeAfrica","indices":[123,136]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[32,46]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[109,114]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[82,105]},{"url":"https:\/\/t.co\/FwbR75FNk4","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display_url":"twitter.com\/emergeAfrica\/s\u2026","indices":[137,160]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"quoted_status":{"created_at":"Thu + Nov 14 12:43:58 +0000 2019","id":1194959156878467072,"id_str":"1194959156878467072","full_text":"In + 30 minutes please join us\nWebinar room is ready https:\/\/t.co\/ej8SNvWvDZ\n@nicolapallitt presenting + https:\/\/t.co\/RWAtmzL8ox","truncated":false,"display_text_range":[0,102],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[76,90]}],"urls":[{"url":"https:\/\/t.co\/ej8SNvWvDZ","expanded_url":"http:\/\/zoom.us\/j\/603307386","display_url":"zoom.us\/j\/603307386","indices":[52,75]}],"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":7,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Nov 18 19:44:54 +0000 2019","id":1196514636595712002,"id_str":"1196514636595712002","full_text":"RT + @SultanMutlaq: Third day #aect19inspired #AECTech2019 #aect19inspired Be inspired + https:\/\/t.co\/OdpkOCJKOG","truncated":false,"display_text_range":[0,108],"entities":{"hashtags":[{"text":"aect19inspired","indices":[28,43]},{"text":"AECTech2019","indices":[44,56]},{"text":"aect19inspired","indices":[57,72]}],"symbols":[],"user_mentions":[{"screen_name":"SultanMutlaq","name":"SultanMutlaq","id":370132373,"id_str":"370132373","indices":[3,16]}],"urls":[],"media":[{"id":1187068399836266496,"id_str":"1187068399836266496","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","url":"https:\/\/t.co\/OdpkOCJKOG","display_url":"pic.twitter.com\/OdpkOCJKOG","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1187068404655505410,"source_status_id_str":"1187068404655505410","source_user_id":370132373,"source_user_id_str":"370132373"}]},"extended_entities":{"media":[{"id":1187068399836266496,"id_str":"1187068399836266496","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","url":"https:\/\/t.co\/OdpkOCJKOG","display_url":"pic.twitter.com\/OdpkOCJKOG","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1187068404655505410,"source_status_id_str":"1187068404655505410","source_user_id":370132373,"source_user_id_str":"370132373","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1168887502817697794,"id_str":"1168887502817697794","name":"caroline","screen_name":"carolinem2040","location":"","description":"EME + 2040\ud83e\udd13\ud83d\udcd5\u270f\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":18,"listed_count":0,"created_at":"Tue + Sep 03 14:04:40 +0000 2019","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":36,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1168888173704949765\/FFnAmK2a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1168888173704949765\/FFnAmK2a_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 18:08:56 +0000 2019","id":1187068404655505410,"id_str":"1187068404655505410","full_text":"Third + day #aect19inspired #AECTech2019 #aect19inspired Be inspired https:\/\/t.co\/OdpkOCJKOG","truncated":false,"display_text_range":[0,66],"entities":{"hashtags":[{"text":"aect19inspired","indices":[10,25]},{"text":"AECTech2019","indices":[26,38]},{"text":"aect19inspired","indices":[39,54]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187068399836266496,"id_str":"1187068399836266496","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","url":"https:\/\/t.co\/OdpkOCJKOG","display_url":"pic.twitter.com\/OdpkOCJKOG","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187068399836266496,"id_str":"1187068399836266496","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","url":"https:\/\/t.co\/OdpkOCJKOG","display_url":"pic.twitter.com\/OdpkOCJKOG","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187052419324055552,"in_reply_to_status_id_str":"1187052419324055552","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Nov 12 18:07:38 +0000 2019","id":1194315833855492096,"id_str":"1194315833855492096","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":54487942,"id_str":"54487942","name":"Cheryl + Brown","screen_name":"cherybrown","location":"Christchurch City, New Zealand","description":"Assoc + Prof @UCNZ passionate about digital literacy, citizenship & identity, very + novice te Reo \u0101konga. She\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1504,"friends_count":1440,"listed_count":54,"created_at":"Tue + Jul 07 08:13:16 +0000 2009","favourites_count":5708,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2194,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/768075737064701952\/jZDTSdf9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/768075737064701952\/jZDTSdf9_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Feb 05 19:23:27 +0000 2020","id":1225137879921385472,"id_str":"1225137879921385472","full_text":"RT + @tadousay: Many thanks to @AECTTechTrends for supporting our @gsa_aect with + the Grad Member Musings column! The latest guest author is #\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[29,44]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[64,73]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":804807943,"id_str":"804807943","name":"TechTrends + Editor","screen_name":"AECTTechTrends","location":"","description":"Tweets + from the Editor of TechTrends, an AECT journal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2050,"friends_count":15,"listed_count":57,"created_at":"Wed + Sep 05 15:17:03 +0000 2012","favourites_count":772,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/804807943\/1483653902","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Feb 05 18:21:36 +0000 2020","id":1225122317849657345,"id_str":"1225122317849657345","full_text":"Many + thanks to @AECTTechTrends for supporting our @gsa_aect with the Grad Member + Musings column! The latest guest author is #uidaho''s Ken Cox, a first year + doc student in our C&I program and a member of my #UISTEMEdRG. https:\/\/t.co\/8MuP9Mza8f + #aect #aect20 #aect19","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"uidaho","indices":[124,131]},{"text":"UISTEMEdRG","indices":[210,221]},{"text":"aect","indices":[247,252]},{"text":"aect20","indices":[253,260]},{"text":"aect19","indices":[261,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[15,30]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[50,59]}],"urls":[{"url":"https:\/\/t.co\/8MuP9Mza8f","expanded_url":"https:\/\/doi.org\/10.1007\/s11528-020-00477-5","display_url":"doi.org\/10.1007\/s11528\u2026","indices":[223,246]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 19:24:08 +0000 2019","id":1194335082930028544,"id_str":"1194335082930028544","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":972084726155694080,"id_str":"972084726155694080","name":"Center + for Open Education Research (COER)","screen_name":"_COER_","location":"Oldenburg, + Germany","description":"Increase international collaborative research projects, + innovation & understanding in #OER, #edtech, #lifelonglearning & international + education.","url":"https:\/\/t.co\/sBEQLB6suC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sBEQLB6suC","expanded_url":"http:\/\/www.uni-oldenburg.de\/coer","display_url":"uni-oldenburg.de\/coer","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1354,"friends_count":1115,"listed_count":26,"created_at":"Fri + Mar 09 12:20:33 +0000 2018","favourites_count":1896,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1400,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/972096724327116802\/7WpFWeAH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/972096724327116802\/7WpFWeAH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/972084726155694080\/1520607289","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Nov 15 15:47:25 +0000 2019","id":1195367711276179456,"id_str":"1195367711276179456","full_text":"RT + @emergeAfrica: If you missed this session with @nicolapallitt the recording + is now available https:\/\/t.co\/toMDHdVsAB \n@AECT #aect1\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[50,64]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[127,132]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[100,123]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Nov 15 15:17:04 +0000 2019","id":1195360071464738817,"id_str":"1195360071464738817","full_text":"If + you missed this session with @nicolapallitt the recording is now available https:\/\/t.co\/toMDHdVsAB \n@AECT + #aect19 #emergeAfrica https:\/\/t.co\/FwbR75FNk4","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19","indices":[115,122]},{"text":"emergeAfrica","indices":[123,136]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[32,46]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[109,114]}],"urls":[{"url":"https:\/\/t.co\/toMDHdVsAB","expanded_url":"https:\/\/youtu.be\/cfGOb6jDgCk","display_url":"youtu.be\/cfGOb6jDgCk","indices":[82,105]},{"url":"https:\/\/t.co\/FwbR75FNk4","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display_url":"twitter.com\/emergeAfrica\/s\u2026","indices":[137,160]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"quoted_status":{"created_at":"Thu + Nov 14 12:43:58 +0000 2019","id":1194959156878467072,"id_str":"1194959156878467072","full_text":"In + 30 minutes please join us\nWebinar room is ready https:\/\/t.co\/ej8SNvWvDZ\n@nicolapallitt presenting + https:\/\/t.co\/RWAtmzL8ox","truncated":false,"display_text_range":[0,102],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[76,90]}],"urls":[{"url":"https:\/\/t.co\/ej8SNvWvDZ","expanded_url":"http:\/\/zoom.us\/j\/603307386","display_url":"zoom.us\/j\/603307386","indices":[52,75]}],"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194959126218100736,"id_str":"1194959126218100736","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJVY_n9XUAAcH1E.jpg","url":"https:\/\/t.co\/RWAtmzL8ox","display_url":"pic.twitter.com\/RWAtmzL8ox","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":7,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1194959156878467072,"quoted_status_id_str":"1194959156878467072","quoted_status_permalink":{"url":"https:\/\/t.co\/FwbR75FNk4","expanded":"https:\/\/twitter.com\/emergeAfrica\/status\/1194959156878467072","display":"twitter.com\/emergeAfrica\/s\u2026"},"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194260166033780736%2C1194259837368066048%2C1194259012478492672%2C1194258334083428352%2C1194258188578820096%2C1194253928340299777%2C1194253817304498177%2C1194253817304498177%2C1194009675639017472%2C1194009403340574720%2C1193999691001712640%2C1193997944753659905%2C1193997944753659905%2C1193396279088431105%2C1193179652602368007%2C1192887723390111745%2C1192832237600825344%2C1192684855542341633%2C1192534082665758720%2C1192506270529597441%2C1192449505150603269%2C1192445767111397377%2C1192445767111397377%2C1192422191943561217%2C1192421162191593474%2C1192419687801511938%2C1192418422623219714%2C1192414800829190144%2C1192414241942310912%2C1192414241942310912%2C1192409306785832960%2C1192408699261857794%2C1192408226547032065%2C1192401564767522816%2C1192399548389478401%2C1192399548389478401%2C1192254866535669767%2C1192192320944390144%2C1192191846149169153%2C1192191846149169153%2C1192178294134890496%2C1192152121011048449%2C1192151681942745089%2C1192151681942745089%2C1192127017283702784%2C1192093253652365316%2C1192068619028459525%2C1192063323761717249%2C1192063323761717249%2C1191893402423414784%2C1191893363735199744%2C1191893363735199744%2C1191457323392413696%2C1191386478754050048%2C1191296712566071298%2C1191295784031080448%2C1191295784031080448%2C1190798508015656961%2C1190650016190349312%2C1190455794954670084%2C1190404469504143360%2C1190401614659624962%2C1190343026436165632%2C1190341807646937088%2C1190341807646937088%2C1190317337012056067%2C1190297929136791553%2C1190282375348932609%2C1190068170087903232%2C1190010085986037766%2C1189997445872263170%2C1189984097948651522%2C1189982183265583104%2C1189982183265583104%2C1189964453497864192%2C1189763739484065794%2C1189750078443053056%2C1189748139303067648%2C1189748139303067648%2C1189712615636946945%2C1189699453738983427%2C1189684545681068035%2C1189684219980718080%2C1189684033539710977%2C1189683608350601216%2C1189683608350601216%2C1189650309041336332%2C1189646995423711233%2C1189646995423711233%2C1189646387564158978%2C1189635219097346048%2C1189635219097346048%2C1189616644764684294%2C1189577927077154816%2C1189547793079160832%2C1189434735241637889%2C1189357491177410560%2C1189356719819939841%2C1189356719819939841%2C1189306225319731200&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:39 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:39 GMT + x-transaction: 99cdb46ef47fa452 + content-length: '49204' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '293' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '263' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Sun Nov 03 01:11:02 +0000 2019","id":1190798508015656961,"id_str":"1190798508015656961","full_text":"RT + @MeganCMurtaugh: #EdLeadership #aect19 #mentoring\nhttps:\/\/t.co\/htK2bkoNpF","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"EdLeadership","indices":[20,33]},{"text":"aect19","indices":[34,41]},{"text":"mentoring","indices":[42,52]}],"symbols":[],"user_mentions":[{"screen_name":"MeganCMurtaugh","name":"Megan + C. Murtaugh, Ed.D.","id":335613192,"id_str":"335613192","indices":[3,18]}],"urls":[{"url":"https:\/\/t.co\/htK2bkoNpF","expanded_url":"https:\/\/www.linkedin.com\/posts\/megancmurtaugh_aect19-edtech-leaders-activity-6595670818699698178-qshh","display_url":"linkedin.com\/posts\/megancmu\u2026","indices":[53,76]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14125173,"id_str":"14125173","name":"Trey + Martindale","screen_name":"treymartindale","location":"","description":"News + about #instructionaldesign and #onlinelearning , mostly in #highered .","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1170,"friends_count":0,"listed_count":98,"created_at":"Tue + Mar 11 16:32:25 +0000 2008","favourites_count":110,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4164,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1291200178553327619\/BcPSjP2-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1291200178553327619\/BcPSjP2-_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 31 19:14:52 +0000 2019","id":1189984097948651522,"id_str":"1189984097948651522","full_text":"#EdLeadership + #aect19 #mentoring\nhttps:\/\/t.co\/htK2bkoNpF","truncated":false,"display_text_range":[0,56],"entities":{"hashtags":[{"text":"EdLeadership","indices":[0,13]},{"text":"aect19","indices":[14,21]},{"text":"mentoring","indices":[22,32]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/htK2bkoNpF","expanded_url":"https:\/\/www.linkedin.com\/posts\/megancmurtaugh_aect19-edtech-leaders-activity-6595670818699698178-qshh","display_url":"linkedin.com\/posts\/megancmu\u2026","indices":[33,56]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":335613192,"id_str":"335613192","name":"Megan + C. Murtaugh, Ed.D.","screen_name":"MeganCMurtaugh","location":"","description":"Instructional + Design | Curriculum Development | Technology Integration | Online Learning","url":"http:\/\/t.co\/o8Fu5KipP8","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/o8Fu5KipP8","expanded_url":"http:\/\/www.megancmurtaugh.com","display_url":"megancmurtaugh.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":435,"friends_count":446,"listed_count":11,"created_at":"Thu + Jul 14 23:37:30 +0000 2011","favourites_count":767,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":433,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1239713824913186816\/ufuVavfV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1239713824913186816\/ufuVavfV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/335613192\/1584405785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"4ec01c9dbc693497","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4ec01c9dbc693497.json","place_type":"admin","name":"Florida","full_name":"Florida, + USA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-87.634643,24.396308],[-79.974307,24.396308],[-79.974307,31.001056],[-87.634643,31.001056]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Wed + Nov 06 18:49:49 +0000 2019","id":1192152121011048449,"id_str":"1192152121011048449","full_text":"RT + @FredWBaker: There is still about a month to get a proposal together for the + Systems Thinking & Change Division''s special issue of \n@AEC\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Nov 06 12:56:58 +0000 2019","id":1192063323761717249,"id_str":"1192063323761717249","full_text":"There + is still about a month to get a proposal together for the Systems Thinking + & Change Division''s special issue of \n@AECTTechTrends!! #instructionaldesign + #aect19 #aectstc https:\/\/t.co\/nQzSaUyRGC","truncated":false,"display_text_range":[0,202],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[141,161]},{"text":"aect19","indices":[162,169]},{"text":"aectstc","indices":[170,178]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[123,138]}],"urls":[{"url":"https:\/\/t.co\/nQzSaUyRGC","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[179,202]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 06 21:29:33 +0000 2019","id":1192192320944390144,"id_str":"1192192320944390144","full_text":"RT + @AECT: Congratulations to Michelle Jensen and Aprel Mendenhall from @utahstateITLS, + winners of the @NATO_ACT Design and Development Comp\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]},{"screen_name":"utahstateITLS","name":"USU + ITLS","id":204889709,"id_str":"204889709","indices":[71,85]},{"screen_name":"NATO_ACT","name":"NATO + ACT","id":22975123,"id_str":"22975123","indices":[102,111]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Nov 06 21:27:40 +0000 2019","id":1192191846149169153,"id_str":"1192191846149169153","full_text":"Congratulations + to Michelle Jensen and Aprel Mendenhall from @utahstateITLS, winners of the + @NATO_ACT Design and Development Competition at #AECT19! News about the competition + is featured in MarketWatch and more than 120 other news outlets.\n\nhttps:\/\/t.co\/OUgC3jDPdD + https:\/\/t.co\/j9adEcJyT1","truncated":false,"display_text_range":[0,265],"entities":{"hashtags":[{"text":"AECT19","indices":[140,147]}],"symbols":[],"user_mentions":[{"screen_name":"utahstateITLS","name":"USU + ITLS","id":204889709,"id_str":"204889709","indices":[61,75]},{"screen_name":"NATO_ACT","name":"NATO + ACT","id":22975123,"id_str":"22975123","indices":[92,101]}],"urls":[{"url":"https:\/\/t.co\/OUgC3jDPdD","expanded_url":"http:\/\/bit.ly\/aect-nato-news","display_url":"bit.ly\/aect-nato-news","indices":[242,265]}],"media":[{"id":1192191841040576514,"id_str":"1192191841040576514","indices":[266,289],"media_url":"http:\/\/pbs.twimg.com\/media\/EIuEKbVXsAIR2Wq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIuEKbVXsAIR2Wq.jpg","url":"https:\/\/t.co\/j9adEcJyT1","display_url":"pic.twitter.com\/j9adEcJyT1","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1192191846149169153\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":695,"h":457,"resize":"fit"},"small":{"w":680,"h":447,"resize":"fit"},"medium":{"w":695,"h":457,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1192191841040576514,"id_str":"1192191841040576514","indices":[266,289],"media_url":"http:\/\/pbs.twimg.com\/media\/EIuEKbVXsAIR2Wq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIuEKbVXsAIR2Wq.jpg","url":"https:\/\/t.co\/j9adEcJyT1","display_url":"pic.twitter.com\/j9adEcJyT1","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1192191846149169153\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":695,"h":457,"resize":"fit"},"small":{"w":680,"h":447,"resize":"fit"},"medium":{"w":695,"h":457,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 29 22:21:15 +0000 2019","id":1189306225319731200,"id_str":"1189306225319731200","full_text":"We''re + still recovering from #AECT19, but that doesn''t mean we haven''t started + planning for #AECT20 and beyond! Check out the future locations for upcoming + AECT International Conventions through 2025. Hopefully we''ll see you in #JAX! + https:\/\/t.co\/KUffDFfWwv","truncated":false,"display_text_range":[0,232],"entities":{"hashtags":[{"text":"AECT19","indices":[28,35]},{"text":"AECT20","indices":[91,98]},{"text":"JAX","indices":[227,231]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1189306203798528000,"id_str":"1189306203798528000","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","url":"https:\/\/t.co\/KUffDFfWwv","display_url":"pic.twitter.com\/KUffDFfWwv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1189306225319731200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1189306203798528000,"id_str":"1189306203798528000","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","url":"https:\/\/t.co\/KUffDFfWwv","display_url":"pic.twitter.com\/KUffDFfWwv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1189306225319731200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":29,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Nov 01 00:48:56 +0000 2019","id":1190068170087903232,"id_str":"1190068170087903232","full_text":"RT + @MeganCMurtaugh: #EdLeadership #aect19 #mentoring\nhttps:\/\/t.co\/htK2bkoNpF","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"EdLeadership","indices":[20,33]},{"text":"aect19","indices":[34,41]},{"text":"mentoring","indices":[42,52]}],"symbols":[],"user_mentions":[{"screen_name":"MeganCMurtaugh","name":"Megan + C. Murtaugh, Ed.D.","id":335613192,"id_str":"335613192","indices":[3,18]}],"urls":[{"url":"https:\/\/t.co\/htK2bkoNpF","expanded_url":"https:\/\/www.linkedin.com\/posts\/megancmurtaugh_aect19-edtech-leaders-activity-6595670818699698178-qshh","display_url":"linkedin.com\/posts\/megancmu\u2026","indices":[53,76]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 31 19:14:52 +0000 2019","id":1189984097948651522,"id_str":"1189984097948651522","full_text":"#EdLeadership + #aect19 #mentoring\nhttps:\/\/t.co\/htK2bkoNpF","truncated":false,"display_text_range":[0,56],"entities":{"hashtags":[{"text":"EdLeadership","indices":[0,13]},{"text":"aect19","indices":[14,21]},{"text":"mentoring","indices":[22,32]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/htK2bkoNpF","expanded_url":"https:\/\/www.linkedin.com\/posts\/megancmurtaugh_aect19-edtech-leaders-activity-6595670818699698178-qshh","display_url":"linkedin.com\/posts\/megancmu\u2026","indices":[33,56]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":335613192,"id_str":"335613192","name":"Megan + C. Murtaugh, Ed.D.","screen_name":"MeganCMurtaugh","location":"","description":"Instructional + Design | Curriculum Development | Technology Integration | Online Learning","url":"http:\/\/t.co\/o8Fu5KipP8","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/o8Fu5KipP8","expanded_url":"http:\/\/www.megancmurtaugh.com","display_url":"megancmurtaugh.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":435,"friends_count":446,"listed_count":11,"created_at":"Thu + Jul 14 23:37:30 +0000 2011","favourites_count":767,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":433,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1239713824913186816\/ufuVavfV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1239713824913186816\/ufuVavfV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/335613192\/1584405785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"4ec01c9dbc693497","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4ec01c9dbc693497.json","place_type":"admin","name":"Florida","full_name":"Florida, + USA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-87.634643,24.396308],[-79.974307,24.396308],[-79.974307,31.001056],[-87.634643,31.001056]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Wed + Oct 30 21:08:30 +0000 2019","id":1189650309041336332,"id_str":"1189650309041336332","full_text":"RT + @FredWBaker: Had a great conversation at the roundtable on #DesignThinking + at #aect19 around my new paper being published in the Review\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"DesignThinking","indices":[62,77]},{"text":"aect19","indices":[81,88]}],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/sprintbaseapp.com\" rel=\"nofollow\"\u003eSprintbaseBot\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1007518859979579392,"id_str":"1007518859979579392","name":"SprintbaseBot","screen_name":"SprintbaseB","location":"","description":"I + am a bot tweeting on behalf of @SprintbaseApp. I auto-retweet tweets with + the hashtag #designthinking","url":"https:\/\/t.co\/C8I59NSAvP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/C8I59NSAvP","expanded_url":"http:\/\/sprintbase.io","display_url":"sprintbase.io","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1565,"friends_count":9,"listed_count":42,"created_at":"Fri + Jun 15 07:03:09 +0000 2018","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":168904,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1007520117889077248\/akwuaVbc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1007520117889077248\/akwuaVbc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1007518859979579392\/1529046644","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3071EE","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 30 20:55:20 +0000 2019","id":1189646995423711233,"id_str":"1189646995423711233","full_text":"Had + a great conversation at the roundtable on #DesignThinking at #aect19 around + my new paper being published in the Review of Education! It is important to + discuss design in #instructionaldesign! The paper is titled \"Concretizing + Design Thinking\" and will be out soon!","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"DesignThinking","indices":[46,61]},{"text":"aect19","indices":[65,72]},{"text":"instructionaldesign","indices":[174,194]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 06 20:33:49 +0000 2019","id":1192178294134890496,"id_str":"1192178294134890496","full_text":"RT + @FredWBaker: There is still about a month to get a proposal together for the + Systems Thinking & Change Division''s special issue of \n@AEC\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Nov 06 12:56:58 +0000 2019","id":1192063323761717249,"id_str":"1192063323761717249","full_text":"There + is still about a month to get a proposal together for the Systems Thinking + & Change Division''s special issue of \n@AECTTechTrends!! #instructionaldesign + #aect19 #aectstc https:\/\/t.co\/nQzSaUyRGC","truncated":false,"display_text_range":[0,202],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[141,161]},{"text":"aect19","indices":[162,169]},{"text":"aectstc","indices":[170,178]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[123,138]}],"urls":[{"url":"https:\/\/t.co\/nQzSaUyRGC","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[179,202]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Nov 07 11:51:47 +0000 2019","id":1192409306785832960,"id_str":"1192409306785832960","full_text":"RT + @emergeAfrica: Join @nicolapallitt and the @AECT friends at this Report Back + FREE webinar as they tell us what happened at the AECT Inte\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[23,37]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[46,51]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Nov 07 11:47:29 +0000 2019","id":1192408226547032065,"id_str":"1192408226547032065","full_text":"Join + @nicolapallitt and the @AECT friends at this Report Back FREE webinar as they + tell us what happened at the AECT International Convention in Las Vegas in + October #AECT19 #emergeAfrica \nSee you on Thursday 14th November 2019 at + 3:00pm SAST https:\/\/t.co\/KWT2GHvEv9","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"AECT19","indices":[166,173]},{"text":"emergeAfrica","indices":[174,187]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[5,19]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[28,33]}],"urls":[],"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 30 23:23:15 +0000 2019","id":1189684219980718080,"id_str":"1189684219980718080","full_text":"RT + @FredWBaker: Thankful to have received the Charles M. Reigeluth Emerging Researcher + Award from the Systems Thinking & Change Division at\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 30 20:52:56 +0000 2019","id":1189646387564158978,"id_str":"1189646387564158978","full_text":"Thankful + to have received the Charles M. Reigeluth Emerging Researcher Award from the + Systems Thinking & Change Division at #AECT19! #aectstc! And my colleague + was able to present it! https:\/\/t.co\/5BtvA2X5Rz","truncated":false,"display_text_range":[0,187],"entities":{"hashtags":[{"text":"AECT19","indices":[128,135]},{"text":"aectstc","indices":[137,145]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1189646384057720834,"id_str":"1189646384057720834","indices":[188,211],"media_url":"http:\/\/pbs.twimg.com\/media\/EIJ5FVIWoAIyCMo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIJ5FVIWoAIyCMo.jpg","url":"https:\/\/t.co\/5BtvA2X5Rz","display_url":"pic.twitter.com\/5BtvA2X5Rz","expanded_url":"https:\/\/twitter.com\/FredWBaker\/status\/1189646387564158978\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":512,"resize":"fit"},"large":{"w":897,"h":675,"resize":"fit"},"medium":{"w":897,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1189646384057720834,"id_str":"1189646384057720834","indices":[188,211],"media_url":"http:\/\/pbs.twimg.com\/media\/EIJ5FVIWoAIyCMo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIJ5FVIWoAIyCMo.jpg","url":"https:\/\/t.co\/5BtvA2X5Rz","display_url":"pic.twitter.com\/5BtvA2X5Rz","expanded_url":"https:\/\/twitter.com\/FredWBaker\/status\/1189646387564158978\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":512,"resize":"fit"},"large":{"w":897,"h":675,"resize":"fit"},"medium":{"w":897,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":39,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 30 20:08:33 +0000 2019","id":1189635219097346048,"id_str":"1189635219097346048","full_text":"RT + @AECT: We''re still recovering from #AECT19, but that doesn''t mean we haven''t + started planning for #AECT20 and beyond! Check out the futu\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[38,45]},{"text":"AECT20","indices":[101,108]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 29 22:21:15 +0000 2019","id":1189306225319731200,"id_str":"1189306225319731200","full_text":"We''re + still recovering from #AECT19, but that doesn''t mean we haven''t started + planning for #AECT20 and beyond! Check out the future locations for upcoming + AECT International Conventions through 2025. Hopefully we''ll see you in #JAX! + https:\/\/t.co\/KUffDFfWwv","truncated":false,"display_text_range":[0,232],"entities":{"hashtags":[{"text":"AECT19","indices":[28,35]},{"text":"AECT20","indices":[91,98]},{"text":"JAX","indices":[227,231]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1189306203798528000,"id_str":"1189306203798528000","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","url":"https:\/\/t.co\/KUffDFfWwv","display_url":"pic.twitter.com\/KUffDFfWwv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1189306225319731200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1189306203798528000,"id_str":"1189306203798528000","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","url":"https:\/\/t.co\/KUffDFfWwv","display_url":"pic.twitter.com\/KUffDFfWwv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1189306225319731200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":29,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Nov 07 12:13:37 +0000 2019","id":1192414800829190144,"id_str":"1192414800829190144","full_text":"RT + @nicolapallitt: Thank you @aslam_fataar for critical piece on #4IR https:\/\/t.co\/BMD73NScka + I find fascinating that when I attended #aec\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"4IR","indices":[65,69]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"aslam_fataar","name":"Aslam + Fataar","id":789033857572040704,"id_str":"789033857572040704","indices":[29,42]}],"urls":[{"url":"https:\/\/t.co\/BMD73NScka","expanded_url":"https:\/\/www.litnet.co.za\/in-the-belly-of-the-beast-south-africas-education-discourses-associated-with-the-fourth-industrial-revolution-4ir\/","display_url":"litnet.co.za\/in-the-belly-o\u2026","indices":[71,94]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2746147879,"id_str":"2746147879","name":"Shanali + Govender","screen_name":"GovenderShanali","location":"Cape Town, South Africa","description":"Academic. + PhD in academic casualisation in progress. Dancer. Cook. Daughter & sister. + Dreamer and maker.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":340,"friends_count":763,"listed_count":0,"created_at":"Tue + Aug 19 18:46:58 +0000 2014","favourites_count":663,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":698,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1166990610148077568\/jROiEneo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1166990610148077568\/jROiEneo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2746147879\/1567067217","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Nov 07 11:21:01 +0000 2019","id":1192401564767522816,"id_str":"1192401564767522816","full_text":"Thank + you @aslam_fataar for critical piece on #4IR https:\/\/t.co\/BMD73NScka I + find fascinating that when I attended #aect19 in the US 4IR was not mentioned + at all. Maybe it''s a political myth, WEF pulled the strings and SA gov took + the bait. Now we are being sold ''solutions''.","truncated":false,"display_text_range":[0,276],"entities":{"hashtags":[{"text":"4IR","indices":[46,50]},{"text":"aect19","indices":[116,123]}],"symbols":[],"user_mentions":[{"screen_name":"aslam_fataar","name":"Aslam + Fataar","id":789033857572040704,"id_str":"789033857572040704","indices":[10,23]}],"urls":[{"url":"https:\/\/t.co\/BMD73NScka","expanded_url":"https:\/\/www.litnet.co.za\/in-the-belly-of-the-beast-south-africas-education-discourses-associated-with-the-fourth-industrial-revolution-4ir\/","display_url":"litnet.co.za\/in-the-belly-o\u2026","indices":[52,75]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 31 19:07:15 +0000 2019","id":1189982183265583104,"id_str":"1189982183265583104","full_text":"RT + @AECT: We''re still recovering from #AECT19, but that doesn''t mean we haven''t + started planning for #AECT20 and beyond! Check out the futu\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[38,45]},{"text":"AECT20","indices":[101,108]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":955988349143175168,"id_str":"955988349143175168","name":"TheIDMD","screen_name":"TheIDMD","location":"","description":"The + Doctor is In. Serving heart, mind, & soul of instructional designers and our + craft. Learning about critical digital pedagogy. Previously @discussiondiva.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":112,"friends_count":155,"listed_count":2,"created_at":"Wed + Jan 24 02:19:18 +0000 2018","favourites_count":988,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":956,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1009198368491311104\/M1995r-j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1009198368491311104\/M1995r-j_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 29 22:21:15 +0000 2019","id":1189306225319731200,"id_str":"1189306225319731200","full_text":"We''re + still recovering from #AECT19, but that doesn''t mean we haven''t started + planning for #AECT20 and beyond! Check out the future locations for upcoming + AECT International Conventions through 2025. Hopefully we''ll see you in #JAX! + https:\/\/t.co\/KUffDFfWwv","truncated":false,"display_text_range":[0,232],"entities":{"hashtags":[{"text":"AECT19","indices":[28,35]},{"text":"AECT20","indices":[91,98]},{"text":"JAX","indices":[227,231]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1189306203798528000,"id_str":"1189306203798528000","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","url":"https:\/\/t.co\/KUffDFfWwv","display_url":"pic.twitter.com\/KUffDFfWwv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1189306225319731200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1189306203798528000,"id_str":"1189306203798528000","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","url":"https:\/\/t.co\/KUffDFfWwv","display_url":"pic.twitter.com\/KUffDFfWwv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1189306225319731200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":29,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Nov 07 12:28:00 +0000 2019","id":1192418422623219714,"id_str":"1192418422623219714","full_text":"RT + @emergeAfrica: Join @nicolapallitt and the @AECT friends at this Report Back + FREE webinar as they tell us what happened at the AECT Inte\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[23,37]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[46,51]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":123168263,"id_str":"123168263","name":"Irene + Maweu \ud83c\udf3b\ud83c\udf3b","screen_name":"wavinya66","location":"Kenya","description":"By + Faith \/ With Respect \/ Facilitating from the heart \/ Liberating Structures + Gospel \/ IAF Member","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":762,"friends_count":772,"listed_count":9,"created_at":"Mon + Mar 15 06:31:31 +0000 2010","favourites_count":10218,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5795,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123168263\/1610274071","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Nov 07 11:47:29 +0000 2019","id":1192408226547032065,"id_str":"1192408226547032065","full_text":"Join + @nicolapallitt and the @AECT friends at this Report Back FREE webinar as they + tell us what happened at the AECT International Convention in Las Vegas in + October #AECT19 #emergeAfrica \nSee you on Thursday 14th November 2019 at + 3:00pm SAST https:\/\/t.co\/KWT2GHvEv9","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"AECT19","indices":[166,173]},{"text":"emergeAfrica","indices":[174,187]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[5,19]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[28,33]}],"urls":[],"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Nov 02 02:29:13 +0000 2019","id":1190455794954670084,"id_str":"1190455794954670084","full_text":"@vdennen + @ISLT_FSU @kariknisely Great to meet you at #aect19! Congrats \ud83d\ude0a","truncated":false,"display_text_range":[32,72],"entities":{"hashtags":[{"text":"aect19","indices":[53,60]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[0,8]},{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[9,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1190391531900932098,"in_reply_to_status_id_str":"1190391531900932098","in_reply_to_user_id":142359679,"in_reply_to_user_id_str":"142359679","in_reply_to_screen_name":"vdennen","user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 30 01:41:53 +0000 2019","id":1189356719819939841,"id_str":"1189356719819939841","full_text":"RT + @AECT: We''re still recovering from #AECT19, but that doesn''t mean we haven''t + started planning for #AECT20 and beyond! Check out the futu\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[38,45]},{"text":"AECT20","indices":[101,108]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 29 22:21:15 +0000 2019","id":1189306225319731200,"id_str":"1189306225319731200","full_text":"We''re + still recovering from #AECT19, but that doesn''t mean we haven''t started + planning for #AECT20 and beyond! Check out the future locations for upcoming + AECT International Conventions through 2025. Hopefully we''ll see you in #JAX! + https:\/\/t.co\/KUffDFfWwv","truncated":false,"display_text_range":[0,232],"entities":{"hashtags":[{"text":"AECT19","indices":[28,35]},{"text":"AECT20","indices":[91,98]},{"text":"JAX","indices":[227,231]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1189306203798528000,"id_str":"1189306203798528000","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","url":"https:\/\/t.co\/KUffDFfWwv","display_url":"pic.twitter.com\/KUffDFfWwv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1189306225319731200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1189306203798528000,"id_str":"1189306203798528000","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","url":"https:\/\/t.co\/KUffDFfWwv","display_url":"pic.twitter.com\/KUffDFfWwv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1189306225319731200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":29,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 31 20:07:54 +0000 2019","id":1189997445872263170,"id_str":"1189997445872263170","full_text":"RT + @SBarksway: Just attended my 1st ever round table session @ #aect19 and it + was FANTASTIC! Thank you for leading such a wonderful, engagi\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[63,70]}],"symbols":[],"user_mentions":[{"screen_name":"SBarksway","name":"Sarah + Barksdale","id":908737706699710464,"id_str":"908737706699710464","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":315100659,"id_str":"315100659","name":"Heidi + West Lundsgaard\u2728\ud83d\udc33\ud83d\udc33\ud83d\udc33\ud83d\udc33\ud83d\udc33\u2728","screen_name":"heidilundsgaard","location":"Worldwide + , Copenhagen","description":"Europe Company Director At A.P. Moller - Maersk + | A.P. M\u00f8ller - M\u00e6rsk A\/S - Esplanaden 50. , 1098 Copenhagen K, + Copenhagen https:\/\/t.co\/Ks5kLDDa1E","url":"https:\/\/t.co\/zE3Usus8RD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zE3Usus8RD","expanded_url":"http:\/\/investor.maersk.com","display_url":"investor.maersk.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/Ks5kLDDa1E","expanded_url":"http:\/\/www.sealandmaersk.com","display_url":"sealandmaersk.com","indices":[123,146]}]}},"protected":false,"followers_count":607,"friends_count":4865,"listed_count":4,"created_at":"Sat + Jun 11 09:13:55 +0000 2011","favourites_count":52857,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":51900,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1250246786305884161\/AxNbwEh4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1250246786305884161\/AxNbwEh4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/315100659\/1582687243","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 18:57:54 +0000 2019","id":1187443113922445312,"id_str":"1187443113922445312","full_text":"Just + attended my 1st ever round table session @ #aect19 and it was FANTASTIC! Thank + you for leading such a wonderful, engaging discussion around phenomenology + @JolieKennedy @pazureka #aect19inspired @LTMediaLab @UMN_CI https:\/\/t.co\/KD1sxKUERh","truncated":false,"display_text_range":[0,218],"entities":{"hashtags":[{"text":"aect19","indices":[48,55]},{"text":"aect19inspired","indices":[183,198]}],"symbols":[],"user_mentions":[{"screen_name":"JolieKennedy","name":"Jolie + Kennedy","id":202011104,"id_str":"202011104","indices":[159,172]},{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[173,182]},{"screen_name":"LTMediaLab","name":"Learning + Technologies","id":1260285405787652101,"id_str":"1260285405787652101","indices":[199,210]},{"screen_name":"UMN_CI","name":"U + of MN CEHD C&I","id":759684692,"id_str":"759684692","indices":[211,218]}],"urls":[],"media":[{"id":1187442309144563712,"id_str":"1187442309144563712","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":770,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1314,"resize":"fit"},"small":{"w":680,"h":436,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187442309144563712,"id_str":"1187442309144563712","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":770,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1314,"resize":"fit"},"small":{"w":680,"h":436,"resize":"fit"}},"ext_alt_text":null},{"id":1187442309148762112,"id_str":"1187442309148762112","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkfSQU4AA6UVk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkfSQU4AA6UVk.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187442394054004738,"id_str":"1187442394054004738","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkkOjUEAIwLPB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkkOjUEAIwLPB.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":908737706699710464,"id_str":"908737706699710464","name":"Sarah + Barksdale","screen_name":"SBarksway","location":"","description":"Educator + \ud83d\udcda Researcher \u270d\ud83c\udffb Instructional Design \ud83d\udc69\u200d\ud83c\udfa8 + PhD Cand.\u2615\ufe0f Learning Technologies \ud83d\udcbb Adventurer & Travelholic + \ud83c\udfd4\ufe0f \ud83d\udc99: #edtech #CSforALL #teachered #pd","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":329,"friends_count":480,"listed_count":5,"created_at":"Fri + Sep 15 17:02:07 +0000 2017","favourites_count":2160,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":428,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/908737706699710464\/1506899531","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Nov 07 14:31:31 +0000 2019","id":1192449505150603269,"id_str":"1192449505150603269","full_text":"RT + @emergeAfrica: Join @nicolapallitt and the @AECT friends at this Report Back + FREE webinar as they tell us what happened at the AECT Inte\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[23,37]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[46,51]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":52675234,"id_str":"52675234","name":"Gabriel + Konayuma","screen_name":"GabrielKonayuma","location":"Lusaka, Zambia","description":"A + Christian, Vocational Training educator specialised in learning, entrepreneurship, + educational technology.\n#edtech, #vocational_education, #entrepreneurship","url":"https:\/\/t.co\/ajMvMd1Eyh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ajMvMd1Eyh","expanded_url":"https:\/\/goo.gl\/nzZwHm","display_url":"goo.gl\/nzZwHm","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":571,"friends_count":1525,"listed_count":10,"created_at":"Wed + Jul 01 08:57:05 +0000 2009","favourites_count":3473,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4828,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643929621214437376\/9Q7jHSOH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643929621214437376\/9Q7jHSOH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52675234\/1608527579","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Nov 07 11:47:29 +0000 2019","id":1192408226547032065,"id_str":"1192408226547032065","full_text":"Join + @nicolapallitt and the @AECT friends at this Report Back FREE webinar as they + tell us what happened at the AECT International Convention in Las Vegas in + October #AECT19 #emergeAfrica \nSee you on Thursday 14th November 2019 at + 3:00pm SAST https:\/\/t.co\/KWT2GHvEv9","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"AECT19","indices":[166,173]},{"text":"emergeAfrica","indices":[174,187]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[5,19]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[28,33]}],"urls":[],"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 06 17:10:04 +0000 2019","id":1192127017283702784,"id_str":"1192127017283702784","full_text":"RT + @FredWBaker: There is still about a month to get a proposal together for the + Systems Thinking & Change Division''s special issue of \n@AEC\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2882777831,"id_str":"2882777831","name":"Natalie + B. Milman, Ph.D.","screen_name":"nataliebmilman","location":"Washington, DC","description":"Professor, + Online Educational Technology Leadership Program, George Washington Univ @gwGSEHD. + Interested in all things tech. Dr\/She\/Her\/Ella Tweets R my own.","url":"https:\/\/t.co\/AhrEXdF3ba","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AhrEXdF3ba","expanded_url":"http:\/\/home.gwu.edu\/~nmilman\/","display_url":"home.gwu.edu\/~nmilman\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1406,"friends_count":1075,"listed_count":100,"created_at":"Tue + Nov 18 16:09:26 +0000 2014","favourites_count":2299,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4571,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1262746198512820226\/u3QeiZhs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1262746198512820226\/u3QeiZhs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2882777831\/1589897695","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Nov 06 12:56:58 +0000 2019","id":1192063323761717249,"id_str":"1192063323761717249","full_text":"There + is still about a month to get a proposal together for the Systems Thinking + & Change Division''s special issue of \n@AECTTechTrends!! #instructionaldesign + #aect19 #aectstc https:\/\/t.co\/nQzSaUyRGC","truncated":false,"display_text_range":[0,202],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[141,161]},{"text":"aect19","indices":[162,169]},{"text":"aectstc","indices":[170,178]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[123,138]}],"urls":[{"url":"https:\/\/t.co\/nQzSaUyRGC","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[179,202]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Nov 01 16:01:55 +0000 2019","id":1190297929136791553,"id_str":"1190297929136791553","full_text":"RT + @susiegronseth: The ID theory legend @professordaveme met with @UHCOE students + through two of my courses and answered lots of questions\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"susiegronseth","name":"Susie + Gronseth","id":14481157,"id_str":"14481157","indices":[3,17]},{"screen_name":"professordaveme","name":"DaveMerrill","id":2538506378,"id_str":"2538506378","indices":[40,56]},{"screen_name":"UHCOE","name":"UH + College of Education","id":563967134,"id_str":"563967134","indices":[66,72]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 06:20:08 +0000 2019","id":1186890025750761477,"id_str":"1186890025750761477","full_text":"The + ID theory legend @professordaveme met with @UHCOE students through two of + my courses and answered lots of questions about ID theory and designing instruction + around problems, rather than objectives. #aectRTD #aect19inspired https:\/\/t.co\/HtikIv3lSS","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"aectRTD","indices":[203,211]},{"text":"aect19inspired","indices":[212,227]}],"symbols":[],"user_mentions":[{"screen_name":"professordaveme","name":"DaveMerrill","id":2538506378,"id_str":"2538506378","indices":[21,37]},{"screen_name":"UHCOE","name":"UH + College of Education","id":563967134,"id_str":"563967134","indices":[47,53]}],"urls":[],"media":[{"id":1186890022684770305,"id_str":"1186890022684770305","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiuL-2UwAEAS6n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiuL-2UwAEAS6n.jpg","url":"https:\/\/t.co\/HtikIv3lSS","display_url":"pic.twitter.com\/HtikIv3lSS","expanded_url":"https:\/\/twitter.com\/susiegronseth\/status\/1186890025750761477\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"},"medium":{"w":480,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186890022684770305,"id_str":"1186890022684770305","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiuL-2UwAEAS6n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiuL-2UwAEAS6n.jpg","url":"https:\/\/t.co\/HtikIv3lSS","display_url":"pic.twitter.com\/HtikIv3lSS","expanded_url":"https:\/\/twitter.com\/susiegronseth\/status\/1186890025750761477\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"},"medium":{"w":480,"h":640,"resize":"fit"}},"ext_alt_text":"@susiegronseth + with M. David Merrill"}]},"source":"\u003ca href=\"https:\/\/mobile.twitter.com\" + rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14481157,"id_str":"14481157","name":"Susie + Gronseth","screen_name":"susiegronseth","location":"Houston, TX","description":"@UHouston + faculty in Learning, Design & Technology; instructional designer; @SITEconf + UDL-SIG Co-Chair, wife of @mattgronseth, and mother of 2.","url":"https:\/\/t.co\/p0A1d9XG1V","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p0A1d9XG1V","expanded_url":"http:\/\/coe.uh.edu\/directory\/employee-profile\/index.php?id=618","display_url":"coe.uh.edu\/directory\/empl\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":670,"friends_count":680,"listed_count":0,"created_at":"Tue + Apr 22 21:57:29 +0000 2008","favourites_count":386,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2472,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/786678040344530944\/8Tm9Fpfh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/786678040344530944\/8Tm9Fpfh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14481157\/1449160334","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Nov 04 20:48:56 +0000 2019","id":1191457323392413696,"id_str":"1191457323392413696","full_text":"RT + @caranorth11: I know my friend @yourskillshub was a huge fan of Helen''s keynote. Sadly + I missed it because I was presenting at #AECT19.\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[131,138]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]},{"screen_name":"yourskillshub","name":"YourSkillsHub + - John Hinchliffe","id":533135806,"id_str":"533135806","indices":[34,48]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":171693619,"id_str":"171693619","name":"\ud83c\udfa4David + Gilbert Voice Over \ud83c\udfa4 #Easy24HourVoiceOver","screen_name":"DavidGilbertVO","location":"Global","description":"\"Giving + YOUR business a voice.\"\n#voiceover #corporate #elearning #commercial #explainer + #IVR\n\nGet a quote: david@davidgilbertvoiceover.com\n\n#Easy24HourVoiceOver","url":"https:\/\/t.co\/uBL3Hgo2Vg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uBL3Hgo2Vg","expanded_url":"https:\/\/sleek.bio\/davidgilbertvo","display_url":"sleek.bio\/davidgilbertvo","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3290,"friends_count":4967,"listed_count":62,"created_at":"Tue + Jul 27 23:21:56 +0000 2010","favourites_count":168945,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":76802,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1453064381051416577\/V4EuhqhN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1453064381051416577\/V4EuhqhN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/171693619\/1634848574","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Nov 04 10:07:02 +0000 2019","id":1191295784031080448,"id_str":"1191295784031080448","full_text":"I + know my friend @yourskillshub was a huge fan of Helen''s keynote. Sadly I + missed it because I was presenting at #AECT19. Thank you @Quinnovator for + this mindmap. \nHelen Papagiannis #DevLearn Keynote Mindmap #instructionaldesign + https:\/\/t.co\/6qYTVcFvmN https:\/\/t.co\/sjNET25KLL","truncated":false,"display_text_range":[0,254],"entities":{"hashtags":[{"text":"AECT19","indices":[114,121]},{"text":"DevLearn","indices":[184,193]},{"text":"instructionaldesign","indices":[210,230]}],"symbols":[],"user_mentions":[{"screen_name":"yourskillshub","name":"YourSkillsHub + - John Hinchliffe","id":533135806,"id_str":"533135806","indices":[17,31]},{"screen_name":"Quinnovator","name":"Clark + Quinn","id":15312626,"id_str":"15312626","indices":[134,146]}],"urls":[{"url":"https:\/\/t.co\/6qYTVcFvmN","expanded_url":"https:\/\/buff.ly\/34sk9nU","display_url":"buff.ly\/34sk9nU","indices":[231,254]}],"media":[{"id":1191295781300580353,"id_str":"1191295781300580353","indices":[255,278],"media_url":"http:\/\/pbs.twimg.com\/media\/EIhVM4rXsAEZ6wN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIhVM4rXsAEZ6wN.jpg","url":"https:\/\/t.co\/sjNET25KLL","display_url":"pic.twitter.com\/sjNET25KLL","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1191295784031080448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":439,"resize":"fit"},"medium":{"w":1200,"h":774,"resize":"fit"},"large":{"w":1628,"h":1050,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1191295781300580353,"id_str":"1191295781300580353","indices":[255,278],"media_url":"http:\/\/pbs.twimg.com\/media\/EIhVM4rXsAEZ6wN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIhVM4rXsAEZ6wN.jpg","url":"https:\/\/t.co\/sjNET25KLL","display_url":"pic.twitter.com\/sjNET25KLL","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1191295784031080448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":439,"resize":"fit"},"medium":{"w":1200,"h":774,"resize":"fit"},"large":{"w":1628,"h":1050,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 30 20:52:56 +0000 2019","id":1189646387564158978,"id_str":"1189646387564158978","full_text":"Thankful + to have received the Charles M. Reigeluth Emerging Researcher Award from the + Systems Thinking & Change Division at #AECT19! #aectstc! And my colleague + was able to present it! https:\/\/t.co\/5BtvA2X5Rz","truncated":false,"display_text_range":[0,187],"entities":{"hashtags":[{"text":"AECT19","indices":[128,135]},{"text":"aectstc","indices":[137,145]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1189646384057720834,"id_str":"1189646384057720834","indices":[188,211],"media_url":"http:\/\/pbs.twimg.com\/media\/EIJ5FVIWoAIyCMo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIJ5FVIWoAIyCMo.jpg","url":"https:\/\/t.co\/5BtvA2X5Rz","display_url":"pic.twitter.com\/5BtvA2X5Rz","expanded_url":"https:\/\/twitter.com\/FredWBaker\/status\/1189646387564158978\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":512,"resize":"fit"},"large":{"w":897,"h":675,"resize":"fit"},"medium":{"w":897,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1189646384057720834,"id_str":"1189646384057720834","indices":[188,211],"media_url":"http:\/\/pbs.twimg.com\/media\/EIJ5FVIWoAIyCMo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIJ5FVIWoAIyCMo.jpg","url":"https:\/\/t.co\/5BtvA2X5Rz","display_url":"pic.twitter.com\/5BtvA2X5Rz","expanded_url":"https:\/\/twitter.com\/FredWBaker\/status\/1189646387564158978\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":512,"resize":"fit"},"large":{"w":897,"h":675,"resize":"fit"},"medium":{"w":897,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":39,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 31 03:37:15 +0000 2019","id":1189748139303067648,"id_str":"1189748139303067648","full_text":"RT + @AECT: We''re still recovering from #AECT19, but that doesn''t mean we haven''t + started planning for #AECT20 and beyond! Check out the futu\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[38,45]},{"text":"AECT20","indices":[101,108]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14125173,"id_str":"14125173","name":"Trey + Martindale","screen_name":"treymartindale","location":"","description":"News + about #instructionaldesign and #onlinelearning , mostly in #highered .","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1170,"friends_count":0,"listed_count":98,"created_at":"Tue + Mar 11 16:32:25 +0000 2008","favourites_count":110,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4164,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1291200178553327619\/BcPSjP2-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1291200178553327619\/BcPSjP2-_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 29 22:21:15 +0000 2019","id":1189306225319731200,"id_str":"1189306225319731200","full_text":"We''re + still recovering from #AECT19, but that doesn''t mean we haven''t started + planning for #AECT20 and beyond! Check out the future locations for upcoming + AECT International Conventions through 2025. Hopefully we''ll see you in #JAX! + https:\/\/t.co\/KUffDFfWwv","truncated":false,"display_text_range":[0,232],"entities":{"hashtags":[{"text":"AECT19","indices":[28,35]},{"text":"AECT20","indices":[91,98]},{"text":"JAX","indices":[227,231]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1189306203798528000,"id_str":"1189306203798528000","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","url":"https:\/\/t.co\/KUffDFfWwv","display_url":"pic.twitter.com\/KUffDFfWwv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1189306225319731200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1189306203798528000,"id_str":"1189306203798528000","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","url":"https:\/\/t.co\/KUffDFfWwv","display_url":"pic.twitter.com\/KUffDFfWwv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1189306225319731200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":29,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 14:26:26 +0000 2019","id":1194260166033780736,"id_str":"1194260166033780736","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1127334967288238081,"id_str":"1127334967288238081","name":"Dan + Dubien, PhD","screen_name":"DanDubien","location":"","description":"Instructional + designer, trauma-informed higher ed, trades, science educator, chocolate lover, + member of #GO_GN #OER #STEM","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":756,"friends_count":4954,"listed_count":11,"created_at":"Sat + May 11 22:09:35 +0000 2019","favourites_count":11944,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1314,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1127368103170584583\/wLzOTxj-_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1127368103170584583\/wLzOTxj-_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1127334967288238081\/1557618601","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Nov 11 21:51:04 +0000 2019","id":1194009675639017472,"id_str":"1194009675639017472","full_text":"RT + @VanekJen: More learning at #aect19inspired \u201cempathic design process\u201d + key to supporting development of useful & relevant online courses.\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19inspired","indices":[31,46]}],"symbols":[],"user_mentions":[{"screen_name":"VanekJen","name":"Jen + Vanek","id":805816250,"id_str":"805816250","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1166168924930695170,"id_str":"1166168924930695170","name":"Dr. + KAJohnson","screen_name":"scc_dr_johnson","location":"South Central College","description":"Associate + VP, CTL & Libraries Director, teaching, learning, equity. She\/Her. #OpenEducation + #PublicEducation #EndRacismNow & #MinnesotaLynx Tweets my own.","url":"https:\/\/t.co\/Z9ysfI4s9w","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Z9ysfI4s9w","expanded_url":"http:\/\/southcentral.edu\/Departments\/center-for-teaching-and-learning-excellence.html","display_url":"southcentral.edu\/Departments\/ce\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":208,"friends_count":499,"listed_count":1,"created_at":"Tue + Aug 27 02:02:17 +0000 2019","favourites_count":18236,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1166169166782586885\/-52KIEG4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1166169166782586885\/-52KIEG4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1166168924930695170\/1567015978","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 17:41:20 +0000 2019","id":1187061456203743234,"id_str":"1187061456203743234","full_text":"More + learning at #aect19inspired \u201cempathic design process\u201d key to supporting + development of useful & relevant online courses. #IDEALConsortiun https:\/\/t.co\/WGAh1Cjd7d","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[{"text":"aect19inspired","indices":[17,32]},{"text":"IDEALConsortiun","indices":[132,148]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187061437283201025,"id_str":"1187061437283201025","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlKFn_UcAE-Bvd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlKFn_UcAE-Bvd.jpg","url":"https:\/\/t.co\/WGAh1Cjd7d","display_url":"pic.twitter.com\/WGAh1Cjd7d","expanded_url":"https:\/\/twitter.com\/VanekJen\/status\/1187061456203743234\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187061437283201025,"id_str":"1187061437283201025","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlKFn_UcAE-Bvd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlKFn_UcAE-Bvd.jpg","url":"https:\/\/t.co\/WGAh1Cjd7d","display_url":"pic.twitter.com\/WGAh1Cjd7d","expanded_url":"https:\/\/twitter.com\/VanekJen\/status\/1187061456203743234\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":805816250,"id_str":"805816250","name":"Jen + Vanek","screen_name":"VanekJen","location":"Minneapolis MN","description":"Director + of Digital Learning and Research. EdTech Center @ World Education. Teacher + educator, researcher, and advocate. Opinions expressed here are my own.","url":"https:\/\/t.co\/HfWBBD9lZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HfWBBD9lZC","expanded_url":"http:\/\/www.edtech.worlded.org","display_url":"edtech.worlded.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":270,"listed_count":5,"created_at":"Thu + Sep 06 01:47:18 +0000 2012","favourites_count":432,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":340,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/805816250\/1637458182","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Nov 07 11:49:22 +0000 2019","id":1192408699261857794,"id_str":"1192408699261857794","full_text":"RT + @emergeAfrica: Join @nicolapallitt and the @AECT friends at this Report Back + FREE webinar as they tell us what happened at the AECT Inte\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[23,37]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[46,51]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Nov 07 11:47:29 +0000 2019","id":1192408226547032065,"id_str":"1192408226547032065","full_text":"Join + @nicolapallitt and the @AECT friends at this Report Back FREE webinar as they + tell us what happened at the AECT International Convention in Las Vegas in + October #AECT19 #emergeAfrica \nSee you on Thursday 14th November 2019 at + 3:00pm SAST https:\/\/t.co\/KWT2GHvEv9","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"AECT19","indices":[166,173]},{"text":"emergeAfrica","indices":[174,187]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[5,19]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[28,33]}],"urls":[],"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Nov 07 11:47:29 +0000 2019","id":1192408226547032065,"id_str":"1192408226547032065","full_text":"Join + @nicolapallitt and the @AECT friends at this Report Back FREE webinar as they + tell us what happened at the AECT International Convention in Las Vegas in + October #AECT19 #emergeAfrica \nSee you on Thursday 14th November 2019 at + 3:00pm SAST https:\/\/t.co\/KWT2GHvEv9","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"AECT19","indices":[166,173]},{"text":"emergeAfrica","indices":[174,187]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[5,19]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[28,33]}],"urls":[],"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Nov 06 12:56:58 +0000 2019","id":1192063323761717249,"id_str":"1192063323761717249","full_text":"There + is still about a month to get a proposal together for the Systems Thinking + & Change Division''s special issue of \n@AECTTechTrends!! #instructionaldesign + #aect19 #aectstc https:\/\/t.co\/nQzSaUyRGC","truncated":false,"display_text_range":[0,202],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[141,161]},{"text":"aect19","indices":[162,169]},{"text":"aectstc","indices":[170,178]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[123,138]}],"urls":[{"url":"https:\/\/t.co\/nQzSaUyRGC","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[179,202]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Nov 04 10:10:44 +0000 2019","id":1191296712566071298,"id_str":"1191296712566071298","full_text":"RT + @caranorth11: I know my friend @yourskillshub was a huge fan of Helen''s keynote. Sadly + I missed it because I was presenting at #AECT19.\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[131,138]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]},{"screen_name":"yourskillshub","name":"YourSkillsHub + - John Hinchliffe","id":533135806,"id_str":"533135806","indices":[34,48]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/memoryacademy.ge\/\" rel=\"nofollow\"\u003eMindMap\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":892428217663062016,"id_str":"892428217663062016","name":"MemoryAcademy.ge","screen_name":"memoryacademyge","location":"Georgia","description":"\u10db\u10d4\u10ee\u10e1\u10d8\u10d4\u10e0\u10d4\u10d1\u10d8\u10e1 + \u10d0\u10d9\u10d0\u10d3\u10d4\u10db\u10d8\u10d0 \u2022 Memory Academy","url":"https:\/\/t.co\/poUilpd467","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/poUilpd467","expanded_url":"http:\/\/memoryacademy.ge","display_url":"memoryacademy.ge","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":502,"friends_count":14,"listed_count":11,"created_at":"Tue + Aug 01 16:54:02 +0000 2017","favourites_count":39325,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/894322512900829185\/TUh9-SFx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/894322512900829185\/TUh9-SFx_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Nov 04 10:07:02 +0000 2019","id":1191295784031080448,"id_str":"1191295784031080448","full_text":"I + know my friend @yourskillshub was a huge fan of Helen''s keynote. Sadly I + missed it because I was presenting at #AECT19. Thank you @Quinnovator for + this mindmap. \nHelen Papagiannis #DevLearn Keynote Mindmap #instructionaldesign + https:\/\/t.co\/6qYTVcFvmN https:\/\/t.co\/sjNET25KLL","truncated":false,"display_text_range":[0,254],"entities":{"hashtags":[{"text":"AECT19","indices":[114,121]},{"text":"DevLearn","indices":[184,193]},{"text":"instructionaldesign","indices":[210,230]}],"symbols":[],"user_mentions":[{"screen_name":"yourskillshub","name":"YourSkillsHub + - John Hinchliffe","id":533135806,"id_str":"533135806","indices":[17,31]},{"screen_name":"Quinnovator","name":"Clark + Quinn","id":15312626,"id_str":"15312626","indices":[134,146]}],"urls":[{"url":"https:\/\/t.co\/6qYTVcFvmN","expanded_url":"https:\/\/buff.ly\/34sk9nU","display_url":"buff.ly\/34sk9nU","indices":[231,254]}],"media":[{"id":1191295781300580353,"id_str":"1191295781300580353","indices":[255,278],"media_url":"http:\/\/pbs.twimg.com\/media\/EIhVM4rXsAEZ6wN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIhVM4rXsAEZ6wN.jpg","url":"https:\/\/t.co\/sjNET25KLL","display_url":"pic.twitter.com\/sjNET25KLL","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1191295784031080448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":439,"resize":"fit"},"medium":{"w":1200,"h":774,"resize":"fit"},"large":{"w":1628,"h":1050,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1191295781300580353,"id_str":"1191295781300580353","indices":[255,278],"media_url":"http:\/\/pbs.twimg.com\/media\/EIhVM4rXsAEZ6wN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIhVM4rXsAEZ6wN.jpg","url":"https:\/\/t.co\/sjNET25KLL","display_url":"pic.twitter.com\/sjNET25KLL","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1191295784031080448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":439,"resize":"fit"},"medium":{"w":1200,"h":774,"resize":"fit"},"large":{"w":1628,"h":1050,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 14:21:51 +0000 2019","id":1194259012478492672,"id_str":"1194259012478492672","full_text":"RT + @nicolapallitt: I''m presenting an #AECT19 #aect19inspired report back webinar + for @emergeAfrica and would love to include your voices an\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[37,44]},{"text":"aect19inspired","indices":[45,60]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[85,98]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":123168263,"id_str":"123168263","name":"Irene + Maweu \ud83c\udf3b\ud83c\udf3b","screen_name":"wavinya66","location":"Kenya","description":"By + Faith \/ With Respect \/ Facilitating from the heart \/ Liberating Structures + Gospel \/ IAF Member","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":762,"friends_count":772,"listed_count":9,"created_at":"Mon + Mar 15 06:31:31 +0000 2010","favourites_count":10218,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5795,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123168263\/1610274071","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:18:35 +0000 2019","id":1194258188578820096,"id_str":"1194258188578820096","full_text":"I''m + presenting an #AECT19 #aect19inspired report back webinar for @emergeAfrica + and would love to include your voices and highlights - please share yours + via https:\/\/t.co\/mEnstr4iAs More info about the webinar is available at + https:\/\/t.co\/QGFyuIYLi4 @AECT @aectclt @aectdddivision https:\/\/t.co\/hGgYJQ1phR","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[18,25]},{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[66,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[250,255]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[256,264]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[265,280]}],"urls":[{"url":"https:\/\/t.co\/mEnstr4iAs","expanded_url":"https:\/\/admin.flipgrid.com\/manage\/grids\/2071013\/topics\/5843937","display_url":"admin.flipgrid.com\/manage\/grids\/2\u2026","indices":[158,181]},{"url":"https:\/\/t.co\/QGFyuIYLi4","expanded_url":"https:\/\/emergeafrica.net\/14-november-2019-report-back-from-aect19\/","display_url":"emergeafrica.net\/14-november-20\u2026","indices":[226,249]}],"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Nov 07 12:11:23 +0000 2019","id":1192414241942310912,"id_str":"1192414241942310912","full_text":"RT + @emergeAfrica: Join @nicolapallitt and the @AECT friends at this Report Back + FREE webinar as they tell us what happened at the AECT Inte\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[23,37]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[46,51]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910574724748644353,"id_str":"910574724748644353","name":"Amy + Lomellini","screen_name":"AmyLomellini_ID","location":"New York, USA","description":"Associate + Director of Blended & Online Learning and doctoral candidate with a passion + for accessible and inclusive online teaching and learning. #EdTech #A11y","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":644,"friends_count":1061,"listed_count":9,"created_at":"Wed + Sep 20 18:41:46 +0000 2017","favourites_count":7378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1141,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910574724748644353\/1551624059","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Nov 07 11:47:29 +0000 2019","id":1192408226547032065,"id_str":"1192408226547032065","full_text":"Join + @nicolapallitt and the @AECT friends at this Report Back FREE webinar as they + tell us what happened at the AECT International Convention in Las Vegas in + October #AECT19 #emergeAfrica \nSee you on Thursday 14th November 2019 at + 3:00pm SAST https:\/\/t.co\/KWT2GHvEv9","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"AECT19","indices":[166,173]},{"text":"emergeAfrica","indices":[174,187]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[5,19]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[28,33]}],"urls":[],"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 31 00:23:47 +0000 2019","id":1189699453738983427,"id_str":"1189699453738983427","full_text":"RT + @UF_COE: Congratulations to @SKEdTech and @AlbertRitzhaupt who, along with + Florence Martin and @kiranbudhrani from @UNCC_COED, earned 1s\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UF_COE","name":"UF + College of Education","id":38508931,"id_str":"38508931","indices":[3,10]},{"screen_name":"SKEdTech","name":"Dr. + Swapna Kumar","id":126100931,"id_str":"126100931","indices":[31,40]},{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[45,61]},{"screen_name":"kiranbudhrani","name":"Dr. + Kiran Budhrani","id":6432592,"id_str":"6432592","indices":[98,112]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988637594,"id_str":"2988637594","name":"Rui + \"Tammy\" Huang","screen_name":"ruitammyhuang","location":"FL","description":"PhD, + fellow in Ed Tech @UF_COE, game-based learning and immersive technology researcher, + designer & developer. Learning experience design researcher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":185,"listed_count":6,"created_at":"Wed + Jan 21 02:08:50 +0000 2015","favourites_count":399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988637594\/1621697544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 30 14:21:09 +0000 2019","id":1189547793079160832,"id_str":"1189547793079160832","full_text":"Congratulations + to @SKEdTech and @AlbertRitzhaupt who, along with Florence Martin and @kiranbudhrani + from @UNCC_COED, earned 1st Place Qualitative Journal Article Award from @AECT''s + Division of Distance Learning at #AECT19.\nView the full article here: https:\/\/t.co\/3pR2wRd8OK","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"AECT19","indices":[215,222]}],"symbols":[],"user_mentions":[{"screen_name":"SKEdTech","name":"Dr. + Swapna Kumar","id":126100931,"id_str":"126100931","indices":[19,28]},{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[33,49]},{"screen_name":"kiranbudhrani","name":"Dr. + Kiran Budhrani","id":6432592,"id_str":"6432592","indices":[86,100]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[174,179]}],"urls":[{"url":"https:\/\/t.co\/3pR2wRd8OK","expanded_url":"https:\/\/olj.onlinelearningconsortium.org\/index.php\/olj\/article\/view\/1329","display_url":"olj.onlinelearningconsortium.org\/index.php\/olj\/\u2026","indices":[252,275]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38508931,"id_str":"38508931","name":"UF + College of Education","screen_name":"UF_COE","location":"Gainesville, FL","description":"Transforming + education and strengthening society since 1906.\n\u2022https:\/\/t.co\/hoM6mO6mmF + \n\u2022https:\/\/t.co\/OCzwYNCaoO\u2026\n\u2022https:\/\/t.co\/2dcQXBnr0w","url":"https:\/\/t.co\/CjGFPqXH6z","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CjGFPqXH6z","expanded_url":"https:\/\/education.ufl.edu\/","display_url":"education.ufl.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/hoM6mO6mmF","expanded_url":"http:\/\/fb.me\/UF.COE","display_url":"fb.me\/UF.COE","indices":[62,85]},{"url":"https:\/\/t.co\/OCzwYNCaoO","expanded_url":"http:\/\/linkedin.com\/school\/univers","display_url":"linkedin.com\/school\/univers","indices":[88,111]},{"url":"https:\/\/t.co\/2dcQXBnr0w","expanded_url":"http:\/\/tiktok.com\/@ufcoe","display_url":"tiktok.com\/@ufcoe","indices":[114,137]}]}},"protected":false,"followers_count":4599,"friends_count":765,"listed_count":114,"created_at":"Thu + May 07 20:24:21 +0000 2009","favourites_count":10662,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7046,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"4343F0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494659172989767682\/sgcEGCFu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494659172989767682\/sgcEGCFu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38508931\/1655496713","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2E5DB0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Nov 01 17:19:02 +0000 2019","id":1190317337012056067,"id_str":"1190317337012056067","full_text":"Just + unpacked the #aect19 conference suitcase: re-discoveries of #Professionalcollaboration + #Interculturalcollaboration #CollaborativeResearch #Globalcollaboration, Thanks + for making #InternationalTrips & sharing your #Creativity @nicolapallitt + @DKSch https:\/\/t.co\/HfoOojg3Df https:\/\/t.co\/UR12W2mxt2","truncated":false,"display_text_range":[0,279],"entities":{"hashtags":[{"text":"aect19","indices":[18,25]},{"text":"Professionalcollaboration","indices":[65,91]},{"text":"Interculturalcollaboration","indices":[92,119]},{"text":"CollaborativeResearch","indices":[120,142]},{"text":"Globalcollaboration","indices":[143,163]},{"text":"InternationalTrips","indices":[183,202]},{"text":"Creativity","indices":[222,233]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[234,248]},{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[249,255]}],"urls":[{"url":"https:\/\/t.co\/HfoOojg3Df","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187212142543421440","display_url":"twitter.com\/nicolapallitt\/\u2026","indices":[256,279]}],"media":[{"id":1190317316212449285,"id_str":"1190317316212449285","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EITbSuLW4AUnAp2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EITbSuLW4AUnAp2.jpg","url":"https:\/\/t.co\/UR12W2mxt2","display_url":"pic.twitter.com\/UR12W2mxt2","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1190317337012056067\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1190317316212449285,"id_str":"1190317316212449285","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EITbSuLW4AUnAp2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EITbSuLW4AUnAp2.jpg","url":"https:\/\/t.co\/UR12W2mxt2","display_url":"pic.twitter.com\/UR12W2mxt2","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1190317337012056067\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1190317316208234497,"id_str":"1190317316208234497","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EITbSuKWkAENHXq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EITbSuKWkAENHXq.jpg","url":"https:\/\/t.co\/UR12W2mxt2","display_url":"pic.twitter.com\/UR12W2mxt2","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1190317337012056067\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1190317317676294144,"id_str":"1190317317676294144","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EITbSzoXYAARgVu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EITbSzoXYAARgVu.jpg","url":"https:\/\/t.co\/UR12W2mxt2","display_url":"pic.twitter.com\/UR12W2mxt2","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1190317337012056067\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1190317318062129155,"id_str":"1190317318062129155","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EITbS1EWwAMr5ta.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EITbS1EWwAMr5ta.jpg","url":"https:\/\/t.co\/UR12W2mxt2","display_url":"pic.twitter.com\/UR12W2mxt2","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1190317337012056067\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1082,"resize":"fit"},"large":{"w":2048,"h":1846,"resize":"fit"},"small":{"w":680,"h":613,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187212142543421440,"quoted_status_id_str":"1187212142543421440","quoted_status_permalink":{"url":"https:\/\/t.co\/HfoOojg3Df","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1187212142543421440","display":"twitter.com\/nicolapallitt\/\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 03:40:06 +0000 2019","id":1187212142543421440,"id_str":"1187212142543421440","full_text":"Our + #aect19inspired #aect19 slides for presentations about our IRCEES processes + & collaborative practices are at https:\/\/t.co\/FztUPU6yZC & https:\/\/t.co\/rYzrohgoyb + Had a good time presenting with @christieliuidtr Hannah Grossman & @AmyLomellini_ID + @emergeAfrica @aectclt @AECT","truncated":false,"display_text_range":[0,288],"entities":{"hashtags":[{"text":"aect19inspired","indices":[4,19]},{"text":"aect19","indices":[20,27]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[242,258]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[259,272]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[274,282]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[283,288]}],"urls":[{"url":"https:\/\/t.co\/FztUPU6yZC","expanded_url":"http:\/\/bit.ly\/IRCEES1","display_url":"bit.ly\/IRCEES1","indices":[117,140]},{"url":"https:\/\/t.co\/rYzrohgoyb","expanded_url":"http:\/\/bit.ly\/IRCEES2","display_url":"bit.ly\/IRCEES2","indices":[147,170]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},{"created_at":"Wed + Oct 30 20:55:20 +0000 2019","id":1189646995423711233,"id_str":"1189646995423711233","full_text":"Had + a great conversation at the roundtable on #DesignThinking at #aect19 around + my new paper being published in the Review of Education! It is important to + discuss design in #instructionaldesign! The paper is titled \"Concretizing + Design Thinking\" and will be out soon!","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"DesignThinking","indices":[46,61]},{"text":"aect19","indices":[65,72]},{"text":"instructionaldesign","indices":[174,194]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Nov 07 20:07:36 +0000 2019","id":1192534082665758720,"id_str":"1192534082665758720","full_text":"RT + @FredWBaker: There is still about a month to get a proposal together for the + Systems Thinking & Change Division''s special issue of \n@AEC\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Nov 06 12:56:58 +0000 2019","id":1192063323761717249,"id_str":"1192063323761717249","full_text":"There + is still about a month to get a proposal together for the Systems Thinking + & Change Division''s special issue of \n@AECTTechTrends!! #instructionaldesign + #aect19 #aectstc https:\/\/t.co\/nQzSaUyRGC","truncated":false,"display_text_range":[0,202],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[141,161]},{"text":"aect19","indices":[162,169]},{"text":"aectstc","indices":[170,178]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[123,138]}],"urls":[{"url":"https:\/\/t.co\/nQzSaUyRGC","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[179,202]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 31 19:14:52 +0000 2019","id":1189984097948651522,"id_str":"1189984097948651522","full_text":"#EdLeadership + #aect19 #mentoring\nhttps:\/\/t.co\/htK2bkoNpF","truncated":false,"display_text_range":[0,56],"entities":{"hashtags":[{"text":"EdLeadership","indices":[0,13]},{"text":"aect19","indices":[14,21]},{"text":"mentoring","indices":[22,32]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/htK2bkoNpF","expanded_url":"https:\/\/www.linkedin.com\/posts\/megancmurtaugh_aect19-edtech-leaders-activity-6595670818699698178-qshh","display_url":"linkedin.com\/posts\/megancmu\u2026","indices":[33,56]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":335613192,"id_str":"335613192","name":"Megan + C. Murtaugh, Ed.D.","screen_name":"MeganCMurtaugh","location":"","description":"Instructional + Design | Curriculum Development | Technology Integration | Online Learning","url":"http:\/\/t.co\/o8Fu5KipP8","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/o8Fu5KipP8","expanded_url":"http:\/\/www.megancmurtaugh.com","display_url":"megancmurtaugh.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":435,"friends_count":446,"listed_count":11,"created_at":"Thu + Jul 14 23:37:30 +0000 2011","favourites_count":767,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":433,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1239713824913186816\/ufuVavfV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1239713824913186816\/ufuVavfV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/335613192\/1584405785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"4ec01c9dbc693497","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4ec01c9dbc693497.json","place_type":"admin","name":"Florida","full_name":"Florida, + USA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-87.634643,24.396308],[-79.974307,24.396308],[-79.974307,31.001056],[-87.634643,31.001056]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Thu + Oct 31 03:44:57 +0000 2019","id":1189750078443053056,"id_str":"1189750078443053056","full_text":"Thank + you Shaomeng \ud83d\ude4f\ud83c\udffc it was fun to catch up with our friend + @VanekJen at #aect19 #goodtimes let\u2019s connect \u2615\ufe0f https:\/\/t.co\/ZHm6o6oyhX","truncated":false,"display_text_range":[0,109],"entities":{"hashtags":[{"text":"aect19","indices":[74,81]},{"text":"goodtimes","indices":[82,92]}],"symbols":[],"user_mentions":[{"screen_name":"VanekJen","name":"Jen + Vanek","id":805816250,"id_str":"805816250","indices":[61,70]}],"urls":[{"url":"https:\/\/t.co\/ZHm6o6oyhX","expanded_url":"https:\/\/twitter.com\/randomor\/status\/1189745781068181506","display_url":"twitter.com\/randomor\/statu\u2026","indices":[110,133]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":202011104,"id_str":"202011104","name":"Jolie + Kennedy","screen_name":"JolieKennedy","location":"Saint Paul, MN","description":"Lecturer, + Learning Technologies @UMNews @LT_UMN #onlinelearning #instructionaldesign + #LXD","url":"https:\/\/t.co\/beGu4pTyYG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/beGu4pTyYG","expanded_url":"http:\/\/www.joliekennedy.com","display_url":"joliekennedy.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":399,"friends_count":400,"listed_count":18,"created_at":"Wed + Oct 13 03:12:52 +0000 2010","favourites_count":1884,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1869,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"214542","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1519040968250609665\/ebYuC-ye_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1519040968250609665\/ebYuC-ye_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/202011104\/1639446847","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"739E9F","profile_sidebar_border_color":"AEF5FA","profile_sidebar_fill_color":"3B615D","profile_text_color":"B4D9AD","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1189745781068181506,"quoted_status_id_str":"1189745781068181506","quoted_status_permalink":{"url":"https:\/\/t.co\/ZHm6o6oyhX","expanded":"https:\/\/twitter.com\/randomor\/status\/1189745781068181506","display":"twitter.com\/randomor\/statu\u2026"},"quoted_status":{"created_at":"Thu + Oct 31 03:27:53 +0000 2019","id":1189745781068181506,"id_str":"1189745781068181506","full_text":"@JolieKennedy + @AECT Great work Jolie! What an interesting dissertation topic!","truncated":false,"display_text_range":[20,77],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JolieKennedy","name":"Jolie + Kennedy","id":202011104,"id_str":"202011104","indices":[0,13]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[14,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1189744583179227137,"in_reply_to_status_id_str":"1189744583179227137","in_reply_to_user_id":202011104,"in_reply_to_user_id_str":"202011104","in_reply_to_screen_name":"JolieKennedy","user":{"id":3792501,"id_str":"3792501","name":"Shao + | \u5c11\u8499","screen_name":"randomor","location":"Minneapolis","description":"Learning + Technologies PhD dropout. Making @microsoftflip by day and FOMO after dark. + (In)Venting @thezenjournal (he\/him)","url":"https:\/\/t.co\/mhWzIDOAvt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mhWzIDOAvt","expanded_url":"https:\/\/idealistspace.com","display_url":"idealistspace.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":900,"friends_count":1554,"listed_count":64,"created_at":"Sun + Apr 08 14:26:44 +0000 2007","favourites_count":10163,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6086,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/535450383930249217\/AASs2MyC_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/535450383930249217\/AASs2MyC_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3792501\/1630726189","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7E4F5A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Nov 08 06:06:43 +0000 2019","id":1192684855542341633,"id_str":"1192684855542341633","full_text":"RT + @nicolapallitt: Thank you @aslam_fataar for critical piece on #4IR https:\/\/t.co\/BMD73NScka + I find fascinating that when I attended #aec\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"4IR","indices":[65,69]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"aslam_fataar","name":"Aslam + Fataar","id":789033857572040704,"id_str":"789033857572040704","indices":[29,42]}],"urls":[{"url":"https:\/\/t.co\/BMD73NScka","expanded_url":"https:\/\/www.litnet.co.za\/in-the-belly-of-the-beast-south-africas-education-discourses-associated-with-the-fourth-industrial-revolution-4ir\/","display_url":"litnet.co.za\/in-the-belly-o\u2026","indices":[71,94]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":816603745,"id_str":"816603745","name":"Paul + Prinsloo","screen_name":"14prinsp","location":"Pretoria","description":"Was + born curious & in trouble & nothing changed. Activist. Higher ed, learning + & teaching, social justice, distributed learning, living, dying, life & politics.","url":"http:\/\/t.co\/MW6KFVKsBj","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/MW6KFVKsBj","expanded_url":"http:\/\/www.opendistanceteachingandlearning.wordpress.com\/","display_url":"\u2026anceteachingandlearning.wordpress.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":2690,"friends_count":955,"listed_count":284,"created_at":"Tue + Sep 11 03:30:47 +0000 2012","favourites_count":27700,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27333,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"943D0F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1166342060976365569\/tzZzGq-S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1166342060976365569\/tzZzGq-S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/816603745\/1348142198","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Nov 07 11:21:01 +0000 2019","id":1192401564767522816,"id_str":"1192401564767522816","full_text":"Thank + you @aslam_fataar for critical piece on #4IR https:\/\/t.co\/BMD73NScka I + find fascinating that when I attended #aect19 in the US 4IR was not mentioned + at all. Maybe it''s a political myth, WEF pulled the strings and SA gov took + the bait. Now we are being sold ''solutions''.","truncated":false,"display_text_range":[0,276],"entities":{"hashtags":[{"text":"4IR","indices":[46,50]},{"text":"aect19","indices":[116,123]}],"symbols":[],"user_mentions":[{"screen_name":"aslam_fataar","name":"Aslam + Fataar","id":789033857572040704,"id_str":"789033857572040704","indices":[10,23]}],"urls":[{"url":"https:\/\/t.co\/BMD73NScka","expanded_url":"https:\/\/www.litnet.co.za\/in-the-belly-of-the-beast-south-africas-education-discourses-associated-with-the-fourth-industrial-revolution-4ir\/","display_url":"litnet.co.za\/in-the-belly-o\u2026","indices":[52,75]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Nov 06 01:41:46 +0000 2019","id":1191893402423414784,"id_str":"1191893402423414784","full_text":"RT + @rebeccamclark87: #aect19 #making @TheMakerBit Round 2!!! https:\/\/t.co\/QrXU4m0npG","truncated":false,"display_text_range":[0,84],"entities":{"hashtags":[{"text":"aect19","indices":[21,28]},{"text":"making","indices":[29,36]}],"symbols":[],"user_mentions":[{"screen_name":"rebeccamclark87","name":"Rebecca + Clark","id":2786357411,"id_str":"2786357411","indices":[3,19]},{"screen_name":"TheMakerBit","name":"TheMakerBit","id":826327660078911488,"id_str":"826327660078911488","indices":[37,49]}],"urls":[],"media":[{"id":1186376501312114688,"id_str":"1186376501312114688","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbbJGqUUAAXmUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbbJGqUUAAXmUU.jpg","url":"https:\/\/t.co\/QrXU4m0npG","display_url":"pic.twitter.com\/QrXU4m0npG","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186376506584391680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"}},"source_status_id":1186376506584391680,"source_status_id_str":"1186376506584391680","source_user_id":2786357411,"source_user_id_str":"2786357411"}]},"extended_entities":{"media":[{"id":1186376501312114688,"id_str":"1186376501312114688","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbbJGqUUAAXmUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbbJGqUUAAXmUU.jpg","url":"https:\/\/t.co\/QrXU4m0npG","display_url":"pic.twitter.com\/QrXU4m0npG","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186376506584391680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"}},"source_status_id":1186376506584391680,"source_status_id_str":"1186376506584391680","source_user_id":2786357411,"source_user_id_str":"2786357411","ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":826327660078911488,"id_str":"826327660078911488","name":"TheMakerBit","screen_name":"TheMakerBit","location":"San + Diego, CA","description":"The MakerBit allows easy connections from the BBC + micro:bit to LEDs & touch sensors. Explore CS through making working models + of everyday digital devices.","url":"https:\/\/t.co\/ObHUHVLyTz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ObHUHVLyTz","expanded_url":"http:\/\/makerbit.com","display_url":"makerbit.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":441,"friends_count":292,"listed_count":0,"created_at":"Tue + Jan 31 07:14:01 +0000 2017","favourites_count":697,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":346,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233612912142323712\/9WHtRH7n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233612912142323712\/9WHtRH7n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/826327660078911488\/1582950610","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 20:19:35 +0000 2019","id":1186376506584391680,"id_str":"1186376506584391680","full_text":"#aect19 + #making @TheMakerBit Round 2!!! https:\/\/t.co\/QrXU4m0npG","truncated":false,"display_text_range":[0,39],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]},{"text":"making","indices":[8,15]}],"symbols":[],"user_mentions":[{"screen_name":"TheMakerBit","name":"TheMakerBit","id":826327660078911488,"id_str":"826327660078911488","indices":[16,28]}],"urls":[],"media":[{"id":1186376501312114688,"id_str":"1186376501312114688","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbbJGqUUAAXmUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbbJGqUUAAXmUU.jpg","url":"https:\/\/t.co\/QrXU4m0npG","display_url":"pic.twitter.com\/QrXU4m0npG","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186376506584391680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186376501312114688,"id_str":"1186376501312114688","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbbJGqUUAAXmUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbbJGqUUAAXmUU.jpg","url":"https:\/\/t.co\/QrXU4m0npG","display_url":"pic.twitter.com\/QrXU4m0npG","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186376506584391680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2786357411,"id_str":"2786357411","name":"Rebecca + Clark","screen_name":"rebeccamclark87","location":"Blacksburg, VA","description":"PhD + Student - Instructional Design and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":124,"listed_count":1,"created_at":"Fri + Sep 26 21:55:13 +0000 2014","favourites_count":370,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":94,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1116743962067460096\/nxZX1CVu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1116743962067460096\/nxZX1CVu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2786357411\/1551977207","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 30 06:51:54 +0000 2019","id":1189434735241637889,"id_str":"1189434735241637889","full_text":"RT + @AECT: We''re still recovering from #AECT19, but that doesn''t mean we haven''t + started planning for #AECT20 and beyond! Check out the futu\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[38,45]},{"text":"AECT20","indices":[101,108]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18123568,"id_str":"18123568","name":"Michael + Kerres","screen_name":"mkerres","location":"Essen, Germany","description":"Professor + Educational Technology & Instructional Design | #EdTech | exploring the future + of learning @LearningLab | University of Duisburg-Essen (DE)","url":"https:\/\/t.co\/CFHJcBTlIq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CFHJcBTlIq","expanded_url":"https:\/\/learninglab.uni-due.de\/kerres\/","display_url":"learninglab.uni-due.de\/kerres\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6423,"friends_count":891,"listed_count":341,"created_at":"Sun + Dec 14 21:49:44 +0000 2008","favourites_count":1989,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4802,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D6D6D6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1459583434221834252\/uJ6uXWpd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1459583434221834252\/uJ6uXWpd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18123568\/1651765891","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"072CD1","profile_sidebar_border_color":"404040","profile_sidebar_fill_color":"CFCFCF","profile_text_color":"0C0C0D","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 29 22:21:15 +0000 2019","id":1189306225319731200,"id_str":"1189306225319731200","full_text":"We''re + still recovering from #AECT19, but that doesn''t mean we haven''t started + planning for #AECT20 and beyond! Check out the future locations for upcoming + AECT International Conventions through 2025. Hopefully we''ll see you in #JAX! + https:\/\/t.co\/KUffDFfWwv","truncated":false,"display_text_range":[0,232],"entities":{"hashtags":[{"text":"AECT19","indices":[28,35]},{"text":"AECT20","indices":[91,98]},{"text":"JAX","indices":[227,231]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1189306203798528000,"id_str":"1189306203798528000","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","url":"https:\/\/t.co\/KUffDFfWwv","display_url":"pic.twitter.com\/KUffDFfWwv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1189306225319731200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1189306203798528000,"id_str":"1189306203798528000","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","url":"https:\/\/t.co\/KUffDFfWwv","display_url":"pic.twitter.com\/KUffDFfWwv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1189306225319731200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":29,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 14:25:08 +0000 2019","id":1194259837368066048,"id_str":"1194259837368066048","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14537661,"id_str":"14537661","name":"michele_estes","screen_name":"michele_estes","location":"","description":"Professor + #edtech, Writer, Designer, Public Speaker, International Partner: #usjpcoil + #gctl https:\/\/t.co\/PaLoEKkRkg Views my own\/retweets not endorsements","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/PaLoEKkRkg","expanded_url":"http:\/\/summitX.org","display_url":"summitX.org","indices":[92,115]}]}},"protected":false,"followers_count":385,"friends_count":1599,"listed_count":10,"created_at":"Sat + Apr 26 01:04:43 +0000 2008","favourites_count":1973,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":617,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/541356812310548480\/AfYbjkUF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/541356812310548480\/AfYbjkUF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14537661\/1417901154","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Nov 10 05:13:39 +0000 2019","id":1193396279088431105,"id_str":"1193396279088431105","full_text":"RT + @nicolapallitt: Thank you @aslam_fataar for critical piece on #4IR https:\/\/t.co\/BMD73NScka + I find fascinating that when I attended #aec\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"4IR","indices":[65,69]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"aslam_fataar","name":"Aslam + Fataar","id":789033857572040704,"id_str":"789033857572040704","indices":[29,42]}],"urls":[{"url":"https:\/\/t.co\/BMD73NScka","expanded_url":"https:\/\/www.litnet.co.za\/in-the-belly-of-the-beast-south-africas-education-discourses-associated-with-the-fourth-industrial-revolution-4ir\/","display_url":"litnet.co.za\/in-the-belly-o\u2026","indices":[71,94]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":90456998,"id_str":"90456998","name":"Carina + van Rooyen","screen_name":"carinavr","location":"Johannesburg \/ Pretoria","description":"Loves + learning & teaching with tech | Engaging evidence & its use for sustainable + development | Co-directs @CEEJoburg | #climatechange #water","url":"https:\/\/t.co\/diSCoM1HY2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/diSCoM1HY2","expanded_url":"http:\/\/www.carinavr.wordpress.com","display_url":"carinavr.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2217,"friends_count":1413,"listed_count":141,"created_at":"Mon + Nov 16 18:52:23 +0000 2009","favourites_count":1005,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20114,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"3D2287","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1308534052727775233\/8Jrew_xO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1308534052727775233\/8Jrew_xO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/90456998\/1629881389","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"13598F","profile_sidebar_border_color":"6B08FF","profile_sidebar_fill_color":"8F45A8","profile_text_color":"A0C720","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Nov 07 11:21:01 +0000 2019","id":1192401564767522816,"id_str":"1192401564767522816","full_text":"Thank + you @aslam_fataar for critical piece on #4IR https:\/\/t.co\/BMD73NScka I + find fascinating that when I attended #aect19 in the US 4IR was not mentioned + at all. Maybe it''s a political myth, WEF pulled the strings and SA gov took + the bait. Now we are being sold ''solutions''.","truncated":false,"display_text_range":[0,276],"entities":{"hashtags":[{"text":"4IR","indices":[46,50]},{"text":"aect19","indices":[116,123]}],"symbols":[],"user_mentions":[{"screen_name":"aslam_fataar","name":"Aslam + Fataar","id":789033857572040704,"id_str":"789033857572040704","indices":[10,23]}],"urls":[{"url":"https:\/\/t.co\/BMD73NScka","expanded_url":"https:\/\/www.litnet.co.za\/in-the-belly-of-the-beast-south-africas-education-discourses-associated-with-the-fourth-industrial-revolution-4ir\/","display_url":"litnet.co.za\/in-the-belly-o\u2026","indices":[52,75]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Nov 06 01:41:36 +0000 2019","id":1191893363735199744,"id_str":"1191893363735199744","full_text":"RT + @rebeccamclark87: Learning how to make! #aect19inspired @themakerbit #thisisawesome + https:\/\/t.co\/WrdjAvZFPc","truncated":false,"display_text_range":[0,110],"entities":{"hashtags":[{"text":"aect19inspired","indices":[43,58]},{"text":"thisisawesome","indices":[72,86]}],"symbols":[],"user_mentions":[{"screen_name":"rebeccamclark87","name":"Rebecca + Clark","id":2786357411,"id_str":"2786357411","indices":[3,19]},{"screen_name":"TheMakerBit","name":"TheMakerBit","id":826327660078911488,"id_str":"826327660078911488","indices":[59,71]}],"urls":[],"media":[{"id":1186326567103807488,"id_str":"1186326567103807488","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/EHatujPUwAAy0FT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHatujPUwAAy0FT.jpg","url":"https:\/\/t.co\/WrdjAvZFPc","display_url":"pic.twitter.com\/WrdjAvZFPc","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186326572283744256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1186326572283744256,"source_status_id_str":"1186326572283744256","source_user_id":2786357411,"source_user_id_str":"2786357411"}]},"extended_entities":{"media":[{"id":1186326567103807488,"id_str":"1186326567103807488","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/EHatujPUwAAy0FT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHatujPUwAAy0FT.jpg","url":"https:\/\/t.co\/WrdjAvZFPc","display_url":"pic.twitter.com\/WrdjAvZFPc","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186326572283744256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1186326572283744256,"source_status_id_str":"1186326572283744256","source_user_id":2786357411,"source_user_id_str":"2786357411","ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":826327660078911488,"id_str":"826327660078911488","name":"TheMakerBit","screen_name":"TheMakerBit","location":"San + Diego, CA","description":"The MakerBit allows easy connections from the BBC + micro:bit to LEDs & touch sensors. Explore CS through making working models + of everyday digital devices.","url":"https:\/\/t.co\/ObHUHVLyTz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ObHUHVLyTz","expanded_url":"http:\/\/makerbit.com","display_url":"makerbit.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":441,"friends_count":292,"listed_count":0,"created_at":"Tue + Jan 31 07:14:01 +0000 2017","favourites_count":697,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":346,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233612912142323712\/9WHtRH7n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233612912142323712\/9WHtRH7n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/826327660078911488\/1582950610","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 17:01:10 +0000 2019","id":1186326572283744256,"id_str":"1186326572283744256","full_text":"Learning + how to make! #aect19inspired @themakerbit #thisisawesome https:\/\/t.co\/WrdjAvZFPc","truncated":false,"display_text_range":[0,65],"entities":{"hashtags":[{"text":"aect19inspired","indices":[22,37]},{"text":"thisisawesome","indices":[51,65]}],"symbols":[],"user_mentions":[{"screen_name":"TheMakerBit","name":"TheMakerBit","id":826327660078911488,"id_str":"826327660078911488","indices":[38,50]}],"urls":[],"media":[{"id":1186326567103807488,"id_str":"1186326567103807488","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EHatujPUwAAy0FT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHatujPUwAAy0FT.jpg","url":"https:\/\/t.co\/WrdjAvZFPc","display_url":"pic.twitter.com\/WrdjAvZFPc","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186326572283744256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186326567103807488,"id_str":"1186326567103807488","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EHatujPUwAAy0FT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHatujPUwAAy0FT.jpg","url":"https:\/\/t.co\/WrdjAvZFPc","display_url":"pic.twitter.com\/WrdjAvZFPc","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186326572283744256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2786357411,"id_str":"2786357411","name":"Rebecca + Clark","screen_name":"rebeccamclark87","location":"Blacksburg, VA","description":"PhD + Student - Instructional Design and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":124,"listed_count":1,"created_at":"Fri + Sep 26 21:55:13 +0000 2014","favourites_count":370,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":94,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1116743962067460096\/nxZX1CVu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1116743962067460096\/nxZX1CVu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2786357411\/1551977207","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Nov 07 11:13:00 +0000 2019","id":1192399548389478401,"id_str":"1192399548389478401","full_text":"RT + @FredWBaker: There is still about a month to get a proposal together for the + Systems Thinking & Change Division''s special issue of \n@AEC\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":860265492,"id_str":"860265492","name":"James + Ellsworth PhD","screen_name":"EINS_Institute","location":"Albuquerque, NM","description":"Educator\/architect + of instructional systems. Soldier. Muslim. Scholar (but not alim). Retired + General Officer level US military intelligence leader. Yep--weird.","url":"https:\/\/t.co\/GwDIuUtRB1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GwDIuUtRB1","expanded_url":"http:\/\/www.linkedin.com\/in\/ellsworthj","display_url":"linkedin.com\/in\/ellsworthj","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4099,"friends_count":1926,"listed_count":36,"created_at":"Wed + Oct 03 20:09:48 +0000 2012","favourites_count":212736,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":107275,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1393326633336156163\/aiT8Pu7i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1393326633336156163\/aiT8Pu7i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/860265492\/1491924222","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Nov 06 12:56:58 +0000 2019","id":1192063323761717249,"id_str":"1192063323761717249","full_text":"There + is still about a month to get a proposal together for the Systems Thinking + & Change Division''s special issue of \n@AECTTechTrends!! #instructionaldesign + #aect19 #aectstc https:\/\/t.co\/nQzSaUyRGC","truncated":false,"display_text_range":[0,202],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[141,161]},{"text":"aect19","indices":[162,169]},{"text":"aectstc","indices":[170,178]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[123,138]}],"urls":[{"url":"https:\/\/t.co\/nQzSaUyRGC","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[179,202]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Nov 12 14:18:35 +0000 2019","id":1194258188578820096,"id_str":"1194258188578820096","full_text":"I''m + presenting an #AECT19 #aect19inspired report back webinar for @emergeAfrica + and would love to include your voices and highlights - please share yours + via https:\/\/t.co\/mEnstr4iAs More info about the webinar is available at + https:\/\/t.co\/QGFyuIYLi4 @AECT @aectclt @aectdddivision https:\/\/t.co\/hGgYJQ1phR","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[18,25]},{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[66,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[250,255]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[256,264]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[265,280]}],"urls":[{"url":"https:\/\/t.co\/mEnstr4iAs","expanded_url":"https:\/\/admin.flipgrid.com\/manage\/grids\/2071013\/topics\/5843937","display_url":"admin.flipgrid.com\/manage\/grids\/2\u2026","indices":[158,181]},{"url":"https:\/\/t.co\/QGFyuIYLi4","expanded_url":"https:\/\/emergeafrica.net\/14-november-2019-report-back-from-aect19\/","display_url":"emergeafrica.net\/14-november-20\u2026","indices":[226,249]}],"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1194258170765553665,"id_str":"1194258170765553665","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EJLbepaWsAEARpd.jpg","url":"https:\/\/t.co\/hGgYJQ1phR","display_url":"pic.twitter.com\/hGgYJQ1phR","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1194258188578820096\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Nov 07 14:16:40 +0000 2019","id":1192445767111397377,"id_str":"1192445767111397377","full_text":"RT + @nicolapallitt: Thank you @aslam_fataar for critical piece on #4IR https:\/\/t.co\/BMD73NScka + I find fascinating that when I attended #aec\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"4IR","indices":[65,69]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"aslam_fataar","name":"Aslam + Fataar","id":789033857572040704,"id_str":"789033857572040704","indices":[29,42]}],"urls":[{"url":"https:\/\/t.co\/BMD73NScka","expanded_url":"https:\/\/www.litnet.co.za\/in-the-belly-of-the-beast-south-africas-education-discourses-associated-with-the-fourth-industrial-revolution-4ir\/","display_url":"litnet.co.za\/in-the-belly-o\u2026","indices":[71,94]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":55540675,"id_str":"55540675","name":"Laura + Czerniewicz","screen_name":"Czernie","location":"South Africa","description":"Prof. + Interested in ICTs in higher ed; changing HE; open education; inequality + in knowledge, digital, teaching & learning; emerging practices","url":"https:\/\/t.co\/laoyRHhcMf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/laoyRHhcMf","expanded_url":"https:\/\/czernie.weebly.com\/","display_url":"czernie.weebly.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5601,"friends_count":3578,"listed_count":0,"created_at":"Fri + Jul 10 11:54:26 +0000 2009","favourites_count":16061,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12529,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E61751","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1090940236564180992\/7Nl4q1yr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1090940236564180992\/7Nl4q1yr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/55540675\/1548939936","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E698C7","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Nov 07 11:21:01 +0000 2019","id":1192401564767522816,"id_str":"1192401564767522816","full_text":"Thank + you @aslam_fataar for critical piece on #4IR https:\/\/t.co\/BMD73NScka I + find fascinating that when I attended #aect19 in the US 4IR was not mentioned + at all. Maybe it''s a political myth, WEF pulled the strings and SA gov took + the bait. Now we are being sold ''solutions''.","truncated":false,"display_text_range":[0,276],"entities":{"hashtags":[{"text":"4IR","indices":[46,50]},{"text":"aect19","indices":[116,123]}],"symbols":[],"user_mentions":[{"screen_name":"aslam_fataar","name":"Aslam + Fataar","id":789033857572040704,"id_str":"789033857572040704","indices":[10,23]}],"urls":[{"url":"https:\/\/t.co\/BMD73NScka","expanded_url":"https:\/\/www.litnet.co.za\/in-the-belly-of-the-beast-south-africas-education-discourses-associated-with-the-fourth-industrial-revolution-4ir\/","display_url":"litnet.co.za\/in-the-belly-o\u2026","indices":[52,75]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Nov 11 21:50:00 +0000 2019","id":1194009403340574720,"id_str":"1194009403340574720","full_text":"RT + @VanekJen: About to begin! #aect19inspired Ballroom B representing @WorldEdUS + https:\/\/t.co\/nLJqERRMbI","truncated":false,"display_text_range":[0,106],"entities":{"hashtags":[{"text":"aect19inspired","indices":[30,45]}],"symbols":[],"user_mentions":[{"screen_name":"VanekJen","name":"Jen + Vanek","id":805816250,"id_str":"805816250","indices":[3,12]},{"screen_name":"WorldEdUS","name":"World + Education - US","id":615387166,"id_str":"615387166","indices":[72,82]}],"urls":[],"media":[{"id":1187125982680870912,"id_str":"1187125982680870912","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmEyqVUcAALxR7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmEyqVUcAALxR7.jpg","url":"https:\/\/t.co\/nLJqERRMbI","display_url":"pic.twitter.com\/nLJqERRMbI","expanded_url":"https:\/\/twitter.com\/VanekJen\/status\/1187125992755625985\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1187125992755625985,"source_status_id_str":"1187125992755625985","source_user_id":805816250,"source_user_id_str":"805816250"}]},"extended_entities":{"media":[{"id":1187125982680870912,"id_str":"1187125982680870912","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmEyqVUcAALxR7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmEyqVUcAALxR7.jpg","url":"https:\/\/t.co\/nLJqERRMbI","display_url":"pic.twitter.com\/nLJqERRMbI","expanded_url":"https:\/\/twitter.com\/VanekJen\/status\/1187125992755625985\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1187125992755625985,"source_status_id_str":"1187125992755625985","source_user_id":805816250,"source_user_id_str":"805816250","ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":615387166,"id_str":"615387166","name":"World + Education - US","screen_name":"WorldEdUS","location":"United States","description":"Tweeting + about #adultedu: college and career readiness, workforce devel., edtech, equity, + ESOL, immigrant integration, and learner persistence. Part of @WorldEd","url":"https:\/\/t.co\/OPkpvea3n6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OPkpvea3n6","expanded_url":"http:\/\/bit.ly\/13MenuZ","display_url":"bit.ly\/13MenuZ","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1805,"friends_count":409,"listed_count":62,"created_at":"Fri + Jun 22 17:51:07 +0000 2012","favourites_count":1110,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4118,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1522290880492752898\/Njh-L4f__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1522290880492752898\/Njh-L4f__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/615387166\/1512058949","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"A42A2E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 21:57:47 +0000 2019","id":1187125992755625985,"id_str":"1187125992755625985","full_text":"About + to begin! #aect19inspired Ballroom B representing @WorldEdUS https:\/\/t.co\/nLJqERRMbI","truncated":false,"display_text_range":[0,68],"entities":{"hashtags":[{"text":"aect19inspired","indices":[16,31]}],"symbols":[],"user_mentions":[{"screen_name":"WorldEdUS","name":"World + Education - US","id":615387166,"id_str":"615387166","indices":[58,68]}],"urls":[],"media":[{"id":1187125982680870912,"id_str":"1187125982680870912","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmEyqVUcAALxR7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmEyqVUcAALxR7.jpg","url":"https:\/\/t.co\/nLJqERRMbI","display_url":"pic.twitter.com\/nLJqERRMbI","expanded_url":"https:\/\/twitter.com\/VanekJen\/status\/1187125992755625985\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187125982680870912,"id_str":"1187125982680870912","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmEyqVUcAALxR7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmEyqVUcAALxR7.jpg","url":"https:\/\/t.co\/nLJqERRMbI","display_url":"pic.twitter.com\/nLJqERRMbI","expanded_url":"https:\/\/twitter.com\/VanekJen\/status\/1187125992755625985\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":805816250,"id_str":"805816250","name":"Jen + Vanek","screen_name":"VanekJen","location":"Minneapolis MN","description":"Director + of Digital Learning and Research. EdTech Center @ World Education. Teacher + educator, researcher, and advocate. Opinions expressed here are my own.","url":"https:\/\/t.co\/HfWBBD9lZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HfWBBD9lZC","expanded_url":"http:\/\/www.edtech.worlded.org","display_url":"edtech.worlded.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":270,"listed_count":5,"created_at":"Thu + Sep 06 01:47:18 +0000 2012","favourites_count":432,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":340,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/805816250\/1637458182","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Nov 07 18:17:05 +0000 2019","id":1192506270529597441,"id_str":"1192506270529597441","full_text":"RT + @emergeAfrica: Join @nicolapallitt and the @AECT friends at this Report Back + FREE webinar as they tell us what happened at the AECT Inte\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[23,37]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[46,51]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15326097,"id_str":"15326097","name":"tony_emerge","screen_name":"tony_emerge","location":"Cape + Town","description":"Tony Carr at the Centre for Innovation in Learning and + Teaching, University of Cape Town.","url":"https:\/\/t.co\/Ul4WHerYBr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Ul4WHerYBr","expanded_url":"http:\/\/www.cilt.uct.ac.za","display_url":"cilt.uct.ac.za","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1089,"friends_count":841,"listed_count":0,"created_at":"Sat + Jul 05 15:44:19 +0000 2008","favourites_count":357,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1933,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/56255313\/DSC_7663_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/56255313\/DSC_7663_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Nov 07 11:47:29 +0000 2019","id":1192408226547032065,"id_str":"1192408226547032065","full_text":"Join + @nicolapallitt and the @AECT friends at this Report Back FREE webinar as they + tell us what happened at the AECT International Convention in Las Vegas in + October #AECT19 #emergeAfrica \nSee you on Thursday 14th November 2019 at + 3:00pm SAST https:\/\/t.co\/KWT2GHvEv9","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"AECT19","indices":[166,173]},{"text":"emergeAfrica","indices":[174,187]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[5,19]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[28,33]}],"urls":[],"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Nov 07 12:38:53 +0000 2019","id":1192421162191593474,"id_str":"1192421162191593474","full_text":"RT + @emergeAfrica: Join @nicolapallitt and the @AECT friends at this Report Back + FREE webinar as they tell us what happened at the AECT Inte\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[23,37]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[46,51]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1535273520,"id_str":"1535273520","name":"Maha + Bali, PhD \u0645\u0647\u0627 \u0628\u0627\u0644\u064a \ud83c\udf35","screen_name":"Bali_Maha","location":"AUC, + Cairo, #Egypt","description":"Learning\/Writing\/Connecting\/Equity\/Care. + Prof Practice #facdev @cltauc @AUC. @VConnecting @UnboundEq @socialjustacad + #MYFest22\nWas #PhDmum @SheffieldUni","url":"https:\/\/t.co\/mPqyKiGvg6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mPqyKiGvg6","expanded_url":"http:\/\/blog.mahabali.me","display_url":"blog.mahabali.me","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13519,"friends_count":10237,"listed_count":500,"created_at":"Thu + Jun 20 23:42:32 +0000 2013","favourites_count":111226,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":74352,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513251193631485961\/VqZnvAQt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513251193631485961\/VqZnvAQt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1535273520\/1650088931","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Nov 07 11:47:29 +0000 2019","id":1192408226547032065,"id_str":"1192408226547032065","full_text":"Join + @nicolapallitt and the @AECT friends at this Report Back FREE webinar as they + tell us what happened at the AECT International Convention in Las Vegas in + October #AECT19 #emergeAfrica \nSee you on Thursday 14th November 2019 at + 3:00pm SAST https:\/\/t.co\/KWT2GHvEv9","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"AECT19","indices":[166,173]},{"text":"emergeAfrica","indices":[174,187]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[5,19]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[28,33]}],"urls":[],"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Nov 09 14:52:52 +0000 2019","id":1193179652602368007,"id_str":"1193179652602368007","full_text":"RT + @emergeAfrica: Join @nicolapallitt and the @AECT friends at this Report Back + FREE webinar as they tell us what happened at the AECT Inte\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[23,37]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[46,51]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":40858923,"id_str":"40858923","name":"Information + Systems dept DUT","screen_name":"ISdeptDUT","location":"South Africa","description":"IS + dept Durban university of Technology","url":"https:\/\/t.co\/N80qCJs8v5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/N80qCJs8v5","expanded_url":"https:\/\/www.dut.ac.za\/faculty\/accounting_and_informatics\/information-systems\/","display_url":"dut.ac.za\/faculty\/accoun\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":141,"friends_count":68,"listed_count":4,"created_at":"Mon + May 18 11:56:06 +0000 2009","favourites_count":203,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1128,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1401892849608712192\/xgXtJ2IJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1401892849608712192\/xgXtJ2IJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40858923\/1623072278","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Nov 07 11:47:29 +0000 2019","id":1192408226547032065,"id_str":"1192408226547032065","full_text":"Join + @nicolapallitt and the @AECT friends at this Report Back FREE webinar as they + tell us what happened at the AECT International Convention in Las Vegas in + October #AECT19 #emergeAfrica \nSee you on Thursday 14th November 2019 at + 3:00pm SAST https:\/\/t.co\/KWT2GHvEv9","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"AECT19","indices":[166,173]},{"text":"emergeAfrica","indices":[174,187]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[5,19]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[28,33]}],"urls":[],"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 31 20:58:08 +0000 2019","id":1190010085986037766,"id_str":"1190010085986037766","full_text":"RT + @MeganCMurtaugh: #EdLeadership #aect19 #mentoring\nhttps:\/\/t.co\/htK2bkoNpF","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"EdLeadership","indices":[20,33]},{"text":"aect19","indices":[34,41]},{"text":"mentoring","indices":[42,52]}],"symbols":[],"user_mentions":[{"screen_name":"MeganCMurtaugh","name":"Megan + C. Murtaugh, Ed.D.","id":335613192,"id_str":"335613192","indices":[3,18]}],"urls":[{"url":"https:\/\/t.co\/htK2bkoNpF","expanded_url":"https:\/\/www.linkedin.com\/posts\/megancmurtaugh_aect19-edtech-leaders-activity-6595670818699698178-qshh","display_url":"linkedin.com\/posts\/megancmu\u2026","indices":[53,76]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 31 19:14:52 +0000 2019","id":1189984097948651522,"id_str":"1189984097948651522","full_text":"#EdLeadership + #aect19 #mentoring\nhttps:\/\/t.co\/htK2bkoNpF","truncated":false,"display_text_range":[0,56],"entities":{"hashtags":[{"text":"EdLeadership","indices":[0,13]},{"text":"aect19","indices":[14,21]},{"text":"mentoring","indices":[22,32]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/htK2bkoNpF","expanded_url":"https:\/\/www.linkedin.com\/posts\/megancmurtaugh_aect19-edtech-leaders-activity-6595670818699698178-qshh","display_url":"linkedin.com\/posts\/megancmu\u2026","indices":[33,56]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":335613192,"id_str":"335613192","name":"Megan + C. Murtaugh, Ed.D.","screen_name":"MeganCMurtaugh","location":"","description":"Instructional + Design | Curriculum Development | Technology Integration | Online Learning","url":"http:\/\/t.co\/o8Fu5KipP8","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/o8Fu5KipP8","expanded_url":"http:\/\/www.megancmurtaugh.com","display_url":"megancmurtaugh.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":435,"friends_count":446,"listed_count":11,"created_at":"Thu + Jul 14 23:37:30 +0000 2011","favourites_count":767,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":433,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1239713824913186816\/ufuVavfV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1239713824913186816\/ufuVavfV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/335613192\/1584405785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"4ec01c9dbc693497","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4ec01c9dbc693497.json","place_type":"admin","name":"Florida","full_name":"Florida, + USA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-87.634643,24.396308],[-79.974307,24.396308],[-79.974307,31.001056],[-87.634643,31.001056]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Mon + Nov 04 16:07:26 +0000 2019","id":1191386478754050048,"id_str":"1191386478754050048","full_text":"Our + poster writeup can be found in the @AECT 2019 proceedings available later. Our + poster link [PDF] can be accessed via my blogpost: https:\/\/t.co\/cpcOrZSZqJ\n#aect19 + #aect19inspired","truncated":false,"display_text_range":[0,182],"entities":{"hashtags":[{"text":"aect19","indices":[159,166]},{"text":"aect19inspired","indices":[167,182]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[39,44]}],"urls":[{"url":"https:\/\/t.co\/cpcOrZSZqJ","expanded_url":"http:\/\/yinwahkreher.com\/2019\/11\/02\/about-poster-at-aect-2019\/","display_url":"yinwahkreher.com\/2019\/11\/02\/abo\u2026","indices":[135,158]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":459903,"id_str":"459903","name":"\ud83c\uddfa\ud83c\uddf8 + Yin Kreher, PhD","screen_name":"yinbk","location":"","description":"Instructional + Designer | Lead LXD @FourthRev | Boundary-Crosser. Looks for the exquisite + at intersections. All tweets are mine. \ud83d\udc9c #XR #DesignLeadership + \ud83e\udef0","url":"https:\/\/t.co\/nJBVP9cpz7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nJBVP9cpz7","expanded_url":"http:\/\/yinwahkreher.com","display_url":"yinwahkreher.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1043,"friends_count":1124,"listed_count":79,"created_at":"Tue + Jan 02 17:04:05 +0000 2007","favourites_count":7349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"363738","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459903\/1611022238","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"E81C4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 30 23:24:33 +0000 2019","id":1189684545681068035,"id_str":"1189684545681068035","full_text":"RT + @distance_edu: Round table about practitioners! #AECT19 https:\/\/t.co\/VnbzQ7izwX","truncated":false,"display_text_range":[0,83],"entities":{"hashtags":[{"text":"AECT19","indices":[52,59]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1189223755786182658,"id_str":"1189223755786182658","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EID4tIIXYAIbjTG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EID4tIIXYAIbjTG.jpg","url":"https:\/\/t.co\/VnbzQ7izwX","display_url":"pic.twitter.com\/VnbzQ7izwX","expanded_url":"https:\/\/twitter.com\/distance_edu\/status\/1189223760156602369\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1189223760156602369,"source_status_id_str":"1189223760156602369","source_user_id":37890447,"source_user_id_str":"37890447"}]},"extended_entities":{"media":[{"id":1189223755786182658,"id_str":"1189223755786182658","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EID4tIIXYAIbjTG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EID4tIIXYAIbjTG.jpg","url":"https:\/\/t.co\/VnbzQ7izwX","display_url":"pic.twitter.com\/VnbzQ7izwX","expanded_url":"https:\/\/twitter.com\/distance_edu\/status\/1189223760156602369\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1189223760156602369,"source_status_id_str":"1189223760156602369","source_user_id":37890447,"source_user_id_str":"37890447","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 29 16:53:33 +0000 2019","id":1189223760156602369,"id_str":"1189223760156602369","full_text":"Round + table about practitioners! #AECT19 https:\/\/t.co\/VnbzQ7izwX","truncated":false,"display_text_range":[0,41],"entities":{"hashtags":[{"text":"AECT19","indices":[34,41]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1189223755786182658,"id_str":"1189223755786182658","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EID4tIIXYAIbjTG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EID4tIIXYAIbjTG.jpg","url":"https:\/\/t.co\/VnbzQ7izwX","display_url":"pic.twitter.com\/VnbzQ7izwX","expanded_url":"https:\/\/twitter.com\/distance_edu\/status\/1189223760156602369\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1189223755786182658,"id_str":"1189223755786182658","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EID4tIIXYAIbjTG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EID4tIIXYAIbjTG.jpg","url":"https:\/\/t.co\/VnbzQ7izwX","display_url":"pic.twitter.com\/VnbzQ7izwX","expanded_url":"https:\/\/twitter.com\/distance_edu\/status\/1189223760156602369\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37890447,"id_str":"37890447","name":"M. + D. Rogers","screen_name":"MDRogers360","location":"","description":"Michelle + is my name and innovation and creativity is my game. A feed about this and + that, ed tech, work, writing, and more.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":500,"friends_count":571,"listed_count":34,"created_at":"Tue + May 05 09:21:16 +0000 2009","favourites_count":58,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1132,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1216550885385482240\/_KpnmYjr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216550885385482240\/_KpnmYjr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37890447\/1400079389","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 30 18:54:44 +0000 2019","id":1189616644764684294,"id_str":"1189616644764684294","full_text":"RT + @AECT: We''re still recovering from #AECT19, but that doesn''t mean we haven''t + started planning for #AECT20 and beyond! Check out the futu\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[38,45]},{"text":"AECT20","indices":[101,108]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1088189033266798598,"id_str":"1088189033266798598","name":"AECT + Division of Distance Learning","screen_name":"aectddl","location":"","description":"The + Division of Distance Learning is a special interest group of the Association + for Educational Communications and Technology (AECT).","url":"https:\/\/t.co\/Rg9uXQTkSM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Rg9uXQTkSM","expanded_url":"https:\/\/aect.org\/ddl.php","display_url":"aect.org\/ddl.php","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":861,"friends_count":482,"listed_count":6,"created_at":"Wed + Jan 23 21:37:37 +0000 2019","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088189033266798598\/1548280679","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 29 22:21:15 +0000 2019","id":1189306225319731200,"id_str":"1189306225319731200","full_text":"We''re + still recovering from #AECT19, but that doesn''t mean we haven''t started + planning for #AECT20 and beyond! Check out the future locations for upcoming + AECT International Conventions through 2025. Hopefully we''ll see you in #JAX! + https:\/\/t.co\/KUffDFfWwv","truncated":false,"display_text_range":[0,232],"entities":{"hashtags":[{"text":"AECT19","indices":[28,35]},{"text":"AECT20","indices":[91,98]},{"text":"JAX","indices":[227,231]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1189306203798528000,"id_str":"1189306203798528000","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","url":"https:\/\/t.co\/KUffDFfWwv","display_url":"pic.twitter.com\/KUffDFfWwv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1189306225319731200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1189306203798528000,"id_str":"1189306203798528000","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","url":"https:\/\/t.co\/KUffDFfWwv","display_url":"pic.twitter.com\/KUffDFfWwv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1189306225319731200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":29,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 06 14:55:54 +0000 2019","id":1192093253652365316,"id_str":"1192093253652365316","full_text":"RT + @FredWBaker: There is still about a month to get a proposal together for the + Systems Thinking & Change Division''s special issue of \n@AEC\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":804807943,"id_str":"804807943","name":"TechTrends + Editor","screen_name":"AECTTechTrends","location":"","description":"Tweets + from the Editor of TechTrends, an AECT journal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2050,"friends_count":15,"listed_count":57,"created_at":"Wed + Sep 05 15:17:03 +0000 2012","favourites_count":772,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/804807943\/1483653902","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Nov 06 12:56:58 +0000 2019","id":1192063323761717249,"id_str":"1192063323761717249","full_text":"There + is still about a month to get a proposal together for the Systems Thinking + & Change Division''s special issue of \n@AECTTechTrends!! #instructionaldesign + #aect19 #aectstc https:\/\/t.co\/nQzSaUyRGC","truncated":false,"display_text_range":[0,202],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[141,161]},{"text":"aect19","indices":[162,169]},{"text":"aectstc","indices":[170,178]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[123,138]}],"urls":[{"url":"https:\/\/t.co\/nQzSaUyRGC","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[179,202]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 06 13:18:00 +0000 2019","id":1192068619028459525,"id_str":"1192068619028459525","full_text":"RT + @FredWBaker: There is still about a month to get a proposal together for the + Systems Thinking & Change Division''s special issue of \n@AEC\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Nov 06 12:56:58 +0000 2019","id":1192063323761717249,"id_str":"1192063323761717249","full_text":"There + is still about a month to get a proposal together for the Systems Thinking + & Change Division''s special issue of \n@AECTTechTrends!! #instructionaldesign + #aect19 #aectstc https:\/\/t.co\/nQzSaUyRGC","truncated":false,"display_text_range":[0,202],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[141,161]},{"text":"aect19","indices":[162,169]},{"text":"aectstc","indices":[170,178]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[123,138]}],"urls":[{"url":"https:\/\/t.co\/nQzSaUyRGC","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[179,202]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Nov 04 10:07:02 +0000 2019","id":1191295784031080448,"id_str":"1191295784031080448","full_text":"I + know my friend @yourskillshub was a huge fan of Helen''s keynote. Sadly I + missed it because I was presenting at #AECT19. Thank you @Quinnovator for + this mindmap. \nHelen Papagiannis #DevLearn Keynote Mindmap #instructionaldesign + https:\/\/t.co\/6qYTVcFvmN https:\/\/t.co\/sjNET25KLL","truncated":false,"display_text_range":[0,254],"entities":{"hashtags":[{"text":"AECT19","indices":[114,121]},{"text":"DevLearn","indices":[184,193]},{"text":"instructionaldesign","indices":[210,230]}],"symbols":[],"user_mentions":[{"screen_name":"yourskillshub","name":"YourSkillsHub + - John Hinchliffe","id":533135806,"id_str":"533135806","indices":[17,31]},{"screen_name":"Quinnovator","name":"Clark + Quinn","id":15312626,"id_str":"15312626","indices":[134,146]}],"urls":[{"url":"https:\/\/t.co\/6qYTVcFvmN","expanded_url":"https:\/\/buff.ly\/34sk9nU","display_url":"buff.ly\/34sk9nU","indices":[231,254]}],"media":[{"id":1191295781300580353,"id_str":"1191295781300580353","indices":[255,278],"media_url":"http:\/\/pbs.twimg.com\/media\/EIhVM4rXsAEZ6wN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIhVM4rXsAEZ6wN.jpg","url":"https:\/\/t.co\/sjNET25KLL","display_url":"pic.twitter.com\/sjNET25KLL","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1191295784031080448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":439,"resize":"fit"},"medium":{"w":1200,"h":774,"resize":"fit"},"large":{"w":1628,"h":1050,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1191295781300580353,"id_str":"1191295781300580353","indices":[255,278],"media_url":"http:\/\/pbs.twimg.com\/media\/EIhVM4rXsAEZ6wN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIhVM4rXsAEZ6wN.jpg","url":"https:\/\/t.co\/sjNET25KLL","display_url":"pic.twitter.com\/sjNET25KLL","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1191295784031080448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":439,"resize":"fit"},"medium":{"w":1200,"h":774,"resize":"fit"},"large":{"w":1628,"h":1050,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Nov 07 01:38:05 +0000 2019","id":1192254866535669767,"id_str":"1192254866535669767","full_text":"RT + @FredWBaker: There is still about a month to get a proposal together for the + Systems Thinking & Change Division''s special issue of \n@AEC\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15654288,"id_str":"15654288","name":"Scott + J. Warren","screen_name":"constatively","location":"Denton, TX","description":"Professor + of learning tech; instructional design; ethics and greening schools\/orgs; + Business research - systems dev, operations, strategy","url":"https:\/\/t.co\/n5xEkVLkO1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/n5xEkVLkO1","expanded_url":"http:\/\/www.scottjwarren.net","display_url":"scottjwarren.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2186,"friends_count":4880,"listed_count":112,"created_at":"Wed + Jul 30 00:56:48 +0000 2008","favourites_count":62322,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15995,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1391548718940409862\/optqE67f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1391548718940409862\/optqE67f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15654288\/1523275532","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Nov 06 12:56:58 +0000 2019","id":1192063323761717249,"id_str":"1192063323761717249","full_text":"There + is still about a month to get a proposal together for the Systems Thinking + & Change Division''s special issue of \n@AECTTechTrends!! #instructionaldesign + #aect19 #aectstc https:\/\/t.co\/nQzSaUyRGC","truncated":false,"display_text_range":[0,202],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[141,161]},{"text":"aect19","indices":[162,169]},{"text":"aectstc","indices":[170,178]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[123,138]}],"urls":[{"url":"https:\/\/t.co\/nQzSaUyRGC","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[179,202]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Nov 07 12:42:59 +0000 2019","id":1192422191943561217,"id_str":"1192422191943561217","full_text":"RT + @emergeAfrica: Join @nicolapallitt and the @AECT friends at this Report Back + FREE webinar as they tell us what happened at the AECT Inte\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[23,37]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[46,51]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Nov 07 11:47:29 +0000 2019","id":1192408226547032065,"id_str":"1192408226547032065","full_text":"Join + @nicolapallitt and the @AECT friends at this Report Back FREE webinar as they + tell us what happened at the AECT International Convention in Las Vegas in + October #AECT19 #emergeAfrica \nSee you on Thursday 14th November 2019 at + 3:00pm SAST https:\/\/t.co\/KWT2GHvEv9","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"AECT19","indices":[166,173]},{"text":"emergeAfrica","indices":[174,187]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[5,19]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[28,33]}],"urls":[],"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 30 14:21:09 +0000 2019","id":1189547793079160832,"id_str":"1189547793079160832","full_text":"Congratulations + to @SKEdTech and @AlbertRitzhaupt who, along with Florence Martin and @kiranbudhrani + from @UNCC_COED, earned 1st Place Qualitative Journal Article Award from @AECT''s + Division of Distance Learning at #AECT19.\nView the full article here: https:\/\/t.co\/3pR2wRd8OK","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"AECT19","indices":[215,222]}],"symbols":[],"user_mentions":[{"screen_name":"SKEdTech","name":"Dr. + Swapna Kumar","id":126100931,"id_str":"126100931","indices":[19,28]},{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[33,49]},{"screen_name":"kiranbudhrani","name":"Dr. + Kiran Budhrani","id":6432592,"id_str":"6432592","indices":[86,100]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[174,179]}],"urls":[{"url":"https:\/\/t.co\/3pR2wRd8OK","expanded_url":"https:\/\/olj.onlinelearningconsortium.org\/index.php\/olj\/article\/view\/1329","display_url":"olj.onlinelearningconsortium.org\/index.php\/olj\/\u2026","indices":[252,275]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38508931,"id_str":"38508931","name":"UF + College of Education","screen_name":"UF_COE","location":"Gainesville, FL","description":"Transforming + education and strengthening society since 1906.\n\u2022https:\/\/t.co\/hoM6mO6mmF + \n\u2022https:\/\/t.co\/OCzwYNCaoO\u2026\n\u2022https:\/\/t.co\/2dcQXBnr0w","url":"https:\/\/t.co\/CjGFPqXH6z","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CjGFPqXH6z","expanded_url":"https:\/\/education.ufl.edu\/","display_url":"education.ufl.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/hoM6mO6mmF","expanded_url":"http:\/\/fb.me\/UF.COE","display_url":"fb.me\/UF.COE","indices":[62,85]},{"url":"https:\/\/t.co\/OCzwYNCaoO","expanded_url":"http:\/\/linkedin.com\/school\/univers","display_url":"linkedin.com\/school\/univers","indices":[88,111]},{"url":"https:\/\/t.co\/2dcQXBnr0w","expanded_url":"http:\/\/tiktok.com\/@ufcoe","display_url":"tiktok.com\/@ufcoe","indices":[114,137]}]}},"protected":false,"followers_count":4599,"friends_count":765,"listed_count":114,"created_at":"Thu + May 07 20:24:21 +0000 2009","favourites_count":10662,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7046,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"4343F0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494659172989767682\/sgcEGCFu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494659172989767682\/sgcEGCFu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38508931\/1655496713","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2E5DB0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Nov 08 15:52:21 +0000 2019","id":1192832237600825344,"id_str":"1192832237600825344","full_text":"AECT-RTD + Call for Nominations [Due 12\/1\/2019] #aectRTD #aect19 #aect19inspired \n@AECT + https:\/\/t.co\/ACUmYXLnBN","truncated":false,"display_text_range":[0,85],"entities":{"hashtags":[{"text":"aectRTD","indices":[46,54]},{"text":"aect19","indices":[55,62]},{"text":"aect19inspired","indices":[63,78]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[80,85]}],"urls":[],"media":[{"id":1192832232009818112,"id_str":"1192832232009818112","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EI3KmFmU4AAX1zs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EI3KmFmU4AAX1zs.jpg","url":"https:\/\/t.co\/ACUmYXLnBN","display_url":"pic.twitter.com\/ACUmYXLnBN","expanded_url":"https:\/\/twitter.com\/w200zmn\/status\/1192832237600825344\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":958,"h":1200,"resize":"fit"},"large":{"w":1635,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1192832232009818112,"id_str":"1192832232009818112","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EI3KmFmU4AAX1zs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EI3KmFmU4AAX1zs.jpg","url":"https:\/\/t.co\/ACUmYXLnBN","display_url":"pic.twitter.com\/ACUmYXLnBN","expanded_url":"https:\/\/twitter.com\/w200zmn\/status\/1192832237600825344\/photo\/1","type":"photo","sizes":{"small":{"w":543,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":958,"h":1200,"resize":"fit"},"large":{"w":1635,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":778003846413053956,"id_str":"778003846413053956","name":"Meina + Zhu","screen_name":"w200zmn","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":116,"listed_count":0,"created_at":"Mon + Sep 19 22:52:26 +0000 2016","favourites_count":87,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":29,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914947963956400130\/5ArPihPt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914947963956400130\/5ArPihPt_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 30 16:20:53 +0000 2019","id":1189577927077154816,"id_str":"1189577927077154816","full_text":"RT + @UF_COE: Congratulations to @SKEdTech and @AlbertRitzhaupt who, along with + Florence Martin and @kiranbudhrani from @UNCC_COED, earned 1s\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UF_COE","name":"UF + College of Education","id":38508931,"id_str":"38508931","indices":[3,10]},{"screen_name":"SKEdTech","name":"Dr. + Swapna Kumar","id":126100931,"id_str":"126100931","indices":[31,40]},{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[45,61]},{"screen_name":"kiranbudhrani","name":"Dr. + Kiran Budhrani","id":6432592,"id_str":"6432592","indices":[98,112]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3031029778,"id_str":"3031029778","name":"UNC + Charlotte Cato College of Education","screen_name":"CLT_COED","location":"Charlotte, + NC","description":"The UNC Charlotte Cato College of Education. A national + leader committed to equity through excellence and engagement.","url":"http:\/\/t.co\/IUvtQjx924","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/IUvtQjx924","expanded_url":"http:\/\/education.uncc.edu","display_url":"education.uncc.edu","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":4416,"friends_count":602,"listed_count":18,"created_at":"Wed + Feb 11 18:54:08 +0000 2015","favourites_count":3089,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1371,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1428371836287344642\/sG8p9UzI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1428371836287344642\/sG8p9UzI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3031029778\/1423682421","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"00703C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 30 14:21:09 +0000 2019","id":1189547793079160832,"id_str":"1189547793079160832","full_text":"Congratulations + to @SKEdTech and @AlbertRitzhaupt who, along with Florence Martin and @kiranbudhrani + from @UNCC_COED, earned 1st Place Qualitative Journal Article Award from @AECT''s + Division of Distance Learning at #AECT19.\nView the full article here: https:\/\/t.co\/3pR2wRd8OK","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"AECT19","indices":[215,222]}],"symbols":[],"user_mentions":[{"screen_name":"SKEdTech","name":"Dr. + Swapna Kumar","id":126100931,"id_str":"126100931","indices":[19,28]},{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[33,49]},{"screen_name":"kiranbudhrani","name":"Dr. + Kiran Budhrani","id":6432592,"id_str":"6432592","indices":[86,100]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[174,179]}],"urls":[{"url":"https:\/\/t.co\/3pR2wRd8OK","expanded_url":"https:\/\/olj.onlinelearningconsortium.org\/index.php\/olj\/article\/view\/1329","display_url":"olj.onlinelearningconsortium.org\/index.php\/olj\/\u2026","indices":[252,275]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38508931,"id_str":"38508931","name":"UF + College of Education","screen_name":"UF_COE","location":"Gainesville, FL","description":"Transforming + education and strengthening society since 1906.\n\u2022https:\/\/t.co\/hoM6mO6mmF + \n\u2022https:\/\/t.co\/OCzwYNCaoO\u2026\n\u2022https:\/\/t.co\/2dcQXBnr0w","url":"https:\/\/t.co\/CjGFPqXH6z","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CjGFPqXH6z","expanded_url":"https:\/\/education.ufl.edu\/","display_url":"education.ufl.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/hoM6mO6mmF","expanded_url":"http:\/\/fb.me\/UF.COE","display_url":"fb.me\/UF.COE","indices":[62,85]},{"url":"https:\/\/t.co\/OCzwYNCaoO","expanded_url":"http:\/\/linkedin.com\/school\/univers","display_url":"linkedin.com\/school\/univers","indices":[88,111]},{"url":"https:\/\/t.co\/2dcQXBnr0w","expanded_url":"http:\/\/tiktok.com\/@ufcoe","display_url":"tiktok.com\/@ufcoe","indices":[114,137]}]}},"protected":false,"followers_count":4599,"friends_count":765,"listed_count":114,"created_at":"Thu + May 07 20:24:21 +0000 2009","favourites_count":10662,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7046,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"4343F0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494659172989767682\/sgcEGCFu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494659172989767682\/sgcEGCFu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38508931\/1655496713","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2E5DB0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Nov 06 21:27:40 +0000 2019","id":1192191846149169153,"id_str":"1192191846149169153","full_text":"Congratulations + to Michelle Jensen and Aprel Mendenhall from @utahstateITLS, winners of the + @NATO_ACT Design and Development Competition at #AECT19! News about the competition + is featured in MarketWatch and more than 120 other news outlets.\n\nhttps:\/\/t.co\/OUgC3jDPdD + https:\/\/t.co\/j9adEcJyT1","truncated":false,"display_text_range":[0,265],"entities":{"hashtags":[{"text":"AECT19","indices":[140,147]}],"symbols":[],"user_mentions":[{"screen_name":"utahstateITLS","name":"USU + ITLS","id":204889709,"id_str":"204889709","indices":[61,75]},{"screen_name":"NATO_ACT","name":"NATO + ACT","id":22975123,"id_str":"22975123","indices":[92,101]}],"urls":[{"url":"https:\/\/t.co\/OUgC3jDPdD","expanded_url":"http:\/\/bit.ly\/aect-nato-news","display_url":"bit.ly\/aect-nato-news","indices":[242,265]}],"media":[{"id":1192191841040576514,"id_str":"1192191841040576514","indices":[266,289],"media_url":"http:\/\/pbs.twimg.com\/media\/EIuEKbVXsAIR2Wq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIuEKbVXsAIR2Wq.jpg","url":"https:\/\/t.co\/j9adEcJyT1","display_url":"pic.twitter.com\/j9adEcJyT1","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1192191846149169153\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":695,"h":457,"resize":"fit"},"small":{"w":680,"h":447,"resize":"fit"},"medium":{"w":695,"h":457,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1192191841040576514,"id_str":"1192191841040576514","indices":[266,289],"media_url":"http:\/\/pbs.twimg.com\/media\/EIuEKbVXsAIR2Wq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIuEKbVXsAIR2Wq.jpg","url":"https:\/\/t.co\/j9adEcJyT1","display_url":"pic.twitter.com\/j9adEcJyT1","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1192191846149169153\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":695,"h":457,"resize":"fit"},"small":{"w":680,"h":447,"resize":"fit"},"medium":{"w":695,"h":457,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Nov 06 18:48:04 +0000 2019","id":1192151681942745089,"id_str":"1192151681942745089","full_text":"RT + @FredWBaker: There is still about a month to get a proposal together for the + Systems Thinking & Change Division''s special issue of \n@AEC\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Nov 06 12:56:58 +0000 2019","id":1192063323761717249,"id_str":"1192063323761717249","full_text":"There + is still about a month to get a proposal together for the Systems Thinking + & Change Division''s special issue of \n@AECTTechTrends!! #instructionaldesign + #aect19 #aectstc https:\/\/t.co\/nQzSaUyRGC","truncated":false,"display_text_range":[0,202],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[141,161]},{"text":"aect19","indices":[162,169]},{"text":"aectstc","indices":[170,178]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[123,138]}],"urls":[{"url":"https:\/\/t.co\/nQzSaUyRGC","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[179,202]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 30 01:44:57 +0000 2019","id":1189357491177410560,"id_str":"1189357491177410560","full_text":"RT + @AECT: We''re still recovering from #AECT19, but that doesn''t mean we haven''t + started planning for #AECT20 and beyond! Check out the futu\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[38,45]},{"text":"AECT20","indices":[101,108]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":65595602,"id_str":"65595602","name":"Yuki + Watanabe","screen_name":"yuuki5000","location":"Tokyo","description":"\u6e21\u8fba\u96c4\u8cb4\u3002\u6771\u4eac\u90fd\u51fa\u8eab\u3002\u3072\u3063\u305d\u308a\u3068\u6559\u80b2\u5de5\u5b66\u306e\u7814\u7a76\u3092\u3057\u3066\u307e\u3059\u3002\u6771\u4eac\u7406\u79d1\u5927\u5b66\u6559\u6388\u3002\u535a\u58eb\uff08\u5b66\u8853\uff09\u6771\u4eac\u5de5\u696d\u5927\u5b66 + \/ Professor (Educational Technology Lab.) at Tokyo University of Science, + Japan. Ph.D. Tokyo Tech","url":"https:\/\/t.co\/4RXslYSaqZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4RXslYSaqZ","expanded_url":"https:\/\/www.tus.ac.jp\/fac_grad\/p\/index.php?3bfc","display_url":"tus.ac.jp\/fac_grad\/p\/ind\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1130,"friends_count":314,"listed_count":43,"created_at":"Fri + Aug 14 08:42:14 +0000 2009","favourites_count":2992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12516,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1360616182319992838\/B-lMb0oC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1360616182319992838\/B-lMb0oC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65595602\/1440774032","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 29 22:21:15 +0000 2019","id":1189306225319731200,"id_str":"1189306225319731200","full_text":"We''re + still recovering from #AECT19, but that doesn''t mean we haven''t started + planning for #AECT20 and beyond! Check out the future locations for upcoming + AECT International Conventions through 2025. Hopefully we''ll see you in #JAX! + https:\/\/t.co\/KUffDFfWwv","truncated":false,"display_text_range":[0,232],"entities":{"hashtags":[{"text":"AECT19","indices":[28,35]},{"text":"AECT20","indices":[91,98]},{"text":"JAX","indices":[227,231]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1189306203798528000,"id_str":"1189306203798528000","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","url":"https:\/\/t.co\/KUffDFfWwv","display_url":"pic.twitter.com\/KUffDFfWwv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1189306225319731200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1189306203798528000,"id_str":"1189306203798528000","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIFDsO6UYAA0qMr.jpg","url":"https:\/\/t.co\/KUffDFfWwv","display_url":"pic.twitter.com\/KUffDFfWwv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1189306225319731200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":29,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 31 01:16:06 +0000 2019","id":1189712615636946945,"id_str":"1189712615636946945","full_text":"RT + @FredWBaker: Had a great conversation at the roundtable on #DesignThinking + at #aect19 around my new paper being published in the Review\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"DesignThinking","indices":[62,77]},{"text":"aect19","indices":[81,88]}],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15654288,"id_str":"15654288","name":"Scott + J. Warren","screen_name":"constatively","location":"Denton, TX","description":"Professor + of learning tech; instructional design; ethics and greening schools\/orgs; + Business research - systems dev, operations, strategy","url":"https:\/\/t.co\/n5xEkVLkO1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/n5xEkVLkO1","expanded_url":"http:\/\/www.scottjwarren.net","display_url":"scottjwarren.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2186,"friends_count":4880,"listed_count":112,"created_at":"Wed + Jul 30 00:56:48 +0000 2008","favourites_count":62322,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15995,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1391548718940409862\/optqE67f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1391548718940409862\/optqE67f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15654288\/1523275532","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 30 20:55:20 +0000 2019","id":1189646995423711233,"id_str":"1189646995423711233","full_text":"Had + a great conversation at the roundtable on #DesignThinking at #aect19 around + my new paper being published in the Review of Education! It is important to + discuss design in #instructionaldesign! The paper is titled \"Concretizing + Design Thinking\" and will be out soon!","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"DesignThinking","indices":[46,61]},{"text":"aect19","indices":[65,72]},{"text":"instructionaldesign","indices":[174,194]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Nov 07 11:21:01 +0000 2019","id":1192401564767522816,"id_str":"1192401564767522816","full_text":"Thank + you @aslam_fataar for critical piece on #4IR https:\/\/t.co\/BMD73NScka I + find fascinating that when I attended #aect19 in the US 4IR was not mentioned + at all. Maybe it''s a political myth, WEF pulled the strings and SA gov took + the bait. Now we are being sold ''solutions''.","truncated":false,"display_text_range":[0,276],"entities":{"hashtags":[{"text":"4IR","indices":[46,50]},{"text":"aect19","indices":[116,123]}],"symbols":[],"user_mentions":[{"screen_name":"aslam_fataar","name":"Aslam + Fataar","id":789033857572040704,"id_str":"789033857572040704","indices":[10,23]}],"urls":[{"url":"https:\/\/t.co\/BMD73NScka","expanded_url":"https:\/\/www.litnet.co.za\/in-the-belly-of-the-beast-south-africas-education-discourses-associated-with-the-fourth-industrial-revolution-4ir\/","display_url":"litnet.co.za\/in-the-belly-o\u2026","indices":[52,75]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Nov 01 19:01:07 +0000 2019","id":1190343026436165632,"id_str":"1190343026436165632","full_text":"RT + @christieliuidtr: AECT McJulien scholar awardee lecture, Manuel Bustamante, + Tamara Gibson, Western New Mexico University, Respecting and\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18974152,"id_str":"18974152","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","screen_name":"akesha","location":"I''m + here: Tweets R My Own view","description":"#edtech, #curriculumdev #adminfaculty + #onlineed #popculture #hiphop #Fulbright #mtvU #\u0394\u03a3\u0398\ud83d\udd3a#VisualArtist, + #paperquilling #Hoosier #AR #VR #STEM #learner","url":"https:\/\/t.co\/ufGyzaFFRu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ufGyzaFFRu","expanded_url":"http:\/\/www.allmyquills.com","display_url":"allmyquills.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":983,"friends_count":1480,"listed_count":89,"created_at":"Wed + Jan 14 12:02:15 +0000 2009","favourites_count":3794,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3989,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000780215522\/f19689f4c5c9c4a61f51c5f4520b8aa0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000780215522\/f19689f4c5c9c4a61f51c5f4520b8aa0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18974152\/1385234193","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 20:32:05 +0000 2019","id":1187104425866715137,"id_str":"1187104425866715137","full_text":"AECT + McJulien scholar awardee lecture, Manuel Bustamante, Tamara Gibson, Western + New Mexico University, Respecting and Representing LGBTQ in Online Curriculum + and Coursework @aectclt @AECT @srogidd #aect19 #aect19inspired https:\/\/t.co\/VofVrbS6cm","truncated":false,"display_text_range":[0,221],"entities":{"hashtags":[{"text":"aect19","indices":[198,205]},{"text":"aect19inspired","indices":[206,221]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[174,182]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[183,188]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[189,197]}],"urls":[],"media":[{"id":1187104418820288512,"id_str":"1187104418820288512","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlxLesUcAAltvs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlxLesUcAAltvs.jpg","url":"https:\/\/t.co\/VofVrbS6cm","display_url":"pic.twitter.com\/VofVrbS6cm","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187104425866715137\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187104418820288512,"id_str":"1187104418820288512","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlxLesUcAAltvs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlxLesUcAAltvs.jpg","url":"https:\/\/t.co\/VofVrbS6cm","display_url":"pic.twitter.com\/VofVrbS6cm","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187104425866715137\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187104418820325377,"id_str":"1187104418820325377","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlxLesVAAEBytc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlxLesVAAEBytc.jpg","url":"https:\/\/t.co\/VofVrbS6cm","display_url":"pic.twitter.com\/VofVrbS6cm","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187104425866715137\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187104418853900288,"id_str":"1187104418853900288","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlxLe0VUAAAzBA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlxLe0VUAAAzBA.jpg","url":"https:\/\/t.co\/VofVrbS6cm","display_url":"pic.twitter.com\/VofVrbS6cm","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187104425866715137\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187104419042611200,"id_str":"1187104419042611200","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlxLfhU0AAjnHB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlxLfhU0AAjnHB.jpg","url":"https:\/\/t.co\/VofVrbS6cm","display_url":"pic.twitter.com\/VofVrbS6cm","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187104425866715137\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1856,"resize":"fit"},"medium":{"w":1200,"h":1088,"resize":"fit"},"small":{"w":680,"h":616,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 30 23:20:50 +0000 2019","id":1189683608350601216,"id_str":"1189683608350601216","full_text":"RT + @UF_COE: Congratulations to @SKEdTech and @AlbertRitzhaupt who, along with + Florence Martin and @kiranbudhrani from @UNCC_COED, earned 1s\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UF_COE","name":"UF + College of Education","id":38508931,"id_str":"38508931","indices":[3,10]},{"screen_name":"SKEdTech","name":"Dr. + Swapna Kumar","id":126100931,"id_str":"126100931","indices":[31,40]},{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[45,61]},{"screen_name":"kiranbudhrani","name":"Dr. + Kiran Budhrani","id":6432592,"id_str":"6432592","indices":[98,112]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 30 14:21:09 +0000 2019","id":1189547793079160832,"id_str":"1189547793079160832","full_text":"Congratulations + to @SKEdTech and @AlbertRitzhaupt who, along with Florence Martin and @kiranbudhrani + from @UNCC_COED, earned 1st Place Qualitative Journal Article Award from @AECT''s + Division of Distance Learning at #AECT19.\nView the full article here: https:\/\/t.co\/3pR2wRd8OK","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"AECT19","indices":[215,222]}],"symbols":[],"user_mentions":[{"screen_name":"SKEdTech","name":"Dr. + Swapna Kumar","id":126100931,"id_str":"126100931","indices":[19,28]},{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[33,49]},{"screen_name":"kiranbudhrani","name":"Dr. + Kiran Budhrani","id":6432592,"id_str":"6432592","indices":[86,100]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[174,179]}],"urls":[{"url":"https:\/\/t.co\/3pR2wRd8OK","expanded_url":"https:\/\/olj.onlinelearningconsortium.org\/index.php\/olj\/article\/view\/1329","display_url":"olj.onlinelearningconsortium.org\/index.php\/olj\/\u2026","indices":[252,275]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38508931,"id_str":"38508931","name":"UF + College of Education","screen_name":"UF_COE","location":"Gainesville, FL","description":"Transforming + education and strengthening society since 1906.\n\u2022https:\/\/t.co\/hoM6mO6mmF + \n\u2022https:\/\/t.co\/OCzwYNCaoO\u2026\n\u2022https:\/\/t.co\/2dcQXBnr0w","url":"https:\/\/t.co\/CjGFPqXH6z","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CjGFPqXH6z","expanded_url":"https:\/\/education.ufl.edu\/","display_url":"education.ufl.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/hoM6mO6mmF","expanded_url":"http:\/\/fb.me\/UF.COE","display_url":"fb.me\/UF.COE","indices":[62,85]},{"url":"https:\/\/t.co\/OCzwYNCaoO","expanded_url":"http:\/\/linkedin.com\/school\/univers","display_url":"linkedin.com\/school\/univers","indices":[88,111]},{"url":"https:\/\/t.co\/2dcQXBnr0w","expanded_url":"http:\/\/tiktok.com\/@ufcoe","display_url":"tiktok.com\/@ufcoe","indices":[114,137]}]}},"protected":false,"followers_count":4599,"friends_count":765,"listed_count":114,"created_at":"Thu + May 07 20:24:21 +0000 2009","favourites_count":10662,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7046,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"4343F0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494659172989767682\/sgcEGCFu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494659172989767682\/sgcEGCFu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38508931\/1655496713","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2E5DB0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Nov 07 12:33:02 +0000 2019","id":1192419687801511938,"id_str":"1192419687801511938","full_text":"RT + @emergeAfrica: Join @nicolapallitt and the @AECT friends at this Report Back + FREE webinar as they tell us what happened at the AECT Inte\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[3,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[23,37]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[46,51]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Nov 07 11:47:29 +0000 2019","id":1192408226547032065,"id_str":"1192408226547032065","full_text":"Join + @nicolapallitt and the @AECT friends at this Report Back FREE webinar as they + tell us what happened at the AECT International Convention in Las Vegas in + October #AECT19 #emergeAfrica \nSee you on Thursday 14th November 2019 at + 3:00pm SAST https:\/\/t.co\/KWT2GHvEv9","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"AECT19","indices":[166,173]},{"text":"emergeAfrica","indices":[174,187]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[5,19]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[28,33]}],"urls":[],"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1192408176974536704,"id_str":"1192408176974536704","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIxI61fWoAAbXwQ.jpg","url":"https:\/\/t.co\/KWT2GHvEv9","display_url":"pic.twitter.com\/KWT2GHvEv9","expanded_url":"https:\/\/twitter.com\/emergeAfrica\/status\/1192408226547032065\/photo\/1","type":"photo","sizes":{"large":{"w":1920,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":10,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 30 23:22:31 +0000 2019","id":1189684033539710977,"id_str":"1189684033539710977","full_text":"RT + @UF_COE: Congratulations to @SKEdTech and @AlbertRitzhaupt who, along with + Florence Martin and @kiranbudhrani from @UNCC_COED, earned 1s\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UF_COE","name":"UF + College of Education","id":38508931,"id_str":"38508931","indices":[3,10]},{"screen_name":"SKEdTech","name":"Dr. + Swapna Kumar","id":126100931,"id_str":"126100931","indices":[31,40]},{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[45,61]},{"screen_name":"kiranbudhrani","name":"Dr. + Kiran Budhrani","id":6432592,"id_str":"6432592","indices":[98,112]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 30 14:21:09 +0000 2019","id":1189547793079160832,"id_str":"1189547793079160832","full_text":"Congratulations + to @SKEdTech and @AlbertRitzhaupt who, along with Florence Martin and @kiranbudhrani + from @UNCC_COED, earned 1st Place Qualitative Journal Article Award from @AECT''s + Division of Distance Learning at #AECT19.\nView the full article here: https:\/\/t.co\/3pR2wRd8OK","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"AECT19","indices":[215,222]}],"symbols":[],"user_mentions":[{"screen_name":"SKEdTech","name":"Dr. + Swapna Kumar","id":126100931,"id_str":"126100931","indices":[19,28]},{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[33,49]},{"screen_name":"kiranbudhrani","name":"Dr. + Kiran Budhrani","id":6432592,"id_str":"6432592","indices":[86,100]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[174,179]}],"urls":[{"url":"https:\/\/t.co\/3pR2wRd8OK","expanded_url":"https:\/\/olj.onlinelearningconsortium.org\/index.php\/olj\/article\/view\/1329","display_url":"olj.onlinelearningconsortium.org\/index.php\/olj\/\u2026","indices":[252,275]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38508931,"id_str":"38508931","name":"UF + College of Education","screen_name":"UF_COE","location":"Gainesville, FL","description":"Transforming + education and strengthening society since 1906.\n\u2022https:\/\/t.co\/hoM6mO6mmF + \n\u2022https:\/\/t.co\/OCzwYNCaoO\u2026\n\u2022https:\/\/t.co\/2dcQXBnr0w","url":"https:\/\/t.co\/CjGFPqXH6z","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CjGFPqXH6z","expanded_url":"https:\/\/education.ufl.edu\/","display_url":"education.ufl.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/hoM6mO6mmF","expanded_url":"http:\/\/fb.me\/UF.COE","display_url":"fb.me\/UF.COE","indices":[62,85]},{"url":"https:\/\/t.co\/OCzwYNCaoO","expanded_url":"http:\/\/linkedin.com\/school\/univers","display_url":"linkedin.com\/school\/univers","indices":[88,111]},{"url":"https:\/\/t.co\/2dcQXBnr0w","expanded_url":"http:\/\/tiktok.com\/@ufcoe","display_url":"tiktok.com\/@ufcoe","indices":[114,137]}]}},"protected":false,"followers_count":4599,"friends_count":765,"listed_count":114,"created_at":"Thu + May 07 20:24:21 +0000 2009","favourites_count":10662,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7046,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"4343F0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494659172989767682\/sgcEGCFu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494659172989767682\/sgcEGCFu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38508931\/1655496713","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2E5DB0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 31 17:56:48 +0000 2019","id":1189964453497864192,"id_str":"1189964453497864192","full_text":"@bonni208 + @Cambrian_Jess @H5PTechnology We have H5P available for our Pressbooks instance + at @UMNews and are using it for a Teaching with Technology book creation project. + It''s been fun to experiment with, plus there are over 40 content types that + are fully accessible. #OpenEd19 #aect19inspired","truncated":false,"display_text_range":[40,295],"entities":{"hashtags":[{"text":"OpenEd19","indices":[270,279]},{"text":"aect19inspired","indices":[280,295]}],"symbols":[],"user_mentions":[{"screen_name":"bonni208","name":"Bonni + Stachowiak","id":14777884,"id_str":"14777884","indices":[0,9]},{"screen_name":"H5PTechnology","name":"H5P","id":2216405440,"id_str":"2216405440","indices":[25,39]},{"screen_name":"UMNews","name":"University + of Minnesota","id":18917572,"id_str":"18917572","indices":[93,100]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1189962468686041088,"in_reply_to_status_id_str":"1189962468686041088","in_reply_to_user_id":14777884,"in_reply_to_user_id_str":"14777884","in_reply_to_screen_name":"bonni208","user":{"id":64769037,"id_str":"64769037","name":"jenn\u03b9\u0493er + engl\u03c5nd","screen_name":"jmenglund03","location":"Settler on Dakota homelands","description":"@UMN_CI + LT PhD Candidate \u2022 @UMNews instructional designer \u2022 @GOGN_OER scholar + \u2022 @femedtech member \u2022 #OEP advocate \u2022 Pronouns: she\/her","url":"https:\/\/t.co\/cjLLex1JDn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cjLLex1JDn","expanded_url":"https:\/\/jenniferenglund.net\/","display_url":"jenniferenglund.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":662,"friends_count":627,"listed_count":72,"created_at":"Tue + Aug 11 17:10:00 +0000 2009","favourites_count":2052,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2918,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B7C8E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64769037\/1500750705","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"452568","profile_sidebar_border_color":"204207","profile_sidebar_fill_color":"060A00","profile_text_color":"618238","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1189223760156602369%2C1189223534230421504%2C1189223534230421504%2C1189200097856221184%2C1189199523509227520%2C1189199523509227520%2C1189186644399673344%2C1189162507274989568%2C1189144673123745794%2C1189144136533893120%2C1189144136533893120%2C1188923623203049473%2C1188921623908360199%2C1188905142424408066%2C1188874166507921408%2C1188873720460390403%2C1188869822270132224%2C1188869822270132224%2C1188842373637443590%2C1188841639961346056%2C1188841639961346056%2C1188820118383583232%2C1188776632124936192%2C1188692408206147585%2C1188661388094382081%2C1188660467675385856%2C1188652565367574528%2C1188652484581085193%2C1188652484581085193%2C1188611679023763458%2C1188609626146770944%2C1188607047425810432%2C1188607047425810432%2C1188581533537521664%2C1188536700680753152%2C1188532758588674048%2C1188532082001231876%2C1188530151975510016%2C1188530151975510016%2C1188522094138515456%2C1188484975798173697%2C1188484772374503424%2C1188484772374503424%2C1188476279982641152%2C1188474364800458752%2C1188474364800458752%2C1188455506987409408%2C1188452877183967233%2C1188452516025065473%2C1188450230867509248%2C1188445220821753856%2C1188444844676567040%2C1188444844676567040%2C1188406546184708096%2C1188313789457809408%2C1188312451848138753%2C1188310518613733376%2C1188310518613733376%2C1188301434124566528%2C1188272489723518976%2C1188268985613279233%2C1188259590959448065%2C1188259590959448065%2C1188255577404784643%2C1188211946773975040%2C1188209701059727360%2C1188207473603350528%2C1188199976532209664%2C1188199601872035841%2C1188199601872035841%2C1188191575077199872%2C1188180993993129984%2C1188180775864111104%2C1188179834171604992%2C1188177679763165185%2C1188176677194682373%2C1188176253020340224%2C1188175703759474688%2C1188175358241075201%2C1188174999359610880%2C1188174796632264704%2C1188174385997205504%2C1188173551301513217%2C1188167339285647362%2C1188167339285647362%2C1188136504461152259%2C1188136449805152258%2C1188135760894889984%2C1188135760894889984%2C1188116001948348417%2C1188090007816261632%2C1188084423918608384%2C1188084423918608384%2C1188064104617041920%2C1188057997232300032%2C1187989459658137602%2C1187984700301725696%2C1187979413343952897%2C1187978481822511106%2C1187978001943875584&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:40 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:40 GMT + x-transaction: c3d7c2975c02fa9f + content-length: '64235' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '292' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '307' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Sat Oct 26 19:32:49 +0000 2019","id":1188176677194682373,"id_str":"1188176677194682373","full_text":"RT + @NeumannKL: Do you miss being at #AECT19? Stay #aect19inspired with the @AECT + Digital Escape Room created at our (@francesmarg & @Rachel\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"AECT19","indices":[36,43]},{"text":"aect19inspired","indices":[50,65]}],"symbols":[],"user_mentions":[{"screen_name":"NeumannKL","name":"Dr. + Kalianne L. Neumann","id":281735316,"id_str":"281735316","indices":[3,13]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[75,80]},{"screen_name":"francesmarg","name":"Frances + Alvarado","id":91361410,"id_str":"91361410","indices":[117,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":91361410,"id_str":"91361410","name":"Frances + Alvarado","screen_name":"francesmarg","location":"Earth","description":"Learning, + Design, & Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":146,"listed_count":1,"created_at":"Fri + Nov 20 15:25:28 +0000 2009","favourites_count":3639,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":567,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1333933432435568645\/WGnKKjwS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1333933432435568645\/WGnKKjwS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/91361410\/1533572819","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 26 19:20:24 +0000 2019","id":1188173551301513217,"id_str":"1188173551301513217","full_text":"Do + you miss being at #AECT19? Stay #aect19inspired with the @AECT Digital Escape + Room created at our (@francesmarg & @RachelYLKim) @tedaect Inspire! session + on Friday at 10am! First ones to help the grad student escape get a shout + out on Twitter!\n\nhttps:\/\/t.co\/qDgkgLOlec","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"AECT19","indices":[21,28]},{"text":"aect19inspired","indices":[35,50]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[60,65]},{"screen_name":"francesmarg","name":"Frances + Alvarado","id":91361410,"id_str":"91361410","indices":[102,114]},{"screen_name":"tedaect","name":"TED + AECT","id":2165058337,"id_str":"2165058337","indices":[135,143]}],"urls":[{"url":"https:\/\/t.co\/qDgkgLOlec","expanded_url":"https:\/\/sites.google.com\/view\/aect-digital-escape-room\/","display_url":"sites.google.com\/view\/aect-digi\u2026","indices":[252,275]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":281735316,"id_str":"281735316","name":"Dr. + Kalianne L. Neumann","screen_name":"NeumannKL","location":"Stillwater, OK","description":"Assistant + Professor \u2013 Oklahoma State University \u2013 Learning, Design, and Technology","url":"https:\/\/t.co\/C5ihHdSiId","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/C5ihHdSiId","expanded_url":"http:\/\/bit.ly\/RevisionAssistanttoo","display_url":"bit.ly\/RevisionAssist\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":200,"friends_count":194,"listed_count":15,"created_at":"Wed + Apr 13 21:33:05 +0000 2011","favourites_count":445,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":276,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281735316\/1412853928","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 19:49:58 +0000 2019","id":1188180993993129984,"id_str":"1188180993993129984","full_text":"RT + @jeroen69: Paraphrasing Thomas Reeves: If you can\u2019t link your work to + any of these goals, you should probably rethink what you are doing\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jeroen69","name":"Jeroen","id":6848632,"id_str":"6848632","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 16:27:08 +0000 2019","id":1186680396076875776,"id_str":"1186680396076875776","full_text":"Paraphrasing + Thomas Reeves: If you can\u2019t link your work to any of these goals, you + should probably rethink what you are doing. #aect19 #aectinspired https:\/\/t.co\/S4OYny9Oy7","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[{"text":"aect19","indices":[127,134]},{"text":"aectinspired","indices":[135,148]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186680255118884864,"id_str":"1186680255118884864","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","url":"https:\/\/t.co\/S4OYny9Oy7","display_url":"pic.twitter.com\/S4OYny9Oy7","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186680396076875776\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186680255118884864,"id_str":"1186680255118884864","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","url":"https:\/\/t.co\/S4OYny9Oy7","display_url":"pic.twitter.com\/S4OYny9Oy7","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186680396076875776\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 19:23:43 +0000 2019","id":1188174385997205504,"id_str":"1188174385997205504","full_text":"RT + @Happy_Tao: SICET kickoff luncheon table @aect - write down the name who inspires + you on the balloon, and take a photo with him\/her! See\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Happy_Tao","name":"Hengtao + Tang","id":482227724,"id_str":"482227724","indices":[3,13]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[44,49]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 03:32:32 +0000 2019","id":1186847850010857472,"id_str":"1186847850010857472","full_text":"SICET + kickoff luncheon table @aect - write down the name who inspires you on the + balloon, and take a photo with him\/her! See what we got! #AECT2019 #AECT2019inspired + https:\/\/t.co\/AVxuTKOqxO","truncated":false,"display_text_range":[0,165],"entities":{"hashtags":[{"text":"AECT2019","indices":[138,147]},{"text":"AECT2019inspired","indices":[148,165]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[29,34]}],"urls":[],"media":[{"id":1186847843299889152,"id_str":"1186847843299889152","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiH00ZUEAAdrDC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiH00ZUEAAdrDC.jpg","url":"https:\/\/t.co\/AVxuTKOqxO","display_url":"pic.twitter.com\/AVxuTKOqxO","expanded_url":"https:\/\/twitter.com\/Happy_Tao\/status\/1186847850010857472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186847843299889152,"id_str":"1186847843299889152","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiH00ZUEAAdrDC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiH00ZUEAAdrDC.jpg","url":"https:\/\/t.co\/AVxuTKOqxO","display_url":"pic.twitter.com\/AVxuTKOqxO","expanded_url":"https:\/\/twitter.com\/Happy_Tao\/status\/1186847850010857472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186847843291516929,"id_str":"1186847843291516929","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiH00XUUAEbqxP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiH00XUUAEbqxP.jpg","url":"https:\/\/t.co\/AVxuTKOqxO","display_url":"pic.twitter.com\/AVxuTKOqxO","expanded_url":"https:\/\/twitter.com\/Happy_Tao\/status\/1186847850010857472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":600,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":800,"h":600,"resize":"fit"}},"ext_alt_text":null},{"id":1186847843299889153,"id_str":"1186847843299889153","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiH00ZUEAEvTNE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiH00ZUEAEvTNE.jpg","url":"https:\/\/t.co\/AVxuTKOqxO","display_url":"pic.twitter.com\/AVxuTKOqxO","expanded_url":"https:\/\/twitter.com\/Happy_Tao\/status\/1186847850010857472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":600,"h":800,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"}},"ext_alt_text":null},{"id":1186847845288038400,"id_str":"1186847845288038400","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiH07zU0AA-cs7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiH07zU0AA-cs7.jpg","url":"https:\/\/t.co\/AVxuTKOqxO","display_url":"pic.twitter.com\/AVxuTKOqxO","expanded_url":"https:\/\/twitter.com\/Happy_Tao\/status\/1186847850010857472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":600,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":800,"h":600,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":482227724,"id_str":"482227724","name":"Hengtao + Tang","screen_name":"Happy_Tao","location":"Columbia, SC","description":"Assistant + Professor @edtech_uofsc. #Gamecock Live love teach! @psuldt alumni. We are....","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":390,"friends_count":870,"listed_count":13,"created_at":"Fri + Feb 03 17:29:31 +0000 2012","favourites_count":2095,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1127,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1804992888\/h_large_CCWB_7b22000080c72f76_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1804992888\/h_large_CCWB_7b22000080c72f76_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/482227724\/1578336887","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 27 13:48:54 +0000 2019","id":1188452516025065473,"id_str":"1188452516025065473","full_text":"RT + @christieliuidtr: RT @hodgesc So true! Many thanks to @michaelmgrant Dr. Phil + Harris, @dctrcurry @AECT, @aectclt @srogidd, Dr. Deepak, @\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[24,32]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[57,71]},{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[89,99]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[100,105]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[107,115]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[116,124]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 27 13:39:50 +0000 2019","id":1188450230867509248,"id_str":"1188450230867509248","full_text":"RT + @hodgesc So true! Many thanks to @michaelmgrant Dr. Phil Harris, @dctrcurry + @AECT, @aectclt @srogidd, Dr. Deepak, @SICET @ll351 @Happy_Tao for the many + hours and shared intelligence on #aect19 #aect19inspired for us! Looking forward + to helping #aect20 planning with Dr @ge_xun https:\/\/t.co\/1vlqNRPR9a","truncated":false,"display_text_range":[0,279],"entities":{"hashtags":[{"text":"aect19","indices":[188,195]},{"text":"aect19inspired","indices":[196,211]},{"text":"aect20","indices":[247,254]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[36,50]},{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[68,78]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[79,84]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[86,94]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[95,103]},{"screen_name":"SICET","name":"SICET","id":114832274,"id_str":"114832274","indices":[117,123]},{"screen_name":"ll351","name":"Lin + Lin","id":23219752,"id_str":"23219752","indices":[124,130]},{"screen_name":"Happy_Tao","name":"Hengtao + Tang","id":482227724,"id_str":"482227724","indices":[131,141]},{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[272,279]}],"urls":[{"url":"https:\/\/t.co\/1vlqNRPR9a","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187485376643944448","display_url":"twitter.com\/hodgesc\/status\u2026","indices":[280,303]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187485376643944448,"quoted_status_id_str":"1187485376643944448","quoted_status_permalink":{"url":"https:\/\/t.co\/1vlqNRPR9a","expanded":"https:\/\/twitter.com\/hodgesc\/status\/1187485376643944448","display":"twitter.com\/hodgesc\/status\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 21:45:50 +0000 2019","id":1187485376643944448,"id_str":"1187485376643944448","full_text":"Two + gentle who inspire me! @michaelmgrant and Dr. Phil Harris. Many thanks for + the hours they\u2019ve spent creating #aect19inspired for us! #rockinthebowtie + #rockinnotie https:\/\/t.co\/yyhnoLSa14","truncated":false,"display_text_range":[0,165],"entities":{"hashtags":[{"text":"aect19inspired","indices":[112,127]},{"text":"rockinthebowtie","indices":[136,152]},{"text":"rockinnotie","indices":[153,165]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[27,41]}],"urls":[],"media":[{"id":1187485372168593408,"id_str":"1187485372168593408","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrLp4gU4AAY6oO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrLp4gU4AAY6oO.jpg","url":"https:\/\/t.co\/yyhnoLSa14","display_url":"pic.twitter.com\/yyhnoLSa14","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187485376643944448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187485372168593408,"id_str":"1187485372168593408","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrLp4gU4AAY6oO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrLp4gU4AAY6oO.jpg","url":"https:\/\/t.co\/yyhnoLSa14","display_url":"pic.twitter.com\/yyhnoLSa14","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187485376643944448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1187485376643944448,"quoted_status_id_str":"1187485376643944448","quoted_status_permalink":{"url":"https:\/\/t.co\/1vlqNRPR9a","expanded":"https:\/\/twitter.com\/hodgesc\/status\/1187485376643944448","display":"twitter.com\/hodgesc\/status\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 28 17:42:37 +0000 2019","id":1188873720460390403,"id_str":"1188873720460390403","full_text":"RT + @KathyMansfield: Wrapped up #AECT19 with my final presentation \u201cAlexa, + Hand scans, and Netflix, oh my!\u201d Met my privacy soul sister \u2066@Na\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[31,38]}],"symbols":[],"user_mentions":[{"screen_name":"KathyMansfield","name":"Kathy + Mansfield","id":27742120,"id_str":"27742120","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15635142,"id_str":"15635142","name":"Dr. + Kimberly N. LaPrairie","screen_name":"Tech_DrL","location":"Texas, USA","description":"\ud83d\udc69\ud83c\udffc\u200d\ud83c\udf93\ud83d\udc69\ud83c\udffc\u200d\ud83c\udfebAssoc + Prof of Instructional Systems Design & Technology\ud83d\udc69\ud83c\udffc\u200d\ud83d\udcbb\u2022 + Mom of 4\ud83d\udc68\ud83c\udffb\u200d\ud83d\udcbb\ud83d\udc71\ud83c\udffb\u200d\u2640\ufe0f\ud83d\udc67\ud83c\udffb\ud83e\uddd2\ud83c\udffc\u2022 + #FatFueled #Runner #PelotonRider\ud83e\udd51\ud83e\udd53\ud83c\udfc3\ud83c\udffc\u200d\u2640\ufe0f\ud83d\udeb4\ud83c\udffc\u200d\u2640\ufe0f","url":"https:\/\/t.co\/69VXyGUkoo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/69VXyGUkoo","expanded_url":"https:\/\/www.instagram.com\/Tech_DrL\/","display_url":"instagram.com\/Tech_DrL\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1470,"friends_count":1395,"listed_count":124,"created_at":"Mon + Jul 28 17:54:31 +0000 2008","favourites_count":4299,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6412,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1516648007651008515\/fwC4vMQz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1516648007651008515\/fwC4vMQz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15635142\/1531239446","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ED822F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 28 17:27:08 +0000 2019","id":1188869822270132224,"id_str":"1188869822270132224","full_text":"Wrapped + up #AECT19 with my final presentation \u201cAlexa, Hand scans, and Netflix, + oh my!\u201d Met my privacy soul sister \u2066@NancyeBlackEdu\u2069! Thanks + for making my session! #PerkyPrivacyGirl #AECT2019 https:\/\/t.co\/YgRLcGP5GH","truncated":false,"display_text_range":[0,193],"entities":{"hashtags":[{"text":"AECT19","indices":[11,18]},{"text":"PerkyPrivacyGirl","indices":[166,183]},{"text":"AECT2019","indices":[184,193]}],"symbols":[],"user_mentions":[{"screen_name":"NancyeBlackEdu","name":"Nancye + Blair Black","id":175808323,"id_str":"175808323","indices":[116,131]}],"urls":[],"media":[{"id":1188869799994150913,"id_str":"1188869799994150913","indices":[194,217],"media_url":"http:\/\/pbs.twimg.com\/media\/EH-2yMDXUAEKw1I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH-2yMDXUAEKw1I.jpg","url":"https:\/\/t.co\/YgRLcGP5GH","display_url":"pic.twitter.com\/YgRLcGP5GH","expanded_url":"https:\/\/twitter.com\/KathyMansfield\/status\/1188869822270132224\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":511,"h":680,"resize":"fit"},"large":{"w":1539,"h":2048,"resize":"fit"},"medium":{"w":902,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1188869799994150913,"id_str":"1188869799994150913","indices":[194,217],"media_url":"http:\/\/pbs.twimg.com\/media\/EH-2yMDXUAEKw1I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH-2yMDXUAEKw1I.jpg","url":"https:\/\/t.co\/YgRLcGP5GH","display_url":"pic.twitter.com\/YgRLcGP5GH","expanded_url":"https:\/\/twitter.com\/KathyMansfield\/status\/1188869822270132224\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":511,"h":680,"resize":"fit"},"large":{"w":1539,"h":2048,"resize":"fit"},"medium":{"w":902,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27742120,"id_str":"27742120","name":"Kathy + Mansfield","screen_name":"KathyMansfield","location":"New Braunfels, TX","description":"Perky + Privacy Girl. Instructional Ed Tech. Coffee. Instructional Design doctoral + candidate. Student data privacy advocate.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":353,"friends_count":565,"listed_count":4,"created_at":"Mon + Mar 30 22:07:14 +0000 2009","favourites_count":3189,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1363,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1479956065018122245\/3ylxWDWM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1479956065018122245\/3ylxWDWM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27742120\/1589406705","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 21:52:58 +0000 2019","id":1188211946773975040,"id_str":"1188211946773975040","full_text":"RT + @DrTerriC: Watching an engaging session with @tel_education staff and @oueducation + students @CatJackson28 @kellyeross16 as they talk abo\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[3,12]},{"screen_name":"tel_education","name":"TEL + Education","id":950470158837051392,"id_str":"950470158837051392","indices":[48,62]},{"screen_name":"oueducation","name":"OU + Jeannine Rainbolt College of Education","id":15946481,"id_str":"15946481","indices":[73,85]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1194594229,"id_str":"1194594229","name":"Dr. + Kelly Ross","screen_name":"kellyeross16","location":"Middletown, CT","description":"Ph.D. + in Learning Sciences from University of Oklahoma. Member of the OU MOVE Lab. + Learning Engineer at Southern New Hampshire University.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":163,"friends_count":512,"listed_count":5,"created_at":"Mon + Feb 18 19:29:57 +0000 2013","favourites_count":1216,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":404,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/900044139995160577\/_XNlNQj1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/900044139995160577\/_XNlNQj1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1194594229\/1501007288","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 18:09:54 +0000 2019","id":1187793421840240640,"id_str":"1187793421840240640","full_text":"Watching + an engaging session with @tel_education staff and @oueducation students @CatJackson28 + @kellyeross16 as they talk about learning environment modeling. @buckydodd #aect19inspired (room + 14) https:\/\/t.co\/5BRi92e71q","truncated":false,"display_text_range":[0,197],"entities":{"hashtags":[{"text":"aect19inspired","indices":[171,186]}],"symbols":[],"user_mentions":[{"screen_name":"tel_education","name":"TEL + Education","id":950470158837051392,"id_str":"950470158837051392","indices":[34,48]},{"screen_name":"oueducation","name":"OU + Jeannine Rainbolt College of Education","id":15946481,"id_str":"15946481","indices":[59,71]},{"screen_name":"kellyeross16","name":"Dr. + Kelly Ross","id":1194594229,"id_str":"1194594229","indices":[95,108]},{"screen_name":"buckydodd","name":"Bucky","id":158037639,"id_str":"158037639","indices":[159,169]}],"urls":[],"media":[{"id":1187793401636212736,"id_str":"1187793401636212736","indices":[198,221],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvjzjsUUAAKRlC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvjzjsUUAAKRlC.jpg","url":"https:\/\/t.co\/5BRi92e71q","display_url":"pic.twitter.com\/5BRi92e71q","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187793421840240640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187793401636212736,"id_str":"1187793401636212736","indices":[198,221],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvjzjsUUAAKRlC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvjzjsUUAAKRlC.jpg","url":"https:\/\/t.co\/5BRi92e71q","display_url":"pic.twitter.com\/5BRi92e71q","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187793421840240640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":"Tel + library"}]},"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" + rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 19:25:21 +0000 2019","id":1188174796632264704,"id_str":"1188174796632264704","full_text":"RT + @NeumannKL: Do you miss being at #AECT19? Stay #aect19inspired with the @AECT + Digital Escape Room created at our (@francesmarg & @Rachel\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"AECT19","indices":[36,43]},{"text":"aect19inspired","indices":[50,65]}],"symbols":[],"user_mentions":[{"screen_name":"NeumannKL","name":"Dr. + Kalianne L. Neumann","id":281735316,"id_str":"281735316","indices":[3,13]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[75,80]},{"screen_name":"francesmarg","name":"Frances + Alvarado","id":91361410,"id_str":"91361410","indices":[117,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 26 19:20:24 +0000 2019","id":1188173551301513217,"id_str":"1188173551301513217","full_text":"Do + you miss being at #AECT19? Stay #aect19inspired with the @AECT Digital Escape + Room created at our (@francesmarg & @RachelYLKim) @tedaect Inspire! session + on Friday at 10am! First ones to help the grad student escape get a shout + out on Twitter!\n\nhttps:\/\/t.co\/qDgkgLOlec","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"AECT19","indices":[21,28]},{"text":"aect19inspired","indices":[35,50]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[60,65]},{"screen_name":"francesmarg","name":"Frances + Alvarado","id":91361410,"id_str":"91361410","indices":[102,114]},{"screen_name":"tedaect","name":"TED + AECT","id":2165058337,"id_str":"2165058337","indices":[135,143]}],"urls":[{"url":"https:\/\/t.co\/qDgkgLOlec","expanded_url":"https:\/\/sites.google.com\/view\/aect-digital-escape-room\/","display_url":"sites.google.com\/view\/aect-digi\u2026","indices":[252,275]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":281735316,"id_str":"281735316","name":"Dr. + Kalianne L. Neumann","screen_name":"NeumannKL","location":"Stillwater, OK","description":"Assistant + Professor \u2013 Oklahoma State University \u2013 Learning, Design, and Technology","url":"https:\/\/t.co\/C5ihHdSiId","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/C5ihHdSiId","expanded_url":"http:\/\/bit.ly\/RevisionAssistanttoo","display_url":"bit.ly\/RevisionAssist\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":200,"friends_count":194,"listed_count":15,"created_at":"Wed + Apr 13 21:33:05 +0000 2011","favourites_count":445,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":276,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281735316\/1412853928","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 28 14:09:38 +0000 2019","id":1188820118383583232,"id_str":"1188820118383583232","full_text":"RT + @jeroen69: Paraphrasing Thomas Reeves: If you can\u2019t link your work to + any of these goals, you should probably rethink what you are doing\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jeroen69","name":"Jeroen","id":6848632,"id_str":"6848632","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1006280296562556928,"id_str":"1006280296562556928","name":"E. + Drake, EdS","screen_name":"edudrake2","location":"","description":"Virtual + Educator with EdS in Instructional Technology who loves helping others integrate + technology to enhance learning","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":93,"listed_count":2,"created_at":"Mon + Jun 11 21:01:33 +0000 2018","favourites_count":159,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":242,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1006288704321740801\/kmNFMbcZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1006288704321740801\/kmNFMbcZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1006280296562556928\/1529118243","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 16:27:08 +0000 2019","id":1186680396076875776,"id_str":"1186680396076875776","full_text":"Paraphrasing + Thomas Reeves: If you can\u2019t link your work to any of these goals, you + should probably rethink what you are doing. #aect19 #aectinspired https:\/\/t.co\/S4OYny9Oy7","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[{"text":"aect19","indices":[127,134]},{"text":"aectinspired","indices":[135,148]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186680255118884864,"id_str":"1186680255118884864","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","url":"https:\/\/t.co\/S4OYny9Oy7","display_url":"pic.twitter.com\/S4OYny9Oy7","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186680396076875776\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186680255118884864,"id_str":"1186680255118884864","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","url":"https:\/\/t.co\/S4OYny9Oy7","display_url":"pic.twitter.com\/S4OYny9Oy7","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186680396076875776\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 27 01:39:37 +0000 2019","id":1188268985613279233,"id_str":"1188268985613279233","full_text":"RT + @WilsonInEdu: Along with @troman at #aect2019 #aect19inspired from @KSUITEC + @KSUBCOE @kennesawstate #KSUITEC https:\/\/t.co\/MXJPPRJZjK","truncated":false,"display_text_range":[0,135],"entities":{"hashtags":[{"text":"aect2019","indices":[39,48]},{"text":"aect19inspired","indices":[49,64]}],"symbols":[],"user_mentions":[{"screen_name":"WilsonInEdu","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","id":489118534,"id_str":"489118534","indices":[3,15]},{"screen_name":"troman","name":"Dr. + Tiffany Roman","id":15299255,"id_str":"15299255","indices":[28,35]},{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[70,78]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15299255,"id_str":"15299255","name":"Dr. + Tiffany Roman","screen_name":"troman","location":"Kennesaw, GA","description":"Assistant + Professor of Instructional Technology. Entrepreneur. Designer. Teacher. Mother. + Researcher of Design Ed, Innovation & Tech Integration in K-20.","url":"https:\/\/t.co\/vWr6F7hZ75","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vWr6F7hZ75","expanded_url":"http:\/\/www.round3.io","display_url":"round3.io","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":546,"friends_count":865,"listed_count":10,"created_at":"Wed + Jul 02 16:06:37 +0000 2008","favourites_count":1076,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":363,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1468308563403714566\/zZzeCmpz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1468308563403714566\/zZzeCmpz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15299255\/1537500662","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 01:37:25 +0000 2019","id":1187543656590270464,"id_str":"1187543656590270464","full_text":"Along + with @troman at #aect2019 #aect19inspired from @KSUITEC @KSUBCOE @kennesawstate + #KSUITEC https:\/\/t.co\/MXJPPRJZjK","truncated":false,"display_text_range":[0,94],"entities":{"hashtags":[{"text":"aect2019","indices":[22,31]},{"text":"aect19inspired","indices":[32,47]},{"text":"KSUITEC","indices":[86,94]}],"symbols":[],"user_mentions":[{"screen_name":"troman","name":"Dr. + Tiffany Roman","id":15299255,"id_str":"15299255","indices":[11,18]},{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[53,61]},{"screen_name":"kennesawstate","name":"Kennesaw + State","id":54637018,"id_str":"54637018","indices":[71,85]}],"urls":[],"media":[{"id":1187543650013573121,"id_str":"1187543650013573121","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsAqGZUcAE8WlC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsAqGZUcAE8WlC.jpg","url":"https:\/\/t.co\/MXJPPRJZjK","display_url":"pic.twitter.com\/MXJPPRJZjK","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1187543656590270464\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1179,"resize":"fit"},"small":{"w":680,"h":668,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1941,"h":1907,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187543650013573121,"id_str":"1187543650013573121","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsAqGZUcAE8WlC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsAqGZUcAE8WlC.jpg","url":"https:\/\/t.co\/MXJPPRJZjK","display_url":"pic.twitter.com\/MXJPPRJZjK","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1187543656590270464\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1179,"resize":"fit"},"small":{"w":680,"h":668,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1941,"h":1907,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 21:05:24 +0000 2019","id":1188199976532209664,"id_str":"1188199976532209664","full_text":"RT + @hodgesc: The conference is nearly over, but your chance to impact the field + is not over. Submit your work to @AECTTechTrends. #aect19i\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[114,129]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237053180,"id_str":"237053180","name":"Yu-Chang + Hsu","screen_name":"HsuBSU","location":"","description":"Professor, Boise + State University","url":"https:\/\/t.co\/hyvWHDFMCC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hyvWHDFMCC","expanded_url":"https:\/\/yuchanghsu.wixsite.com\/portfolio","display_url":"yuchanghsu.wixsite.com\/portfolio","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":405,"listed_count":0,"created_at":"Tue + Jan 11 23:53:22 +0000 2011","favourites_count":1093,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":432,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213226927\/HSU_Headshot_new_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213226927\/HSU_Headshot_new_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 18:37:44 +0000 2019","id":1187800427544268800,"id_str":"1187800427544268800","full_text":"The + conference is nearly over, but your chance to impact the field is not over. Submit + your work to @AECTTechTrends. #aect19inspired https:\/\/t.co\/Apm4iN9TnO","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[101,116]}],"urls":[],"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"photo","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"video","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"duration_millis":14133,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/pl\/T49X8pWvcWZ1hr0f.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/360x270\/jjTaFEgF3SEuLXiG.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/480x360\/lLxj8onGzGLt2Pjb.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/640x480\/fsmN351GfvkQwtsa.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 28 17:27:08 +0000 2019","id":1188869822270132224,"id_str":"1188869822270132224","full_text":"Wrapped + up #AECT19 with my final presentation \u201cAlexa, Hand scans, and Netflix, + oh my!\u201d Met my privacy soul sister \u2066@NancyeBlackEdu\u2069! Thanks + for making my session! #PerkyPrivacyGirl #AECT2019 https:\/\/t.co\/YgRLcGP5GH","truncated":false,"display_text_range":[0,193],"entities":{"hashtags":[{"text":"AECT19","indices":[11,18]},{"text":"PerkyPrivacyGirl","indices":[166,183]},{"text":"AECT2019","indices":[184,193]}],"symbols":[],"user_mentions":[{"screen_name":"NancyeBlackEdu","name":"Nancye + Blair Black","id":175808323,"id_str":"175808323","indices":[116,131]}],"urls":[],"media":[{"id":1188869799994150913,"id_str":"1188869799994150913","indices":[194,217],"media_url":"http:\/\/pbs.twimg.com\/media\/EH-2yMDXUAEKw1I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH-2yMDXUAEKw1I.jpg","url":"https:\/\/t.co\/YgRLcGP5GH","display_url":"pic.twitter.com\/YgRLcGP5GH","expanded_url":"https:\/\/twitter.com\/KathyMansfield\/status\/1188869822270132224\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":511,"h":680,"resize":"fit"},"large":{"w":1539,"h":2048,"resize":"fit"},"medium":{"w":902,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1188869799994150913,"id_str":"1188869799994150913","indices":[194,217],"media_url":"http:\/\/pbs.twimg.com\/media\/EH-2yMDXUAEKw1I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH-2yMDXUAEKw1I.jpg","url":"https:\/\/t.co\/YgRLcGP5GH","display_url":"pic.twitter.com\/YgRLcGP5GH","expanded_url":"https:\/\/twitter.com\/KathyMansfield\/status\/1188869822270132224\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":511,"h":680,"resize":"fit"},"large":{"w":1539,"h":2048,"resize":"fit"},"medium":{"w":902,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27742120,"id_str":"27742120","name":"Kathy + Mansfield","screen_name":"KathyMansfield","location":"New Braunfels, TX","description":"Perky + Privacy Girl. Instructional Ed Tech. Coffee. Instructional Design doctoral + candidate. Student data privacy advocate.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":353,"friends_count":565,"listed_count":4,"created_at":"Mon + Mar 30 22:07:14 +0000 2009","favourites_count":3189,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1363,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1479956065018122245\/3ylxWDWM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1479956065018122245\/3ylxWDWM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27742120\/1589406705","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 27 14:00:47 +0000 2019","id":1188455506987409408,"id_str":"1188455506987409408","full_text":"RT + @christieliuidtr: It was so great seeing you in person, @nicolapallitt @anusbrah, + @tutaleni thankful for @AECT #aect19 bringing us all t\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[114,121]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[59,73]},{"screen_name":"anusbrah","name":"anubrahim","id":1326530826,"id_str":"1326530826","indices":[74,83]},{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[85,94]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[108,113]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 27 13:18:25 +0000 2019","id":1188444844676567040,"id_str":"1188444844676567040","full_text":"It + was so great seeing you in person, @nicolapallitt @anusbrah, @tutaleni thankful + for @AECT #aect19 bringing us all together from different parts of the world! + I hope you enjoy the trip afterwards\ud83d\udeeb\u2708\ufe0fkeep in touch! + https:\/\/t.co\/wvf4DHcp2g","truncated":false,"display_text_range":[0,214],"entities":{"hashtags":[{"text":"aect19","indices":[93,100]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[38,52]},{"screen_name":"anusbrah","name":"anubrahim","id":1326530826,"id_str":"1326530826","indices":[53,62]},{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[64,73]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[87,92]}],"urls":[{"url":"https:\/\/t.co\/wvf4DHcp2g","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032","display_url":"twitter.com\/nicolapallitt\/\u2026","indices":[215,238]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187529122987180032,"quoted_status_id_str":"1187529122987180032","quoted_status_permalink":{"url":"https:\/\/t.co\/wvf4DHcp2g","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032","display":"twitter.com\/nicolapallitt\/\u2026"},"quoted_status":{"created_at":"Fri + Oct 25 00:39:40 +0000 2019","id":1187529122987180032,"id_str":"1187529122987180032","full_text":"Meeting + up with fellow Africans at @AECT #aect19inspired Liberia, Tanzania, Nigeria, + SA & Namibia https:\/\/t.co\/0Zp0eUlGJ1","truncated":false,"display_text_range":[0,101],"entities":{"hashtags":[{"text":"aect19inspired","indices":[41,56]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[35,40]}],"urls":[],"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1187529122987180032,"quoted_status_id_str":"1187529122987180032","quoted_status_permalink":{"url":"https:\/\/t.co\/wvf4DHcp2g","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032","display":"twitter.com\/nicolapallitt\/\u2026"},"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 07:08:53 +0000 2019","id":1187989459658137602,"id_str":"1187989459658137602","full_text":"@aectclt + awards @AECT #aect19 Service:Patricia Young,Angela Benson|McJulien Scholar + BestPaper:Manuel Bustamante,Tamara Gibson|Book: Badrul Khan,Joseph Rene Corbeil,Maria + Elena Corbeil;Book Chapter&journalpaper@amy_c_bradshawCongrats! https:\/\/t.co\/qeNapH0gHj\u2026","truncated":false,"display_text_range":[0,262],"entities":{"hashtags":[{"text":"aect19","indices":[22,29]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[0,8]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[16,21]}],"urls":[{"url":"https:\/\/t.co\/qeNapH0gHj","expanded_url":"http:\/\/facebook.com\/groups\/aectclt","display_url":"facebook.com\/groups\/aectclt","indices":[238,261]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":905212118127042560,"in_reply_to_user_id_str":"905212118127042560","in_reply_to_screen_name":"aectclt","user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 26 21:44:03 +0000 2019","id":1188209701059727360,"id_str":"1188209701059727360","full_text":"An + excellent session by @jseghers ! I hope he can return for next year\u2019s + @AECT international convention in Jacksonville. #aect19 https:\/\/t.co\/tMeIzH2PO9","truncated":false,"display_text_range":[0,128],"entities":{"hashtags":[{"text":"aect19","indices":[121,128]}],"symbols":[],"user_mentions":[{"screen_name":"jseghers","name":"Jethro + Seghers @ Microsoft Education","id":51397550,"id_str":"51397550","indices":[24,33]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[73,78]}],"urls":[{"url":"https:\/\/t.co\/tMeIzH2PO9","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187873337403248642","display_url":"twitter.com\/michaelmgrant\/\u2026","indices":[129,152]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62390382,"id_str":"62390382","name":"Marcus + Childress, Ph.D.","screen_name":"MarcusChildress","location":"Overland Park, + KS","description":"Founder and Owner of Course Jockey; Former Chief Academic + Officer; Instructional Designer; Past-President @aect; @Virginia_Tech alum; + @AppState alum","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":661,"friends_count":1023,"listed_count":27,"created_at":"Mon + Aug 03 00:34:28 +0000 2009","favourites_count":782,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":833,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1421500685036699650\/4Dx2SRoe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1421500685036699650\/4Dx2SRoe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62390382\/1516048344","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187873337403248642,"quoted_status_id_str":"1187873337403248642","quoted_status_permalink":{"url":"https:\/\/t.co\/tMeIzH2PO9","expanded":"https:\/\/twitter.com\/michaelmgrant\/status\/1187873337403248642","display":"twitter.com\/michaelmgrant\/\u2026"},"quoted_status":{"created_at":"Fri + Oct 25 23:27:27 +0000 2019","id":1187873337403248642,"id_str":"1187873337403248642","full_text":"Thank + you @MicrosoftTeams ! https:\/\/t.co\/lEvG1zrUx9","truncated":false,"display_text_range":[0,27],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MicrosoftTeams","name":"Microsoft + Teams","id":817461289081409536,"id_str":"817461289081409536","indices":[10,25]}],"urls":[{"url":"https:\/\/t.co\/lEvG1zrUx9","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1187795200640339968","display_url":"twitter.com\/jeroen69\/statu\u2026","indices":[28,51]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1187795200640339968,"quoted_status_id_str":"1187795200640339968","quoted_status_permalink":{"url":"https:\/\/t.co\/lEvG1zrUx9","expanded":"https:\/\/twitter.com\/jeroen69\/status\/1187795200640339968","display":"twitter.com\/jeroen69\/statu\u2026"},"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 26 21:35:12 +0000 2019","id":1188207473603350528,"id_str":"1188207473603350528","full_text":"Had + a magnificent time at @AECT. I''m reminded that Travel comes from the French + word \"travailler\" meaning heavy and difficult labor. Glad to be home. #aect19inspired","truncated":false,"display_text_range":[0,165],"entities":{"hashtags":[{"text":"aect19inspired","indices":[150,165]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[26,31]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17467478,"id_str":"17467478","name":"Marshall + G. Jones","screen_name":"marshallgjones","location":"Rock Hill, SC USA","description":"Professor + of Learning Design & Technology. Musician. Photographer. Tweeting about learning, + technology & whatever else strikes me. Tweets are my own.","url":"https:\/\/t.co\/HGRry3tHo4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HGRry3tHo4","expanded_url":"http:\/\/marshallgjones.com","display_url":"marshallgjones.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1022,"friends_count":889,"listed_count":71,"created_at":"Tue + Nov 18 18:26:51 +0000 2008","favourites_count":7553,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8342,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17467478\/1570054414","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 29 15:19:32 +0000 2019","id":1189200097856221184,"id_str":"1189200097856221184","full_text":"RT + @caranorth11: Interested in earning comped hotel rooms in Las Vegas? Here + is how I earned free accomodations for #devlearn and #aect19 h\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"devlearn","indices":[116,125]},{"text":"aect19","indices":[130,137]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1059123581156700160,"id_str":"1059123581156700160","name":"80K + at Wembley","screen_name":"the80kcrew","location":"","description":"Quality + content from a quality bloke. Quote tweeted by John Cusack once. #boxing mostly","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":307,"friends_count":252,"listed_count":3,"created_at":"Sun + Nov 04 16:41:54 +0000 2018","favourites_count":8676,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7212,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494825221924081667\/yw2J2Rvj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494825221924081667\/yw2J2Rvj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1059123581156700160\/1582607612","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 29 14:26:04 +0000 2019","id":1189186644399673344,"id_str":"1189186644399673344","full_text":"Interested + in earning comped hotel rooms in Las Vegas? Here is how I earned free accomodations + for #devlearn and #aect19 https:\/\/t.co\/Ov4Cf9dYFl https:\/\/t.co\/YrUFKmhiJ0","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"devlearn","indices":[99,108]},{"text":"aect19","indices":[113,120]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ov4Cf9dYFl","expanded_url":"https:\/\/buff.ly\/31VyM1B","display_url":"buff.ly\/31VyM1B","indices":[121,144]}],"media":[{"id":1189186641497214976,"id_str":"1189186641497214976","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EIDW8yoU0AAaSsd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIDW8yoU0AAaSsd.jpg","url":"https:\/\/t.co\/YrUFKmhiJ0","display_url":"pic.twitter.com\/YrUFKmhiJ0","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1189186644399673344\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":458,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":808,"resize":"fit"},"large":{"w":1330,"h":896,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1189186641497214976,"id_str":"1189186641497214976","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EIDW8yoU0AAaSsd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIDW8yoU0AAaSsd.jpg","url":"https:\/\/t.co\/YrUFKmhiJ0","display_url":"pic.twitter.com\/YrUFKmhiJ0","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1189186644399673344\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":458,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":808,"resize":"fit"},"large":{"w":1330,"h":896,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 28 15:35:09 +0000 2019","id":1188841639961346056,"id_str":"1188841639961346056","full_text":"RT + @RoutledgeEd: Congrats to authors Joseph Rene Corbeil, Maria Elena Corbeil, + and (not pictured) Badrul Khan, who received the Outstanding\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RoutledgeEd","name":"Routledge + Education Books","id":27606068,"id_str":"27606068","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":105004451,"id_str":"105004451","name":"EDTECH@UTRGV","screen_name":"ImFutureReady","location":"Brownsville, + TX","description":"EDTECH@UTRGV offers undergraduate, master''s and doctoral + programs and certificates in Educational Technology. 100% ONLINE. #edtech + #ILoveEdTech #ImFutureReady","url":"https:\/\/t.co\/7u9U5YK3SE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/7u9U5YK3SE","expanded_url":"http:\/\/utrgv.edu\/edtech","display_url":"utrgv.edu\/edtech","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6516,"friends_count":7113,"listed_count":628,"created_at":"Fri + Jan 15 02:00:34 +0000 2010","favourites_count":2146,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30319,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662318600926048257\/F_ZsWIyv_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662318600926048257\/F_ZsWIyv_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/105004451\/1642088515","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"25138A","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 21:58:17 +0000 2019","id":1187126122376392704,"id_str":"1187126122376392704","full_text":"Congrats + to authors Joseph Rene Corbeil, Maria Elena Corbeil, and (not pictured) Badrul + Khan, who received the Outstanding Book Award from #AECT2019\u2019s Culture, + Learning, and Technology division \u2014 a global treatment of #learninganalytics + and #educationaldatamining. https:\/\/t.co\/aG1kf7a5ew","truncated":false,"display_text_range":[0,264],"entities":{"hashtags":[{"text":"AECT2019","indices":[139,148]},{"text":"learninganalytics","indices":[218,236]},{"text":"educationaldatamining","indices":[241,263]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27606068,"id_str":"27606068","name":"Routledge + Education Books","screen_name":"RoutledgeEd","location":"Global","description":"Supporting + educators, teachers, scholars and students with informative and practical + books based on leading research and classroom practice.","url":"http:\/\/t.co\/j4LZK9ypti","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/j4LZK9ypti","expanded_url":"http:\/\/www.routledge.com\/education","display_url":"routledge.com\/education","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":13833,"friends_count":3278,"listed_count":230,"created_at":"Mon + Mar 30 08:33:32 +0000 2009","favourites_count":2658,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10107,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"6A9ADA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27606068\/1629726175","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"6A9ADA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 28 15:38:04 +0000 2019","id":1188842373637443590,"id_str":"1188842373637443590","full_text":"RT + @RoutledgeEd: Congrats to authors Joseph Rene Corbeil, Maria Elena Corbeil, + and (not pictured) Badrul Khan, who received the Outstanding\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RoutledgeEd","name":"Routledge + Education Books","id":27606068,"id_str":"27606068","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":23879838,"id_str":"23879838","name":"Sandy + Kendell","screen_name":"EdTechSandyK","location":"Texas, USA","description":"Saved + by God''s Grace | Learner | Educator | Doctoral Student | Information Literacy + Advocate | Personal Twitter","url":"https:\/\/t.co\/4GG5xF8Dhw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4GG5xF8Dhw","expanded_url":"http:\/\/edtechsandyk.blogspot.com\/","display_url":"edtechsandyk.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8510,"friends_count":1894,"listed_count":727,"created_at":"Thu + Mar 12 02:41:29 +0000 2009","favourites_count":42385,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":62183,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"09BE4E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1401556938056421394\/YLPEpxfF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1401556938056421394\/YLPEpxfF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23879838\/1583252773","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"02F95D","profile_sidebar_fill_color":"9EA0B8","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 21:58:17 +0000 2019","id":1187126122376392704,"id_str":"1187126122376392704","full_text":"Congrats + to authors Joseph Rene Corbeil, Maria Elena Corbeil, and (not pictured) Badrul + Khan, who received the Outstanding Book Award from #AECT2019\u2019s Culture, + Learning, and Technology division \u2014 a global treatment of #learninganalytics + and #educationaldatamining. https:\/\/t.co\/aG1kf7a5ew","truncated":false,"display_text_range":[0,264],"entities":{"hashtags":[{"text":"AECT2019","indices":[139,148]},{"text":"learninganalytics","indices":[218,236]},{"text":"educationaldatamining","indices":[241,263]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27606068,"id_str":"27606068","name":"Routledge + Education Books","screen_name":"RoutledgeEd","location":"Global","description":"Supporting + educators, teachers, scholars and students with informative and practical + books based on leading research and classroom practice.","url":"http:\/\/t.co\/j4LZK9ypti","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/j4LZK9ypti","expanded_url":"http:\/\/www.routledge.com\/education","display_url":"routledge.com\/education","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":13833,"friends_count":3278,"listed_count":230,"created_at":"Mon + Mar 30 08:33:32 +0000 2009","favourites_count":2658,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10107,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"6A9ADA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27606068\/1629726175","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"6A9ADA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 16:53:11 +0000 2019","id":1188136504461152259,"id_str":"1188136504461152259","full_text":"RT + @hodgesc: The conference is nearly over, but your chance to impact the field + is not over. Submit your work to @AECTTechTrends. #aect19i\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[114,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 18:37:44 +0000 2019","id":1187800427544268800,"id_str":"1187800427544268800","full_text":"The + conference is nearly over, but your chance to impact the field is not over. Submit + your work to @AECTTechTrends. #aect19inspired https:\/\/t.co\/Apm4iN9TnO","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[101,116]}],"urls":[],"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"photo","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"video","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"duration_millis":14133,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/pl\/T49X8pWvcWZ1hr0f.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/360x270\/jjTaFEgF3SEuLXiG.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/480x360\/lLxj8onGzGLt2Pjb.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/640x480\/fsmN351GfvkQwtsa.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 21:03:55 +0000 2019","id":1188199601872035841,"id_str":"1188199601872035841","full_text":"RT + @NeumannKL: Do you miss being at #AECT19? Stay #aect19inspired with the @AECT + Digital Escape Room created at our (@francesmarg & @Rachel\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"AECT19","indices":[36,43]},{"text":"aect19inspired","indices":[50,65]}],"symbols":[],"user_mentions":[{"screen_name":"NeumannKL","name":"Dr. + Kalianne L. Neumann","id":281735316,"id_str":"281735316","indices":[3,13]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[75,80]},{"screen_name":"francesmarg","name":"Frances + Alvarado","id":91361410,"id_str":"91361410","indices":[117,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 26 19:20:24 +0000 2019","id":1188173551301513217,"id_str":"1188173551301513217","full_text":"Do + you miss being at #AECT19? Stay #aect19inspired with the @AECT Digital Escape + Room created at our (@francesmarg & @RachelYLKim) @tedaect Inspire! session + on Friday at 10am! First ones to help the grad student escape get a shout + out on Twitter!\n\nhttps:\/\/t.co\/qDgkgLOlec","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"AECT19","indices":[21,28]},{"text":"aect19inspired","indices":[35,50]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[60,65]},{"screen_name":"francesmarg","name":"Frances + Alvarado","id":91361410,"id_str":"91361410","indices":[102,114]},{"screen_name":"tedaect","name":"TED + AECT","id":2165058337,"id_str":"2165058337","indices":[135,143]}],"urls":[{"url":"https:\/\/t.co\/qDgkgLOlec","expanded_url":"https:\/\/sites.google.com\/view\/aect-digital-escape-room\/","display_url":"sites.google.com\/view\/aect-digi\u2026","indices":[252,275]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":281735316,"id_str":"281735316","name":"Dr. + Kalianne L. Neumann","screen_name":"NeumannKL","location":"Stillwater, OK","description":"Assistant + Professor \u2013 Oklahoma State University \u2013 Learning, Design, and Technology","url":"https:\/\/t.co\/C5ihHdSiId","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/C5ihHdSiId","expanded_url":"http:\/\/bit.ly\/RevisionAssistanttoo","display_url":"bit.ly\/RevisionAssist\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":200,"friends_count":194,"listed_count":15,"created_at":"Wed + Apr 13 21:33:05 +0000 2011","favourites_count":445,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":276,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281735316\/1412853928","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 19:49:06 +0000 2019","id":1188180775864111104,"id_str":"1188180775864111104","full_text":"RT + @nangur1: Cultural Responsive Instructional Design in online learning environments. + Such an important topic for inclusivity! #AECT19 #A\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[129,136]}],"symbols":[],"user_mentions":[{"screen_name":"nangur1","name":"Dr. + Nandita Gurjar","id":2743313304,"id_str":"2743313304","indices":[3,11]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 22:19:45 +0000 2019","id":1187493910626463744,"id_str":"1187493910626463744","full_text":"Cultural + Responsive Instructional Design in online learning environments. Such an important + topic for inclusivity! #AECT19 #AECT19inspired https:\/\/t.co\/vqyOMaSNyt","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"AECT19","indices":[116,123]},{"text":"AECT19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187493903919808512,"id_str":"1187493903919808512","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187493903919808512,"id_str":"1187493903919808512","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187493903911358464,"id_str":"1187493903911358464","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafuUEAACDy5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafuUEAACDy5.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187493903915577346,"id_str":"1187493903915577346","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafvUcAIGLBq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafvUcAIGLBq.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 27 19:07:46 +0000 2019","id":1188532758588674048,"id_str":"1188532758588674048","full_text":"RT + @DKSch: #aect19inspired mostly smiling champions. https:\/\/t.co\/JuSeJWCfJY","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]}],"symbols":[],"user_mentions":[{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[3,9]}],"urls":[],"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}},"source_status_id":1187033028100415488,"source_status_id_str":"1187033028100415488","source_user_id":38657815,"source_user_id_str":"38657815"}]},"extended_entities":{"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}},"source_status_id":1187033028100415488,"source_status_id_str":"1187033028100415488","source_user_id":38657815,"source_user_id_str":"38657815","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":72457436,"id_str":"72457436","name":"J. + Mao","screen_name":"jjm09","location":"Pennsylvania, USA","description":"Associate + Professor of Educational Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":346,"friends_count":478,"listed_count":13,"created_at":"Tue + Sep 08 03:09:14 +0000 2009","favourites_count":1406,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":912,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927670955761192960\/UYh5XPB8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927670955761192960\/UYh5XPB8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/72457436\/1576084667","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0026FF","profile_sidebar_border_color":"B1D3E6","profile_sidebar_fill_color":"B6F07F","profile_text_color":"121112","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:48:22 +0000 2019","id":1187033028100415488,"id_str":"1187033028100415488","full_text":"#aect19inspired + mostly smiling champions. https:\/\/t.co\/JuSeJWCfJY","truncated":false,"display_text_range":[0,41],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 27 13:50:20 +0000 2019","id":1188452877183967233,"id_str":"1188452877183967233","full_text":"RT + @lpemusicguru: What a life changing experience this week was! Thanks @AECT + for a great conference!! Thanks @michelestork for introducing\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[72,77]},{"screen_name":"michelestork","name":"Dr. + Michele Stork","id":36073247,"id_str":"36073247","indices":[110,123]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 27 00:46:21 +0000 2019","id":1188255577404784643,"id_str":"1188255577404784643","full_text":"What + a life changing experience this week was! Thanks @AECT for a great conference!! + Thanks @michelestork for introducing me to such an amazing group! @AECTTIL + I can\u2019t wait for the next meeting! #aect19inspired #aect2019 #edtech + #musictech https:\/\/t.co\/r55UHQjw7G","truncated":false,"display_text_range":[0,239],"entities":{"hashtags":[{"text":"aect19inspired","indices":[195,210]},{"text":"aect2019","indices":[211,220]},{"text":"edtech","indices":[221,228]},{"text":"musictech","indices":[229,239]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[54,59]},{"screen_name":"michelestork","name":"Dr. + Michele Stork","id":36073247,"id_str":"36073247","indices":[92,105]},{"screen_name":"AECTTIL","name":"AECT + TIL","id":4921781685,"id_str":"4921781685","indices":[151,159]}],"urls":[{"url":"https:\/\/t.co\/r55UHQjw7G","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1188127349524586497","display_url":"twitter.com\/AECT\/status\/11\u2026","indices":[240,263]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":763378325712674818,"id_str":"763378325712674818","name":"Tay + Fess, M.Ed.","screen_name":"Captain_Fess","location":"Naples, FL","description":"Music + Educator l \ud83c\udff3\ufe0f\u200d\ud83c\udf08 l Presenter l UDL l FGCU l + Doctoral Student Ed.D. l EdTech l Disney Geek","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":576,"listed_count":3,"created_at":"Wed + Aug 10 14:15:50 +0000 2016","favourites_count":1730,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":665,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/763378325712674818\/1595378873","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1188127349524586497,"quoted_status_id_str":"1188127349524586497","quoted_status_permalink":{"url":"https:\/\/t.co\/r55UHQjw7G","expanded":"https:\/\/twitter.com\/AECT\/status\/1188127349524586497","display":"twitter.com\/AECT\/status\/11\u2026"},"quoted_status":{"created_at":"Sat + Oct 26 16:16:49 +0000 2019","id":1188127349524586497,"id_str":"1188127349524586497","full_text":"The + AECT 2019 International Convention is over, but the inspiration will continue + as you implement and share everything that you learned and experienced. Thanks + to all of our AECT family who joined us! \n\nMore photos on Flickr: https:\/\/t.co\/1rprSryNgx + https:\/\/t.co\/AUbEjSmNfq","truncated":false,"display_text_range":[0,250],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1rprSryNgx","expanded_url":"http:\/\/bit.ly\/AECT19photos","display_url":"bit.ly\/AECT19photos","indices":[227,250]}],"media":[{"id":1188127323981340672,"id_str":"1188127323981340672","indices":[251,274],"media_url":"http:\/\/pbs.twimg.com\/media\/EH0TgZXX4AA_DOy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH0TgZXX4AA_DOy.jpg","url":"https:\/\/t.co\/AUbEjSmNfq","display_url":"pic.twitter.com\/AUbEjSmNfq","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1188127349524586497\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":798,"resize":"fit"},"large":{"w":2048,"h":1361,"resize":"fit"},"small":{"w":680,"h":452,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1188127323981340672,"id_str":"1188127323981340672","indices":[251,274],"media_url":"http:\/\/pbs.twimg.com\/media\/EH0TgZXX4AA_DOy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH0TgZXX4AA_DOy.jpg","url":"https:\/\/t.co\/AUbEjSmNfq","display_url":"pic.twitter.com\/AUbEjSmNfq","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1188127349524586497\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":798,"resize":"fit"},"large":{"w":2048,"h":1361,"resize":"fit"},"small":{"w":680,"h":452,"resize":"fit"}},"ext_alt_text":null},{"id":1188127323993886720,"id_str":"1188127323993886720","indices":[251,274],"media_url":"http:\/\/pbs.twimg.com\/media\/EH0TgZaXUAAhTgS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH0TgZaXUAAhTgS.jpg","url":"https:\/\/t.co\/AUbEjSmNfq","display_url":"pic.twitter.com\/AUbEjSmNfq","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1188127349524586497\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":798,"resize":"fit"},"small":{"w":680,"h":452,"resize":"fit"},"large":{"w":2048,"h":1362,"resize":"fit"}},"ext_alt_text":null},{"id":1188127323985530881,"id_str":"1188127323985530881","indices":[251,274],"media_url":"http:\/\/pbs.twimg.com\/media\/EH0TgZYX0AE1aMu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH0TgZYX0AE1aMu.jpg","url":"https:\/\/t.co\/AUbEjSmNfq","display_url":"pic.twitter.com\/AUbEjSmNfq","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1188127349524586497\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1362,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":452,"resize":"fit"},"medium":{"w":1200,"h":798,"resize":"fit"}},"ext_alt_text":null},{"id":1188127323981320192,"id_str":"1188127323981320192","indices":[251,274],"media_url":"http:\/\/pbs.twimg.com\/media\/EH0TgZXXkAAConD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH0TgZXXkAAConD.jpg","url":"https:\/\/t.co\/AUbEjSmNfq","display_url":"pic.twitter.com\/AUbEjSmNfq","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1188127349524586497\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":798,"resize":"fit"},"small":{"w":680,"h":452,"resize":"fit"},"large":{"w":2048,"h":1362,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":38,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1188127349524586497,"quoted_status_id_str":"1188127349524586497","quoted_status_permalink":{"url":"https:\/\/t.co\/r55UHQjw7G","expanded":"https:\/\/twitter.com\/AECT\/status\/1188127349524586497","display":"twitter.com\/AECT\/status\/11\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 27 18:57:24 +0000 2019","id":1188530151975510016,"id_str":"1188530151975510016","full_text":"Attended + the TIL luncheon and love the emphasis on technology, leadership, practitioners, + and research; this would be ideal for doctoral candidates or graduates from + our Ed.D program @AECT @michelestork #aect19inspired #aect #edtech @WilkesEdD","truncated":false,"display_text_range":[0,243],"entities":{"hashtags":[{"text":"aect19inspired","indices":[203,218]},{"text":"aect","indices":[219,224]},{"text":"edtech","indices":[225,232]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[183,188]},{"screen_name":"michelestork","name":"Dr. + Michele Stork","id":36073247,"id_str":"36073247","indices":[189,202]},{"screen_name":"WilkesEdD","name":"Wilkes + U Ed.D.","id":753609720972337152,"id_str":"753609720972337152","indices":[233,243]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":72457436,"id_str":"72457436","name":"J. + Mao","screen_name":"jjm09","location":"Pennsylvania, USA","description":"Associate + Professor of Educational Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":346,"friends_count":478,"listed_count":13,"created_at":"Tue + Sep 08 03:09:14 +0000 2009","favourites_count":1406,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":912,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927670955761192960\/UYh5XPB8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927670955761192960\/UYh5XPB8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/72457436\/1576084667","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0026FF","profile_sidebar_border_color":"B1D3E6","profile_sidebar_fill_color":"B6F07F","profile_text_color":"121112","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 29 12:50:09 +0000 2019","id":1189162507274989568,"id_str":"1189162507274989568","full_text":"RT + @SBarksway: Just attended my 1st ever round table session @ #aect19 and it + was FANTASTIC! Thank you for leading such a wonderful, engagi\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[63,70]}],"symbols":[],"user_mentions":[{"screen_name":"SBarksway","name":"Sarah + Barksdale","id":908737706699710464,"id_str":"908737706699710464","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/twitterdominator.com\/\" rel=\"nofollow\"\u003eKateWeaver80\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1031235821888782343,"id_str":"1031235821888782343","name":"Kate + Weaver","screen_name":"KateWeaver80","location":"Manhattan, NY","description":"People + who do not understand your silence will never understand your words.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1407,"friends_count":1692,"listed_count":1,"created_at":"Sun + Aug 19 17:45:54 +0000 2018","favourites_count":3585,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1936,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1031236475319472129\/LM2EHsZG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1031236475319472129\/LM2EHsZG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1031235821888782343\/1534700930","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 18:57:54 +0000 2019","id":1187443113922445312,"id_str":"1187443113922445312","full_text":"Just + attended my 1st ever round table session @ #aect19 and it was FANTASTIC! Thank + you for leading such a wonderful, engaging discussion around phenomenology + @JolieKennedy @pazureka #aect19inspired @LTMediaLab @UMN_CI https:\/\/t.co\/KD1sxKUERh","truncated":false,"display_text_range":[0,218],"entities":{"hashtags":[{"text":"aect19","indices":[48,55]},{"text":"aect19inspired","indices":[183,198]}],"symbols":[],"user_mentions":[{"screen_name":"JolieKennedy","name":"Jolie + Kennedy","id":202011104,"id_str":"202011104","indices":[159,172]},{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[173,182]},{"screen_name":"LTMediaLab","name":"Learning + Technologies","id":1260285405787652101,"id_str":"1260285405787652101","indices":[199,210]},{"screen_name":"UMN_CI","name":"U + of MN CEHD C&I","id":759684692,"id_str":"759684692","indices":[211,218]}],"urls":[],"media":[{"id":1187442309144563712,"id_str":"1187442309144563712","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":770,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1314,"resize":"fit"},"small":{"w":680,"h":436,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187442309144563712,"id_str":"1187442309144563712","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":770,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1314,"resize":"fit"},"small":{"w":680,"h":436,"resize":"fit"}},"ext_alt_text":null},{"id":1187442309148762112,"id_str":"1187442309148762112","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkfSQU4AA6UVk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkfSQU4AA6UVk.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187442394054004738,"id_str":"1187442394054004738","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkkOjUEAIwLPB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkkOjUEAIwLPB.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":908737706699710464,"id_str":"908737706699710464","name":"Sarah + Barksdale","screen_name":"SBarksway","location":"","description":"Educator + \ud83d\udcda Researcher \u270d\ud83c\udffb Instructional Design \ud83d\udc69\u200d\ud83c\udfa8 + PhD Cand.\u2615\ufe0f Learning Technologies \ud83d\udcbb Adventurer & Travelholic + \ud83c\udfd4\ufe0f \ud83d\udc99: #edtech #CSforALL #teachered #pd","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":329,"friends_count":480,"listed_count":5,"created_at":"Fri + Sep 15 17:02:07 +0000 2017","favourites_count":2160,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":428,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/908737706699710464\/1506899531","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 27 22:21:35 +0000 2019","id":1188581533537521664,"id_str":"1188581533537521664","full_text":"RT + @onmyway2here: Hokie table at #AECT2019 #vt_idt https:\/\/t.co\/SQpou1H53B","truncated":false,"display_text_range":[0,74],"entities":{"hashtags":[{"text":"AECT2019","indices":[33,42]},{"text":"vt_idt","indices":[43,50]}],"symbols":[],"user_mentions":[{"screen_name":"onmyway2here","name":"Alicia + Johnson","id":1003232844,"id_str":"1003232844","indices":[3,16]}],"urls":[],"media":[{"id":1187540085866037248,"id_str":"1187540085866037248","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9ao6VAAAiXa_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9ao6VAAAiXa_.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"source_status_id":1187540094233636865,"source_status_id_str":"1187540094233636865","source_user_id":1003232844,"source_user_id_str":"1003232844"}]},"extended_entities":{"media":[{"id":1187540085866037248,"id_str":"1187540085866037248","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9ao6VAAAiXa_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9ao6VAAAiXa_.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"source_status_id":1187540094233636865,"source_status_id_str":"1187540094233636865","source_user_id":1003232844,"source_user_id_str":"1003232844","ext_alt_text":null},{"id":1187540085865996289,"id_str":"1187540085865996289","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9ao6UYAEXNQz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9ao6UYAEXNQz.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"source_status_id":1187540094233636865,"source_status_id_str":"1187540094233636865","source_user_id":1003232844,"source_user_id_str":"1003232844","ext_alt_text":null},{"id":1187540085861826560,"id_str":"1187540085861826560","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9ao5UwAA68Tk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9ao5UwAA68Tk.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1187540094233636865,"source_status_id_str":"1187540094233636865","source_user_id":1003232844,"source_user_id_str":"1003232844","ext_alt_text":null},{"id":1187540086319009793,"id_str":"1187540086319009793","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9aqmU0AEvLe_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9aqmU0AEvLe_.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"source_status_id":1187540094233636865,"source_status_id_str":"1187540094233636865","source_user_id":1003232844,"source_user_id_str":"1003232844","ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1050002301585383424,"id_str":"1050002301585383424","name":"@VT_IDT","screen_name":"vt_idt","location":"Blacksburg, + VA USA","description":"VT IDT grad program prepares its graduates to practice + in a variety of settings including industry, K-12, higher ed, non-profit, + and government.","url":"https:\/\/t.co\/9nRnDb3LeV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9nRnDb3LeV","expanded_url":"https:\/\/tinyurl.com\/y5zbq5lb","display_url":"tinyurl.com\/y5zbq5lb","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":104,"friends_count":126,"listed_count":0,"created_at":"Wed + Oct 10 12:37:11 +0000 2018","favourites_count":707,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":253,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1050409400655986688\/1jff4TTj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1050409400655986688\/1jff4TTj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1050002301585383424\/1539374470","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 01:23:16 +0000 2019","id":1187540094233636865,"id_str":"1187540094233636865","full_text":"Hokie + table at #AECT2019 #vt_idt https:\/\/t.co\/SQpou1H53B","truncated":false,"display_text_range":[0,32],"entities":{"hashtags":[{"text":"AECT2019","indices":[15,24]},{"text":"vt_idt","indices":[25,32]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187540085866037248,"id_str":"1187540085866037248","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9ao6VAAAiXa_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9ao6VAAAiXa_.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187540085866037248,"id_str":"1187540085866037248","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9ao6VAAAiXa_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9ao6VAAAiXa_.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1187540085865996289,"id_str":"1187540085865996289","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9ao6UYAEXNQz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9ao6UYAEXNQz.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1187540085861826560,"id_str":"1187540085861826560","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9ao5UwAA68Tk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9ao5UwAA68Tk.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187540086319009793,"id_str":"1187540086319009793","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9aqmU0AEvLe_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9aqmU0AEvLe_.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1003232844,"id_str":"1003232844","name":"Alicia + Johnson","screen_name":"onmyway2here","location":"Christiansburg, VA","description":"Instructional + Designer of Instructional Design (ID) Instruction PhD@virginiatechIDT. Good + days = Students, ID, Instruction, Research, Edtech, & Learning.","url":"https:\/\/t.co\/cCcuGeqoTV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cCcuGeqoTV","expanded_url":"https:\/\/liberalarts.vt.edu\/departments-and-schools\/school-of-education\/faculty\/alicia-johnson.html","display_url":"liberalarts.vt.edu\/departments-an\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":199,"friends_count":382,"listed_count":2,"created_at":"Tue + Dec 11 03:55:07 +0000 2012","favourites_count":4008,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":808,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3195564046\/04c6c148cecd8aeabb563780bedea34b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3195564046\/04c6c148cecd8aeabb563780bedea34b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1003232844\/1355198723","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 27 01:53:33 +0000 2019","id":1188272489723518976,"id_str":"1188272489723518976","full_text":"RT + @hodgesc: The conference is nearly over, but your chance to impact the field + is not over. Submit your work to @AECTTechTrends. #aect19i\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[114,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28419864,"id_str":"28419864","name":"Jennifer + Weible","screen_name":"jweeble","location":"Mount Pleasant, MI","description":"I\u2019m + a geeky and awkward mother, friend, poet, researcher, and STEM\/Ed\/Tech prof. Lover + of technology, curiosity, coffee, puns, and chocolate ...says it all.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1353,"friends_count":3966,"listed_count":135,"created_at":"Thu + Apr 02 21:04:36 +0000 2009","favourites_count":6635,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2909,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1238828758695583747\/QtthdhCO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1238828758695583747\/QtthdhCO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28419864\/1584194768","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 18:37:44 +0000 2019","id":1187800427544268800,"id_str":"1187800427544268800","full_text":"The + conference is nearly over, but your chance to impact the field is not over. Submit + your work to @AECTTechTrends. #aect19inspired https:\/\/t.co\/Apm4iN9TnO","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[101,116]}],"urls":[],"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"photo","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"video","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"duration_millis":14133,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/pl\/T49X8pWvcWZ1hr0f.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/360x270\/jjTaFEgF3SEuLXiG.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/480x360\/lLxj8onGzGLt2Pjb.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/640x480\/fsmN351GfvkQwtsa.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 06:23:21 +0000 2019","id":1187978001943875584,"id_str":"1187978001943875584","full_text":"RT + @TenaciousTan: #aect19 Lots of firsts for me: 1st time in the US, 1st time + at an AECT conference, 1st time meeting my co-presenter in re\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[18,25]}],"symbols":[],"user_mentions":[{"screen_name":"TenaciousTan","name":"Tanya + O''Reilly","id":27256471,"id_str":"27256471","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12438922,"id_str":"12438922","name":"Frances + Bell","screen_name":"francesbell","location":"Macclesfield","description":"woman,friendwifemothergrandmothersisterauntcousin, + feminist, ALT 4eva member, blogger, itinerant scholar, knitter, quilter, gardener,reader, + writer #femedtech","url":"https:\/\/t.co\/IRV86wQSfm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IRV86wQSfm","expanded_url":"http:\/\/francesbell.com","display_url":"francesbell.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3325,"friends_count":1419,"listed_count":223,"created_at":"Sat + Jan 19 19:19:49 +0000 2008","favourites_count":12040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":37516,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1041049960786128897\/vFj__Prr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1041049960786128897\/vFj__Prr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12438922\/1525837017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0000FF","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 22:50:08 +0000 2019","id":1187863946340044800,"id_str":"1187863946340044800","full_text":"#aect19 + Lots of firsts for me: 1st time in the US, 1st time at an AECT conference, + 1st time meeting my co-presenter in real life. Definitely worth travelling + from Stockholm Sweden to meet & hear from so many inspiring people. Thanks + #aect19inspired","truncated":false,"display_text_range":[0,252],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]},{"text":"aect19inspired","indices":[237,252]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27256471,"id_str":"27256471","name":"Tanya + O''Reilly","screen_name":"TenaciousTan","location":"Stockholm, Sweden","description":"A + bookish tea-guzzler interested in digital education, digital culture, multimodality, + New Materialism, innovative assessment practices in Higher Education","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":279,"friends_count":783,"listed_count":12,"created_at":"Sat + Mar 28 16:22:04 +0000 2009","favourites_count":2510,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1513,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/113025390\/manga_me_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/113025390\/manga_me_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27256471\/1452114046","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 13:48:26 +0000 2019","id":1188090007816261632,"id_str":"1188090007816261632","full_text":"See + ya bye Las Vegas. It\u2019s been a trip full of interesting conclusions, + engagement, surprises, and knowledge. #aect19 #DevLearn special thanks to + @caranorth11 for the hotel hook up @dr_tracy_s @lxdify so nice to meet you + and many more irl! https:\/\/t.co\/ytvqvaif96","truncated":false,"display_text_range":[0,241],"entities":{"hashtags":[{"text":"aect19","indices":[112,119]},{"text":"DevLearn","indices":[120,129]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[148,160]},{"screen_name":"lxdify","name":"Ceren + K\ud83d\udc9crkmaz \u2615","id":724195673143386112,"id_str":"724195673143386112","indices":[195,202]}],"urls":[],"media":[{"id":1188090001881321472,"id_str":"1188090001881321472","indices":[242,265],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHzxj9tUUAAu0Z_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHzxj9tUUAAu0Z_.jpg","url":"https:\/\/t.co\/ytvqvaif96","display_url":"pic.twitter.com\/ytvqvaif96","expanded_url":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1188090007816261632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":244,"h":162,"resize":"fit"},"small":{"w":244,"h":162,"resize":"fit"},"large":{"w":244,"h":162,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1188090001881321472,"id_str":"1188090001881321472","indices":[242,265],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHzxj9tUUAAu0Z_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHzxj9tUUAAu0Z_.jpg","url":"https:\/\/t.co\/ytvqvaif96","display_url":"pic.twitter.com\/ytvqvaif96","expanded_url":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1188090007816261632\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":244,"h":162,"resize":"fit"},"small":{"w":244,"h":162,"resize":"fit"},"large":{"w":244,"h":162,"resize":"fit"}},"video_info":{"aspect_ratio":[122,81],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHzxj9tUUAAu0Z_.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"8fa6d7a33b83ef26","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8fa6d7a33b83ef26.json","place_type":"city","name":"Paradise","full_name":"Paradise, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.2092535,35.984784],[-115.0610763,35.984784],[-115.0610763,36.137145],[-115.2092535,36.137145]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 27 15:57:53 +0000 2019","id":1188484975798173697,"id_str":"1188484975798173697","full_text":"RT + @nicolapallitt: Our #aect19inspired #aect19 slides for presentations about + our IRCEES processes & collaborative practices are at https:\/\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19inspired","indices":[23,38]},{"text":"aect19","indices":[39,46]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 03:40:06 +0000 2019","id":1187212142543421440,"id_str":"1187212142543421440","full_text":"Our + #aect19inspired #aect19 slides for presentations about our IRCEES processes + & collaborative practices are at https:\/\/t.co\/FztUPU6yZC & https:\/\/t.co\/rYzrohgoyb + Had a good time presenting with @christieliuidtr Hannah Grossman & @AmyLomellini_ID + @emergeAfrica @aectclt @AECT","truncated":false,"display_text_range":[0,288],"entities":{"hashtags":[{"text":"aect19inspired","indices":[4,19]},{"text":"aect19","indices":[20,27]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[242,258]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[259,272]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[274,282]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[283,288]}],"urls":[{"url":"https:\/\/t.co\/FztUPU6yZC","expanded_url":"http:\/\/bit.ly\/IRCEES1","display_url":"bit.ly\/IRCEES1","indices":[117,140]},{"url":"https:\/\/t.co\/rYzrohgoyb","expanded_url":"http:\/\/bit.ly\/IRCEES2","display_url":"bit.ly\/IRCEES2","indices":[147,170]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 20:32:01 +0000 2019","id":1188191575077199872,"id_str":"1188191575077199872","full_text":"RT + @NeumannKL: Do you miss being at #AECT19? Stay #aect19inspired with the @AECT + Digital Escape Room created at our (@francesmarg & @Rachel\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"AECT19","indices":[36,43]},{"text":"aect19inspired","indices":[50,65]}],"symbols":[],"user_mentions":[{"screen_name":"NeumannKL","name":"Dr. + Kalianne L. Neumann","id":281735316,"id_str":"281735316","indices":[3,13]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[75,80]},{"screen_name":"francesmarg","name":"Frances + Alvarado","id":91361410,"id_str":"91361410","indices":[117,129]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 26 19:20:24 +0000 2019","id":1188173551301513217,"id_str":"1188173551301513217","full_text":"Do + you miss being at #AECT19? Stay #aect19inspired with the @AECT Digital Escape + Room created at our (@francesmarg & @RachelYLKim) @tedaect Inspire! session + on Friday at 10am! First ones to help the grad student escape get a shout + out on Twitter!\n\nhttps:\/\/t.co\/qDgkgLOlec","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"AECT19","indices":[21,28]},{"text":"aect19inspired","indices":[35,50]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[60,65]},{"screen_name":"francesmarg","name":"Frances + Alvarado","id":91361410,"id_str":"91361410","indices":[102,114]},{"screen_name":"tedaect","name":"TED + AECT","id":2165058337,"id_str":"2165058337","indices":[135,143]}],"urls":[{"url":"https:\/\/t.co\/qDgkgLOlec","expanded_url":"https:\/\/sites.google.com\/view\/aect-digital-escape-room\/","display_url":"sites.google.com\/view\/aect-digi\u2026","indices":[252,275]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":281735316,"id_str":"281735316","name":"Dr. + Kalianne L. Neumann","screen_name":"NeumannKL","location":"Stillwater, OK","description":"Assistant + Professor \u2013 Oklahoma State University \u2013 Learning, Design, and Technology","url":"https:\/\/t.co\/C5ihHdSiId","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/C5ihHdSiId","expanded_url":"http:\/\/bit.ly\/RevisionAssistanttoo","display_url":"bit.ly\/RevisionAssist\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":200,"friends_count":194,"listed_count":15,"created_at":"Wed + Apr 13 21:33:05 +0000 2011","favourites_count":445,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":276,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281735316\/1412853928","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 27 13:18:25 +0000 2019","id":1188444844676567040,"id_str":"1188444844676567040","full_text":"It + was so great seeing you in person, @nicolapallitt @anusbrah, @tutaleni thankful + for @AECT #aect19 bringing us all together from different parts of the world! + I hope you enjoy the trip afterwards\ud83d\udeeb\u2708\ufe0fkeep in touch! + https:\/\/t.co\/wvf4DHcp2g","truncated":false,"display_text_range":[0,214],"entities":{"hashtags":[{"text":"aect19","indices":[93,100]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[38,52]},{"screen_name":"anusbrah","name":"anubrahim","id":1326530826,"id_str":"1326530826","indices":[53,62]},{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[64,73]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[87,92]}],"urls":[{"url":"https:\/\/t.co\/wvf4DHcp2g","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032","display_url":"twitter.com\/nicolapallitt\/\u2026","indices":[215,238]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187529122987180032,"quoted_status_id_str":"1187529122987180032","quoted_status_permalink":{"url":"https:\/\/t.co\/wvf4DHcp2g","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032","display":"twitter.com\/nicolapallitt\/\u2026"},"quoted_status":{"created_at":"Fri + Oct 25 00:39:40 +0000 2019","id":1187529122987180032,"id_str":"1187529122987180032","full_text":"Meeting + up with fellow Africans at @AECT #aect19inspired Liberia, Tanzania, Nigeria, + SA & Namibia https:\/\/t.co\/0Zp0eUlGJ1","truncated":false,"display_text_range":[0,101],"entities":{"hashtags":[{"text":"aect19inspired","indices":[41,56]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[35,40]}],"urls":[],"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 26 13:26:14 +0000 2019","id":1188084423918608384,"id_str":"1188084423918608384","full_text":"RT + @hodgesc: The conference is nearly over, but your chance to impact the field + is not over. Submit your work to @AECTTechTrends. #aect19i\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[114,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 18:37:44 +0000 2019","id":1187800427544268800,"id_str":"1187800427544268800","full_text":"The + conference is nearly over, but your chance to impact the field is not over. Submit + your work to @AECTTechTrends. #aect19inspired https:\/\/t.co\/Apm4iN9TnO","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[101,116]}],"urls":[],"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"photo","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"video","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"duration_millis":14133,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/pl\/T49X8pWvcWZ1hr0f.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/360x270\/jjTaFEgF3SEuLXiG.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/480x360\/lLxj8onGzGLt2Pjb.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/640x480\/fsmN351GfvkQwtsa.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 29 16:53:33 +0000 2019","id":1189223760156602369,"id_str":"1189223760156602369","full_text":"Round + table about practitioners! #AECT19 https:\/\/t.co\/VnbzQ7izwX","truncated":false,"display_text_range":[0,41],"entities":{"hashtags":[{"text":"AECT19","indices":[34,41]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1189223755786182658,"id_str":"1189223755786182658","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EID4tIIXYAIbjTG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EID4tIIXYAIbjTG.jpg","url":"https:\/\/t.co\/VnbzQ7izwX","display_url":"pic.twitter.com\/VnbzQ7izwX","expanded_url":"https:\/\/twitter.com\/distance_edu\/status\/1189223760156602369\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1189223755786182658,"id_str":"1189223755786182658","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EID4tIIXYAIbjTG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EID4tIIXYAIbjTG.jpg","url":"https:\/\/t.co\/VnbzQ7izwX","display_url":"pic.twitter.com\/VnbzQ7izwX","expanded_url":"https:\/\/twitter.com\/distance_edu\/status\/1189223760156602369\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37890447,"id_str":"37890447","name":"M. + D. Rogers","screen_name":"MDRogers360","location":"","description":"Michelle + is my name and innovation and creativity is my game. A feed about this and + that, ed tech, work, writing, and more.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":500,"friends_count":571,"listed_count":34,"created_at":"Tue + May 05 09:21:16 +0000 2009","favourites_count":58,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1132,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1216550885385482240\/_KpnmYjr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216550885385482240\/_KpnmYjr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37890447\/1400079389","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 26 12:05:30 +0000 2019","id":1188064104617041920,"id_str":"1188064104617041920","full_text":"RT + @FanXU92073425: Today we had an amazing panel discussion in Organizational + Training & Performance session. thanks for @correia65 @carano\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FanXU92073425","name":"Fan + XU \u8bb8\u5e06","id":1098051352645623808,"id_str":"1098051352645623808","indices":[3,17]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[125,135]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2762646942,"id_str":"2762646942","name":"The + LED Research","screen_name":"LEDresearch","location":"Columbus, OH","description":"Learning + & Experience Design (LED) is @correia65 Research Group @OhioState @OSUehe + dedicated to explore learning design processes and pedagogies.","url":"https:\/\/t.co\/XWhRQhRlM6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XWhRQhRlM6","expanded_url":"http:\/\/go.osu.edu\/led","display_url":"go.osu.edu\/led","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":342,"friends_count":307,"listed_count":0,"created_at":"Sun + Aug 24 14:43:15 +0000 2014","favourites_count":1739,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1333076581087129602\/p2LgZYoG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1333076581087129602\/p2LgZYoG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2762646942\/1519953903","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"666666","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 01:07:30 +0000 2019","id":1187536126183034880,"id_str":"1187536126183034880","full_text":"Today + we had an amazing panel discussion in Organizational Training & Performance + session. thanks for @correia65 @caranorth11 @AnnaRoseLeach @dr_tracy_s reviewing + the current needs of instructional designers from different perspectives. + Really inspired! #aect19inspired #aect19 https:\/\/t.co\/FDRKTlv711","truncated":false,"display_text_range":[0,281],"entities":{"hashtags":[{"text":"aect19inspired","indices":[258,273]},{"text":"aect19","indices":[274,281]}],"symbols":[],"user_mentions":[{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[106,116]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[117,129]},{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[130,144]}],"urls":[],"media":[{"id":1187536098794164225,"id_str":"1187536098794164225","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr5yj6UUAEJaKg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr5yj6UUAEJaKg.jpg","url":"https:\/\/t.co\/FDRKTlv711","display_url":"pic.twitter.com\/FDRKTlv711","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187536098794164225,"id_str":"1187536098794164225","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr5yj6UUAEJaKg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr5yj6UUAEJaKg.jpg","url":"https:\/\/t.co\/FDRKTlv711","display_url":"pic.twitter.com\/FDRKTlv711","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187536098798366720,"id_str":"1187536098798366720","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr5yj7UcAAq-Yt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr5yj7UcAAq-Yt.jpg","url":"https:\/\/t.co\/FDRKTlv711","display_url":"pic.twitter.com\/FDRKTlv711","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187536098802561026,"id_str":"1187536098802561026","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr5yj8UcAIV63L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr5yj8UcAIV63L.jpg","url":"https:\/\/t.co\/FDRKTlv711","display_url":"pic.twitter.com\/FDRKTlv711","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187536098890678274,"id_str":"1187536098890678274","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr5ykRVAAIshTr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr5ykRVAAIshTr.jpg","url":"https:\/\/t.co\/FDRKTlv711","display_url":"pic.twitter.com\/FDRKTlv711","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1098051352645623808,"id_str":"1098051352645623808","name":"Fan + XU \u8bb8\u5e06","screen_name":"FanXU92073425","location":"Columbus, Ohio","description":"Ph.D. + candidate of Learning Technologies @OhioState @OSUehe Graduate Research Assistant + @OSUcete Member of Research Group @LEDresearch","url":"https:\/\/t.co\/wYY2xiYHsc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wYY2xiYHsc","expanded_url":"https:\/\/fanxuspace.webnode.page","display_url":"fanxuspace.webnode.page","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":158,"friends_count":302,"listed_count":0,"created_at":"Wed + Feb 20 02:46:58 +0000 2019","favourites_count":391,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":109,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1098051352645623808\/1646758591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 27 13:19:55 +0000 2019","id":1188445220821753856,"id_str":"1188445220821753856","full_text":"Shout + out and congratulations to @AECT member @bobbodily who is THE #aect19 hero + that helped the grad student escape from the elevator (in the Digital Escape + Room developed during the @tedaect Inspire! session)! #aect19inspired https:\/\/t.co\/QLaKxiPRPX","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"aect19","indices":[68,75]},{"text":"aect19inspired","indices":[212,227]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[33,38]},{"screen_name":"BobBodily","name":"\ud83d\udd77 + Bob Bodily, PhD \ud83d\udc4b \ud83d\udd77","id":3140748877,"id_str":"3140748877","indices":[46,56]},{"screen_name":"tedaect","name":"TED + AECT","id":2165058337,"id_str":"2165058337","indices":[184,192]}],"urls":[{"url":"https:\/\/t.co\/QLaKxiPRPX","expanded_url":"https:\/\/twitter.com\/NeumannKL\/status\/1188173551301513217","display_url":"twitter.com\/NeumannKL\/stat\u2026","indices":[228,251]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":281735316,"id_str":"281735316","name":"Dr. + Kalianne L. Neumann","screen_name":"NeumannKL","location":"Stillwater, OK","description":"Assistant + Professor \u2013 Oklahoma State University \u2013 Learning, Design, and Technology","url":"https:\/\/t.co\/C5ihHdSiId","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/C5ihHdSiId","expanded_url":"http:\/\/bit.ly\/RevisionAssistanttoo","display_url":"bit.ly\/RevisionAssist\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":200,"friends_count":194,"listed_count":15,"created_at":"Wed + Apr 13 21:33:05 +0000 2011","favourites_count":445,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":276,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281735316\/1412853928","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1188173551301513217,"quoted_status_id_str":"1188173551301513217","quoted_status_permalink":{"url":"https:\/\/t.co\/QLaKxiPRPX","expanded":"https:\/\/twitter.com\/NeumannKL\/status\/1188173551301513217","display":"twitter.com\/NeumannKL\/stat\u2026"},"quoted_status":{"created_at":"Sat + Oct 26 19:20:24 +0000 2019","id":1188173551301513217,"id_str":"1188173551301513217","full_text":"Do + you miss being at #AECT19? Stay #aect19inspired with the @AECT Digital Escape + Room created at our (@francesmarg & @RachelYLKim) @tedaect Inspire! session + on Friday at 10am! First ones to help the grad student escape get a shout + out on Twitter!\n\nhttps:\/\/t.co\/qDgkgLOlec","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"AECT19","indices":[21,28]},{"text":"aect19inspired","indices":[35,50]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[60,65]},{"screen_name":"francesmarg","name":"Frances + Alvarado","id":91361410,"id_str":"91361410","indices":[102,114]},{"screen_name":"tedaect","name":"TED + AECT","id":2165058337,"id_str":"2165058337","indices":[135,143]}],"urls":[{"url":"https:\/\/t.co\/qDgkgLOlec","expanded_url":"https:\/\/sites.google.com\/view\/aect-digital-escape-room\/","display_url":"sites.google.com\/view\/aect-digi\u2026","indices":[252,275]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":281735316,"id_str":"281735316","name":"Dr. + Kalianne L. Neumann","screen_name":"NeumannKL","location":"Stillwater, OK","description":"Assistant + Professor \u2013 Oklahoma State University \u2013 Learning, Design, and Technology","url":"https:\/\/t.co\/C5ihHdSiId","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/C5ihHdSiId","expanded_url":"http:\/\/bit.ly\/RevisionAssistanttoo","display_url":"bit.ly\/RevisionAssist\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":200,"friends_count":194,"listed_count":15,"created_at":"Wed + Apr 13 21:33:05 +0000 2011","favourites_count":445,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":276,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281735316\/1412853928","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 26 06:25:16 +0000 2019","id":1187978481822511106,"id_str":"1187978481822511106","full_text":"RT + @DKSch: Best introductory reader for EdTech foundations. Got a 4th edition + for less than half price and will give it to @BoufflersLydie\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[3,9]},{"screen_name":"BoufflersLydie","name":"Lydie + Boufflers","id":1061009402940063744,"id_str":"1061009402940063744","indices":[123,138]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14827826,"id_str":"14827826","name":"widged","screen_name":"widged","location":"Brussels, + Belgium","description":"Unicorn in training. Front, Serverless\/Cloud, Database, + IoT, Data Science. #reactjs #rust #d3js Back to Brussels \ud83c\udde7\ud83c\uddeaafter + 10 years in NZ \ud83c\uddf3\ud83c\uddff (ze\/zir\/zirs)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1130,"friends_count":2167,"listed_count":86,"created_at":"Mon + May 19 03:10:53 +0000 2008","favourites_count":16772,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27432,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"224AA0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637792976597483520\/tR2efnIv_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637792976597483520\/tR2efnIv_normal.png","profile_image_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 19:13:11 +0000 2019","id":1187809348602347520,"id_str":"1187809348602347520","full_text":"Best + introductory reader for EdTech foundations. Got a 4th edition for less than + half price and will give it to @BoufflersLydie my graduate student. Goodby + #aect19inspired \ud83d\ude0e https:\/\/t.co\/UKjkrLQetl","truncated":false,"display_text_range":[0,173],"entities":{"hashtags":[{"text":"aect19inspired","indices":[156,171]}],"symbols":[],"user_mentions":[{"screen_name":"BoufflersLydie","name":"Lydie + Boufflers","id":1061009402940063744,"id_str":"1061009402940063744","indices":[112,127]}],"urls":[],"media":[{"id":1187809340293410816,"id_str":"1187809340293410816","indices":[174,197],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvyTT0UcAAsHT_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvyTT0UcAAsHT_.jpg","url":"https:\/\/t.co\/UKjkrLQetl","display_url":"pic.twitter.com\/UKjkrLQetl","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187809348602347520\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187809340293410816,"id_str":"1187809340293410816","indices":[174,197],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvyTT0UcAAsHT_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvyTT0UcAAsHT_.jpg","url":"https:\/\/t.co\/UKjkrLQetl","display_url":"pic.twitter.com\/UKjkrLQetl","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187809348602347520\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 27 04:37:39 +0000 2019","id":1188313789457809408,"id_str":"1188313789457809408","full_text":"RT + @NeumannKL: Do you miss being at #AECT19? Stay #aect19inspired with the @AECT + Digital Escape Room created at our (@francesmarg & @Rachel\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"AECT19","indices":[36,43]},{"text":"aect19inspired","indices":[50,65]}],"symbols":[],"user_mentions":[{"screen_name":"NeumannKL","name":"Dr. + Kalianne L. Neumann","id":281735316,"id_str":"281735316","indices":[3,13]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[75,80]},{"screen_name":"francesmarg","name":"Frances + Alvarado","id":91361410,"id_str":"91361410","indices":[117,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 26 19:20:24 +0000 2019","id":1188173551301513217,"id_str":"1188173551301513217","full_text":"Do + you miss being at #AECT19? Stay #aect19inspired with the @AECT Digital Escape + Room created at our (@francesmarg & @RachelYLKim) @tedaect Inspire! session + on Friday at 10am! First ones to help the grad student escape get a shout + out on Twitter!\n\nhttps:\/\/t.co\/qDgkgLOlec","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"AECT19","indices":[21,28]},{"text":"aect19inspired","indices":[35,50]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[60,65]},{"screen_name":"francesmarg","name":"Frances + Alvarado","id":91361410,"id_str":"91361410","indices":[102,114]},{"screen_name":"tedaect","name":"TED + AECT","id":2165058337,"id_str":"2165058337","indices":[135,143]}],"urls":[{"url":"https:\/\/t.co\/qDgkgLOlec","expanded_url":"https:\/\/sites.google.com\/view\/aect-digital-escape-room\/","display_url":"sites.google.com\/view\/aect-digi\u2026","indices":[252,275]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":281735316,"id_str":"281735316","name":"Dr. + Kalianne L. Neumann","screen_name":"NeumannKL","location":"Stillwater, OK","description":"Assistant + Professor \u2013 Oklahoma State University \u2013 Learning, Design, and Technology","url":"https:\/\/t.co\/C5ihHdSiId","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/C5ihHdSiId","expanded_url":"http:\/\/bit.ly\/RevisionAssistanttoo","display_url":"bit.ly\/RevisionAssist\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":200,"friends_count":194,"listed_count":15,"created_at":"Wed + Apr 13 21:33:05 +0000 2011","favourites_count":445,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":276,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281735316\/1412853928","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 06:28:58 +0000 2019","id":1187979413343952897,"id_str":"1187979413343952897","full_text":"RT + @techedges: I''m so thrilled to co-present with @utexascoe #TexasCI #UTLT + doc students, Yin Hong Cheah & Yi Shi, our research on preservi\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"TexasCI","indices":[61,69]},{"text":"UTLT","indices":[70,75]}],"symbols":[],"user_mentions":[{"screen_name":"techedges","name":"Dr. + Joan E. Hughes","id":19613812,"id_str":"19613812","indices":[3,13]},{"screen_name":"utexascoe","name":"College + of Education","id":19671331,"id_str":"19671331","indices":[50,60]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 19:49:37 +0000 2019","id":1187818515228692480,"id_str":"1187818515228692480","full_text":"I''m + so thrilled to co-present with @utexascoe #TexasCI #UTLT doc students, Yin + Hong Cheah & Yi Shi, our research on preservice and inservice teachers'' + pedagogical reasoning for their valued #edtech #aect19inspired @AECT https:\/\/t.co\/Zlx8dUrhb9","truncated":false,"display_text_range":[0,223],"entities":{"hashtags":[{"text":"TexasCI","indices":[46,54]},{"text":"UTLT","indices":[55,60]},{"text":"edtech","indices":[194,201]},{"text":"aect19inspired","indices":[202,217]}],"symbols":[],"user_mentions":[{"screen_name":"utexascoe","name":"College + of Education","id":19671331,"id_str":"19671331","indices":[35,45]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[218,223]}],"urls":[],"media":[{"id":1187818465098375175,"id_str":"1187818465098375175","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv6mcXWoAcEDna.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv6mcXWoAcEDna.jpg","url":"https:\/\/t.co\/Zlx8dUrhb9","display_url":"pic.twitter.com\/Zlx8dUrhb9","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187818515228692480\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187818465098375175,"id_str":"1187818465098375175","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv6mcXWoAcEDna.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv6mcXWoAcEDna.jpg","url":"https:\/\/t.co\/Zlx8dUrhb9","display_url":"pic.twitter.com\/Zlx8dUrhb9","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187818515228692480\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187818465098436608,"id_str":"1187818465098436608","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv6mcXXkAAnoNL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv6mcXXkAAnoNL.jpg","url":"https:\/\/t.co\/Zlx8dUrhb9","display_url":"pic.twitter.com\/Zlx8dUrhb9","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187818515228692480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187818465098379266,"id_str":"1187818465098379266","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv6mcXWsAIn3GZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv6mcXWsAIn3GZ.jpg","url":"https:\/\/t.co\/Zlx8dUrhb9","display_url":"pic.twitter.com\/Zlx8dUrhb9","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187818515228692480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187818465098379265,"id_str":"1187818465098379265","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv6mcXWsAEK0LP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv6mcXWsAEK0LP.jpg","url":"https:\/\/t.co\/Zlx8dUrhb9","display_url":"pic.twitter.com\/Zlx8dUrhb9","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187818515228692480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19613812,"id_str":"19613812","name":"Dr. + Joan E. Hughes","screen_name":"techedges","location":"Austin, TX","description":"Prof, + Learning Technologies, UT Austin. Researcher, teacher, writer: tech integration + in schools, teacher educ & PD. Author:https:\/\/t.co\/p12V06CqJU","url":"https:\/\/t.co\/0V3yBaAOKy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0V3yBaAOKy","expanded_url":"http:\/\/techedges.org","display_url":"techedges.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/p12V06CqJU","expanded_url":"http:\/\/bit.ly\/IntegratingEdTech","display_url":"bit.ly\/IntegratingEdT\u2026","indices":[124,147]}]}},"protected":false,"followers_count":1646,"friends_count":2355,"listed_count":158,"created_at":"Tue + Jan 27 20:26:10 +0000 2009","favourites_count":722,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2871,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEBB2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431552022538510336\/qGc8ZRJj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431552022538510336\/qGc8ZRJj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19613812\/1408660446","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 18:55:43 +0000 2019","id":1188167339285647362,"id_str":"1188167339285647362","full_text":"RT + @yuuki5000: \u201dThe Trends in Instructional Design and Technology Database\u201d + It is a very useful database for knowing the trends in the IDT\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"yuuki5000","name":"Yuki + Watanabe","id":65595602,"id_str":"65595602","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15052470,"id_str":"15052470","name":"Chad + Michael Eyer","screen_name":"eyer","location":"Pensacola, Florida","description":"(he\/him) + \ud83c\udff3\ufe0f\u200d\ud83c\udf08 #gradstudent @UWF; work @apple; member + @aect, @FlaFreemasons. Likes #instructionaldesign #rstats #accessibility #STEM + #running. Opinions mine.","url":"https:\/\/t.co\/E17bRH4Uan","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/E17bRH4Uan","expanded_url":"http:\/\/www.eyer.us","display_url":"eyer.us","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":246,"friends_count":959,"listed_count":3,"created_at":"Mon + Jun 09 01:50:18 +0000 2008","favourites_count":1583,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":475,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1476731041637445637\/csEpKEZc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1476731041637445637\/csEpKEZc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"91D2FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 17:49:14 +0000 2019","id":1187788219321995269,"id_str":"1187788219321995269","full_text":"\u201dThe + Trends in Instructional Design and Technology Database\u201d It is a very + useful database for knowing the trends in the IDT field. #aect19\nhttps:\/\/t.co\/QyyZYbs6EP","truncated":false,"display_text_range":[0,162],"entities":{"hashtags":[{"text":"aect19","indices":[131,138]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QyyZYbs6EP","expanded_url":"http:\/\/trendsandissues.org\/","display_url":"trendsandissues.org","indices":[139,162]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":65595602,"id_str":"65595602","name":"Yuki + Watanabe","screen_name":"yuuki5000","location":"Tokyo","description":"\u6e21\u8fba\u96c4\u8cb4\u3002\u6771\u4eac\u90fd\u51fa\u8eab\u3002\u3072\u3063\u305d\u308a\u3068\u6559\u80b2\u5de5\u5b66\u306e\u7814\u7a76\u3092\u3057\u3066\u307e\u3059\u3002\u6771\u4eac\u7406\u79d1\u5927\u5b66\u6559\u6388\u3002\u535a\u58eb\uff08\u5b66\u8853\uff09\u6771\u4eac\u5de5\u696d\u5927\u5b66 + \/ Professor (Educational Technology Lab.) at Tokyo University of Science, + Japan. Ph.D. Tokyo Tech","url":"https:\/\/t.co\/4RXslYSaqZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4RXslYSaqZ","expanded_url":"https:\/\/www.tus.ac.jp\/fac_grad\/p\/index.php?3bfc","display_url":"tus.ac.jp\/fac_grad\/p\/ind\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1130,"friends_count":314,"listed_count":43,"created_at":"Fri + Aug 14 08:42:14 +0000 2009","favourites_count":2992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12516,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1360616182319992838\/B-lMb0oC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1360616182319992838\/B-lMb0oC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65595602\/1440774032","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 28 03:38:53 +0000 2019","id":1188661388094382081,"id_str":"1188661388094382081","full_text":"RT + @jjm09: Attended the TIL luncheon and love the emphasis on technology, leadership, + practitioners, and research; this would be ideal for\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jjm09","name":"J. + Mao","id":72457436,"id_str":"72457436","indices":[3,9]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/pragmatism.club\" rel=\"nofollow\"\u003ebehavioralscience\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":717927353268232192,"id_str":"717927353268232192","name":"Scalar + Humanity","screen_name":"ScalarHumanity","location":"","description":"Until + #BehavioralScience is made core #education; polarizing effects will continue + to devolve #humanity","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6031,"friends_count":4999,"listed_count":426,"created_at":"Thu + Apr 07 04:09:54 +0000 2016","favourites_count":545,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":226692,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/851863204951142400\/QI35SGUJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851863204951142400\/QI35SGUJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/717927353268232192\/1460477788","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 27 18:57:24 +0000 2019","id":1188530151975510016,"id_str":"1188530151975510016","full_text":"Attended + the TIL luncheon and love the emphasis on technology, leadership, practitioners, + and research; this would be ideal for doctoral candidates or graduates from + our Ed.D program @AECT @michelestork #aect19inspired #aect #edtech @WilkesEdD","truncated":false,"display_text_range":[0,243],"entities":{"hashtags":[{"text":"aect19inspired","indices":[203,218]},{"text":"aect","indices":[219,224]},{"text":"edtech","indices":[225,232]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[183,188]},{"screen_name":"michelestork","name":"Dr. + Michele Stork","id":36073247,"id_str":"36073247","indices":[189,202]},{"screen_name":"WilkesEdD","name":"Wilkes + U Ed.D.","id":753609720972337152,"id_str":"753609720972337152","indices":[233,243]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":72457436,"id_str":"72457436","name":"J. + Mao","screen_name":"jjm09","location":"Pennsylvania, USA","description":"Associate + Professor of Educational Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":346,"friends_count":478,"listed_count":13,"created_at":"Tue + Sep 08 03:09:14 +0000 2009","favourites_count":1406,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":912,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927670955761192960\/UYh5XPB8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927670955761192960\/UYh5XPB8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/72457436\/1576084667","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0026FF","profile_sidebar_border_color":"B1D3E6","profile_sidebar_fill_color":"B6F07F","profile_text_color":"121112","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 28 20:52:58 +0000 2019","id":1188921623908360199,"id_str":"1188921623908360199","full_text":"@DiscussionDiva + @BarbMHall #aect2019 https:\/\/t.co\/oBZ4kmlpMC","truncated":false,"display_text_range":[0,36],"entities":{"hashtags":[{"text":"aect2019","indices":[27,36]}],"symbols":[],"user_mentions":[{"screen_name":"DiscussionDiva","name":"Discussion + Diva","id":3377144589,"id_str":"3377144589","indices":[0,15]},{"screen_name":"BarbMHall","name":"Barb + M. Hall","id":58351908,"id_str":"58351908","indices":[16,26]}],"urls":[{"url":"https:\/\/t.co\/oBZ4kmlpMC","expanded_url":"https:\/\/twitter.com\/President_NCU\/status\/1188860046513328130","display_url":"twitter.com\/President_NCU\/\u2026","indices":[37,60]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3377144589,"in_reply_to_user_id_str":"3377144589","in_reply_to_screen_name":"DiscussionDiva","user":{"id":955988349143175168,"id_str":"955988349143175168","name":"TheIDMD","screen_name":"TheIDMD","location":"","description":"The + Doctor is In. Serving heart, mind, & soul of instructional designers and our + craft. Learning about critical digital pedagogy. Previously @discussiondiva.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":112,"friends_count":155,"listed_count":2,"created_at":"Wed + Jan 24 02:19:18 +0000 2018","favourites_count":988,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":956,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1009198368491311104\/M1995r-j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1009198368491311104\/M1995r-j_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1188860046513328130,"quoted_status_id_str":"1188860046513328130","quoted_status_permalink":{"url":"https:\/\/t.co\/oBZ4kmlpMC","expanded":"https:\/\/twitter.com\/President_NCU\/status\/1188860046513328130","display":"twitter.com\/President_NCU\/\u2026"},"quoted_status":{"created_at":"Mon + Oct 28 16:48:17 +0000 2019","id":1188860046513328130,"id_str":"1188860046513328130","full_text":"Congratulations + to @NorthcentralU''s School of Education on the success of your presentation + and thank you @AECT for hosting another engaging conference.\n\n#NCUPride + #NCU #aectech2019 https:\/\/t.co\/TSRp7QfIQZ","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"NCUPride","indices":[154,163]},{"text":"NCU","indices":[164,168]},{"text":"aectech2019","indices":[169,181]}],"symbols":[],"user_mentions":[{"screen_name":"NorthcentralU","name":"Northcentral + U","id":34546770,"id_str":"34546770","indices":[19,33]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[106,111]}],"urls":[],"media":[{"id":1188859988363497472,"id_str":"1188859988363497472","indices":[182,205],"media_url":"http:\/\/pbs.twimg.com\/media\/EH-t3E4U0AA4xws.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH-t3E4U0AA4xws.jpg","url":"https:\/\/t.co\/TSRp7QfIQZ","display_url":"pic.twitter.com\/TSRp7QfIQZ","expanded_url":"https:\/\/twitter.com\/President_NCU\/status\/1188860046513328130\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":832,"resize":"fit"},"small":{"w":680,"h":471,"resize":"fit"},"large":{"w":2048,"h":1420,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1188859988363497472,"id_str":"1188859988363497472","indices":[182,205],"media_url":"http:\/\/pbs.twimg.com\/media\/EH-t3E4U0AA4xws.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH-t3E4U0AA4xws.jpg","url":"https:\/\/t.co\/TSRp7QfIQZ","display_url":"pic.twitter.com\/TSRp7QfIQZ","expanded_url":"https:\/\/twitter.com\/President_NCU\/status\/1188860046513328130\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":832,"resize":"fit"},"small":{"w":680,"h":471,"resize":"fit"},"large":{"w":2048,"h":1420,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1083761934711672832,"id_str":"1083761934711672832","name":"Office + of the President, Northcentral University","screen_name":"President_NCU","location":"San + Diego, California","description":"Officially representing the Office of the + President at @NorthcentralU. We celebrate success, validate our quality & + promote innovation. #CommittedtoCommunity","url":"https:\/\/t.co\/YpRHnqlQQF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YpRHnqlQQF","expanded_url":"http:\/\/www.ncu.edu","display_url":"ncu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":953,"friends_count":2186,"listed_count":4,"created_at":"Fri + Jan 11 16:25:55 +0000 2019","favourites_count":1927,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1323,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1408460026138796038\/uJ6Yb2dD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1408460026138796038\/uJ6Yb2dD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1083761934711672832\/1574374569","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Tue + Oct 29 11:37:10 +0000 2019","id":1189144136533893120,"id_str":"1189144136533893120","full_text":"Excited + to see my EME2040 class today after a week away at #AECT19! #fsu2040","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"AECT19","indices":[59,66]},{"text":"fsu2040","indices":[68,76]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22214646,"id_str":"22214646","name":"Lauren + Bagdy","screen_name":"LaurenBagdy","location":"","description":"Assistant + Professor @ugaMFECOE | Ph.D. @ISLT_FSU | Social Media, Informal Learning | + Dog Mom | @FSU_Softball Fan | @Disney Enthusiast","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":518,"friends_count":537,"listed_count":8,"created_at":"Sat + Feb 28 01:20:10 +0000 2009","favourites_count":2512,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":342,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1276193284931629058\/hp-ySqtP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1276193284931629058\/hp-ySqtP_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 27 19:23:26 +0000 2019","id":1188536700680753152,"id_str":"1188536700680753152","full_text":"RT + @jeroen69: Paraphrasing Thomas Reeves: If you can\u2019t link your work to + any of these goals, you should probably rethink what you are doing\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jeroen69","name":"Jeroen","id":6848632,"id_str":"6848632","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":72457436,"id_str":"72457436","name":"J. + Mao","screen_name":"jjm09","location":"Pennsylvania, USA","description":"Associate + Professor of Educational Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":346,"friends_count":478,"listed_count":13,"created_at":"Tue + Sep 08 03:09:14 +0000 2009","favourites_count":1406,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":912,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927670955761192960\/UYh5XPB8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927670955761192960\/UYh5XPB8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/72457436\/1576084667","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0026FF","profile_sidebar_border_color":"B1D3E6","profile_sidebar_fill_color":"B6F07F","profile_text_color":"121112","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 16:27:08 +0000 2019","id":1186680396076875776,"id_str":"1186680396076875776","full_text":"Paraphrasing + Thomas Reeves: If you can\u2019t link your work to any of these goals, you + should probably rethink what you are doing. #aect19 #aectinspired https:\/\/t.co\/S4OYny9Oy7","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[{"text":"aect19","indices":[127,134]},{"text":"aectinspired","indices":[135,148]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186680255118884864,"id_str":"1186680255118884864","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","url":"https:\/\/t.co\/S4OYny9Oy7","display_url":"pic.twitter.com\/S4OYny9Oy7","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186680396076875776\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186680255118884864,"id_str":"1186680255118884864","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","url":"https:\/\/t.co\/S4OYny9Oy7","display_url":"pic.twitter.com\/S4OYny9Oy7","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186680396076875776\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 19:36:48 +0000 2019","id":1188177679763165185,"id_str":"1188177679763165185","full_text":"RT + @ISLT_FSU: Come visit poster T38: Online Reciprocal Teaching: Designing an + Instructional Approach that Scaffolds Metacognitive Strategy\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 19:55:06 +0000 2019","id":1186732733516701696,"id_str":"1186732733516701696","full_text":"Come + visit poster T38: Online Reciprocal Teaching: Designing an Instructional Approach + that Scaffolds Metacognitive Strategy Use for College Students with #FSU #FSUCOE + #ISLT Jiyae Bong & @vdennen #AECT19 #AECT2019 https:\/\/t.co\/JcnMfDqJv6","truncated":false,"display_text_range":[0,217],"entities":{"hashtags":[{"text":"FSU","indices":[155,159]},{"text":"FSUCOE","indices":[160,167]},{"text":"ISLT","indices":[168,173]},{"text":"AECT19","indices":[200,207]},{"text":"AECT2019","indices":[208,217]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[191,199]}],"urls":[],"media":[{"id":1186732730333179910,"id_str":"1186732730333179910","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","url":"https:\/\/t.co\/JcnMfDqJv6","display_url":"pic.twitter.com\/JcnMfDqJv6","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186732733516701696\/photo\/1","type":"photo","sizes":{"large":{"w":1609,"h":1075,"resize":"fit"},"medium":{"w":1200,"h":802,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1186732730333179910,"id_str":"1186732730333179910","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","url":"https:\/\/t.co\/JcnMfDqJv6","display_url":"pic.twitter.com\/JcnMfDqJv6","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186732733516701696\/photo\/1","type":"photo","sizes":{"large":{"w":1609,"h":1075,"resize":"fit"},"medium":{"w":1200,"h":802,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 28 03:03:31 +0000 2019","id":1188652484581085193,"id_str":"1188652484581085193","full_text":"RT + @jjm09: Loved the presentation and discussion together @ekowch @rajansock + @HoyetHemphill @AECT #aect19inspired #aect19 Hope to see more\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"aect19inspired","indices":[98,113]},{"text":"aect19","indices":[114,121]}],"symbols":[],"user_mentions":[{"screen_name":"jjm09","name":"J. + Mao","id":72457436,"id_str":"72457436","indices":[3,9]},{"screen_name":"ekowch","name":"Dr. + Eugene Kowch","id":28518944,"id_str":"28518944","indices":[58,65]},{"screen_name":"rajansock","name":"Beth + Rajan Sockman","id":117219740,"id_str":"117219740","indices":[66,76]},{"screen_name":"HoyetHemphill","name":"hh-hemphill@wiu.edu","id":787473427909189632,"id_str":"787473427909189632","indices":[77,91]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[92,97]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 27 19:05:04 +0000 2019","id":1188532082001231876,"id_str":"1188532082001231876","full_text":"Loved + the presentation and discussion together @ekowch @rajansock @HoyetHemphill + @AECT #aect19inspired #aect19 Hope to see more work done together! https:\/\/t.co\/0id4kZLqWv","truncated":false,"display_text_range":[0,147],"entities":{"hashtags":[{"text":"aect19inspired","indices":[87,102]},{"text":"aect19","indices":[103,110]}],"symbols":[],"user_mentions":[{"screen_name":"ekowch","name":"Dr. + Eugene Kowch","id":28518944,"id_str":"28518944","indices":[47,54]},{"screen_name":"rajansock","name":"Beth + Rajan Sockman","id":117219740,"id_str":"117219740","indices":[55,65]},{"screen_name":"HoyetHemphill","name":"hh-hemphill@wiu.edu","id":787473427909189632,"id_str":"787473427909189632","indices":[66,80]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[81,86]}],"urls":[],"media":[{"id":1188532075399405569,"id_str":"1188532075399405569","indices":[148,171],"media_url":"http:\/\/pbs.twimg.com\/media\/EH6DoB5W4AEfMYI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH6DoB5W4AEfMYI.jpg","url":"https:\/\/t.co\/0id4kZLqWv","display_url":"pic.twitter.com\/0id4kZLqWv","expanded_url":"https:\/\/twitter.com\/jjm09\/status\/1188532082001231876\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1188532075399405569,"id_str":"1188532075399405569","indices":[148,171],"media_url":"http:\/\/pbs.twimg.com\/media\/EH6DoB5W4AEfMYI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH6DoB5W4AEfMYI.jpg","url":"https:\/\/t.co\/0id4kZLqWv","display_url":"pic.twitter.com\/0id4kZLqWv","expanded_url":"https:\/\/twitter.com\/jjm09\/status\/1188532082001231876\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":72457436,"id_str":"72457436","name":"J. + Mao","screen_name":"jjm09","location":"Pennsylvania, USA","description":"Associate + Professor of Educational Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":346,"friends_count":478,"listed_count":13,"created_at":"Tue + Sep 08 03:09:14 +0000 2009","favourites_count":1406,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":912,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927670955761192960\/UYh5XPB8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927670955761192960\/UYh5XPB8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/72457436\/1576084667","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0026FF","profile_sidebar_border_color":"B1D3E6","profile_sidebar_fill_color":"B6F07F","profile_text_color":"121112","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 27 00:46:21 +0000 2019","id":1188255577404784643,"id_str":"1188255577404784643","full_text":"What + a life changing experience this week was! Thanks @AECT for a great conference!! + Thanks @michelestork for introducing me to such an amazing group! @AECTTIL + I can\u2019t wait for the next meeting! #aect19inspired #aect2019 #edtech + #musictech https:\/\/t.co\/r55UHQjw7G","truncated":false,"display_text_range":[0,239],"entities":{"hashtags":[{"text":"aect19inspired","indices":[195,210]},{"text":"aect2019","indices":[211,220]},{"text":"edtech","indices":[221,228]},{"text":"musictech","indices":[229,239]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[54,59]},{"screen_name":"michelestork","name":"Dr. + Michele Stork","id":36073247,"id_str":"36073247","indices":[92,105]},{"screen_name":"AECTTIL","name":"AECT + TIL","id":4921781685,"id_str":"4921781685","indices":[151,159]}],"urls":[{"url":"https:\/\/t.co\/r55UHQjw7G","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1188127349524586497","display_url":"twitter.com\/AECT\/status\/11\u2026","indices":[240,263]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":763378325712674818,"id_str":"763378325712674818","name":"Tay + Fess, M.Ed.","screen_name":"Captain_Fess","location":"Naples, FL","description":"Music + Educator l \ud83c\udff3\ufe0f\u200d\ud83c\udf08 l Presenter l UDL l FGCU l + Doctoral Student Ed.D. l EdTech l Disney Geek","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":576,"listed_count":3,"created_at":"Wed + Aug 10 14:15:50 +0000 2016","favourites_count":1730,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":665,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/763378325712674818\/1595378873","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1188127349524586497,"quoted_status_id_str":"1188127349524586497","quoted_status_permalink":{"url":"https:\/\/t.co\/r55UHQjw7G","expanded":"https:\/\/twitter.com\/AECT\/status\/1188127349524586497","display":"twitter.com\/AECT\/status\/11\u2026"},"quoted_status":{"created_at":"Sat + Oct 26 16:16:49 +0000 2019","id":1188127349524586497,"id_str":"1188127349524586497","full_text":"The + AECT 2019 International Convention is over, but the inspiration will continue + as you implement and share everything that you learned and experienced. Thanks + to all of our AECT family who joined us! \n\nMore photos on Flickr: https:\/\/t.co\/1rprSryNgx + https:\/\/t.co\/AUbEjSmNfq","truncated":false,"display_text_range":[0,250],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1rprSryNgx","expanded_url":"http:\/\/bit.ly\/AECT19photos","display_url":"bit.ly\/AECT19photos","indices":[227,250]}],"media":[{"id":1188127323981340672,"id_str":"1188127323981340672","indices":[251,274],"media_url":"http:\/\/pbs.twimg.com\/media\/EH0TgZXX4AA_DOy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH0TgZXX4AA_DOy.jpg","url":"https:\/\/t.co\/AUbEjSmNfq","display_url":"pic.twitter.com\/AUbEjSmNfq","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1188127349524586497\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":798,"resize":"fit"},"large":{"w":2048,"h":1361,"resize":"fit"},"small":{"w":680,"h":452,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1188127323981340672,"id_str":"1188127323981340672","indices":[251,274],"media_url":"http:\/\/pbs.twimg.com\/media\/EH0TgZXX4AA_DOy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH0TgZXX4AA_DOy.jpg","url":"https:\/\/t.co\/AUbEjSmNfq","display_url":"pic.twitter.com\/AUbEjSmNfq","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1188127349524586497\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":798,"resize":"fit"},"large":{"w":2048,"h":1361,"resize":"fit"},"small":{"w":680,"h":452,"resize":"fit"}},"ext_alt_text":null},{"id":1188127323993886720,"id_str":"1188127323993886720","indices":[251,274],"media_url":"http:\/\/pbs.twimg.com\/media\/EH0TgZaXUAAhTgS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH0TgZaXUAAhTgS.jpg","url":"https:\/\/t.co\/AUbEjSmNfq","display_url":"pic.twitter.com\/AUbEjSmNfq","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1188127349524586497\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":798,"resize":"fit"},"small":{"w":680,"h":452,"resize":"fit"},"large":{"w":2048,"h":1362,"resize":"fit"}},"ext_alt_text":null},{"id":1188127323985530881,"id_str":"1188127323985530881","indices":[251,274],"media_url":"http:\/\/pbs.twimg.com\/media\/EH0TgZYX0AE1aMu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH0TgZYX0AE1aMu.jpg","url":"https:\/\/t.co\/AUbEjSmNfq","display_url":"pic.twitter.com\/AUbEjSmNfq","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1188127349524586497\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1362,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":452,"resize":"fit"},"medium":{"w":1200,"h":798,"resize":"fit"}},"ext_alt_text":null},{"id":1188127323981320192,"id_str":"1188127323981320192","indices":[251,274],"media_url":"http:\/\/pbs.twimg.com\/media\/EH0TgZXXkAAConD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH0TgZXXkAAConD.jpg","url":"https:\/\/t.co\/AUbEjSmNfq","display_url":"pic.twitter.com\/AUbEjSmNfq","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1188127349524586497\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":798,"resize":"fit"},"small":{"w":680,"h":452,"resize":"fit"},"large":{"w":2048,"h":1362,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":38,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 29 15:17:15 +0000 2019","id":1189199523509227520,"id_str":"1189199523509227520","full_text":"RT + @richardewest: Struggling to know how to teach various qualitative paradigms + to new qualitative research students? We have some ideas us\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"richardewest","name":"Rick + West","id":17639668,"id_str":"17639668","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1895804336,"id_str":"1895804336","name":"Ann","screen_name":"Nasmahan1","location":"Putrajaya, + Wilayah Persekutuan","description":"PhD student. I hope I will win this ''battle''...insyaallah.\ud83e\udd70","url":"https:\/\/t.co\/FL0dxtPPPY","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FL0dxtPPPY","expanded_url":"https:\/\/nilwarisan.wordpress.com","display_url":"nilwarisan.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":373,"listed_count":0,"created_at":"Mon + Sep 23 01:51:24 +0000 2013","favourites_count":196,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":253,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501701190849282050\/KxsXoPEw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501701190849282050\/KxsXoPEw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1895804336\/1570630235","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 20:07:09 +0000 2019","id":1187460540043448321,"id_str":"1187460540043448321","full_text":"Struggling + to know how to teach various qualitative paradigms to new qualitative research + students? We have some ideas using a new method called Decision-based Learning + that we''ll be teaching at 2 p.m. today at #AECT19. Come be #aectinspired! + https:\/\/t.co\/1pCQSrE8vl","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"AECT19","indices":[211,218]},{"text":"aectinspired","indices":[228,241]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187460492937199616,"id_str":"1187460492937199616","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","url":"https:\/\/t.co\/1pCQSrE8vl","display_url":"pic.twitter.com\/1pCQSrE8vl","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187460540043448321\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":711,"resize":"fit"},"large":{"w":1462,"h":866,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":403,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187460492937199616,"id_str":"1187460492937199616","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","url":"https:\/\/t.co\/1pCQSrE8vl","display_url":"pic.twitter.com\/1pCQSrE8vl","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187460540043448321\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":711,"resize":"fit"},"large":{"w":1462,"h":866,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":403,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17639668,"id_str":"17639668","name":"Rick + West","screen_name":"richardewest","location":"Provo, ut","description":"Instructional + Designer, Researcher, & Evaluator at Brigham Young University","url":"http:\/\/t.co\/Nc39wWEhGM","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Nc39wWEhGM","expanded_url":"http:\/\/richardewest.com","display_url":"richardewest.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":223,"listed_count":39,"created_at":"Wed + Nov 26 02:26:26 +0000 2008","favourites_count":799,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3339,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17639668\/1446650027","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 27 03:48:34 +0000 2019","id":1188301434124566528,"id_str":"1188301434124566528","full_text":"#aect19inspired + https:\/\/t.co\/fNwG0d9W4X","truncated":false,"display_text_range":[0,39],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fNwG0d9W4X","expanded_url":"https:\/\/photos.app.goo.gl\/adjeSvbWhTpqhf7K9","display_url":"photos.app.goo.gl\/adjeSvbWhTpqhf\u2026","indices":[16,39]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19023356,"id_str":"19023356","name":"Beth + Oyarzun","screen_name":"profoyarzun","location":"Charlotte, NC","description":"Clinical + Associate Professor and director of the Learning, Design and Technology program + at UNCC, wife, mom, and scuba diver.","url":"https:\/\/t.co\/GKjzX92eV9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GKjzX92eV9","expanded_url":"https:\/\/sites.google.com\/uncc.edu\/bethoyarzun\/home?authuser=2","display_url":"sites.google.com\/uncc.edu\/betho\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":295,"friends_count":523,"listed_count":15,"created_at":"Thu + Jan 15 14:35:36 +0000 2009","favourites_count":1232,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1082,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650037082346422272\/X3Iy9bMz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650037082346422272\/X3Iy9bMz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19023356\/1566681139","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"qme"},{"created_at":"Sun + Oct 27 15:57:05 +0000 2019","id":1188484772374503424,"id_str":"1188484772374503424","full_text":"RT + @LearnEngage: Ever wonder how to #sketchnote a presentation? Pros from @UNTsocial + and @ECNUER hope to show you how at the Inspire! Sketc\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"sketchnote","indices":[36,47]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]},{"screen_name":"UNTsocial","name":"University + of North Texas","id":18462994,"id_str":"18462994","indices":[74,84]},{"screen_name":"ECNUER","name":"East + China Normal University","id":1732892550,"id_str":"1732892550","indices":[89,96]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:00:00 +0000 2019","id":1187398342889754625,"id_str":"1187398342889754625","full_text":"Ever + wonder how to #sketchnote a presentation? Pros from @UNTsocial and @ECNUER + hope to show you how at the Inspire! Sketchnoting session at 3pm! Come learn + with us! #AECT19 #aect19inspired @AECT https:\/\/t.co\/25zZOVkv2N","truncated":false,"display_text_range":[0,195],"entities":{"hashtags":[{"text":"sketchnote","indices":[19,30]},{"text":"AECT19","indices":[166,173]},{"text":"aect19inspired","indices":[174,189]}],"symbols":[],"user_mentions":[{"screen_name":"UNTsocial","name":"University + of North Texas","id":18462994,"id_str":"18462994","indices":[57,67]},{"screen_name":"ECNUER","name":"East + China Normal University","id":1732892550,"id_str":"1732892550","indices":[72,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[190,195]}],"urls":[],"media":[{"id":1187122528189407235,"id_str":"1187122528189407235","indices":[196,219],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","url":"https:\/\/t.co\/25zZOVkv2N","display_url":"pic.twitter.com\/25zZOVkv2N","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187398342889754625\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187122528189407235,"id_str":"1187122528189407235","indices":[196,219],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","url":"https:\/\/t.co\/25zZOVkv2N","display_url":"pic.twitter.com\/25zZOVkv2N","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187398342889754625\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 27 01:02:17 +0000 2019","id":1188259590959448065,"id_str":"1188259590959448065","full_text":"RT + @yuuki5000: \u201dThe Trends in Instructional Design and Technology Database\u201d + It is a very useful database for knowing the trends in the IDT\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"yuuki5000","name":"Yuki + Watanabe","id":65595602,"id_str":"65595602","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1173602763571437569,"id_str":"1173602763571437569","name":"Miss + Kaitlyn Kimmy","screen_name":"Thinkshareteach","location":"Erie, Pennsylvania + ","description":"\ud83c\udf92Future Elementary School and Special Education + Teacher\ud83c\udfeb@Edinboro University of Pennsylvania \u201822\ud83d\udcda#FirstGen + #SEDU183 #EdTech #PAECT member #ConnectedEducator","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":365,"friends_count":712,"listed_count":4,"created_at":"Mon + Sep 16 14:21:26 +0000 2019","favourites_count":488,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":331,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1303856171372208129\/aKNer1IN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1303856171372208129\/aKNer1IN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1173602763571437569\/1568644833","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 17:49:14 +0000 2019","id":1187788219321995269,"id_str":"1187788219321995269","full_text":"\u201dThe + Trends in Instructional Design and Technology Database\u201d It is a very + useful database for knowing the trends in the IDT field. #aect19\nhttps:\/\/t.co\/QyyZYbs6EP","truncated":false,"display_text_range":[0,162],"entities":{"hashtags":[{"text":"aect19","indices":[131,138]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QyyZYbs6EP","expanded_url":"http:\/\/trendsandissues.org\/","display_url":"trendsandissues.org","indices":[139,162]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":65595602,"id_str":"65595602","name":"Yuki + Watanabe","screen_name":"yuuki5000","location":"Tokyo","description":"\u6e21\u8fba\u96c4\u8cb4\u3002\u6771\u4eac\u90fd\u51fa\u8eab\u3002\u3072\u3063\u305d\u308a\u3068\u6559\u80b2\u5de5\u5b66\u306e\u7814\u7a76\u3092\u3057\u3066\u307e\u3059\u3002\u6771\u4eac\u7406\u79d1\u5927\u5b66\u6559\u6388\u3002\u535a\u58eb\uff08\u5b66\u8853\uff09\u6771\u4eac\u5de5\u696d\u5927\u5b66 + \/ Professor (Educational Technology Lab.) at Tokyo University of Science, + Japan. Ph.D. Tokyo Tech","url":"https:\/\/t.co\/4RXslYSaqZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4RXslYSaqZ","expanded_url":"https:\/\/www.tus.ac.jp\/fac_grad\/p\/index.php?3bfc","display_url":"tus.ac.jp\/fac_grad\/p\/ind\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1130,"friends_count":314,"listed_count":43,"created_at":"Fri + Aug 14 08:42:14 +0000 2009","favourites_count":2992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12516,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1360616182319992838\/B-lMb0oC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1360616182319992838\/B-lMb0oC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65595602\/1440774032","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 28 03:03:50 +0000 2019","id":1188652565367574528,"id_str":"1188652565367574528","full_text":"RT + @jjm09: Attended the TIL luncheon and love the emphasis on technology, leadership, + practitioners, and research; this would be ideal for\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jjm09","name":"J. + Mao","id":72457436,"id_str":"72457436","indices":[3,9]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 27 18:57:24 +0000 2019","id":1188530151975510016,"id_str":"1188530151975510016","full_text":"Attended + the TIL luncheon and love the emphasis on technology, leadership, practitioners, + and research; this would be ideal for doctoral candidates or graduates from + our Ed.D program @AECT @michelestork #aect19inspired #aect #edtech @WilkesEdD","truncated":false,"display_text_range":[0,243],"entities":{"hashtags":[{"text":"aect19inspired","indices":[203,218]},{"text":"aect","indices":[219,224]},{"text":"edtech","indices":[225,232]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[183,188]},{"screen_name":"michelestork","name":"Dr. + Michele Stork","id":36073247,"id_str":"36073247","indices":[189,202]},{"screen_name":"WilkesEdD","name":"Wilkes + U Ed.D.","id":753609720972337152,"id_str":"753609720972337152","indices":[233,243]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":72457436,"id_str":"72457436","name":"J. + Mao","screen_name":"jjm09","location":"Pennsylvania, USA","description":"Associate + Professor of Educational Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":346,"friends_count":478,"listed_count":13,"created_at":"Tue + Sep 08 03:09:14 +0000 2009","favourites_count":1406,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":912,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927670955761192960\/UYh5XPB8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927670955761192960\/UYh5XPB8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/72457436\/1576084667","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0026FF","profile_sidebar_border_color":"B1D3E6","profile_sidebar_fill_color":"B6F07F","profile_text_color":"121112","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 28 11:16:50 +0000 2019","id":1188776632124936192,"id_str":"1188776632124936192","full_text":"RT + @kariknisely: \u201cIt\u2019s a Small World\u201d especially when we are connected + online with vast wide networks #AECT19 loving the discussion with @R\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[102,109]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15635142,"id_str":"15635142","name":"Dr. + Kimberly N. LaPrairie","screen_name":"Tech_DrL","location":"Texas, USA","description":"\ud83d\udc69\ud83c\udffc\u200d\ud83c\udf93\ud83d\udc69\ud83c\udffc\u200d\ud83c\udfebAssoc + Prof of Instructional Systems Design & Technology\ud83d\udc69\ud83c\udffc\u200d\ud83d\udcbb\u2022 + Mom of 4\ud83d\udc68\ud83c\udffb\u200d\ud83d\udcbb\ud83d\udc71\ud83c\udffb\u200d\u2640\ufe0f\ud83d\udc67\ud83c\udffb\ud83e\uddd2\ud83c\udffc\u2022 + #FatFueled #Runner #PelotonRider\ud83e\udd51\ud83e\udd53\ud83c\udfc3\ud83c\udffc\u200d\u2640\ufe0f\ud83d\udeb4\ud83c\udffc\u200d\u2640\ufe0f","url":"https:\/\/t.co\/69VXyGUkoo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/69VXyGUkoo","expanded_url":"https:\/\/www.instagram.com\/Tech_DrL\/","display_url":"instagram.com\/Tech_DrL\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1470,"friends_count":1395,"listed_count":124,"created_at":"Mon + Jul 28 17:54:31 +0000 2008","favourites_count":4299,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6412,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1516648007651008515\/fwC4vMQz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1516648007651008515\/fwC4vMQz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15635142\/1531239446","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ED822F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 17:21:29 +0000 2019","id":1187056461429395456,"id_str":"1187056461429395456","full_text":"\u201cIt\u2019s + a Small World\u201d especially when we are connected online with vast wide + networks #AECT19 loving the discussion with @RitaFennelly @DrLaPrairie @WEHSLibrary + @KathyMansfield in Pavillion 11 https:\/\/t.co\/eaSzT1apnF","truncated":false,"display_text_range":[0,191],"entities":{"hashtags":[{"text":"AECT19","indices":[85,92]}],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[120,133]},{"screen_name":"WEHSLibrary","name":"Weslaco + East High School Library-Renee Dyer","id":175049060,"id_str":"175049060","indices":[147,159]},{"screen_name":"KathyMansfield","name":"Kathy + Mansfield","id":27742120,"id_str":"27742120","indices":[160,175]}],"urls":[],"media":[{"id":1187056426742501379,"id_str":"1187056426742501379","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlFh-RU0AMiMX2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlFh-RU0AMiMX2.jpg","url":"https:\/\/t.co\/eaSzT1apnF","display_url":"pic.twitter.com\/eaSzT1apnF","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1187056461429395456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187056426742501379,"id_str":"1187056426742501379","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlFh-RU0AMiMX2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlFh-RU0AMiMX2.jpg","url":"https:\/\/t.co\/eaSzT1apnF","display_url":"pic.twitter.com\/eaSzT1apnF","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1187056461429395456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 28 00:13:12 +0000 2019","id":1188609626146770944,"id_str":"1188609626146770944","full_text":"RT + @rmreese1: Moving into my new position as president of @aectddl I''m excited + to work with the amazing folks on the board and look forward\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rmreese1","name":"rmreese","id":8005732,"id_str":"8005732","indices":[3,12]},{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[58,66]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1088189033266798598,"id_str":"1088189033266798598","name":"AECT + Division of Distance Learning","screen_name":"aectddl","location":"","description":"The + Division of Distance Learning is a special interest group of the Association + for Educational Communications and Technology (AECT).","url":"https:\/\/t.co\/Rg9uXQTkSM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Rg9uXQTkSM","expanded_url":"https:\/\/aect.org\/ddl.php","display_url":"aect.org\/ddl.php","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":861,"friends_count":482,"listed_count":6,"created_at":"Wed + Jan 23 21:37:37 +0000 2019","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088189033266798598\/1548280679","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 22:05:20 +0000 2019","id":1187490282209570816,"id_str":"1187490282209570816","full_text":"Moving + into my new position as president of @aectddl I''m excited to work with the + amazing folks on the board and look forward to growing with you all. Thank + you for your support. #aect19inspired https:\/\/t.co\/TXFt5nvaSs","truncated":false,"display_text_range":[0,194],"entities":{"hashtags":[{"text":"aect19inspired","indices":[179,194]}],"symbols":[],"user_mentions":[{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[44,52]}],"urls":[],"media":[{"id":1187490275234480128,"id_str":"1187490275234480128","indices":[195,218],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrQHR2VAAA6D5c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrQHR2VAAA6D5c.jpg","url":"https:\/\/t.co\/TXFt5nvaSs","display_url":"pic.twitter.com\/TXFt5nvaSs","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1187490282209570816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1921,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187490275234480128,"id_str":"1187490275234480128","indices":[195,218],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrQHR2VAAA6D5c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrQHR2VAAA6D5c.jpg","url":"https:\/\/t.co\/TXFt5nvaSs","display_url":"pic.twitter.com\/TXFt5nvaSs","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1187490282209570816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1921,"h":1080,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":8005732,"id_str":"8005732","name":"rmreese","screen_name":"rmreese1","location":"Denver, + CO","description":"ID, edtech, all around gerd (geek+nerd). Opinions are my + own and RTs are not endorsements. Pronouns: she\/they","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":564,"friends_count":293,"listed_count":271,"created_at":"Mon + Aug 06 23:59:29 +0000 2007","favourites_count":960,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9941,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2A2828","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8005732\/1573836551","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"091378","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 19:31:08 +0000 2019","id":1188176253020340224,"id_str":"1188176253020340224","full_text":"RT + @ChangeIt4Better: Dr. Hoyet Hemphill shares models for systems thinking for + online learning #eme605 #aect19inspired #aect2019 https:\/\/t.\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"eme605","indices":[95,102]},{"text":"aect19inspired","indices":[103,118]},{"text":"aect2019","indices":[119,128]}],"symbols":[],"user_mentions":[{"screen_name":"ChangeIt4Better","name":"Dr. + Suzanne Ensmann","id":1596150056,"id_str":"1596150056","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 20:21:40 +0000 2019","id":1187101804992987138,"id_str":"1187101804992987138","full_text":"Dr. + Hoyet Hemphill shares models for systems thinking for online learning #eme605 + #aect19inspired #aect2019 https:\/\/t.co\/mnpJAAsatR","truncated":false,"display_text_range":[0,107],"entities":{"hashtags":[{"text":"eme605","indices":[74,81]},{"text":"aect19inspired","indices":[82,97]},{"text":"aect2019","indices":[98,107]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187101795568340993,"id_str":"1187101795568340993","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluyyUUUAEJ2J1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluyyUUUAEJ2J1.jpg","url":"https:\/\/t.co\/mnpJAAsatR","display_url":"pic.twitter.com\/mnpJAAsatR","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187101804992987138\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187101795568340993,"id_str":"1187101795568340993","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluyyUUUAEJ2J1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluyyUUUAEJ2J1.jpg","url":"https:\/\/t.co\/mnpJAAsatR","display_url":"pic.twitter.com\/mnpJAAsatR","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187101804992987138\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187101795618672640,"id_str":"1187101795618672640","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluyygUUAAr2xV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluyygUUAAr2xV.jpg","url":"https:\/\/t.co\/mnpJAAsatR","display_url":"pic.twitter.com\/mnpJAAsatR","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187101804992987138\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187101795627089920,"id_str":"1187101795627089920","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluyyiUwAAb21T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluyyiUwAAb21T.jpg","url":"https:\/\/t.co\/mnpJAAsatR","display_url":"pic.twitter.com\/mnpJAAsatR","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187101804992987138\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187101795622866944,"id_str":"1187101795622866944","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluyyhUUAAo4FI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluyyhUUAAo4FI.jpg","url":"https:\/\/t.co\/mnpJAAsatR","display_url":"pic.twitter.com\/mnpJAAsatR","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187101804992987138\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 19:20:24 +0000 2019","id":1188173551301513217,"id_str":"1188173551301513217","full_text":"Do + you miss being at #AECT19? Stay #aect19inspired with the @AECT Digital Escape + Room created at our (@francesmarg & @RachelYLKim) @tedaect Inspire! session + on Friday at 10am! First ones to help the grad student escape get a shout + out on Twitter!\n\nhttps:\/\/t.co\/qDgkgLOlec","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"AECT19","indices":[21,28]},{"text":"aect19inspired","indices":[35,50]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[60,65]},{"screen_name":"francesmarg","name":"Frances + Alvarado","id":91361410,"id_str":"91361410","indices":[102,114]},{"screen_name":"tedaect","name":"TED + AECT","id":2165058337,"id_str":"2165058337","indices":[135,143]}],"urls":[{"url":"https:\/\/t.co\/qDgkgLOlec","expanded_url":"https:\/\/sites.google.com\/view\/aect-digital-escape-room\/","display_url":"sites.google.com\/view\/aect-digi\u2026","indices":[252,275]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":281735316,"id_str":"281735316","name":"Dr. + Kalianne L. Neumann","screen_name":"NeumannKL","location":"Stillwater, OK","description":"Assistant + Professor \u2013 Oklahoma State University \u2013 Learning, Design, and Technology","url":"https:\/\/t.co\/C5ihHdSiId","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/C5ihHdSiId","expanded_url":"http:\/\/bit.ly\/RevisionAssistanttoo","display_url":"bit.ly\/RevisionAssist\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":200,"friends_count":194,"listed_count":15,"created_at":"Wed + Apr 13 21:33:05 +0000 2011","favourites_count":445,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":276,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281735316\/1412853928","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 26 19:28:57 +0000 2019","id":1188175703759474688,"id_str":"1188175703759474688","full_text":"RT + @ChangeIt4Better: Is technology making a cognitive difference? Service learning + offers \u201chigh transformative impact\u201d. Consider systems th\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ChangeIt4Better","name":"Dr. + Suzanne Ensmann","id":1596150056,"id_str":"1596150056","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 19:28:15 +0000 2019","id":1187088365323051008,"id_str":"1187088365323051008","full_text":"Is + technology making a cognitive difference? Service learning offers \u201chigh + transformative impact\u201d. Consider systems thinking when designing instruction. + PSI: purpose, stakeholders, implementation & feedback. Drs. Kowch, Jung, + et al. Introduce Systems Thinkning & Change #aect2019 https:\/\/t.co\/GypQkhQo1O","truncated":false,"display_text_range":[0,287],"entities":{"hashtags":[{"text":"aect2019","indices":[278,287]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187088356070395904,"id_str":"1187088356070395904","indices":[288,311],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlikgSUEAA3id2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlikgSUEAA3id2.jpg","url":"https:\/\/t.co\/GypQkhQo1O","display_url":"pic.twitter.com\/GypQkhQo1O","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187088365323051008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187088356070395904,"id_str":"1187088356070395904","indices":[288,311],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlikgSUEAA3id2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlikgSUEAA3id2.jpg","url":"https:\/\/t.co\/GypQkhQo1O","display_url":"pic.twitter.com\/GypQkhQo1O","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187088365323051008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187088356057837569,"id_str":"1187088356057837569","indices":[288,311],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlikgPUcAEnNc-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlikgPUcAEnNc-.jpg","url":"https:\/\/t.co\/GypQkhQo1O","display_url":"pic.twitter.com\/GypQkhQo1O","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187088365323051008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187088356099809281,"id_str":"1187088356099809281","indices":[288,311],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlikgZU4AEqMTA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlikgZU4AEqMTA.jpg","url":"https:\/\/t.co\/GypQkhQo1O","display_url":"pic.twitter.com\/GypQkhQo1O","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187088365323051008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187088356103974913,"id_str":"1187088356103974913","indices":[288,311],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlikgaUcAEKDmp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlikgaUcAEKDmp.jpg","url":"https:\/\/t.co\/GypQkhQo1O","display_url":"pic.twitter.com\/GypQkhQo1O","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187088365323051008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 11:41:14 +0000 2019","id":1188057997232300032,"id_str":"1188057997232300032","full_text":"RT + @SultanMutlaq: The end #aect19inspired @KhbratKSU3 @khebrat_edu @ali_aleryany + @khal0d99 @CIMAKSTATE https:\/\/t.co\/EON2Hzn5vO","truncated":false,"display_text_range":[0,126],"entities":{"hashtags":[{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"SultanMutlaq","name":"SultanMutlaq","id":370132373,"id_str":"370132373","indices":[3,16]},{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[42,53]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[54,66]},{"screen_name":"ali_aleryany","name":"\ud83d\udcf8 + \u0639\u0644\u064a \u0627\u0644\u0639\u0631\u064a\u0627\u0646\u064a","id":424775077,"id_str":"424775077","indices":[67,80]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":553003329,"id_str":"553003329","name":"SHAHER","screen_name":"SHAHER02","location":"","description":"\u0633\u0628\u062d\u0627\u0646 + \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647 \u0633\u0628\u062d\u0627\u0646 + \u0627\u0644\u0644\u0647 \u0627\u0644\u0639\u0638\u064a\u0645","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":88,"friends_count":240,"listed_count":0,"created_at":"Fri + Apr 13 18:45:30 +0000 2012","favourites_count":243,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1136,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1538927555536879617\/nli0L34w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1538927555536879617\/nli0L34w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/553003329\/1578179144","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 21:13:38 +0000 2019","id":1187839659277029377,"id_str":"1187839659277029377","full_text":"The + end #aect19inspired @KhbratKSU3 @khebrat_edu @ali_aleryany @khal0d99 @CIMAKSTATE + https:\/\/t.co\/EON2Hzn5vO","truncated":false,"display_text_range":[0,84],"entities":{"hashtags":[{"text":"aect19inspired","indices":[8,23]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[24,35]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[36,48]},{"screen_name":"ali_aleryany","name":"\ud83d\udcf8 + \u0639\u0644\u064a \u0627\u0644\u0639\u0631\u064a\u0627\u0646\u064a","id":424775077,"id_str":"424775077","indices":[49,62]},{"screen_name":"CIMAKSTATE","name":"CIMA","id":2450399486,"id_str":"2450399486","indices":[73,84]}],"urls":[],"media":[{"id":1187839652130017280,"id_str":"1187839652130017280","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHwN3sNVUAAeqTX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHwN3sNVUAAeqTX.jpg","url":"https:\/\/t.co\/EON2Hzn5vO","display_url":"pic.twitter.com\/EON2Hzn5vO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187839659277029377\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":1280,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187839652130017280,"id_str":"1187839652130017280","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHwN3sNVUAAeqTX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHwN3sNVUAAeqTX.jpg","url":"https:\/\/t.co\/EON2Hzn5vO","display_url":"pic.twitter.com\/EON2Hzn5vO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187839659277029377\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":1280,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1187839652205449216,"id_str":"1187839652205449216","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHwN3sfUUAA7JmD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHwN3sfUUAA7JmD.jpg","url":"https:\/\/t.co\/EON2Hzn5vO","display_url":"pic.twitter.com\/EON2Hzn5vO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187839659277029377\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":1280,"h":960,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 29 11:39:17 +0000 2019","id":1189144673123745794,"id_str":"1189144673123745794","full_text":"@DrTerriC + So sorry we didn\u2019t get to catch up much @AECT last week! #aect19inspired","truncated":false,"display_text_range":[0,82],"entities":{"hashtags":[{"text":"aect19inspired","indices":[67,82]}],"symbols":[],"user_mentions":[{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[0,9]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[50,55]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":466078904,"in_reply_to_user_id_str":"466078904","in_reply_to_screen_name":"DrTerriC","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"189ef793a6dbbfc8","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/189ef793a6dbbfc8.json","place_type":"city","name":"Irmo","full_name":"Irmo, + SC","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-81.257113,34.04725],[-81.132587,34.04725],[-81.132587,34.170797],[-81.257113,34.170797]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 29 14:26:04 +0000 2019","id":1189186644399673344,"id_str":"1189186644399673344","full_text":"Interested + in earning comped hotel rooms in Las Vegas? Here is how I earned free accomodations + for #devlearn and #aect19 https:\/\/t.co\/Ov4Cf9dYFl https:\/\/t.co\/YrUFKmhiJ0","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"devlearn","indices":[99,108]},{"text":"aect19","indices":[113,120]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Ov4Cf9dYFl","expanded_url":"https:\/\/buff.ly\/31VyM1B","display_url":"buff.ly\/31VyM1B","indices":[121,144]}],"media":[{"id":1189186641497214976,"id_str":"1189186641497214976","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EIDW8yoU0AAaSsd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIDW8yoU0AAaSsd.jpg","url":"https:\/\/t.co\/YrUFKmhiJ0","display_url":"pic.twitter.com\/YrUFKmhiJ0","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1189186644399673344\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":458,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":808,"resize":"fit"},"large":{"w":1330,"h":896,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1189186641497214976,"id_str":"1189186641497214976","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EIDW8yoU0AAaSsd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIDW8yoU0AAaSsd.jpg","url":"https:\/\/t.co\/YrUFKmhiJ0","display_url":"pic.twitter.com\/YrUFKmhiJ0","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1189186644399673344\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":458,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":808,"resize":"fit"},"large":{"w":1330,"h":896,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 28 17:44:24 +0000 2019","id":1188874166507921408,"id_str":"1188874166507921408","full_text":"RT + @techedges: I''m so thrilled to co-present with @utexascoe #TexasCI #UTLT + doc students, Yin Hong Cheah & Yi Shi, our research on preservi\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"TexasCI","indices":[61,69]},{"text":"UTLT","indices":[70,75]}],"symbols":[],"user_mentions":[{"screen_name":"techedges","name":"Dr. + Joan E. Hughes","id":19613812,"id_str":"19613812","indices":[3,13]},{"screen_name":"utexascoe","name":"College + of Education","id":19671331,"id_str":"19671331","indices":[50,60]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":776465862291226625,"id_str":"776465862291226625","name":"Yi + Shi","screen_name":"yiyishishi","location":"United States","description":"Doctoral + student in Learning Technologies, The University of Texas at Austin. English + language learner.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":51,"listed_count":0,"created_at":"Thu + Sep 15 17:01:02 +0000 2016","favourites_count":6,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1118541789961625600\/3XQQc8MZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1118541789961625600\/3XQQc8MZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/776465862291226625\/1503638183","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 19:49:37 +0000 2019","id":1187818515228692480,"id_str":"1187818515228692480","full_text":"I''m + so thrilled to co-present with @utexascoe #TexasCI #UTLT doc students, Yin + Hong Cheah & Yi Shi, our research on preservice and inservice teachers'' + pedagogical reasoning for their valued #edtech #aect19inspired @AECT https:\/\/t.co\/Zlx8dUrhb9","truncated":false,"display_text_range":[0,223],"entities":{"hashtags":[{"text":"TexasCI","indices":[46,54]},{"text":"UTLT","indices":[55,60]},{"text":"edtech","indices":[194,201]},{"text":"aect19inspired","indices":[202,217]}],"symbols":[],"user_mentions":[{"screen_name":"utexascoe","name":"College + of Education","id":19671331,"id_str":"19671331","indices":[35,45]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[218,223]}],"urls":[],"media":[{"id":1187818465098375175,"id_str":"1187818465098375175","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv6mcXWoAcEDna.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv6mcXWoAcEDna.jpg","url":"https:\/\/t.co\/Zlx8dUrhb9","display_url":"pic.twitter.com\/Zlx8dUrhb9","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187818515228692480\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187818465098375175,"id_str":"1187818465098375175","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv6mcXWoAcEDna.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv6mcXWoAcEDna.jpg","url":"https:\/\/t.co\/Zlx8dUrhb9","display_url":"pic.twitter.com\/Zlx8dUrhb9","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187818515228692480\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187818465098436608,"id_str":"1187818465098436608","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv6mcXXkAAnoNL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv6mcXXkAAnoNL.jpg","url":"https:\/\/t.co\/Zlx8dUrhb9","display_url":"pic.twitter.com\/Zlx8dUrhb9","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187818515228692480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187818465098379266,"id_str":"1187818465098379266","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv6mcXWsAIn3GZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv6mcXWsAIn3GZ.jpg","url":"https:\/\/t.co\/Zlx8dUrhb9","display_url":"pic.twitter.com\/Zlx8dUrhb9","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187818515228692480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187818465098379265,"id_str":"1187818465098379265","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv6mcXWsAEK0LP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv6mcXWsAEK0LP.jpg","url":"https:\/\/t.co\/Zlx8dUrhb9","display_url":"pic.twitter.com\/Zlx8dUrhb9","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187818515228692480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19613812,"id_str":"19613812","name":"Dr. + Joan E. Hughes","screen_name":"techedges","location":"Austin, TX","description":"Prof, + Learning Technologies, UT Austin. Researcher, teacher, writer: tech integration + in schools, teacher educ & PD. Author:https:\/\/t.co\/p12V06CqJU","url":"https:\/\/t.co\/0V3yBaAOKy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0V3yBaAOKy","expanded_url":"http:\/\/techedges.org","display_url":"techedges.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/p12V06CqJU","expanded_url":"http:\/\/bit.ly\/IntegratingEdTech","display_url":"bit.ly\/IntegratingEdT\u2026","indices":[124,147]}]}},"protected":false,"followers_count":1646,"friends_count":2355,"listed_count":158,"created_at":"Tue + Jan 27 20:26:10 +0000 2009","favourites_count":722,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2871,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEBB2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431552022538510336\/qGc8ZRJj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431552022538510336\/qGc8ZRJj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19613812\/1408660446","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 28 00:02:58 +0000 2019","id":1188607047425810432,"id_str":"1188607047425810432","full_text":"RT + @DKSch: #aect19inspired mostly smiling champions. https:\/\/t.co\/JuSeJWCfJY","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]}],"symbols":[],"user_mentions":[{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[3,9]}],"urls":[],"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}},"source_status_id":1187033028100415488,"source_status_id_str":"1187033028100415488","source_user_id":38657815,"source_user_id_str":"38657815"}]},"extended_entities":{"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}},"source_status_id":1187033028100415488,"source_status_id_str":"1187033028100415488","source_user_id":38657815,"source_user_id_str":"38657815","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:48:22 +0000 2019","id":1187033028100415488,"id_str":"1187033028100415488","full_text":"#aect19inspired + mostly smiling champions. https:\/\/t.co\/JuSeJWCfJY","truncated":false,"display_text_range":[0,41],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 26 16:52:58 +0000 2019","id":1188136449805152258,"id_str":"1188136449805152258","full_text":"RT + @FredWBaker: Please consider submitting a proposal for the Systems Thinking + & Change Division''s special issue of @AECTTechTrends!! #aect\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[120,135]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 22:26:19 +0000 2019","id":1186770788797411328,"id_str":"1186770788797411328","full_text":"Please + consider submitting a proposal for the Systems Thinking & Change Division''s + special issue of @AECTTechTrends!! #aect19 #aectstc #aect19inspired https:\/\/t.co\/nQzSaUhgi2","truncated":false,"display_text_range":[0,178],"entities":{"hashtags":[{"text":"aect19","indices":[122,129]},{"text":"aectstc","indices":[130,138]},{"text":"aect19inspired","indices":[139,154]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[104,119]}],"urls":[{"url":"https:\/\/t.co\/nQzSaUhgi2","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[155,178]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 27 19:05:04 +0000 2019","id":1188532082001231876,"id_str":"1188532082001231876","full_text":"Loved + the presentation and discussion together @ekowch @rajansock @HoyetHemphill + @AECT #aect19inspired #aect19 Hope to see more work done together! https:\/\/t.co\/0id4kZLqWv","truncated":false,"display_text_range":[0,147],"entities":{"hashtags":[{"text":"aect19inspired","indices":[87,102]},{"text":"aect19","indices":[103,110]}],"symbols":[],"user_mentions":[{"screen_name":"ekowch","name":"Dr. + Eugene Kowch","id":28518944,"id_str":"28518944","indices":[47,54]},{"screen_name":"rajansock","name":"Beth + Rajan Sockman","id":117219740,"id_str":"117219740","indices":[55,65]},{"screen_name":"HoyetHemphill","name":"hh-hemphill@wiu.edu","id":787473427909189632,"id_str":"787473427909189632","indices":[66,80]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[81,86]}],"urls":[],"media":[{"id":1188532075399405569,"id_str":"1188532075399405569","indices":[148,171],"media_url":"http:\/\/pbs.twimg.com\/media\/EH6DoB5W4AEfMYI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH6DoB5W4AEfMYI.jpg","url":"https:\/\/t.co\/0id4kZLqWv","display_url":"pic.twitter.com\/0id4kZLqWv","expanded_url":"https:\/\/twitter.com\/jjm09\/status\/1188532082001231876\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1188532075399405569,"id_str":"1188532075399405569","indices":[148,171],"media_url":"http:\/\/pbs.twimg.com\/media\/EH6DoB5W4AEfMYI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH6DoB5W4AEfMYI.jpg","url":"https:\/\/t.co\/0id4kZLqWv","display_url":"pic.twitter.com\/0id4kZLqWv","expanded_url":"https:\/\/twitter.com\/jjm09\/status\/1188532082001231876\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":72457436,"id_str":"72457436","name":"J. + Mao","screen_name":"jjm09","location":"Pennsylvania, USA","description":"Associate + Professor of Educational Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":346,"friends_count":478,"listed_count":13,"created_at":"Tue + Sep 08 03:09:14 +0000 2009","favourites_count":1406,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":912,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927670955761192960\/UYh5XPB8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927670955761192960\/UYh5XPB8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/72457436\/1576084667","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0026FF","profile_sidebar_border_color":"B1D3E6","profile_sidebar_fill_color":"B6F07F","profile_text_color":"121112","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 28 21:00:55 +0000 2019","id":1188923623203049473,"id_str":"1188923623203049473","full_text":"Doh. + Just realized the @aect app had an Apple Watch extension. Would have been + handy last week. #aect19inspired https:\/\/t.co\/7ouFkBrCuW","truncated":false,"display_text_range":[0,112],"entities":{"hashtags":[{"text":"aect19inspired","indices":[97,112]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[23,28]}],"urls":[],"media":[{"id":1188923619365343234,"id_str":"1188923619365343234","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/EH_nu41X0AIAgbi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH_nu41X0AIAgbi.jpg","url":"https:\/\/t.co\/7ouFkBrCuW","display_url":"pic.twitter.com\/7ouFkBrCuW","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1188923623203049473\/photo\/1","type":"photo","sizes":{"medium":{"w":312,"h":390,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":312,"h":390,"resize":"fit"},"small":{"w":312,"h":390,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1188923619365343234,"id_str":"1188923619365343234","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/EH_nu41X0AIAgbi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EH_nu41X0AIAgbi.jpg","url":"https:\/\/t.co\/7ouFkBrCuW","display_url":"pic.twitter.com\/7ouFkBrCuW","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1188923623203049473\/photo\/1","type":"photo","sizes":{"medium":{"w":312,"h":390,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":312,"h":390,"resize":"fit"},"small":{"w":312,"h":390,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"27de1a6e27075587","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/27de1a6e27075587.json","place_type":"city","name":"Norman","full_name":"Norman, + OK","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-97.51982,35.15327],[-97.370527,35.15327],[-97.370527,35.291332],[-97.51982,35.291332]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 27 15:15:44 +0000 2019","id":1188474364800458752,"id_str":"1188474364800458752","full_text":"The + Uber driver to airport, 25-year-old Jos\u00e9 came to US at 11 with his parents + from Cuba. he has tried different types of business with very limited funding + source. He is smart, knowing Vegas market partnership; kind to homeless people + #AECT19, #AECT19inspired #attentiontopeole","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"AECT19","indices":[236,243]},{"text":"AECT19inspired","indices":[245,260]},{"text":"attentiontopeole","indices":[261,278]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 19:45:22 +0000 2019","id":1188179834171604992,"id_str":"1188179834171604992","full_text":"RT + @arasbozkurt: Rise and shine #AECT19 - Social network Analysis for #AECT with + NodeXL https:\/\/t.co\/MIQz1GdWlT\n@aect\n@michaelmgrant\n@drter\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[32,39]},{"text":"AECT","indices":[70,75]}],"symbols":[],"user_mentions":[{"screen_name":"arasbozkurt","name":"Aras + Bozkurt","id":83447547,"id_str":"83447547","indices":[3,15]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[112,117]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[118,132]}],"urls":[{"url":"https:\/\/t.co\/MIQz1GdWlT","expanded_url":"http:\/\/bit.ly\/2N9hUPr","display_url":"bit.ly\/2N9hUPr","indices":[88,111]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 13:54:27 +0000 2019","id":1187366745977348102,"id_str":"1187366745977348102","full_text":"Rise + and shine #AECT19 - Social network Analysis for #AECT with NodeXL https:\/\/t.co\/MIQz1GdWlT\n@aect\n@michaelmgrant\n@drterric\n@caranorth11\n@islt_fsu\n@dksch\n@wilsoninedu\n@drvirtuality\n@eromerohall\n@robmoore3\n\nTop + hashtags:\n#aect19\n#aect19inspired\n#aect2019\n#aect\n#fsu\n#fsucoe\n#islt + https:\/\/t.co\/zTCol3vWgv","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[15,22]},{"text":"AECT","indices":[53,58]},{"text":"aect19","indices":[222,229]},{"text":"aect19inspired","indices":[230,245]},{"text":"aect2019","indices":[246,255]},{"text":"aect","indices":[256,261]},{"text":"fsu","indices":[262,266]},{"text":"fsucoe","indices":[267,274]},{"text":"islt","indices":[275,280]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[95,100]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[101,115]},{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[116,125]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[126,138]},{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[139,148]},{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[149,155]},{"screen_name":"WilsonInEdu","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","id":489118534,"id_str":"489118534","indices":[156,168]},{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[169,182]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[183,195]},{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[196,206]}],"urls":[{"url":"https:\/\/t.co\/MIQz1GdWlT","expanded_url":"http:\/\/bit.ly\/2N9hUPr","display_url":"bit.ly\/2N9hUPr","indices":[71,94]}],"media":[{"id":1187366622094331905,"id_str":"1187366622094331905","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","url":"https:\/\/t.co\/zTCol3vWgv","display_url":"pic.twitter.com\/zTCol3vWgv","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187366745977348102\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1578,"resize":"fit"},"medium":{"w":1200,"h":925,"resize":"fit"},"small":{"w":680,"h":524,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187366622094331905,"id_str":"1187366622094331905","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","url":"https:\/\/t.co\/zTCol3vWgv","display_url":"pic.twitter.com\/zTCol3vWgv","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187366745977348102\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1578,"resize":"fit"},"medium":{"w":1200,"h":925,"resize":"fit"},"small":{"w":680,"h":524,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 27 10:46:14 +0000 2019","id":1188406546184708096,"id_str":"1188406546184708096","full_text":"RT + @christieliuidtr: More collaborations from Honduras, Ukraine and other countries + @aectclt @AECT #aect19, looking forward to the growth o\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[99,106]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[84,92]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[93,98]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 23:40:09 +0000 2019","id":1187876531193823237,"id_str":"1187876531193823237","full_text":"More + collaborations from Honduras, Ukraine and other countries @aectclt @AECT #aect19, + looking forward to the growth of #IRCEES https:\/\/t.co\/eOXKphRXsS https:\/\/t.co\/4qv3X7t4wy","truncated":false,"display_text_range":[0,151],"entities":{"hashtags":[{"text":"aect19","indices":[78,85]},{"text":"IRCEES","indices":[120,127]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[63,71]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[72,77]}],"urls":[{"url":"https:\/\/t.co\/eOXKphRXsS","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187788514324140032","display_url":"twitter.com\/nicolapallitt\/\u2026","indices":[128,151]}],"media":[{"id":1187876500986400774,"id_str":"1187876500986400774","indices":[152,175],"media_url":"http:\/\/pbs.twimg.com\/media\/EHwvYk5UEAYR46i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHwvYk5UEAYR46i.jpg","url":"https:\/\/t.co\/4qv3X7t4wy","display_url":"pic.twitter.com\/4qv3X7t4wy","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187876531193823237\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187876500986400774,"id_str":"1187876500986400774","indices":[152,175],"media_url":"http:\/\/pbs.twimg.com\/media\/EHwvYk5UEAYR46i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHwvYk5UEAYR46i.jpg","url":"https:\/\/t.co\/4qv3X7t4wy","display_url":"pic.twitter.com\/4qv3X7t4wy","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187876531193823237\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187876500978094080,"id_str":"1187876500978094080","indices":[152,175],"media_url":"http:\/\/pbs.twimg.com\/media\/EHwvYk3VUAASsla.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHwvYk3VUAASsla.jpg","url":"https:\/\/t.co\/4qv3X7t4wy","display_url":"pic.twitter.com\/4qv3X7t4wy","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187876531193823237\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187788514324140032,"quoted_status_id_str":"1187788514324140032","quoted_status_permalink":{"url":"https:\/\/t.co\/eOXKphRXsS","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1187788514324140032","display":"twitter.com\/nicolapallitt\/\u2026"},"quoted_status":{"created_at":"Fri + Oct 25 17:50:24 +0000 2019","id":1187788514324140032,"id_str":"1187788514324140032","full_text":"#IRCEES + using @zoom_us at @AECT @aectclt to bring in collaborators who couldn''t be + at the conference & enable a broader diversity of voices #aect19inspired + https:\/\/t.co\/FoSZQHt4Er","truncated":false,"display_text_range":[0,159],"entities":{"hashtags":[{"text":"IRCEES","indices":[0,7]},{"text":"aect19inspired","indices":[144,159]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[26,31]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[32,40]}],"urls":[],"media":[{"id":1187788506518568960,"id_str":"1187788506518568960","indices":[160,183],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvfWn9UwAAam64.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvfWn9UwAAam64.jpg","url":"https:\/\/t.co\/FoSZQHt4Er","display_url":"pic.twitter.com\/FoSZQHt4Er","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187788514324140032\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187788506518568960,"id_str":"1187788506518568960","indices":[160,183],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvfWn9UwAAam64.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvfWn9UwAAam64.jpg","url":"https:\/\/t.co\/FoSZQHt4Er","display_url":"pic.twitter.com\/FoSZQHt4Er","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187788514324140032\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1187788514324140032,"quoted_status_id_str":"1187788514324140032","quoted_status_permalink":{"url":"https:\/\/t.co\/eOXKphRXsS","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1187788514324140032","display":"twitter.com\/nicolapallitt\/\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 27 13:39:50 +0000 2019","id":1188450230867509248,"id_str":"1188450230867509248","full_text":"RT + @hodgesc So true! Many thanks to @michaelmgrant Dr. Phil Harris, @dctrcurry + @AECT, @aectclt @srogidd, Dr. Deepak, @SICET @ll351 @Happy_Tao for the many + hours and shared intelligence on #aect19 #aect19inspired for us! Looking forward + to helping #aect20 planning with Dr @ge_xun https:\/\/t.co\/1vlqNRPR9a","truncated":false,"display_text_range":[0,279],"entities":{"hashtags":[{"text":"aect19","indices":[188,195]},{"text":"aect19inspired","indices":[196,211]},{"text":"aect20","indices":[247,254]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[36,50]},{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[68,78]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[79,84]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[86,94]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[95,103]},{"screen_name":"SICET","name":"SICET","id":114832274,"id_str":"114832274","indices":[117,123]},{"screen_name":"ll351","name":"Lin + Lin","id":23219752,"id_str":"23219752","indices":[124,130]},{"screen_name":"Happy_Tao","name":"Hengtao + Tang","id":482227724,"id_str":"482227724","indices":[131,141]},{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[272,279]}],"urls":[{"url":"https:\/\/t.co\/1vlqNRPR9a","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187485376643944448","display_url":"twitter.com\/hodgesc\/status\u2026","indices":[280,303]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187485376643944448,"quoted_status_id_str":"1187485376643944448","quoted_status_permalink":{"url":"https:\/\/t.co\/1vlqNRPR9a","expanded":"https:\/\/twitter.com\/hodgesc\/status\/1187485376643944448","display":"twitter.com\/hodgesc\/status\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 21:45:50 +0000 2019","id":1187485376643944448,"id_str":"1187485376643944448","full_text":"Two + gentle who inspire me! @michaelmgrant and Dr. Phil Harris. Many thanks for + the hours they\u2019ve spent creating #aect19inspired for us! #rockinthebowtie + #rockinnotie https:\/\/t.co\/yyhnoLSa14","truncated":false,"display_text_range":[0,165],"entities":{"hashtags":[{"text":"aect19inspired","indices":[112,127]},{"text":"rockinthebowtie","indices":[136,152]},{"text":"rockinnotie","indices":[153,165]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[27,41]}],"urls":[],"media":[{"id":1187485372168593408,"id_str":"1187485372168593408","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrLp4gU4AAY6oO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrLp4gU4AAY6oO.jpg","url":"https:\/\/t.co\/yyhnoLSa14","display_url":"pic.twitter.com\/yyhnoLSa14","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187485376643944448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187485372168593408,"id_str":"1187485372168593408","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrLp4gU4AAY6oO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrLp4gU4AAY6oO.jpg","url":"https:\/\/t.co\/yyhnoLSa14","display_url":"pic.twitter.com\/yyhnoLSa14","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187485376643944448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 29 16:52:39 +0000 2019","id":1189223534230421504,"id_str":"1189223534230421504","full_text":"Dont + know about the rest of ya... I keep having these \u201cCome play with us, + Danny\u201d moments at that Las Vegas hotel....#AECT19 https:\/\/t.co\/0WmoqAfuCT","truncated":false,"display_text_range":[0,123],"entities":{"hashtags":[{"text":"AECT19","indices":[116,123]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1189223528815648768,"id_str":"1189223528815648768","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/media\/EID4f6mX4AAXc7s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EID4f6mX4AAXc7s.jpg","url":"https:\/\/t.co\/0WmoqAfuCT","display_url":"pic.twitter.com\/0WmoqAfuCT","expanded_url":"https:\/\/twitter.com\/distance_edu\/status\/1189223534230421504\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1189223528815648768,"id_str":"1189223528815648768","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/media\/EID4f6mX4AAXc7s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EID4f6mX4AAXc7s.jpg","url":"https:\/\/t.co\/0WmoqAfuCT","display_url":"pic.twitter.com\/0WmoqAfuCT","expanded_url":"https:\/\/twitter.com\/distance_edu\/status\/1189223534230421504\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37890447,"id_str":"37890447","name":"M. + D. Rogers","screen_name":"MDRogers360","location":"","description":"Michelle + is my name and innovation and creativity is my game. A feed about this and + that, ed tech, work, writing, and more.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":500,"friends_count":571,"listed_count":34,"created_at":"Tue + May 05 09:21:16 +0000 2009","favourites_count":58,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1132,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1216550885385482240\/_KpnmYjr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216550885385482240\/_KpnmYjr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37890447\/1400079389","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 28 19:47:29 +0000 2019","id":1188905142424408066,"id_str":"1188905142424408066","full_text":"I + love this! This is so important and a necessity for the classroom #aect19 #aect19inspired + #eme2040 #fsu2040","truncated":false,"display_text_range":[0,110],"entities":{"hashtags":[{"text":"aect19","indices":[68,75]},{"text":"aect19inspired","indices":[77,92]},{"text":"eme2040","indices":[93,101]},{"text":"fsu2040","indices":[102,110]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1168887502817697794,"id_str":"1168887502817697794","name":"caroline","screen_name":"carolinem2040","location":"","description":"EME + 2040\ud83e\udd13\ud83d\udcd5\u270f\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":18,"listed_count":0,"created_at":"Tue + Sep 03 14:04:40 +0000 2019","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":36,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1168888173704949765\/FFnAmK2a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1168888173704949765\/FFnAmK2a_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 19:27:35 +0000 2019","id":1188175358241075201,"id_str":"1188175358241075201","full_text":"RT + @ChangeIt4Better: Online Students\u2019 perspectives joint session with Eunjyu + Yu sharing results from a writing class study & the dispositio\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ChangeIt4Better","name":"Dr. + Suzanne Ensmann","id":1596150056,"id_str":"1596150056","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 00:26:33 +0000 2019","id":1187163432161689600,"id_str":"1187163432161689600","full_text":"Online + Students\u2019 perspectives joint session with Eunjyu Yu sharing results from + a writing class study & the disposition of the online learner (DOL) instrument + published in the Journal of Strategic Innovation and Sustainability (Ensmann, + Wilson, Johnston, Almerico, 2019) #aect2019 https:\/\/t.co\/Jo96Q5u3A5","truncated":false,"display_text_range":[0,284],"entities":{"hashtags":[{"text":"aect2019","indices":[275,284]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187163421797543936,"id_str":"1187163421797543936","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmm156UcAA2ORL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmm156UcAA2ORL.jpg","url":"https:\/\/t.co\/Jo96Q5u3A5","display_url":"pic.twitter.com\/Jo96Q5u3A5","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187163432161689600\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187163421797543936,"id_str":"1187163421797543936","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmm156UcAA2ORL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmm156UcAA2ORL.jpg","url":"https:\/\/t.co\/Jo96Q5u3A5","display_url":"pic.twitter.com\/Jo96Q5u3A5","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187163432161689600\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187163421843681285,"id_str":"1187163421843681285","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmm16FUcAUTTeA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmm16FUcAUTTeA.jpg","url":"https:\/\/t.co\/Jo96Q5u3A5","display_url":"pic.twitter.com\/Jo96Q5u3A5","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187163432161689600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187163421843673089,"id_str":"1187163421843673089","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmm16FUUAEr7s9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmm16FUUAEr7s9.jpg","url":"https:\/\/t.co\/Jo96Q5u3A5","display_url":"pic.twitter.com\/Jo96Q5u3A5","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187163432161689600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187163421835313152,"id_str":"1187163421835313152","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmm16DUwAA8upb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmm16DUwAA8upb.jpg","url":"https:\/\/t.co\/Jo96Q5u3A5","display_url":"pic.twitter.com\/Jo96Q5u3A5","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187163432161689600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 27 15:23:20 +0000 2019","id":1188476279982641152,"id_str":"1188476279982641152","full_text":"RT + @NeumannKL: Shout out and congratulations to @AECT member @bobbodily who is + THE #aect19 hero that helped the grad student escape from th\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[83,90]}],"symbols":[],"user_mentions":[{"screen_name":"NeumannKL","name":"Dr. + Kalianne L. Neumann","id":281735316,"id_str":"281735316","indices":[3,13]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[48,53]},{"screen_name":"BobBodily","name":"\ud83d\udd77 + Bob Bodily, PhD \ud83d\udc4b \ud83d\udd77","id":3140748877,"id_str":"3140748877","indices":[61,71]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":91361410,"id_str":"91361410","name":"Frances + Alvarado","screen_name":"francesmarg","location":"Earth","description":"Learning, + Design, & Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":146,"listed_count":1,"created_at":"Fri + Nov 20 15:25:28 +0000 2009","favourites_count":3639,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":567,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1333933432435568645\/WGnKKjwS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1333933432435568645\/WGnKKjwS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/91361410\/1533572819","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 27 13:19:55 +0000 2019","id":1188445220821753856,"id_str":"1188445220821753856","full_text":"Shout + out and congratulations to @AECT member @bobbodily who is THE #aect19 hero + that helped the grad student escape from the elevator (in the Digital Escape + Room developed during the @tedaect Inspire! session)! #aect19inspired https:\/\/t.co\/QLaKxiPRPX","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"aect19","indices":[68,75]},{"text":"aect19inspired","indices":[212,227]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[33,38]},{"screen_name":"BobBodily","name":"\ud83d\udd77 + Bob Bodily, PhD \ud83d\udc4b \ud83d\udd77","id":3140748877,"id_str":"3140748877","indices":[46,56]},{"screen_name":"tedaect","name":"TED + AECT","id":2165058337,"id_str":"2165058337","indices":[184,192]}],"urls":[{"url":"https:\/\/t.co\/QLaKxiPRPX","expanded_url":"https:\/\/twitter.com\/NeumannKL\/status\/1188173551301513217","display_url":"twitter.com\/NeumannKL\/stat\u2026","indices":[228,251]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":281735316,"id_str":"281735316","name":"Dr. + Kalianne L. Neumann","screen_name":"NeumannKL","location":"Stillwater, OK","description":"Assistant + Professor \u2013 Oklahoma State University \u2013 Learning, Design, and Technology","url":"https:\/\/t.co\/C5ihHdSiId","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/C5ihHdSiId","expanded_url":"http:\/\/bit.ly\/RevisionAssistanttoo","display_url":"bit.ly\/RevisionAssist\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":200,"friends_count":194,"listed_count":15,"created_at":"Wed + Apr 13 21:33:05 +0000 2011","favourites_count":445,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":276,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281735316\/1412853928","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1188173551301513217,"quoted_status_id_str":"1188173551301513217","quoted_status_permalink":{"url":"https:\/\/t.co\/QLaKxiPRPX","expanded":"https:\/\/twitter.com\/NeumannKL\/status\/1188173551301513217","display":"twitter.com\/NeumannKL\/stat\u2026"},"quoted_status":{"created_at":"Sat + Oct 26 19:20:24 +0000 2019","id":1188173551301513217,"id_str":"1188173551301513217","full_text":"Do + you miss being at #AECT19? Stay #aect19inspired with the @AECT Digital Escape + Room created at our (@francesmarg & @RachelYLKim) @tedaect Inspire! session + on Friday at 10am! First ones to help the grad student escape get a shout + out on Twitter!\n\nhttps:\/\/t.co\/qDgkgLOlec","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"AECT19","indices":[21,28]},{"text":"aect19inspired","indices":[35,50]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[60,65]},{"screen_name":"francesmarg","name":"Frances + Alvarado","id":91361410,"id_str":"91361410","indices":[102,114]},{"screen_name":"tedaect","name":"TED + AECT","id":2165058337,"id_str":"2165058337","indices":[135,143]}],"urls":[{"url":"https:\/\/t.co\/qDgkgLOlec","expanded_url":"https:\/\/sites.google.com\/view\/aect-digital-escape-room\/","display_url":"sites.google.com\/view\/aect-digi\u2026","indices":[252,275]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":281735316,"id_str":"281735316","name":"Dr. + Kalianne L. Neumann","screen_name":"NeumannKL","location":"Stillwater, OK","description":"Assistant + Professor \u2013 Oklahoma State University \u2013 Learning, Design, and Technology","url":"https:\/\/t.co\/C5ihHdSiId","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/C5ihHdSiId","expanded_url":"http:\/\/bit.ly\/RevisionAssistanttoo","display_url":"bit.ly\/RevisionAssist\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":200,"friends_count":194,"listed_count":15,"created_at":"Wed + Apr 13 21:33:05 +0000 2011","favourites_count":445,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":276,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281735316\/1412853928","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1188173551301513217,"quoted_status_id_str":"1188173551301513217","quoted_status_permalink":{"url":"https:\/\/t.co\/QLaKxiPRPX","expanded":"https:\/\/twitter.com\/NeumannKL\/status\/1188173551301513217","display":"twitter.com\/NeumannKL\/stat\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 28 03:35:14 +0000 2019","id":1188660467675385856,"id_str":"1188660467675385856","full_text":"RT + @jjm09: Attended the TIL luncheon and love the emphasis on technology, leadership, + practitioners, and research; this would be ideal for\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jjm09","name":"J. + Mao","id":72457436,"id_str":"72457436","indices":[3,9]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/www.TechingCrew.com\" rel=\"nofollow\"\u003eSocialCrew Crafty\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3636807435,"id_str":"3636807435","name":"SchoolSpiritApps","screen_name":"SchoolSportsApp","location":"New + Jersey, USA","description":"We build apps for free to promote your school + sports. Why wait? It''s free.","url":"https:\/\/t.co\/fQ6c2H2x2T","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fQ6c2H2x2T","expanded_url":"http:\/\/www.SchoolSpiritApps.com","display_url":"SchoolSpiritApps.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":394,"friends_count":94,"listed_count":256,"created_at":"Sun + Sep 13 01:02:08 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":22517,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653010068468813824\/PkiXjteg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653010068468813824\/PkiXjteg_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3636807435\/1444524041","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 27 18:57:24 +0000 2019","id":1188530151975510016,"id_str":"1188530151975510016","full_text":"Attended + the TIL luncheon and love the emphasis on technology, leadership, practitioners, + and research; this would be ideal for doctoral candidates or graduates from + our Ed.D program @AECT @michelestork #aect19inspired #aect #edtech @WilkesEdD","truncated":false,"display_text_range":[0,243],"entities":{"hashtags":[{"text":"aect19inspired","indices":[203,218]},{"text":"aect","indices":[219,224]},{"text":"edtech","indices":[225,232]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[183,188]},{"screen_name":"michelestork","name":"Dr. + Michele Stork","id":36073247,"id_str":"36073247","indices":[189,202]},{"screen_name":"WilkesEdD","name":"Wilkes + U Ed.D.","id":753609720972337152,"id_str":"753609720972337152","indices":[233,243]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":72457436,"id_str":"72457436","name":"J. + Mao","screen_name":"jjm09","location":"Pennsylvania, USA","description":"Associate + Professor of Educational Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":346,"friends_count":478,"listed_count":13,"created_at":"Tue + Sep 08 03:09:14 +0000 2009","favourites_count":1406,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":912,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/927670955761192960\/UYh5XPB8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/927670955761192960\/UYh5XPB8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/72457436\/1576084667","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0026FF","profile_sidebar_border_color":"B1D3E6","profile_sidebar_fill_color":"B6F07F","profile_text_color":"121112","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1187978001943875584%2C1187960612695019521%2C1187939337998159877%2C1187926326369509377%2C1187925595084091392%2C1187925595084091392%2C1187914858290806784%2C1187914325341589504%2C1187912949077364737%2C1187911764056268802%2C1187911764056268802%2C1187910148892704768%2C1187899155445886976%2C1187896912684306432%2C1187896912684306432%2C1187891501193404416%2C1187887589526818818%2C1187883200275779584%2C1187883200275779584%2C1187876531193823237%2C1187874291058118657%2C1187873812504645634%2C1187873417497726977%2C1187873074730815488%2C1187873000177074176%2C1187872764029390848%2C1187872447241932800%2C1187871710139342849%2C1187867574102441984%2C1187865429198462976%2C1187865429198462976%2C1187863946340044800%2C1187861783354019840%2C1187861084079710209%2C1187857239215869952%2C1187857141543112704%2C1187856024742576128%2C1187855902696718341%2C1187855624660488197%2C1187855526585143298%2C1187853793096060928%2C1187853729573281800%2C1187853237401067525%2C1187853187241390080%2C1187853088306225153%2C1187852956214935553%2C1187852956214935553%2C1187845800182931456%2C1187843652178960384%2C1187842010079793152%2C1187839659277029377%2C1187839659277029377%2C1187829372016828416%2C1187828774294953985%2C1187825111786754050%2C1187820454133633024%2C1187820300676861956%2C1187820300676861956%2C1187819360917680128%2C1187818968410574848%2C1187818515228692480%2C1187817947651133440%2C1187817883381796864%2C1187817322238529536%2C1187817045024559104%2C1187816799678545922%2C1187816650160123906%2C1187815622085885952%2C1187815186008199169%2C1187815113631453186%2C1187813588146110464%2C1187813167637782528%2C1187812359399600128%2C1187811773946060800%2C1187809483210313728%2C1187809348602347520%2C1187808682035138560%2C1187808656328253440%2C1187808312777232385%2C1187807836744617987%2C1187807157296779271%2C1187806779289284609%2C1187806756732329984%2C1187806756732329984%2C1187803627924013057%2C1187803625185144832%2C1187802642262589440%2C1187802201361502208%2C1187800427544268800%2C1187800314021154816%2C1187799677929787392%2C1187799133182033920%2C1187798075504394240%2C1187797503258660864%2C1187797305056849920%2C1187796084766101510%2C1187796037127168003%2C1187795535391944704%2C1187795208781459456%2C1187795200640339968&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:41 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:41 GMT + x-transaction: 6e60d41cd74e2ff9 + content-length: '62721' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '291' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '344' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Fri Oct 25 22:18:11 +0000 2019","id":1187855902696718341,"id_str":"1187855902696718341","full_text":"RT + @FakeBobGagne: Time to head home #aect19 peeps. Great job everyone! See you + next year? https:\/\/t.co\/oOFVcSXkQB","truncated":false,"display_text_range":[0,114],"entities":{"hashtags":[{"text":"aect19","indices":[36,43]}],"symbols":[],"user_mentions":[{"screen_name":"FakeBobGagne","name":"FakeBobGagne","id":4130346912,"id_str":"4130346912","indices":[3,16]}],"urls":[],"media":[{"id":1187808295303733249,"id_str":"1187808295303733249","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHvxWe7XYAEG-Cg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHvxWe7XYAEG-Cg.jpg","url":"https:\/\/t.co\/oOFVcSXkQB","display_url":"pic.twitter.com\/oOFVcSXkQB","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1187808312777232385\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":498,"h":278,"resize":"fit"},"small":{"w":498,"h":278,"resize":"fit"},"medium":{"w":498,"h":278,"resize":"fit"}},"source_status_id":1187808312777232385,"source_status_id_str":"1187808312777232385","source_user_id":4130346912,"source_user_id_str":"4130346912"}]},"extended_entities":{"media":[{"id":1187808295303733249,"id_str":"1187808295303733249","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHvxWe7XYAEG-Cg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHvxWe7XYAEG-Cg.jpg","url":"https:\/\/t.co\/oOFVcSXkQB","display_url":"pic.twitter.com\/oOFVcSXkQB","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1187808312777232385\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":498,"h":278,"resize":"fit"},"small":{"w":498,"h":278,"resize":"fit"},"medium":{"w":498,"h":278,"resize":"fit"}},"source_status_id":1187808312777232385,"source_status_id_str":"1187808312777232385","source_user_id":4130346912,"source_user_id_str":"4130346912","video_info":{"aspect_ratio":[249,139],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHvxWe7XYAEG-Cg.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 19:09:04 +0000 2019","id":1187808312777232385,"id_str":"1187808312777232385","full_text":"Time + to head home #aect19 peeps. Great job everyone! See you next year? https:\/\/t.co\/oOFVcSXkQB","truncated":false,"display_text_range":[0,72],"entities":{"hashtags":[{"text":"aect19","indices":[18,25]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187808295303733249,"id_str":"1187808295303733249","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHvxWe7XYAEG-Cg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHvxWe7XYAEG-Cg.jpg","url":"https:\/\/t.co\/oOFVcSXkQB","display_url":"pic.twitter.com\/oOFVcSXkQB","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1187808312777232385\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":498,"h":278,"resize":"fit"},"small":{"w":498,"h":278,"resize":"fit"},"medium":{"w":498,"h":278,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187808295303733249,"id_str":"1187808295303733249","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHvxWe7XYAEG-Cg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHvxWe7XYAEG-Cg.jpg","url":"https:\/\/t.co\/oOFVcSXkQB","display_url":"pic.twitter.com\/oOFVcSXkQB","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1187808312777232385\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":498,"h":278,"resize":"fit"},"small":{"w":498,"h":278,"resize":"fit"},"medium":{"w":498,"h":278,"resize":"fit"}},"video_info":{"aspect_ratio":[249,139],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHvxWe7XYAEG-Cg.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 23:31:15 +0000 2019","id":1187874291058118657,"id_str":"1187874291058118657","full_text":"Has + anyone found a purple suitcase with BSU materials in it? It was last seen + in Paradise North. #aect19 #aect19inspired @AECT","truncated":false,"display_text_range":[0,126],"entities":{"hashtags":[{"text":"aect19","indices":[97,104]},{"text":"aect19inspired","indices":[105,120]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[121,126]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2905458781,"id_str":"2905458781","name":"Ross + Perkins, PhD","screen_name":"DrRossPerkins","location":"Apex, NC","description":"Asc + Prof @ Boise State. EdS\/EdD ProgCoord. https:\/\/t.co\/8jp7WXqbV1 | Huge + listserv influencer, 1998-2006.","url":"https:\/\/t.co\/8jp7WXqbV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[43,66]}]}},"protected":false,"followers_count":773,"friends_count":485,"listed_count":21,"created_at":"Thu + Nov 20 19:52:09 +0000 2014","favourites_count":3672,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2751,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2905458781\/1618315302","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 22:09:48 +0000 2019","id":1187853793096060928,"id_str":"1187853793096060928","full_text":"RT + @ifenthaler: @AECT Safe travels #aect19inspired colleagues. Publish your new + ideas in Technology, Knowledge and Learning @SpringerEdu\u2026","truncated":false,"display_text_range":[0,137],"entities":{"hashtags":[{"text":"aect19inspired","indices":[35,50]}],"symbols":[],"user_mentions":[{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[3,14]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[16,21]},{"screen_name":"SpringerEdu","name":"Springer + Education","id":347188522,"id_str":"347188522","indices":[124,136]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 16:54:13 +0000 2019","id":1187774375338172417,"id_str":"1187774375338172417","full_text":"@AECT + Safe travels #aect19inspired colleagues. Publish your new ideas in Technology, + Knowledge and Learning @SpringerEdu \n\n#Edtech\n\nhttps:\/\/t.co\/3A6GsVRzRO + https:\/\/t.co\/rejJwM9VGt","truncated":false,"display_text_range":[0,155],"entities":{"hashtags":[{"text":"aect19inspired","indices":[19,34]},{"text":"Edtech","indices":[123,130]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]},{"screen_name":"SpringerEdu","name":"Springer + Education","id":347188522,"id_str":"347188522","indices":[108,120]}],"urls":[{"url":"https:\/\/t.co\/3A6GsVRzRO","expanded_url":"http:\/\/springer.com\/10758","display_url":"springer.com\/10758","indices":[132,155]}],"media":[{"id":1187774350382063617,"id_str":"1187774350382063617","indices":[156,179],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvSeoPX4AEsdrB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvSeoPX4AEsdrB.jpg","url":"https:\/\/t.co\/rejJwM9VGt","display_url":"pic.twitter.com\/rejJwM9VGt","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187774375338172417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":153,"h":229,"resize":"fit"},"medium":{"w":153,"h":229,"resize":"fit"},"large":{"w":153,"h":229,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187774350382063617,"id_str":"1187774350382063617","indices":[156,179],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvSeoPX4AEsdrB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvSeoPX4AEsdrB.jpg","url":"https:\/\/t.co\/rejJwM9VGt","display_url":"pic.twitter.com\/rejJwM9VGt","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187774375338172417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":153,"h":229,"resize":"fit"},"medium":{"w":153,"h":229,"resize":"fit"},"large":{"w":153,"h":229,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":45137054,"id_str":"45137054","name":"Dirk + Ifenthaler","screen_name":"ifenthaler","location":"","description":"#learninganalytics","url":"https:\/\/t.co\/nGyfFQyRvo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nGyfFQyRvo","expanded_url":"http:\/\/www.ifenthaler.info","display_url":"ifenthaler.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":895,"friends_count":246,"listed_count":35,"created_at":"Sat + Jun 06 14:19:07 +0000 2009","favourites_count":615,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":878,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 02:58:01 +0000 2019","id":1187926326369509377,"id_str":"1187926326369509377","full_text":"RT + @richardewest: Struggling to know how to teach various qualitative paradigms + to new qualitative research students? We have some ideas us\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"richardewest","name":"Rick + West","id":17639668,"id_str":"17639668","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":860265492,"id_str":"860265492","name":"James + Ellsworth PhD","screen_name":"EINS_Institute","location":"Albuquerque, NM","description":"Educator\/architect + of instructional systems. Soldier. Muslim. Scholar (but not alim). Retired + General Officer level US military intelligence leader. Yep--weird.","url":"https:\/\/t.co\/GwDIuUtRB1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GwDIuUtRB1","expanded_url":"http:\/\/www.linkedin.com\/in\/ellsworthj","display_url":"linkedin.com\/in\/ellsworthj","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4099,"friends_count":1926,"listed_count":36,"created_at":"Wed + Oct 03 20:09:48 +0000 2012","favourites_count":212736,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":107275,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1393326633336156163\/aiT8Pu7i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1393326633336156163\/aiT8Pu7i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/860265492\/1491924222","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 20:07:09 +0000 2019","id":1187460540043448321,"id_str":"1187460540043448321","full_text":"Struggling + to know how to teach various qualitative paradigms to new qualitative research + students? We have some ideas using a new method called Decision-based Learning + that we''ll be teaching at 2 p.m. today at #AECT19. Come be #aectinspired! + https:\/\/t.co\/1pCQSrE8vl","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"AECT19","indices":[211,218]},{"text":"aectinspired","indices":[228,241]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187460492937199616,"id_str":"1187460492937199616","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","url":"https:\/\/t.co\/1pCQSrE8vl","display_url":"pic.twitter.com\/1pCQSrE8vl","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187460540043448321\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":711,"resize":"fit"},"large":{"w":1462,"h":866,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":403,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187460492937199616,"id_str":"1187460492937199616","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","url":"https:\/\/t.co\/1pCQSrE8vl","display_url":"pic.twitter.com\/1pCQSrE8vl","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187460540043448321\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":711,"resize":"fit"},"large":{"w":1462,"h":866,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":403,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17639668,"id_str":"17639668","name":"Rick + West","screen_name":"richardewest","location":"Provo, ut","description":"Instructional + Designer, Researcher, & Evaluator at Brigham Young University","url":"http:\/\/t.co\/Nc39wWEhGM","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Nc39wWEhGM","expanded_url":"http:\/\/richardewest.com","display_url":"richardewest.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":223,"listed_count":39,"created_at":"Wed + Nov 26 02:26:26 +0000 2008","favourites_count":799,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3339,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17639668\/1446650027","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 23:26:25 +0000 2019","id":1187873074730815488,"id_str":"1187873074730815488","full_text":"RT + @koubenec: Had a great time talking with #aect19inspired attendees about the + possibilities of chatbots built with Botkit - check them ou\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[44,59]}],"symbols":[],"user_mentions":[{"screen_name":"koubenec","name":"Noah + Koubenec","id":153965652,"id_str":"153965652","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 15:33:49 +0000 2019","id":1187754141545713664,"id_str":"1187754141545713664","full_text":"Had + a great time talking with #aect19inspired attendees about the possibilities + of chatbots built with Botkit - check them out at https:\/\/t.co\/h1x93l4X6R! + @AECT https:\/\/t.co\/rPkg9pm5yp","truncated":false,"display_text_range":[0,160],"entities":{"hashtags":[{"text":"aect19inspired","indices":[30,45]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[155,160]}],"urls":[{"url":"https:\/\/t.co\/h1x93l4X6R","expanded_url":"http:\/\/botkit.ai","display_url":"botkit.ai","indices":[130,153]}],"media":[{"id":1187754137762463744,"id_str":"1187754137762463744","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvAGGXVAAA7Gf0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvAGGXVAAA7Gf0.jpg","url":"https:\/\/t.co\/rPkg9pm5yp","display_url":"pic.twitter.com\/rPkg9pm5yp","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1187754141545713664\/photo\/1","type":"photo","sizes":{"medium":{"w":1079,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"large":{"w":1079,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187754137762463744,"id_str":"1187754137762463744","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvAGGXVAAA7Gf0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvAGGXVAAA7Gf0.jpg","url":"https:\/\/t.co\/rPkg9pm5yp","display_url":"pic.twitter.com\/rPkg9pm5yp","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1187754141545713664\/photo\/1","type":"photo","sizes":{"medium":{"w":1079,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"large":{"w":1079,"h":720,"resize":"fit"}},"ext_alt_text":"Botkit.ai + homepage"}]},"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" + rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 02:55:07 +0000 2019","id":1187925595084091392,"id_str":"1187925595084091392","full_text":"Had + a great time at #AECT19. Dave Merrill''s stories Thursday evening were the + icing on the cake. Was great to see all my friends and colleagues, and to + meet so many new people. Happy to now be home. https:\/\/t.co\/3fSDy0e42o","truncated":false,"display_text_range":[0,198],"entities":{"hashtags":[{"text":"AECT19","indices":[20,27]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187925574934659072,"id_str":"1187925574934659072","indices":[199,222],"media_url":"http:\/\/pbs.twimg.com\/media\/EHxcBDmVAAAR-GW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHxcBDmVAAAR-GW.jpg","url":"https:\/\/t.co\/3fSDy0e42o","display_url":"pic.twitter.com\/3fSDy0e42o","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1187925595084091392\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187925574934659072,"id_str":"1187925574934659072","indices":[199,222],"media_url":"http:\/\/pbs.twimg.com\/media\/EHxcBDmVAAAR-GW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHxcBDmVAAAR-GW.jpg","url":"https:\/\/t.co\/3fSDy0e42o","display_url":"pic.twitter.com\/3fSDy0e42o","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1187925595084091392\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 26 03:49:43 +0000 2019","id":1187939337998159877,"id_str":"1187939337998159877","full_text":"RT + @hodgesc: The conference is nearly over, but your chance to impact the field + is not over. Submit your work to @AECTTechTrends. #aect19i\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[114,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 18:37:44 +0000 2019","id":1187800427544268800,"id_str":"1187800427544268800","full_text":"The + conference is nearly over, but your chance to impact the field is not over. Submit + your work to @AECTTechTrends. #aect19inspired https:\/\/t.co\/Apm4iN9TnO","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[101,116]}],"urls":[],"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"photo","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"video","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"duration_millis":14133,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/pl\/T49X8pWvcWZ1hr0f.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/360x270\/jjTaFEgF3SEuLXiG.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/480x360\/lLxj8onGzGLt2Pjb.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/640x480\/fsmN351GfvkQwtsa.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 22:16:41 +0000 2019","id":1187855526585143298,"id_str":"1187855526585143298","full_text":"RT + @marshallgjones: It was great to meet the Thai Affiliates at the \u2066@AECT\u2069 + conference! #aect19inspired https:\/\/t.co\/4BPcZQnMmU","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"aect19inspired","indices":[88,103]}],"symbols":[],"user_mentions":[{"screen_name":"marshallgjones","name":"Marshall + G. Jones","id":17467478,"id_str":"17467478","indices":[3,18]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[69,74]}],"urls":[],"media":[{"id":1187817315242401792,"id_str":"1187817315242401792","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv5jg0U4AAKruh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv5jg0U4AAKruh.jpg","url":"https:\/\/t.co\/4BPcZQnMmU","display_url":"pic.twitter.com\/4BPcZQnMmU","expanded_url":"https:\/\/twitter.com\/marshallgjones\/status\/1187817322238529536\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1321,"resize":"fit"},"small":{"w":680,"h":439,"resize":"fit"},"medium":{"w":1200,"h":774,"resize":"fit"}},"source_status_id":1187817322238529536,"source_status_id_str":"1187817322238529536","source_user_id":17467478,"source_user_id_str":"17467478"}]},"extended_entities":{"media":[{"id":1187817315242401792,"id_str":"1187817315242401792","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv5jg0U4AAKruh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv5jg0U4AAKruh.jpg","url":"https:\/\/t.co\/4BPcZQnMmU","display_url":"pic.twitter.com\/4BPcZQnMmU","expanded_url":"https:\/\/twitter.com\/marshallgjones\/status\/1187817322238529536\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1321,"resize":"fit"},"small":{"w":680,"h":439,"resize":"fit"},"medium":{"w":1200,"h":774,"resize":"fit"}},"source_status_id":1187817322238529536,"source_status_id_str":"1187817322238529536","source_user_id":17467478,"source_user_id_str":"17467478","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 19:44:52 +0000 2019","id":1187817322238529536,"id_str":"1187817322238529536","full_text":"It + was great to meet the Thai Affiliates at the \u2066@AECT\u2069 conference! + #aect19inspired https:\/\/t.co\/4BPcZQnMmU","truncated":false,"display_text_range":[0,83],"entities":{"hashtags":[{"text":"aect19inspired","indices":[68,83]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[49,54]}],"urls":[],"media":[{"id":1187817315242401792,"id_str":"1187817315242401792","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv5jg0U4AAKruh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv5jg0U4AAKruh.jpg","url":"https:\/\/t.co\/4BPcZQnMmU","display_url":"pic.twitter.com\/4BPcZQnMmU","expanded_url":"https:\/\/twitter.com\/marshallgjones\/status\/1187817322238529536\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1321,"resize":"fit"},"small":{"w":680,"h":439,"resize":"fit"},"medium":{"w":1200,"h":774,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187817315242401792,"id_str":"1187817315242401792","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv5jg0U4AAKruh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv5jg0U4AAKruh.jpg","url":"https:\/\/t.co\/4BPcZQnMmU","display_url":"pic.twitter.com\/4BPcZQnMmU","expanded_url":"https:\/\/twitter.com\/marshallgjones\/status\/1187817322238529536\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1321,"resize":"fit"},"small":{"w":680,"h":439,"resize":"fit"},"medium":{"w":1200,"h":774,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17467478,"id_str":"17467478","name":"Marshall + G. Jones","screen_name":"marshallgjones","location":"Rock Hill, SC USA","description":"Professor + of Learning Design & Technology. Musician. Photographer. Tweeting about learning, + technology & whatever else strikes me. Tweets are my own.","url":"https:\/\/t.co\/HGRry3tHo4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HGRry3tHo4","expanded_url":"http:\/\/marshallgjones.com","display_url":"marshallgjones.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1022,"friends_count":889,"listed_count":71,"created_at":"Tue + Nov 18 18:26:51 +0000 2008","favourites_count":7553,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8342,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17467478\/1570054414","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:13:11 +0000 2019","id":1187809348602347520,"id_str":"1187809348602347520","full_text":"Best + introductory reader for EdTech foundations. Got a 4th edition for less than + half price and will give it to @BoufflersLydie my graduate student. Goodby + #aect19inspired \ud83d\ude0e https:\/\/t.co\/UKjkrLQetl","truncated":false,"display_text_range":[0,173],"entities":{"hashtags":[{"text":"aect19inspired","indices":[156,171]}],"symbols":[],"user_mentions":[{"screen_name":"BoufflersLydie","name":"Lydie + Boufflers","id":1061009402940063744,"id_str":"1061009402940063744","indices":[112,127]}],"urls":[],"media":[{"id":1187809340293410816,"id_str":"1187809340293410816","indices":[174,197],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvyTT0UcAAsHT_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvyTT0UcAAsHT_.jpg","url":"https:\/\/t.co\/UKjkrLQetl","display_url":"pic.twitter.com\/UKjkrLQetl","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187809348602347520\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187809340293410816,"id_str":"1187809340293410816","indices":[174,197],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvyTT0UcAAsHT_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvyTT0UcAAsHT_.jpg","url":"https:\/\/t.co\/UKjkrLQetl","display_url":"pic.twitter.com\/UKjkrLQetl","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187809348602347520\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 18:26:07 +0000 2019","id":1187797503258660864,"id_str":"1187797503258660864","full_text":"\u2066@tel_education\u2069 + staff \u2066@CatJackson28\u2069 and crew present on process to improve online + instruction. #aect19inspired https:\/\/t.co\/oxzHdsrvyb","truncated":false,"display_text_range":[0,113],"entities":{"hashtags":[{"text":"aect19inspired","indices":[98,113]}],"symbols":[],"user_mentions":[{"screen_name":"tel_education","name":"TEL + Education","id":950470158837051392,"id_str":"950470158837051392","indices":[1,15]}],"urls":[],"media":[{"id":1187797477132398594,"id_str":"1187797477132398594","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187797477132398594\/pu\/img\/XWlvsdf15rkrhGLj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187797477132398594\/pu\/img\/XWlvsdf15rkrhGLj.jpg","url":"https:\/\/t.co\/oxzHdsrvyb","display_url":"pic.twitter.com\/oxzHdsrvyb","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187797503258660864\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":720,"resize":"fit"},"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187797477132398594,"id_str":"1187797477132398594","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187797477132398594\/pu\/img\/XWlvsdf15rkrhGLj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187797477132398594\/pu\/img\/XWlvsdf15rkrhGLj.jpg","url":"https:\/\/t.co\/oxzHdsrvyb","display_url":"pic.twitter.com\/oxzHdsrvyb","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187797503258660864\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":720,"resize":"fit"},"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"duration_millis":1500,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187797477132398594\/pu\/vid\/480x360\/65d7o0u_RJ8SE-1g.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187797477132398594\/pu\/pl\/auS0dXXeSTmcJnu6.m3u8?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187797477132398594\/pu\/vid\/960x720\/XLUej8MBHoz1k5as.mp4?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187797477132398594\/pu\/vid\/360x270\/uBXKdAoTxunFyj2f.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 22:38:46 +0000 2019","id":1187861084079710209,"id_str":"1187861084079710209","full_text":"RT + @yuuki5000: \u201dThe Trends in Instructional Design and Technology Database\u201d + It is a very useful database for knowing the trends in the IDT\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"yuuki5000","name":"Yuki + Watanabe","id":65595602,"id_str":"65595602","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 17:49:14 +0000 2019","id":1187788219321995269,"id_str":"1187788219321995269","full_text":"\u201dThe + Trends in Instructional Design and Technology Database\u201d It is a very + useful database for knowing the trends in the IDT field. #aect19\nhttps:\/\/t.co\/QyyZYbs6EP","truncated":false,"display_text_range":[0,162],"entities":{"hashtags":[{"text":"aect19","indices":[131,138]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QyyZYbs6EP","expanded_url":"http:\/\/trendsandissues.org\/","display_url":"trendsandissues.org","indices":[139,162]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":65595602,"id_str":"65595602","name":"Yuki + Watanabe","screen_name":"yuuki5000","location":"Tokyo","description":"\u6e21\u8fba\u96c4\u8cb4\u3002\u6771\u4eac\u90fd\u51fa\u8eab\u3002\u3072\u3063\u305d\u308a\u3068\u6559\u80b2\u5de5\u5b66\u306e\u7814\u7a76\u3092\u3057\u3066\u307e\u3059\u3002\u6771\u4eac\u7406\u79d1\u5927\u5b66\u6559\u6388\u3002\u535a\u58eb\uff08\u5b66\u8853\uff09\u6771\u4eac\u5de5\u696d\u5927\u5b66 + \/ Professor (Educational Technology Lab.) at Tokyo University of Science, + Japan. Ph.D. Tokyo Tech","url":"https:\/\/t.co\/4RXslYSaqZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4RXslYSaqZ","expanded_url":"https:\/\/www.tus.ac.jp\/fac_grad\/p\/index.php?3bfc","display_url":"tus.ac.jp\/fac_grad\/p\/ind\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1130,"friends_count":314,"listed_count":43,"created_at":"Fri + Aug 14 08:42:14 +0000 2009","favourites_count":2992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12516,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1360616182319992838\/B-lMb0oC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1360616182319992838\/B-lMb0oC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65595602\/1440774032","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 18:37:17 +0000 2019","id":1187800314021154816,"id_str":"1187800314021154816","full_text":"Miss + our #AECT19 presentation on Five Discourse of Design? Check it out on our + website (even includes cell phone-recorded audio!) #talkingaboutdesign\n\nAECT + Talks About Design! https:\/\/t.co\/kGE5d3Ik54","truncated":false,"display_text_range":[0,199],"entities":{"hashtags":[{"text":"AECT19","indices":[9,16]},{"text":"talkingaboutdesign","indices":[130,149]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kGE5d3Ik54","expanded_url":"https:\/\/talkingaboutdesign.com\/aect-talks-about-design\/","display_url":"talkingaboutdesign.com\/aect-talks-abo\u2026","indices":[176,199]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2191740091,"id_str":"2191740091","name":"Melissa + Warr","screen_name":"RealMelissaWarr","location":"Monroe, LA","description":"Assistant + Professor, University of Louisiana Monroe","url":"https:\/\/t.co\/2LNlqxPB4z","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2LNlqxPB4z","expanded_url":"http:\/\/Melissa-Warr.com","display_url":"Melissa-Warr.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":64,"listed_count":1,"created_at":"Wed + Nov 13 05:59:01 +0000 2013","favourites_count":36,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":59,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1163579224986271744\/mKWbdlr4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163579224986271744\/mKWbdlr4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2191740091\/1384754908","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:44:52 +0000 2019","id":1187817322238529536,"id_str":"1187817322238529536","full_text":"It + was great to meet the Thai Affiliates at the \u2066@AECT\u2069 conference! + #aect19inspired https:\/\/t.co\/4BPcZQnMmU","truncated":false,"display_text_range":[0,83],"entities":{"hashtags":[{"text":"aect19inspired","indices":[68,83]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[49,54]}],"urls":[],"media":[{"id":1187817315242401792,"id_str":"1187817315242401792","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv5jg0U4AAKruh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv5jg0U4AAKruh.jpg","url":"https:\/\/t.co\/4BPcZQnMmU","display_url":"pic.twitter.com\/4BPcZQnMmU","expanded_url":"https:\/\/twitter.com\/marshallgjones\/status\/1187817322238529536\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1321,"resize":"fit"},"small":{"w":680,"h":439,"resize":"fit"},"medium":{"w":1200,"h":774,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187817315242401792,"id_str":"1187817315242401792","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv5jg0U4AAKruh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv5jg0U4AAKruh.jpg","url":"https:\/\/t.co\/4BPcZQnMmU","display_url":"pic.twitter.com\/4BPcZQnMmU","expanded_url":"https:\/\/twitter.com\/marshallgjones\/status\/1187817322238529536\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1321,"resize":"fit"},"small":{"w":680,"h":439,"resize":"fit"},"medium":{"w":1200,"h":774,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17467478,"id_str":"17467478","name":"Marshall + G. Jones","screen_name":"marshallgjones","location":"Rock Hill, SC USA","description":"Professor + of Learning Design & Technology. Musician. Photographer. Tweeting about learning, + technology & whatever else strikes me. Tweets are my own.","url":"https:\/\/t.co\/HGRry3tHo4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HGRry3tHo4","expanded_url":"http:\/\/marshallgjones.com","display_url":"marshallgjones.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1022,"friends_count":889,"listed_count":71,"created_at":"Tue + Nov 18 18:26:51 +0000 2008","favourites_count":7553,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8342,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17467478\/1570054414","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 18:20:29 +0000 2019","id":1187796084766101510,"id_str":"1187796084766101510","full_text":"RT + @gravesle: #AECT19 #aect19inspired Here are the resources from our session: + https:\/\/t.co\/IB5f5gWEmJ (@jenm @tadousay jrosenberg6432 )","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]},{"text":"aect19inspired","indices":[22,37]}],"symbols":[],"user_mentions":[{"screen_name":"gravesle","name":"Dr. + Leigh Graves Wolf","id":11092692,"id_str":"11092692","indices":[3,12]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[104,109]},{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[110,119]}],"urls":[{"url":"https:\/\/t.co\/IB5f5gWEmJ","expanded_url":"http:\/\/bit.ly\/aect19open","display_url":"bit.ly\/aect19open","indices":[79,102]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 17:11:54 +0000 2019","id":1187778827180752896,"id_str":"1187778827180752896","full_text":"#AECT19 + #aect19inspired Here are the resources from our session: https:\/\/t.co\/IB5f5gWEmJ + (@jenm @tadousay jrosenberg6432 )","truncated":false,"display_text_range":[0,122],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"aect19inspired","indices":[8,23]}],"symbols":[],"user_mentions":[{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[90,95]},{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[96,105]}],"urls":[{"url":"https:\/\/t.co\/IB5f5gWEmJ","expanded_url":"http:\/\/bit.ly\/aect19open","display_url":"bit.ly\/aect19open","indices":[65,88]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11092692,"id_str":"11092692","name":"Dr. + Leigh Graves Wolf","screen_name":"gravesle","location":"Michigan\/Galway\/Arizona\/Online","description":"I + like to share & listen. Human. Clinical Associate Professor Ed Leadership + & Innovation @asueducation. I tweet my own things. (Dr\/She\/Her)","url":"https:\/\/t.co\/CIZXWxMRrw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CIZXWxMRrw","expanded_url":"http:\/\/leighgraveswolf.com","display_url":"leighgraveswolf.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6034,"friends_count":6584,"listed_count":442,"created_at":"Wed + Dec 12 16:03:00 +0000 2007","favourites_count":31280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48218,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11092692\/1442771541","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"044905","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E2F8AA","profile_text_color":"659B08","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 18:34:46 +0000 2019","id":1187799677929787392,"id_str":"1187799677929787392","full_text":"One + of the best presentations here at @aect. Happening now. #aect19 #aect19inspired + https:\/\/t.co\/VqGg0ZnqKj","truncated":false,"display_text_range":[0,83],"entities":{"hashtags":[{"text":"aect19","indices":[60,67]},{"text":"aect19inspired","indices":[68,83]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[38,43]}],"urls":[],"media":[{"id":1187799655733612544,"id_str":"1187799655733612544","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvpfmBVUAAzofW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvpfmBVUAAzofW.jpg","url":"https:\/\/t.co\/VqGg0ZnqKj","display_url":"pic.twitter.com\/VqGg0ZnqKj","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187799677929787392\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187799655733612544,"id_str":"1187799655733612544","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvpfmBVUAAzofW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvpfmBVUAAzofW.jpg","url":"https:\/\/t.co\/VqGg0ZnqKj","display_url":"pic.twitter.com\/VqGg0ZnqKj","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187799677929787392\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 26 01:01:08 +0000 2019","id":1187896912684306432,"id_str":"1187896912684306432","full_text":"RT + @DrRossPerkins: Has anyone found a purple suitcase with BSU materials in it? + It was last seen in Paradise North. #aect19 #aect19inspired\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[116,123]},{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"DrRossPerkins","name":"Ross + Perkins, PhD","id":2905458781,"id_str":"2905458781","indices":[3,17]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 23:31:15 +0000 2019","id":1187874291058118657,"id_str":"1187874291058118657","full_text":"Has + anyone found a purple suitcase with BSU materials in it? It was last seen + in Paradise North. #aect19 #aect19inspired @AECT","truncated":false,"display_text_range":[0,126],"entities":{"hashtags":[{"text":"aect19","indices":[97,104]},{"text":"aect19inspired","indices":[105,120]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[121,126]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2905458781,"id_str":"2905458781","name":"Ross + Perkins, PhD","screen_name":"DrRossPerkins","location":"Apex, NC","description":"Asc + Prof @ Boise State. EdS\/EdD ProgCoord. https:\/\/t.co\/8jp7WXqbV1 | Huge + listserv influencer, 1998-2006.","url":"https:\/\/t.co\/8jp7WXqbV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[43,66]}]}},"protected":false,"followers_count":773,"friends_count":485,"listed_count":21,"created_at":"Thu + Nov 20 19:52:09 +0000 2014","favourites_count":3672,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2751,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2905458781\/1618315302","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 23:23:55 +0000 2019","id":1187872447241932800,"id_str":"1187872447241932800","full_text":"RT + @MuratTurkOU: Thank you my dear @AECT family, thank you @michaelmgrant and + every single colleague of mine whom I met at this awesome org\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[35,40]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[59,73]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 19:36:23 +0000 2019","id":1187815186008199169,"id_str":"1187815186008199169","full_text":"Thank + you my dear @AECT family, thank you @michaelmgrant and every single colleague + of mine whom I met at this awesome organization. This was my first @AECT and + definitely there will be many in the future. See y\u2019all next year in Jacksonville! + #aect #aect19 #aect19inspired","truncated":false,"display_text_range":[0,272],"entities":{"hashtags":[{"text":"aect","indices":[243,248]},{"text":"aect19","indices":[249,256]},{"text":"aect19inspired","indices":[257,272]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[18,23]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[42,56]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[151,156]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186318434964930560,"id_str":"1186318434964930560","name":"Murat + Turk, Ph.D.","screen_name":"MuratTurkEd","location":"Cincinnati, OH","description":"Online + Learning | motivation | engagement | online presences | loving husband of + Sinem Toraman Turk \u2764\ufe0f| loving father of @bgmtrk1\u2764\ufe0f | @FulbrightTurkey","url":"https:\/\/t.co\/DmCPHu9r7d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DmCPHu9r7d","expanded_url":"http:\/\/www.ardat.net","display_url":"ardat.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":853,"listed_count":5,"created_at":"Mon + Oct 21 16:29:13 +0000 2019","favourites_count":4396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2544,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186318434964930560\/1653078596","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"8fa6d7a33b83ef26","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8fa6d7a33b83ef26.json","place_type":"city","name":"Paradise","full_name":"Paradise, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.2092535,35.984784],[-115.0610763,35.984784],[-115.0610763,36.137145],[-115.2092535,36.137145]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":13,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 18:18:18 +0000 2019","id":1187795535391944704,"id_str":"1187795535391944704","full_text":"3 + receptions\/lunches, 1 welcome session emcee, 3 panel presentations, 8 leadership + meetings, 1 concurrent presentation, 1 inspire presentation, and 1 breakfast + champion. I am definitely inspired, but need to get back to campus for the + rest! #stickaforkinme #aect19 #aect19inspired","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"stickaforkinme","indices":[241,256]},{"text":"aect19","indices":[257,264]},{"text":"aect19inspired","indices":[265,280]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":12,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 22:17:04 +0000 2019","id":1187855624660488197,"id_str":"1187855624660488197","full_text":"RT + @MuratTurkOU: Thank you my dear @AECT family, thank you @michaelmgrant and + every single colleague of mine whom I met at this awesome org\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[35,40]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[59,73]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 19:36:23 +0000 2019","id":1187815186008199169,"id_str":"1187815186008199169","full_text":"Thank + you my dear @AECT family, thank you @michaelmgrant and every single colleague + of mine whom I met at this awesome organization. This was my first @AECT and + definitely there will be many in the future. See y\u2019all next year in Jacksonville! + #aect #aect19 #aect19inspired","truncated":false,"display_text_range":[0,272],"entities":{"hashtags":[{"text":"aect","indices":[243,248]},{"text":"aect19","indices":[249,256]},{"text":"aect19inspired","indices":[257,272]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[18,23]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[42,56]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[151,156]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186318434964930560,"id_str":"1186318434964930560","name":"Murat + Turk, Ph.D.","screen_name":"MuratTurkEd","location":"Cincinnati, OH","description":"Online + Learning | motivation | engagement | online presences | loving husband of + Sinem Toraman Turk \u2764\ufe0f| loving father of @bgmtrk1\u2764\ufe0f | @FulbrightTurkey","url":"https:\/\/t.co\/DmCPHu9r7d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DmCPHu9r7d","expanded_url":"http:\/\/www.ardat.net","display_url":"ardat.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":853,"listed_count":5,"created_at":"Mon + Oct 21 16:29:13 +0000 2019","favourites_count":4396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2544,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186318434964930560\/1653078596","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"8fa6d7a33b83ef26","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8fa6d7a33b83ef26.json","place_type":"city","name":"Paradise","full_name":"Paradise, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.2092535,35.984784],[-115.0610763,35.984784],[-115.0610763,36.137145],[-115.2092535,36.137145]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":13,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:09:04 +0000 2019","id":1187808312777232385,"id_str":"1187808312777232385","full_text":"Time + to head home #aect19 peeps. Great job everyone! See you next year? https:\/\/t.co\/oOFVcSXkQB","truncated":false,"display_text_range":[0,72],"entities":{"hashtags":[{"text":"aect19","indices":[18,25]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187808295303733249,"id_str":"1187808295303733249","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHvxWe7XYAEG-Cg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHvxWe7XYAEG-Cg.jpg","url":"https:\/\/t.co\/oOFVcSXkQB","display_url":"pic.twitter.com\/oOFVcSXkQB","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1187808312777232385\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":498,"h":278,"resize":"fit"},"small":{"w":498,"h":278,"resize":"fit"},"medium":{"w":498,"h":278,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187808295303733249,"id_str":"1187808295303733249","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHvxWe7XYAEG-Cg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHvxWe7XYAEG-Cg.jpg","url":"https:\/\/t.co\/oOFVcSXkQB","display_url":"pic.twitter.com\/oOFVcSXkQB","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1187808312777232385\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":498,"h":278,"resize":"fit"},"small":{"w":498,"h":278,"resize":"fit"},"medium":{"w":498,"h":278,"resize":"fit"}},"video_info":{"aspect_ratio":[249,139],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHvxWe7XYAEG-Cg.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:22:50 +0000 2019","id":1187811773946060800,"id_str":"1187811773946060800","full_text":"Fifth + and last day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 @khebrat_edu + @S_Meemar @onaizahedu. Mental Models https:\/\/t.co\/Nni1xxKsRw","truncated":false,"display_text_range":[0,125],"entities":{"hashtags":[{"text":"aect19inspired","indices":[19,34]},{"text":"AECTech2019","indices":[35,47]},{"text":"aect19inspired","indices":[48,63]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[64,75]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[76,88]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[89,98]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[99,110]}],"urls":[],"media":[{"id":1187811769428795393,"id_str":"1187811769428795393","indices":[126,149],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv0gtDU4AEkyL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv0gtDU4AEkyL9.jpg","url":"https:\/\/t.co\/Nni1xxKsRw","display_url":"pic.twitter.com\/Nni1xxKsRw","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187811773946060800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1334,"h":750,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187811769428795393,"id_str":"1187811769428795393","indices":[126,149],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv0gtDU4AEkyL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv0gtDU4AEkyL9.jpg","url":"https:\/\/t.co\/Nni1xxKsRw","display_url":"pic.twitter.com\/Nni1xxKsRw","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187811773946060800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1334,"h":750,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187476829327650816,"in_reply_to_status_id_str":"1187476829327650816","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 20:30:23 +0000 2019","id":1187828774294953985,"id_str":"1187828774294953985","full_text":"A2: + There\u2019s a good start. Recently started a podcast, continue to reach-out + virtually & in real time with other pros in my field, and surround myself + with high achievers as much as possible. #AECT19","truncated":false,"display_text_range":[0,202],"entities":{"hashtags":[{"text":"AECT19","indices":[195,202]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2338796726,"id_str":"2338796726","name":"Nate + Moore","screen_name":"TheeMrMoore","location":"Michigan, USA","description":"Executive + Director of Technology. Reader. Music lover. Piano player. Learner. Leader. + Former teacher, coach. CTO MSBO. @MACUL Delegate Team @MAET #LeadLearnGrow","url":"https:\/\/t.co\/M4xBfznJyv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/M4xBfznJyv","expanded_url":"http:\/\/www.TheeMrMoore.com","display_url":"TheeMrMoore.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":830,"friends_count":508,"listed_count":26,"created_at":"Tue + Feb 11 18:35:53 +0000 2014","favourites_count":12788,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3111,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1032005082244689920\/RlMQlRSP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032005082244689920\/RlMQlRSP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2338796726\/1610215790","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"89C9FA","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 22:06:28 +0000 2019","id":1187852956214935553,"id_str":"1187852956214935553","full_text":"RT + @JCHEResearch: Consider turning your @AECT presentations into publications! + Submit to JCHE to share your inspiring and inspired work. #a\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JCHEResearch","name":"JCHE","id":3632440875,"id_str":"3632440875","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[40,45]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 17:41:57 +0000 2019","id":1187786388227276800,"id_str":"1187786388227276800","full_text":"Consider + turning your @AECT presentations into publications! Submit to JCHE to share + your inspiring and inspired work. #aect19 #aect19inspired","truncated":false,"display_text_range":[0,142],"entities":{"hashtags":[{"text":"aect19","indices":[119,126]},{"text":"aect19inspired","indices":[127,142]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[22,27]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3632440875,"id_str":"3632440875","name":"JCHE","screen_name":"JCHEResearch","location":"Springer + Publishing","description":"Journal of Computing in Higher Education: Research + and Integration of Instructional Technology","url":"http:\/\/t.co\/vp1fT27q0u","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/vp1fT27q0u","expanded_url":"http:\/\/www.springer.com","display_url":"springer.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":399,"friends_count":143,"listed_count":11,"created_at":"Sat + Sep 12 15:26:14 +0000 2015","favourites_count":55,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":67,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642728004989374464\/rT2xsSzd_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642728004989374464\/rT2xsSzd_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3632440875\/1442073430","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"93A644","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 18:32:36 +0000 2019","id":1187799133182033920,"id_str":"1187799133182033920","full_text":"I + really have to say this. I am proud to be an @epsODU doc student and a Monarch! + Look at the accomplishments, presentations and services of our faculty, alumni, + and students at #aect19. Like what Dr. @tintinluo said, \"we need to count + how many awards we have won this year!\"","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"aect19","indices":[178,185]}],"symbols":[],"user_mentions":[{"screen_name":"epsODU","name":"ODU + Darden College of Educ & Professional Studies","id":124254976,"id_str":"124254976","indices":[47,54]},{"screen_name":"tintinluo","name":"Tian + Luo","id":29474883,"id_str":"29474883","indices":[201,211]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:43:46 +0000 2019","id":1187817045024559104,"id_str":"1187817045024559104","full_text":". + @utexascoe #TexasCI #UTLT doctoral students Ellen Zou and Chenglu Li present + their work developing a computer-assisted qualitative research software assisted + by machine learning to support qual coding (learning and triangulation) #AECT19inspired + ... @bretsw looks at the demo https:\/\/t.co\/NzLK7Pwg6t","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"TexasCI","indices":[13,21]},{"text":"UTLT","indices":[22,27]},{"text":"AECT19inspired","indices":[232,247]}],"symbols":[],"user_mentions":[{"screen_name":"utexascoe","name":"College + of Education","id":19671331,"id_str":"19671331","indices":[2,12]},{"screen_name":"bretsw","name":"Dr. + Bret Staudt Willet","id":53167706,"id_str":"53167706","indices":[252,259]}],"urls":[],"media":[{"id":1187817027190362114,"id_str":"1187817027190362114","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv5SvvXkAIAUPy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv5SvvXkAIAUPy.jpg","url":"https:\/\/t.co\/NzLK7Pwg6t","display_url":"pic.twitter.com\/NzLK7Pwg6t","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187817045024559104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187817027190362114,"id_str":"1187817027190362114","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv5SvvXkAIAUPy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv5SvvXkAIAUPy.jpg","url":"https:\/\/t.co\/NzLK7Pwg6t","display_url":"pic.twitter.com\/NzLK7Pwg6t","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187817045024559104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1187817027228131329,"id_str":"1187817027228131329","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv5Sv4X4AEdVbD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv5Sv4X4AEdVbD.jpg","url":"https:\/\/t.co\/NzLK7Pwg6t","display_url":"pic.twitter.com\/NzLK7Pwg6t","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187817045024559104\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19613812,"id_str":"19613812","name":"Dr. + Joan E. Hughes","screen_name":"techedges","location":"Austin, TX","description":"Prof, + Learning Technologies, UT Austin. Researcher, teacher, writer: tech integration + in schools, teacher educ & PD. Author:https:\/\/t.co\/p12V06CqJU","url":"https:\/\/t.co\/0V3yBaAOKy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0V3yBaAOKy","expanded_url":"http:\/\/techedges.org","display_url":"techedges.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/p12V06CqJU","expanded_url":"http:\/\/bit.ly\/IntegratingEdTech","display_url":"bit.ly\/IntegratingEdT\u2026","indices":[124,147]}]}},"protected":false,"followers_count":1646,"friends_count":2355,"listed_count":158,"created_at":"Tue + Jan 27 20:26:10 +0000 2009","favourites_count":722,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2871,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEBB2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431552022538510336\/qGc8ZRJj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431552022538510336\/qGc8ZRJj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19613812\/1408660446","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 22:56:02 +0000 2019","id":1187865429198462976,"id_str":"1187865429198462976","full_text":"RT + @hodgesc: The conference is nearly over, but your chance to impact the field + is not over. Submit your work to @AECTTechTrends. #aect19i\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[114,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":804807943,"id_str":"804807943","name":"TechTrends + Editor","screen_name":"AECTTechTrends","location":"","description":"Tweets + from the Editor of TechTrends, an AECT journal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2050,"friends_count":15,"listed_count":57,"created_at":"Wed + Sep 05 15:17:03 +0000 2012","favourites_count":772,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/804807943\/1483653902","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 18:37:44 +0000 2019","id":1187800427544268800,"id_str":"1187800427544268800","full_text":"The + conference is nearly over, but your chance to impact the field is not over. Submit + your work to @AECTTechTrends. #aect19inspired https:\/\/t.co\/Apm4iN9TnO","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[101,116]}],"urls":[],"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"photo","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"video","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"duration_millis":14133,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/pl\/T49X8pWvcWZ1hr0f.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/360x270\/jjTaFEgF3SEuLXiG.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/480x360\/lLxj8onGzGLt2Pjb.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/640x480\/fsmN351GfvkQwtsa.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:42:12 +0000 2019","id":1187816650160123906,"id_str":"1187816650160123906","full_text":"RT + @hodgesc: The conference is nearly over, but your chance to impact the field + is not over. Submit your work to @AECTTechTrends. #aect19i\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[114,129]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":146138055,"id_str":"146138055","name":"Brenda + Padilla","screen_name":"BrendaPadilla","location":"M\u00e9xico","description":"Online + learning, #edtech & randomness. I also tweet in Spanish, and manage @ELearningMty + & @escapeEDU. My last name is Padilla Rodriguez, both words, no hyphen.","url":"https:\/\/t.co\/s6x6A0tB2R","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s6x6A0tB2R","expanded_url":"http:\/\/brendapadilla.wordpress.com","display_url":"brendapadilla.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1370,"friends_count":933,"listed_count":50,"created_at":"Thu + May 20 17:50:37 +0000 2010","favourites_count":2385,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":14290,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1470993203558035461\/60cjEfSP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1470993203558035461\/60cjEfSP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/146138055\/1398240455","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 18:37:44 +0000 2019","id":1187800427544268800,"id_str":"1187800427544268800","full_text":"The + conference is nearly over, but your chance to impact the field is not over. Submit + your work to @AECTTechTrends. #aect19inspired https:\/\/t.co\/Apm4iN9TnO","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[101,116]}],"urls":[],"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"photo","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"video","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"duration_millis":14133,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/pl\/T49X8pWvcWZ1hr0f.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/360x270\/jjTaFEgF3SEuLXiG.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/480x360\/lLxj8onGzGLt2Pjb.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/640x480\/fsmN351GfvkQwtsa.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 06:23:21 +0000 2019","id":1187978001943875584,"id_str":"1187978001943875584","full_text":"RT + @TenaciousTan: #aect19 Lots of firsts for me: 1st time in the US, 1st time + at an AECT conference, 1st time meeting my co-presenter in re\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[18,25]}],"symbols":[],"user_mentions":[{"screen_name":"TenaciousTan","name":"Tanya + O''Reilly","id":27256471,"id_str":"27256471","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12438922,"id_str":"12438922","name":"Frances + Bell","screen_name":"francesbell","location":"Macclesfield","description":"woman,friendwifemothergrandmothersisterauntcousin, + feminist, ALT 4eva member, blogger, itinerant scholar, knitter, quilter, gardener,reader, + writer #femedtech","url":"https:\/\/t.co\/IRV86wQSfm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IRV86wQSfm","expanded_url":"http:\/\/francesbell.com","display_url":"francesbell.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3325,"friends_count":1419,"listed_count":223,"created_at":"Sat + Jan 19 19:19:49 +0000 2008","favourites_count":12040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":37516,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1041049960786128897\/vFj__Prr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1041049960786128897\/vFj__Prr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12438922\/1525837017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0000FF","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 22:50:08 +0000 2019","id":1187863946340044800,"id_str":"1187863946340044800","full_text":"#aect19 + Lots of firsts for me: 1st time in the US, 1st time at an AECT conference, + 1st time meeting my co-presenter in real life. Definitely worth travelling + from Stockholm Sweden to meet & hear from so many inspiring people. Thanks + #aect19inspired","truncated":false,"display_text_range":[0,252],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]},{"text":"aect19inspired","indices":[237,252]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27256471,"id_str":"27256471","name":"Tanya + O''Reilly","screen_name":"TenaciousTan","location":"Stockholm, Sweden","description":"A + bookish tea-guzzler interested in digital education, digital culture, multimodality, + New Materialism, innovative assessment practices in Higher Education","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":279,"friends_count":783,"listed_count":12,"created_at":"Sat + Mar 28 16:22:04 +0000 2009","favourites_count":2510,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1513,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/113025390\/manga_me_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/113025390\/manga_me_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27256471\/1452114046","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 18:28:24 +0000 2019","id":1187798075504394240,"id_str":"1187798075504394240","full_text":"Burleigh + & Steele share their study on studio design thinking frameworks with VR\/AR + in instruction. #aect19inspired #aect2019 #eme603 #eme601 https:\/\/t.co\/tLJeVvfzYk","truncated":false,"display_text_range":[0,145],"entities":{"hashtags":[{"text":"aect19inspired","indices":[104,119]},{"text":"aect2019","indices":[120,129]},{"text":"eme603","indices":[130,137]},{"text":"eme601","indices":[138,145]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187798065786155008,"id_str":"1187798065786155008","indices":[146,169],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvoDDAUcAADywD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvoDDAUcAADywD.jpg","url":"https:\/\/t.co\/tLJeVvfzYk","display_url":"pic.twitter.com\/tLJeVvfzYk","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187798075504394240\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187798065786155008,"id_str":"1187798065786155008","indices":[146,169],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvoDDAUcAADywD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvoDDAUcAADywD.jpg","url":"https:\/\/t.co\/tLJeVvfzYk","display_url":"pic.twitter.com\/tLJeVvfzYk","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187798075504394240\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187798066100719616,"id_str":"1187798066100719616","indices":[146,169],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvoDELUUAATknI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvoDELUUAATknI.jpg","url":"https:\/\/t.co\/tLJeVvfzYk","display_url":"pic.twitter.com\/tLJeVvfzYk","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187798075504394240\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187798066851565569,"id_str":"1187798066851565569","indices":[146,169],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvoDG-VUAEWMXm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvoDG-VUAEWMXm.jpg","url":"https:\/\/t.co\/tLJeVvfzYk","display_url":"pic.twitter.com\/tLJeVvfzYk","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187798075504394240\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:25:09 +0000 2019","id":1187812359399600128,"id_str":"1187812359399600128","full_text":"Fifth + and last day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 @khebrat_edu + @S_Meemar @onaizahedu. Middle and High School Math Teachers\u2019 TPACK and + Technology Integration in the Classroom https:\/\/t.co\/ydx4fJk4JP","truncated":false,"display_text_range":[0,199],"entities":{"hashtags":[{"text":"aect19inspired","indices":[19,34]},{"text":"AECTech2019","indices":[35,47]},{"text":"aect19inspired","indices":[48,63]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[64,75]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[76,88]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[89,98]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[99,110]}],"urls":[],"media":[{"id":1187812355410841600,"id_str":"1187812355410841600","indices":[200,223],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv1C0AVUAAitBn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv1C0AVUAAitBn.jpg","url":"https:\/\/t.co\/ydx4fJk4JP","display_url":"pic.twitter.com\/ydx4fJk4JP","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187812359399600128\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1334,"h":750,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187812355410841600,"id_str":"1187812355410841600","indices":[200,223],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv1C0AVUAAitBn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv1C0AVUAAitBn.jpg","url":"https:\/\/t.co\/ydx4fJk4JP","display_url":"pic.twitter.com\/ydx4fJk4JP","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187812359399600128\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1334,"h":750,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187811773946060800,"in_reply_to_status_id_str":"1187811773946060800","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:36:23 +0000 2019","id":1187815186008199169,"id_str":"1187815186008199169","full_text":"Thank + you my dear @AECT family, thank you @michaelmgrant and every single colleague + of mine whom I met at this awesome organization. This was my first @AECT and + definitely there will be many in the future. See y\u2019all next year in Jacksonville! + #aect #aect19 #aect19inspired","truncated":false,"display_text_range":[0,272],"entities":{"hashtags":[{"text":"aect","indices":[243,248]},{"text":"aect19","indices":[249,256]},{"text":"aect19inspired","indices":[257,272]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[18,23]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[42,56]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[151,156]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186318434964930560,"id_str":"1186318434964930560","name":"Murat + Turk, Ph.D.","screen_name":"MuratTurkEd","location":"Cincinnati, OH","description":"Online + Learning | motivation | engagement | online presences | loving husband of + Sinem Toraman Turk \u2764\ufe0f| loving father of @bgmtrk1\u2764\ufe0f | @FulbrightTurkey","url":"https:\/\/t.co\/DmCPHu9r7d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DmCPHu9r7d","expanded_url":"http:\/\/www.ardat.net","display_url":"ardat.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":853,"listed_count":5,"created_at":"Mon + Oct 21 16:29:13 +0000 2019","favourites_count":4396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2544,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186318434964930560\/1653078596","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"8fa6d7a33b83ef26","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8fa6d7a33b83ef26.json","place_type":"city","name":"Paradise","full_name":"Paradise, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.2092535,35.984784],[-115.0610763,35.984784],[-115.0610763,36.137145],[-115.2092535,36.137145]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":13,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:42:48 +0000 2019","id":1187816799678545922,"id_str":"1187816799678545922","full_text":"They + wanted to know who inspired me \u2066@AECT\u2069 conference. I went old School + with my major professor Jim Okey! #aect19inspired https:\/\/t.co\/Og7DUsU5P3","truncated":false,"display_text_range":[0,123],"entities":{"hashtags":[{"text":"aect19inspired","indices":[108,123]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[37,42]}],"urls":[],"media":[{"id":1187816793370324992,"id_str":"1187816793370324992","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv5FIsU8AAnMK5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv5FIsU8AAnMK5.jpg","url":"https:\/\/t.co\/Og7DUsU5P3","display_url":"pic.twitter.com\/Og7DUsU5P3","expanded_url":"https:\/\/twitter.com\/marshallgjones\/status\/1187816799678545922\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187816793370324992,"id_str":"1187816793370324992","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv5FIsU8AAnMK5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv5FIsU8AAnMK5.jpg","url":"https:\/\/t.co\/Og7DUsU5P3","display_url":"pic.twitter.com\/Og7DUsU5P3","expanded_url":"https:\/\/twitter.com\/marshallgjones\/status\/1187816799678545922\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17467478,"id_str":"17467478","name":"Marshall + G. Jones","screen_name":"marshallgjones","location":"Rock Hill, SC USA","description":"Professor + of Learning Design & Technology. Musician. Photographer. Tweeting about learning, + technology & whatever else strikes me. Tweets are my own.","url":"https:\/\/t.co\/HGRry3tHo4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HGRry3tHo4","expanded_url":"http:\/\/marshallgjones.com","display_url":"marshallgjones.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1022,"friends_count":889,"listed_count":71,"created_at":"Tue + Nov 18 18:26:51 +0000 2008","favourites_count":7553,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8342,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17467478\/1570054414","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 26 01:53:44 +0000 2019","id":1187910148892704768,"id_str":"1187910148892704768","full_text":"RT + @MuratTurkOU: Thank you my dear @AECT family, thank you @michaelmgrant and + every single colleague of mine whom I met at this awesome org\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[35,40]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[59,73]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 19:36:23 +0000 2019","id":1187815186008199169,"id_str":"1187815186008199169","full_text":"Thank + you my dear @AECT family, thank you @michaelmgrant and every single colleague + of mine whom I met at this awesome organization. This was my first @AECT and + definitely there will be many in the future. See y\u2019all next year in Jacksonville! + #aect #aect19 #aect19inspired","truncated":false,"display_text_range":[0,272],"entities":{"hashtags":[{"text":"aect","indices":[243,248]},{"text":"aect19","indices":[249,256]},{"text":"aect19inspired","indices":[257,272]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[18,23]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[42,56]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[151,156]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186318434964930560,"id_str":"1186318434964930560","name":"Murat + Turk, Ph.D.","screen_name":"MuratTurkEd","location":"Cincinnati, OH","description":"Online + Learning | motivation | engagement | online presences | loving husband of + Sinem Toraman Turk \u2764\ufe0f| loving father of @bgmtrk1\u2764\ufe0f | @FulbrightTurkey","url":"https:\/\/t.co\/DmCPHu9r7d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DmCPHu9r7d","expanded_url":"http:\/\/www.ardat.net","display_url":"ardat.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":853,"listed_count":5,"created_at":"Mon + Oct 21 16:29:13 +0000 2019","favourites_count":4396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2544,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186318434964930560\/1653078596","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"8fa6d7a33b83ef26","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8fa6d7a33b83ef26.json","place_type":"city","name":"Paradise","full_name":"Paradise, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.2092535,35.984784],[-115.0610763,35.984784],[-115.0610763,36.137145],[-115.2092535,36.137145]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":13,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 23:27:47 +0000 2019","id":1187873417497726977,"id_str":"1187873417497726977","full_text":"RT + @tkolski716: Great seeing (& meeting in person) two Univ of South Carolina + EdD students, Emily Shank & Noah Koubenec, shine & inspire at\u2026","truncated":false,"display_text_range":[0,152],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tkolski716","name":"Tammi","id":3389128959,"id_str":"3389128959","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 15:03:33 +0000 2019","id":1187746523733549056,"id_str":"1187746523733549056","full_text":"Great + seeing (& meeting in person) two Univ of South Carolina EdD students, + Emily Shank & Noah Koubenec, shine & inspire at AECT #aect2019","truncated":false,"display_text_range":[0,150],"entities":{"hashtags":[{"text":"aect2019","indices":[141,150]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3389128959,"id_str":"3389128959","name":"Tammi","screen_name":"tkolski716","location":"","description":"Middle + aged, adjunct college faculty professor, proud mother, wife, daughter and + sister, Doctoral of Education Technology student.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":57,"listed_count":2,"created_at":"Thu + Jul 23 13:11:07 +0000 2015","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/839131581377830914\/-YayFh8V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/839131581377830914\/-YayFh8V_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 02:00:09 +0000 2019","id":1187911764056268802,"id_str":"1187911764056268802","full_text":"RT + @DrVirtuality: Session about online personal data curation with benevolent + intention and safeguards. @aect #aect19 #aect19inspired https\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[110,117]},{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[104,109]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 16:04:02 +0000 2019","id":1187761747635003392,"id_str":"1187761747635003392","full_text":"Session + about online personal data curation with benevolent intention and safeguards. + @aect #aect19 #aect19inspired https:\/\/t.co\/DtM0PbHUfF","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect19","indices":[92,99]},{"text":"aect19inspired","indices":[100,115]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[86,91]}],"urls":[],"media":[{"id":1187761741565853698,"id_str":"1187761741565853698","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvHAsvVAAIV0uO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvHAsvVAAIV0uO.jpg","url":"https:\/\/t.co\/DtM0PbHUfF","display_url":"pic.twitter.com\/DtM0PbHUfF","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187761747635003392\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187761741565853698,"id_str":"1187761741565853698","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvHAsvVAAIV0uO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvHAsvVAAIV0uO.jpg","url":"https:\/\/t.co\/DtM0PbHUfF","display_url":"pic.twitter.com\/DtM0PbHUfF","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187761747635003392\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:13:43 +0000 2019","id":1187809483210313728,"id_str":"1187809483210313728","full_text":"RT + @richardewest: Struggling to know how to teach various qualitative paradigms + to new qualitative research students? We have some ideas us\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"richardewest","name":"Rick + West","id":17639668,"id_str":"17639668","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2450343740,"id_str":"2450343740","name":"Julie + A. Tippens, DrPH \ud83d\ude37","screen_name":"JulieATippens","location":"","description":"Assistant + Professor @UNL_CYAF. Global health, forced migration & refugees. Giraffe enthusiast. + Shaggy sheepdog mom.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":427,"friends_count":1560,"listed_count":11,"created_at":"Thu + Apr 17 19:54:12 +0000 2014","favourites_count":2220,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":910,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/935978535935606784\/4DrmyMo2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/935978535935606784\/4DrmyMo2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2450343740\/1522101162","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 20:07:09 +0000 2019","id":1187460540043448321,"id_str":"1187460540043448321","full_text":"Struggling + to know how to teach various qualitative paradigms to new qualitative research + students? We have some ideas using a new method called Decision-based Learning + that we''ll be teaching at 2 p.m. today at #AECT19. Come be #aectinspired! + https:\/\/t.co\/1pCQSrE8vl","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"AECT19","indices":[211,218]},{"text":"aectinspired","indices":[228,241]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187460492937199616,"id_str":"1187460492937199616","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","url":"https:\/\/t.co\/1pCQSrE8vl","display_url":"pic.twitter.com\/1pCQSrE8vl","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187460540043448321\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":711,"resize":"fit"},"large":{"w":1462,"h":866,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":403,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187460492937199616,"id_str":"1187460492937199616","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","url":"https:\/\/t.co\/1pCQSrE8vl","display_url":"pic.twitter.com\/1pCQSrE8vl","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187460540043448321\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":711,"resize":"fit"},"large":{"w":1462,"h":866,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":403,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17639668,"id_str":"17639668","name":"Rick + West","screen_name":"richardewest","location":"Provo, ut","description":"Instructional + Designer, Researcher, & Evaluator at Brigham Young University","url":"http:\/\/t.co\/Nc39wWEhGM","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Nc39wWEhGM","expanded_url":"http:\/\/richardewest.com","display_url":"richardewest.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":223,"listed_count":39,"created_at":"Wed + Nov 26 02:26:26 +0000 2008","favourites_count":799,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3339,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17639668\/1446650027","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 22:09:33 +0000 2019","id":1187853729573281800,"id_str":"1187853729573281800","full_text":"RT + @d_mulder: It was a fantastic conference as always! See you all in Jacksonville + next time around. #aect19 #aect19inspired","truncated":false,"display_text_range":[0,124],"entities":{"hashtags":[{"text":"aect19","indices":[101,108]},{"text":"aect19inspired","indices":[109,124]}],"symbols":[],"user_mentions":[{"screen_name":"d_mulder","name":"Dr. + Dave Mulder","id":30278154,"id_str":"30278154","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 18:44:47 +0000 2019","id":1187802201361502208,"id_str":"1187802201361502208","full_text":"It + was a fantastic conference as always! See you all in Jacksonville next time + around. #aect19 #aect19inspired","truncated":false,"display_text_range":[0,110],"entities":{"hashtags":[{"text":"aect19","indices":[87,94]},{"text":"aect19inspired","indices":[95,110]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":30278154,"id_str":"30278154","name":"Dr. + Dave Mulder","screen_name":"d_mulder","location":"Iowa","description":"Christ-follower. + Husband of one and dad of two. Professor of Education at @dordtuniversity. + #EdTech is my jam. My tweets speak only for me.","url":"https:\/\/t.co\/i9IOUI9RZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/i9IOUI9RZC","expanded_url":"https:\/\/drdave.substack.com\/","display_url":"drdave.substack.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3921,"friends_count":949,"listed_count":249,"created_at":"Fri + Apr 10 18:27:10 +0000 2009","favourites_count":39976,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30278154\/1568172162","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:57:19 +0000 2019","id":1187820454133633024,"id_str":"1187820454133633024","full_text":"RT + @PaulineMuljana: #aect19 attendees, consider publishing your papers in this + journal. https:\/\/t.co\/j5KbBhznog","truncated":false,"display_text_range":[0,111],"entities":{"hashtags":[{"text":"aect19","indices":[20,27]}],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]}],"urls":[{"url":"https:\/\/t.co\/j5KbBhznog","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187774375338172417","display_url":"twitter.com\/ifenthaler\/sta\u2026","indices":[88,111]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2950104673,"id_str":"2950104673","name":"Ayodeji + Ibukun","screen_name":"lbukunAA","location":"Oklahoma, USA","description":"B.Engrg + MS MNSE","url":"https:\/\/t.co\/kVfuPQQfYs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kVfuPQQfYs","expanded_url":"http:\/\/www.ayoibukun.com","display_url":"ayoibukun.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":489,"listed_count":0,"created_at":"Mon + Dec 29 12:06:33 +0000 2014","favourites_count":665,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":154,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2950104673\/1574622610","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 17:23:29 +0000 2019","id":1187781741445967873,"id_str":"1187781741445967873","full_text":"#aect19 + attendees, consider publishing your papers in this journal. https:\/\/t.co\/j5KbBhznog","truncated":false,"display_text_range":[0,67],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/j5KbBhznog","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187774375338172417","display_url":"twitter.com\/ifenthaler\/sta\u2026","indices":[68,91]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"36ac79e68ace76e4","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/36ac79e68ace76e4.json","place_type":"city","name":"Rancho + Cucamonga","full_name":"Rancho Cucamonga, CA","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-117.637862,34.077184],[-117.4864431,34.077184],[-117.4864431,34.166156],[-117.637862,34.166156]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1187774375338172417,"quoted_status_id_str":"1187774375338172417","quoted_status_permalink":{"url":"https:\/\/t.co\/j5KbBhznog","expanded":"https:\/\/twitter.com\/ifenthaler\/status\/1187774375338172417","display":"twitter.com\/ifenthaler\/sta\u2026"},"quoted_status":{"created_at":"Fri + Oct 25 16:54:13 +0000 2019","id":1187774375338172417,"id_str":"1187774375338172417","full_text":"@AECT + Safe travels #aect19inspired colleagues. Publish your new ideas in Technology, + Knowledge and Learning @SpringerEdu \n\n#Edtech\n\nhttps:\/\/t.co\/3A6GsVRzRO + https:\/\/t.co\/rejJwM9VGt","truncated":false,"display_text_range":[0,155],"entities":{"hashtags":[{"text":"aect19inspired","indices":[19,34]},{"text":"Edtech","indices":[123,130]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]},{"screen_name":"SpringerEdu","name":"Springer + Education","id":347188522,"id_str":"347188522","indices":[108,120]}],"urls":[{"url":"https:\/\/t.co\/3A6GsVRzRO","expanded_url":"http:\/\/springer.com\/10758","display_url":"springer.com\/10758","indices":[132,155]}],"media":[{"id":1187774350382063617,"id_str":"1187774350382063617","indices":[156,179],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvSeoPX4AEsdrB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvSeoPX4AEsdrB.jpg","url":"https:\/\/t.co\/rejJwM9VGt","display_url":"pic.twitter.com\/rejJwM9VGt","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187774375338172417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":153,"h":229,"resize":"fit"},"medium":{"w":153,"h":229,"resize":"fit"},"large":{"w":153,"h":229,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187774350382063617,"id_str":"1187774350382063617","indices":[156,179],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvSeoPX4AEsdrB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvSeoPX4AEsdrB.jpg","url":"https:\/\/t.co\/rejJwM9VGt","display_url":"pic.twitter.com\/rejJwM9VGt","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187774375338172417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":153,"h":229,"resize":"fit"},"medium":{"w":153,"h":229,"resize":"fit"},"large":{"w":153,"h":229,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":45137054,"id_str":"45137054","name":"Dirk + Ifenthaler","screen_name":"ifenthaler","location":"","description":"#learninganalytics","url":"https:\/\/t.co\/nGyfFQyRvo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nGyfFQyRvo","expanded_url":"http:\/\/www.ifenthaler.info","display_url":"ifenthaler.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":895,"friends_count":246,"listed_count":35,"created_at":"Sat + Jun 06 14:19:07 +0000 2009","favourites_count":615,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":878,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1187774375338172417,"quoted_status_id_str":"1187774375338172417","quoted_status_permalink":{"url":"https:\/\/t.co\/j5KbBhznog","expanded":"https:\/\/twitter.com\/ifenthaler\/status\/1187774375338172417","display":"twitter.com\/ifenthaler\/sta\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 26 00:39:38 +0000 2019","id":1187891501193404416,"id_str":"1187891501193404416","full_text":"RT + @SultanMutlaq: The end #aect19inspired @KhbratKSU3 @khebrat_edu @ali_aleryany + @khal0d99 @CIMAKSTATE https:\/\/t.co\/EON2Hzn5vO","truncated":false,"display_text_range":[0,126],"entities":{"hashtags":[{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"SultanMutlaq","name":"SultanMutlaq","id":370132373,"id_str":"370132373","indices":[3,16]},{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[42,53]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[54,66]},{"screen_name":"ali_aleryany","name":"\ud83d\udcf8 + \u0639\u0644\u064a \u0627\u0644\u0639\u0631\u064a\u0627\u0646\u064a","id":424775077,"id_str":"424775077","indices":[67,80]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":320094261,"id_str":"320094261","name":"Osamah + Alzahrani","screen_name":"OsamahAlzahrani","location":"Kingdom of Saudi Arabia","description":"\ud83c\uddf8\ud83c\udde6\ud83c\uddf8\ud83c\udde6\ud83c\uddf8\ud83c\udde6\ud83c\uddf8\ud83c\udde6\ud83c\uddf8\ud83c\udde6\ud83c\uddf8\ud83c\udde6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":121,"friends_count":1056,"listed_count":0,"created_at":"Sun + Jun 19 08:53:28 +0000 2011","favourites_count":693,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1483,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1303185434634264576\/mDKxumCM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1303185434634264576\/mDKxumCM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/320094261\/1357168447","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 21:13:38 +0000 2019","id":1187839659277029377,"id_str":"1187839659277029377","full_text":"The + end #aect19inspired @KhbratKSU3 @khebrat_edu @ali_aleryany @khal0d99 @CIMAKSTATE + https:\/\/t.co\/EON2Hzn5vO","truncated":false,"display_text_range":[0,84],"entities":{"hashtags":[{"text":"aect19inspired","indices":[8,23]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[24,35]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[36,48]},{"screen_name":"ali_aleryany","name":"\ud83d\udcf8 + \u0639\u0644\u064a \u0627\u0644\u0639\u0631\u064a\u0627\u0646\u064a","id":424775077,"id_str":"424775077","indices":[49,62]},{"screen_name":"CIMAKSTATE","name":"CIMA","id":2450399486,"id_str":"2450399486","indices":[73,84]}],"urls":[],"media":[{"id":1187839652130017280,"id_str":"1187839652130017280","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHwN3sNVUAAeqTX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHwN3sNVUAAeqTX.jpg","url":"https:\/\/t.co\/EON2Hzn5vO","display_url":"pic.twitter.com\/EON2Hzn5vO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187839659277029377\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":1280,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187839652130017280,"id_str":"1187839652130017280","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHwN3sNVUAAeqTX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHwN3sNVUAAeqTX.jpg","url":"https:\/\/t.co\/EON2Hzn5vO","display_url":"pic.twitter.com\/EON2Hzn5vO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187839659277029377\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":1280,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1187839652205449216,"id_str":"1187839652205449216","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHwN3sfUUAA7JmD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHwN3sfUUAA7JmD.jpg","url":"https:\/\/t.co\/EON2Hzn5vO","display_url":"pic.twitter.com\/EON2Hzn5vO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187839659277029377\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":1280,"h":960,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 18:20:18 +0000 2019","id":1187796037127168003,"id_str":"1187796037127168003","full_text":"As + @austinkleon would say: Show your work! It only makes it richer\u2014and helps + to connect us with new collaborators. @AECT #aect19 https:\/\/t.co\/2uodee9HCc","truncated":false,"display_text_range":[0,128],"entities":{"hashtags":[{"text":"aect19","indices":[121,128]}],"symbols":[],"user_mentions":[{"screen_name":"austinkleon","name":"Austin + Kleon","id":9698942,"id_str":"9698942","indices":[3,15]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[115,120]}],"urls":[{"url":"https:\/\/t.co\/2uodee9HCc","expanded_url":"https:\/\/twitter.com\/gravesle\/status\/1187782419396644864","display_url":"twitter.com\/gravesle\/statu\u2026","indices":[129,152]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":325115627,"id_str":"325115627","name":"Melissa + Marie Strong","screen_name":"DeLibrosCorazon","location":"Los Angeles","description":"Director + of Academic Systems @ViewpointSchool, teacher of Spanish & Info Lit,, parent. + Inspired by great educators, writing, running, food, family, and birds.","url":"https:\/\/t.co\/4kra06diS1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4kra06diS1","expanded_url":"http:\/\/blogs.viewpoint.org\/middleschoolblog\/","display_url":"blogs.viewpoint.org\/middleschoolbl\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":975,"friends_count":1273,"listed_count":80,"created_at":"Mon + Jun 27 19:21:37 +0000 2011","favourites_count":2529,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2207,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1117580311951314944\/0rQ5E2Nv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1117580311951314944\/0rQ5E2Nv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/325115627\/1516594338","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187782419396644864,"quoted_status_id_str":"1187782419396644864","quoted_status_permalink":{"url":"https:\/\/t.co\/2uodee9HCc","expanded":"https:\/\/twitter.com\/gravesle\/status\/1187782419396644864","display":"twitter.com\/gravesle\/statu\u2026"},"quoted_status":{"created_at":"Fri + Oct 25 17:26:11 +0000 2019","id":1187782419396644864,"id_str":"1187782419396644864","full_text":"Q2: + Design out loud - Are you regularly sharing stories about your process with + others? If so, how?\n#AECT19 #aect19inspired","truncated":false,"display_text_range":[0,123],"entities":{"hashtags":[{"text":"AECT19","indices":[100,107]},{"text":"aect19inspired","indices":[108,123]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11092692,"id_str":"11092692","name":"Dr. + Leigh Graves Wolf","screen_name":"gravesle","location":"Michigan\/Galway\/Arizona\/Online","description":"I + like to share & listen. Human. Clinical Associate Professor Ed Leadership + & Innovation @asueducation. I tweet my own things. (Dr\/She\/Her)","url":"https:\/\/t.co\/CIZXWxMRrw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CIZXWxMRrw","expanded_url":"http:\/\/leighgraveswolf.com","display_url":"leighgraveswolf.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6034,"friends_count":6584,"listed_count":442,"created_at":"Wed + Dec 12 16:03:00 +0000 2007","favourites_count":31280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48218,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11092692\/1442771541","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"044905","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E2F8AA","profile_text_color":"659B08","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 23:04:33 +0000 2019","id":1187867574102441984,"id_str":"1187867574102441984","full_text":"RT + @learnics1: Had great conversations about online behavior data at the #aect2019 + convention. Lots of innovation thinkers in attendance!\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"aect2019","indices":[73,82]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59934839,"id_str":"59934839","name":"Isabel + C. Resende, Ed. D.","screen_name":"icr205","location":"Pennsylvania, USA","description":"Assistant + Superintendent at Nazareth Area School District.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":832,"friends_count":573,"listed_count":22,"created_at":"Sat + Jul 25 00:46:58 +0000 2009","favourites_count":7454,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3239,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1466996503009013762\/7SdILvHf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1466996503009013762\/7SdILvHf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59934839\/1562785982","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 15:34:51 +0000 2019","id":1187754401080807424,"id_str":"1187754401080807424","full_text":"Had + great conversations about online behavior data at the #aect2019 convention. Lots + of innovation thinkers in attendance! https:\/\/t.co\/rmsDut7SZ5","truncated":false,"display_text_range":[0,123],"entities":{"hashtags":[{"text":"aect2019","indices":[58,67]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187754392750919680,"id_str":"1187754392750919680","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvAU8RUEAAdb_A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvAU8RUEAAdb_A.jpg","url":"https:\/\/t.co\/rmsDut7SZ5","display_url":"pic.twitter.com\/rmsDut7SZ5","expanded_url":"https:\/\/twitter.com\/learnics1\/status\/1187754401080807424\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187754392750919680,"id_str":"1187754392750919680","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvAU8RUEAAdb_A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvAU8RUEAAdb_A.jpg","url":"https:\/\/t.co\/rmsDut7SZ5","display_url":"pic.twitter.com\/rmsDut7SZ5","expanded_url":"https:\/\/twitter.com\/learnics1\/status\/1187754401080807424\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":899777510237450240,"id_str":"899777510237450240","name":"Learnics","screen_name":"Learnics_","location":"Easton, + PA","description":"Learnics supports your school\u2019s shift to digital learning + by revealing student online experiences. \n#NSFFunded #EdTech #DataAnalytics + #GoogleClassroom","url":"https:\/\/t.co\/ZCKYuTA8XB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZCKYuTA8XB","expanded_url":"https:\/\/www.learnics.com\/","display_url":"learnics.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":400,"friends_count":1176,"listed_count":0,"created_at":"Mon + Aug 21 23:37:30 +0000 2017","favourites_count":2536,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":778,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1239638592508567559\/oZwh_chM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1239638592508567559\/oZwh_chM_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/899777510237450240\/1612204423","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 23:20:59 +0000 2019","id":1187871710139342849,"id_str":"1187871710139342849","full_text":"RT + @pazureka: Interested in fostering #SocialPresence in #OnlineLearning? Come + talk with Dr. Matti Koivula and I from @UMNews about how des\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"SocialPresence","indices":[38,53]},{"text":"OnlineLearning","indices":[57,72]}],"symbols":[],"user_mentions":[{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[3,12]},{"screen_name":"UMNews","name":"University + of Minnesota","id":18917572,"id_str":"18917572","indices":[118,125]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":731942720290230272,"id_str":"731942720290230272","name":"Dan + Holtey","screen_name":"dan_holtey","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":66,"friends_count":42,"listed_count":1,"created_at":"Sun + May 15 20:21:58 +0000 2016","favourites_count":425,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1989,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/878292179730354176\/oeHMeDLl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/878292179730354176\/oeHMeDLl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/731942720290230272\/1498236606","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 16:18:24 +0000 2019","id":1187765363737391104,"id_str":"1187765363737391104","full_text":"Interested + in fostering #SocialPresence in #OnlineLearning? Come talk with Dr. Matti + Koivula and I from @UMNews about how designers\/instructors can use video + based interactions to allow for authentic conversations. Today at 10AM in + Conference Room 14! @AECT #aect19 https:\/\/t.co\/r6Y8pQmZOL","truncated":false,"display_text_range":[0,265],"entities":{"hashtags":[{"text":"SocialPresence","indices":[24,39]},{"text":"OnlineLearning","indices":[43,58]},{"text":"aect19","indices":[258,265]}],"symbols":[],"user_mentions":[{"screen_name":"UMNews","name":"University + of Minnesota","id":18917572,"id_str":"18917572","indices":[104,111]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[252,257]}],"urls":[],"media":[{"id":1187765359387897856,"id_str":"1187765359387897856","indices":[266,289],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvKTSLUcAAPuKr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvKTSLUcAAPuKr.png","url":"https:\/\/t.co\/r6Y8pQmZOL","display_url":"pic.twitter.com\/r6Y8pQmZOL","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187765363737391104\/photo\/1","type":"photo","sizes":{"large":{"w":737,"h":330,"resize":"fit"},"medium":{"w":737,"h":330,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":304,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187765359387897856,"id_str":"1187765359387897856","indices":[266,289],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvKTSLUcAAPuKr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvKTSLUcAAPuKr.png","url":"https:\/\/t.co\/r6Y8pQmZOL","display_url":"pic.twitter.com\/r6Y8pQmZOL","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187765363737391104\/photo\/1","type":"photo","sizes":{"large":{"w":737,"h":330,"resize":"fit"},"medium":{"w":737,"h":330,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":304,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 20:32:45 +0000 2019","id":1187829372016828416,"id_str":"1187829372016828416","full_text":"A3: + My influencers are all around: colleagues that are innovative & creative + are inspirational to my craft, but lots of great books, podcasts serve as + motivation too. #AECT19","truncated":false,"display_text_range":[0,178],"entities":{"hashtags":[{"text":"AECT19","indices":[171,178]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2338796726,"id_str":"2338796726","name":"Nate + Moore","screen_name":"TheeMrMoore","location":"Michigan, USA","description":"Executive + Director of Technology. Reader. Music lover. Piano player. Learner. Leader. + Former teacher, coach. CTO MSBO. @MACUL Delegate Team @MAET #LeadLearnGrow","url":"https:\/\/t.co\/M4xBfznJyv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/M4xBfznJyv","expanded_url":"http:\/\/www.TheeMrMoore.com","display_url":"TheeMrMoore.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":830,"friends_count":508,"listed_count":26,"created_at":"Tue + Feb 11 18:35:53 +0000 2014","favourites_count":12788,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3111,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1032005082244689920\/RlMQlRSP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032005082244689920\/RlMQlRSP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2338796726\/1610215790","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"89C9FA","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 05:14:15 +0000 2019","id":1187960612695019521,"id_str":"1187960612695019521","full_text":"Drinks + and dessert to celebrate the end of the week and #AECT19 \ud83d\ude0d https:\/\/t.co\/OlWIR3JcZc + https:\/\/t.co\/79CGsiSCHD","truncated":false,"display_text_range":[0,89],"entities":{"hashtags":[{"text":"AECT19","indices":[56,63]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OlWIR3JcZc","expanded_url":"http:\/\/bit.ly\/2ofqpjs","display_url":"bit.ly\/2ofqpjs","indices":[66,89]}],"media":[{"id":1187960611193413638,"id_str":"1187960611193413638","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/EHx74b1W4AY11Kb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHx74b1W4AY11Kb.jpg","url":"https:\/\/t.co\/79CGsiSCHD","display_url":"pic.twitter.com\/79CGsiSCHD","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1187960612695019521\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187960611193413638,"id_str":"1187960611193413638","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/EHx74b1W4AY11Kb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHx74b1W4AY11Kb.jpg","url":"https:\/\/t.co\/79CGsiSCHD","display_url":"pic.twitter.com\/79CGsiSCHD","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1187960612695019521\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 23:26:07 +0000 2019","id":1187873000177074176,"id_str":"1187873000177074176","full_text":"RT + @hodgesc: The conference is nearly over, but your chance to impact the field + is not over. Submit your work to @AECTTechTrends. #aect19i\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[114,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 18:37:44 +0000 2019","id":1187800427544268800,"id_str":"1187800427544268800","full_text":"The + conference is nearly over, but your chance to impact the field is not over. Submit + your work to @AECTTechTrends. #aect19inspired https:\/\/t.co\/Apm4iN9TnO","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[101,116]}],"urls":[],"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"photo","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"video","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"duration_millis":14133,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/pl\/T49X8pWvcWZ1hr0f.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/360x270\/jjTaFEgF3SEuLXiG.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/480x360\/lLxj8onGzGLt2Pjb.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/640x480\/fsmN351GfvkQwtsa.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 23:40:09 +0000 2019","id":1187876531193823237,"id_str":"1187876531193823237","full_text":"More + collaborations from Honduras, Ukraine and other countries @aectclt @AECT #aect19, + looking forward to the growth of #IRCEES https:\/\/t.co\/eOXKphRXsS https:\/\/t.co\/4qv3X7t4wy","truncated":false,"display_text_range":[0,151],"entities":{"hashtags":[{"text":"aect19","indices":[78,85]},{"text":"IRCEES","indices":[120,127]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[63,71]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[72,77]}],"urls":[{"url":"https:\/\/t.co\/eOXKphRXsS","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187788514324140032","display_url":"twitter.com\/nicolapallitt\/\u2026","indices":[128,151]}],"media":[{"id":1187876500986400774,"id_str":"1187876500986400774","indices":[152,175],"media_url":"http:\/\/pbs.twimg.com\/media\/EHwvYk5UEAYR46i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHwvYk5UEAYR46i.jpg","url":"https:\/\/t.co\/4qv3X7t4wy","display_url":"pic.twitter.com\/4qv3X7t4wy","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187876531193823237\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187876500986400774,"id_str":"1187876500986400774","indices":[152,175],"media_url":"http:\/\/pbs.twimg.com\/media\/EHwvYk5UEAYR46i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHwvYk5UEAYR46i.jpg","url":"https:\/\/t.co\/4qv3X7t4wy","display_url":"pic.twitter.com\/4qv3X7t4wy","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187876531193823237\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187876500978094080,"id_str":"1187876500978094080","indices":[152,175],"media_url":"http:\/\/pbs.twimg.com\/media\/EHwvYk3VUAASsla.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHwvYk3VUAASsla.jpg","url":"https:\/\/t.co\/4qv3X7t4wy","display_url":"pic.twitter.com\/4qv3X7t4wy","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187876531193823237\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187788514324140032,"quoted_status_id_str":"1187788514324140032","quoted_status_permalink":{"url":"https:\/\/t.co\/eOXKphRXsS","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1187788514324140032","display":"twitter.com\/nicolapallitt\/\u2026"},"quoted_status":{"created_at":"Fri + Oct 25 17:50:24 +0000 2019","id":1187788514324140032,"id_str":"1187788514324140032","full_text":"#IRCEES + using @zoom_us at @AECT @aectclt to bring in collaborators who couldn''t be + at the conference & enable a broader diversity of voices #aect19inspired + https:\/\/t.co\/FoSZQHt4Er","truncated":false,"display_text_range":[0,159],"entities":{"hashtags":[{"text":"IRCEES","indices":[0,7]},{"text":"aect19inspired","indices":[144,159]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[26,31]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[32,40]}],"urls":[],"media":[{"id":1187788506518568960,"id_str":"1187788506518568960","indices":[160,183],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvfWn9UwAAam64.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvfWn9UwAAam64.jpg","url":"https:\/\/t.co\/FoSZQHt4Er","display_url":"pic.twitter.com\/FoSZQHt4Er","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187788514324140032\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187788506518568960,"id_str":"1187788506518568960","indices":[160,183],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvfWn9UwAAam64.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvfWn9UwAAam64.jpg","url":"https:\/\/t.co\/FoSZQHt4Er","display_url":"pic.twitter.com\/FoSZQHt4Er","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187788514324140032\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 18:25:20 +0000 2019","id":1187797305056849920,"id_str":"1187797305056849920","full_text":"Just + met these fabulous scholars at the International Research Collaborative session + @aect. Thanks for making me feel right at home! #aect #aect19 #aect19inspired + https:\/\/t.co\/4LKn4cMnMA","truncated":false,"display_text_range":[0,162],"entities":{"hashtags":[{"text":"aect","indices":[133,138]},{"text":"aect19","indices":[139,146]},{"text":"aect19inspired","indices":[147,162]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[85,90]}],"urls":[],"media":[{"id":1187797241680973824,"id_str":"1187797241680973824","indices":[163,186],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvnTE-VUAAZx7t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvnTE-VUAAZx7t.jpg","url":"https:\/\/t.co\/4LKn4cMnMA","display_url":"pic.twitter.com\/4LKn4cMnMA","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187797305056849920\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187797241680973824,"id_str":"1187797241680973824","indices":[163,186],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvnTE-VUAAZx7t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvnTE-VUAAZx7t.jpg","url":"https:\/\/t.co\/4LKn4cMnMA","display_url":"pic.twitter.com\/4LKn4cMnMA","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187797305056849920\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1187797241693474818,"id_str":"1187797241693474818","indices":[163,186],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvnTFBUEAI66MY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvnTFBUEAI66MY.jpg","url":"https:\/\/t.co\/4LKn4cMnMA","display_url":"pic.twitter.com\/4LKn4cMnMA","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187797305056849920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":616,"h":198,"resize":"fit"},"medium":{"w":616,"h":198,"resize":"fit"},"small":{"w":616,"h":198,"resize":"fit"}},"ext_alt_text":null},{"id":1187797241706102784,"id_str":"1187797241706102784","indices":[163,186],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvnTFEUwAAmgOU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvnTFEUwAAmgOU.jpg","url":"https:\/\/t.co\/4LKn4cMnMA","display_url":"pic.twitter.com\/4LKn4cMnMA","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187797305056849920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1187797241714503680,"id_str":"1187797241714503680","indices":[163,186],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvnTFGU8AA0dTs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvnTFGU8AA0dTs.jpg","url":"https:\/\/t.co\/4LKn4cMnMA","display_url":"pic.twitter.com\/4LKn4cMnMA","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187797305056849920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:47:21 +0000 2019","id":1187817947651133440,"id_str":"1187817947651133440","full_text":"RT + @hodgesc: The conference is nearly over, but your chance to impact the field + is not over. Submit your work to @AECTTechTrends. #aect19i\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[114,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 18:37:44 +0000 2019","id":1187800427544268800,"id_str":"1187800427544268800","full_text":"The + conference is nearly over, but your chance to impact the field is not over. Submit + your work to @AECTTechTrends. #aect19inspired https:\/\/t.co\/Apm4iN9TnO","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[101,116]}],"urls":[],"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"photo","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"video","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"duration_millis":14133,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/pl\/T49X8pWvcWZ1hr0f.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/360x270\/jjTaFEgF3SEuLXiG.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/480x360\/lLxj8onGzGLt2Pjb.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/640x480\/fsmN351GfvkQwtsa.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 23:29:21 +0000 2019","id":1187873812504645634,"id_str":"1187873812504645634","full_text":"RT + @ifenthaler: @AECT Safe travels #aect19inspired colleagues. Publish your new + ideas in Technology, Knowledge and Learning @SpringerEdu\u2026","truncated":false,"display_text_range":[0,137],"entities":{"hashtags":[{"text":"aect19inspired","indices":[35,50]}],"symbols":[],"user_mentions":[{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[3,14]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[16,21]},{"screen_name":"SpringerEdu","name":"Springer + Education","id":347188522,"id_str":"347188522","indices":[124,136]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 16:54:13 +0000 2019","id":1187774375338172417,"id_str":"1187774375338172417","full_text":"@AECT + Safe travels #aect19inspired colleagues. Publish your new ideas in Technology, + Knowledge and Learning @SpringerEdu \n\n#Edtech\n\nhttps:\/\/t.co\/3A6GsVRzRO + https:\/\/t.co\/rejJwM9VGt","truncated":false,"display_text_range":[0,155],"entities":{"hashtags":[{"text":"aect19inspired","indices":[19,34]},{"text":"Edtech","indices":[123,130]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]},{"screen_name":"SpringerEdu","name":"Springer + Education","id":347188522,"id_str":"347188522","indices":[108,120]}],"urls":[{"url":"https:\/\/t.co\/3A6GsVRzRO","expanded_url":"http:\/\/springer.com\/10758","display_url":"springer.com\/10758","indices":[132,155]}],"media":[{"id":1187774350382063617,"id_str":"1187774350382063617","indices":[156,179],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvSeoPX4AEsdrB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvSeoPX4AEsdrB.jpg","url":"https:\/\/t.co\/rejJwM9VGt","display_url":"pic.twitter.com\/rejJwM9VGt","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187774375338172417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":153,"h":229,"resize":"fit"},"medium":{"w":153,"h":229,"resize":"fit"},"large":{"w":153,"h":229,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187774350382063617,"id_str":"1187774350382063617","indices":[156,179],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvSeoPX4AEsdrB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvSeoPX4AEsdrB.jpg","url":"https:\/\/t.co\/rejJwM9VGt","display_url":"pic.twitter.com\/rejJwM9VGt","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187774375338172417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":153,"h":229,"resize":"fit"},"medium":{"w":153,"h":229,"resize":"fit"},"large":{"w":153,"h":229,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":45137054,"id_str":"45137054","name":"Dirk + Ifenthaler","screen_name":"ifenthaler","location":"","description":"#learninganalytics","url":"https:\/\/t.co\/nGyfFQyRvo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nGyfFQyRvo","expanded_url":"http:\/\/www.ifenthaler.info","display_url":"ifenthaler.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":895,"friends_count":246,"listed_count":35,"created_at":"Sat + Jun 06 14:19:07 +0000 2009","favourites_count":615,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":878,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:04:29 +0000 2019","id":1187807157296779271,"id_str":"1187807157296779271","full_text":"RT + @DrTerriC: Watching an engaging session with @tel_education staff and @oueducation + students @CatJackson28 @kellyeross16 as they talk abo\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[3,12]},{"screen_name":"tel_education","name":"TEL + Education","id":950470158837051392,"id_str":"950470158837051392","indices":[48,62]},{"screen_name":"oueducation","name":"OU + Jeannine Rainbolt College of Education","id":15946481,"id_str":"15946481","indices":[73,85]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15946481,"id_str":"15946481","name":"OU + Jeannine Rainbolt College of Education","screen_name":"oueducation","location":"Norman, + OK","description":"The Jeannine Rainbolt College of Education - Promoting + excellence in teaching, research and practice in the multi-disciplinary field + of education.","url":"http:\/\/t.co\/Ne7gbdCpIu","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Ne7gbdCpIu","expanded_url":"http:\/\/www.ou.edu\/education.html","display_url":"ou.edu\/education.html","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":2952,"friends_count":957,"listed_count":64,"created_at":"Fri + Aug 22 15:57:09 +0000 2008","favourites_count":991,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7980,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1044948890569457674\/CijVz5me_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1044948890569457674\/CijVz5me_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15946481\/1522680356","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 18:09:54 +0000 2019","id":1187793421840240640,"id_str":"1187793421840240640","full_text":"Watching + an engaging session with @tel_education staff and @oueducation students @CatJackson28 + @kellyeross16 as they talk about learning environment modeling. @buckydodd #aect19inspired (room + 14) https:\/\/t.co\/5BRi92e71q","truncated":false,"display_text_range":[0,197],"entities":{"hashtags":[{"text":"aect19inspired","indices":[171,186]}],"symbols":[],"user_mentions":[{"screen_name":"tel_education","name":"TEL + Education","id":950470158837051392,"id_str":"950470158837051392","indices":[34,48]},{"screen_name":"oueducation","name":"OU + Jeannine Rainbolt College of Education","id":15946481,"id_str":"15946481","indices":[59,71]},{"screen_name":"kellyeross16","name":"Dr. + Kelly Ross","id":1194594229,"id_str":"1194594229","indices":[95,108]},{"screen_name":"buckydodd","name":"Bucky","id":158037639,"id_str":"158037639","indices":[159,169]}],"urls":[],"media":[{"id":1187793401636212736,"id_str":"1187793401636212736","indices":[198,221],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvjzjsUUAAKRlC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvjzjsUUAAKRlC.jpg","url":"https:\/\/t.co\/5BRi92e71q","display_url":"pic.twitter.com\/5BRi92e71q","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187793421840240640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187793401636212736,"id_str":"1187793401636212736","indices":[198,221],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvjzjsUUAAKRlC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvjzjsUUAAKRlC.jpg","url":"https:\/\/t.co\/5BRi92e71q","display_url":"pic.twitter.com\/5BRi92e71q","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187793421840240640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":"Tel + library"}]},"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" + rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 22:18:40 +0000 2019","id":1187856024742576128,"id_str":"1187856024742576128","full_text":"RT + @RealMelissaWarr: Miss our #AECT19 presentation on Five Discourse of Design? + Check it out on our website (even includes cell phone-recor\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[30,37]}],"symbols":[],"user_mentions":[{"screen_name":"RealMelissaWarr","name":"Melissa + Warr","id":2191740091,"id_str":"2191740091","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 18:37:17 +0000 2019","id":1187800314021154816,"id_str":"1187800314021154816","full_text":"Miss + our #AECT19 presentation on Five Discourse of Design? Check it out on our + website (even includes cell phone-recorded audio!) #talkingaboutdesign\n\nAECT + Talks About Design! https:\/\/t.co\/kGE5d3Ik54","truncated":false,"display_text_range":[0,199],"entities":{"hashtags":[{"text":"AECT19","indices":[9,16]},{"text":"talkingaboutdesign","indices":[130,149]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kGE5d3Ik54","expanded_url":"https:\/\/talkingaboutdesign.com\/aect-talks-about-design\/","display_url":"talkingaboutdesign.com\/aect-talks-abo\u2026","indices":[176,199]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2191740091,"id_str":"2191740091","name":"Melissa + Warr","screen_name":"RealMelissaWarr","location":"Monroe, LA","description":"Assistant + Professor, University of Louisiana Monroe","url":"https:\/\/t.co\/2LNlqxPB4z","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2LNlqxPB4z","expanded_url":"http:\/\/Melissa-Warr.com","display_url":"Melissa-Warr.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":64,"listed_count":1,"created_at":"Wed + Nov 13 05:59:01 +0000 2013","favourites_count":36,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":59,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1163579224986271744\/mKWbdlr4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163579224986271744\/mKWbdlr4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2191740091\/1384754908","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 18:50:27 +0000 2019","id":1187803625185144832,"id_str":"1187803625185144832","full_text":"Save + the best for last. This @tel_education session on LEM was the most interactive + session I attended. #aect19inspired https:\/\/t.co\/VCpKOTqGOf","truncated":false,"display_text_range":[0,119],"entities":{"hashtags":[{"text":"aect19inspired","indices":[104,119]}],"symbols":[],"user_mentions":[{"screen_name":"tel_education","name":"TEL + Education","id":950470158837051392,"id_str":"950470158837051392","indices":[29,43]}],"urls":[],"media":[{"id":1187803603055955968,"id_str":"1187803603055955968","indices":[120,143],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvtFW8UUAA2H9h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvtFW8UUAA2H9h.jpg","url":"https:\/\/t.co\/VCpKOTqGOf","display_url":"pic.twitter.com\/VCpKOTqGOf","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187803625185144832\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187803603055955968,"id_str":"1187803603055955968","indices":[120,143],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvtFW8UUAA2H9h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvtFW8UUAA2H9h.jpg","url":"https:\/\/t.co\/VCpKOTqGOf","display_url":"pic.twitter.com\/VCpKOTqGOf","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187803625185144832\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":"Tel + library"}]},"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" + rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9e5725a487000","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9e5725a487000.json","place_type":"poi","name":"Las + Vegas Convention Center","full_name":"Las Vegas Convention Center","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1501727104187,36.13151978164291],[-115.1501727104187,36.13151978164291],[-115.1501727104187,36.13151978164291],[-115.1501727104187,36.13151978164291]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:52:58 +0000 2019","id":1187819360917680128,"id_str":"1187819360917680128","full_text":"RT + @kariknisely: If you are a former teacher and would like to share your story + with other teachers looking to leave the classroom, please\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":518990087,"id_str":"518990087","name":"Dr. + Amanda Olmstead","screen_name":"aolmstead1","location":"Boise, ID","description":"Professional + development and micro-credentials - that''s my jam :)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":120,"friends_count":217,"listed_count":12,"created_at":"Thu + Mar 08 23:33:19 +0000 2012","favourites_count":266,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":570,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663934945727877121\/QHz8-z87_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663934945727877121\/QHz8-z87_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/518990087\/1353117273","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 16:30:59 +0000 2019","id":1187768528893382656,"id_str":"1187768528893382656","full_text":"If + you are a former teacher and would like to share your story with other teachers + looking to leave the classroom, please let me know. I would love to add your + story to these \u201cSuccess Stories\u201d if you are interested. #AECT19 + https:\/\/t.co\/ahXiwvNH2v","truncated":false,"display_text_range":[0,247],"entities":{"hashtags":[{"text":"AECT19","indices":[216,223]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ahXiwvNH2v","expanded_url":"https:\/\/otherjobsforteachers.com\/success-stories","display_url":"otherjobsforteachers.com\/success-stories","indices":[224,247]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:28:22 +0000 2019","id":1187813167637782528,"id_str":"1187813167637782528","full_text":"Fifth + and last day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 @khebrat_edu + @S_Meemar @onaizahedu.\nA Unique Faculty Training Model at the University + of Iowa: A Best Practices Report https:\/\/t.co\/2xICYubyy1","truncated":false,"display_text_range":[0,194],"entities":{"hashtags":[{"text":"aect19inspired","indices":[19,34]},{"text":"AECTech2019","indices":[35,47]},{"text":"aect19inspired","indices":[48,63]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[64,75]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[76,88]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[89,98]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[99,110]}],"urls":[],"media":[{"id":1187813163489611776,"id_str":"1187813163489611776","indices":[195,218],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv1x2VU0AAf6EM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv1x2VU0AAf6EM.jpg","url":"https:\/\/t.co\/2xICYubyy1","display_url":"pic.twitter.com\/2xICYubyy1","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187813167637782528\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1334,"h":750,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187813163489611776,"id_str":"1187813163489611776","indices":[195,218],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv1x2VU0AAf6EM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv1x2VU0AAf6EM.jpg","url":"https:\/\/t.co\/2xICYubyy1","display_url":"pic.twitter.com\/2xICYubyy1","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187813167637782528\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1334,"h":750,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187812359399600128,"in_reply_to_status_id_str":"1187812359399600128","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 18:17:00 +0000 2019","id":1187795208781459456,"id_str":"1187795208781459456","full_text":"Wish + I could join this conference, but I will be attending virtually! #AECT19 @AECT + https:\/\/t.co\/bW1po8si61","truncated":false,"display_text_range":[0,83],"entities":{"hashtags":[{"text":"AECT19","indices":[70,77]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[78,83]}],"urls":[{"url":"https:\/\/t.co\/bW1po8si61","expanded_url":"https:\/\/twitter.com\/gravesle\/status\/1187785164392402946","display_url":"twitter.com\/gravesle\/statu\u2026","indices":[84,107]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":325115627,"id_str":"325115627","name":"Melissa + Marie Strong","screen_name":"DeLibrosCorazon","location":"Los Angeles","description":"Director + of Academic Systems @ViewpointSchool, teacher of Spanish & Info Lit,, parent. + Inspired by great educators, writing, running, food, family, and birds.","url":"https:\/\/t.co\/4kra06diS1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4kra06diS1","expanded_url":"http:\/\/blogs.viewpoint.org\/middleschoolblog\/","display_url":"blogs.viewpoint.org\/middleschoolbl\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":975,"friends_count":1273,"listed_count":80,"created_at":"Mon + Jun 27 19:21:37 +0000 2011","favourites_count":2529,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2207,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1117580311951314944\/0rQ5E2Nv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1117580311951314944\/0rQ5E2Nv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/325115627\/1516594338","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187785164392402946,"quoted_status_id_str":"1187785164392402946","quoted_status_permalink":{"url":"https:\/\/t.co\/bW1po8si61","expanded":"https:\/\/twitter.com\/gravesle\/status\/1187785164392402946","display":"twitter.com\/gravesle\/statu\u2026"},"quoted_status":{"created_at":"Fri + Oct 25 17:37:05 +0000 2019","id":1187785164392402946,"id_str":"1187785164392402946","full_text":"Q3: + \"Your influences are all worth sharing because they clue people into who + you are and what you do - sometimes even more than your own work. Who are + your sources of inspiration?\" #AECT19 #aect19inspired","truncated":false,"display_text_range":[0,204],"entities":{"hashtags":[{"text":"AECT19","indices":[181,188]},{"text":"aect19inspired","indices":[189,204]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11092692,"id_str":"11092692","name":"Dr. + Leigh Graves Wolf","screen_name":"gravesle","location":"Michigan\/Galway\/Arizona\/Online","description":"I + like to share & listen. Human. Clinical Associate Professor Ed Leadership + & Innovation @asueducation. I tweet my own things. (Dr\/She\/Her)","url":"https:\/\/t.co\/CIZXWxMRrw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CIZXWxMRrw","expanded_url":"http:\/\/leighgraveswolf.com","display_url":"leighgraveswolf.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6034,"friends_count":6584,"listed_count":442,"created_at":"Wed + Dec 12 16:03:00 +0000 2007","favourites_count":31280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48218,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11092692\/1442771541","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"044905","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E2F8AA","profile_text_color":"659B08","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 22:07:23 +0000 2019","id":1187853187241390080,"id_str":"1187853187241390080","full_text":"RT + @hodgesc: The conference is nearly over, but your chance to impact the field + is not over. Submit your work to @AECTTechTrends. #aect19i\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[114,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 18:37:44 +0000 2019","id":1187800427544268800,"id_str":"1187800427544268800","full_text":"The + conference is nearly over, but your chance to impact the field is not over. Submit + your work to @AECTTechTrends. #aect19inspired https:\/\/t.co\/Apm4iN9TnO","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[101,116]}],"urls":[],"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"photo","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"video","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"duration_millis":14133,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/pl\/T49X8pWvcWZ1hr0f.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/360x270\/jjTaFEgF3SEuLXiG.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/480x360\/lLxj8onGzGLt2Pjb.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/640x480\/fsmN351GfvkQwtsa.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 22:23:06 +0000 2019","id":1187857141543112704,"id_str":"1187857141543112704","full_text":"RT + @hodgesc: The conference is nearly over, but your chance to impact the field + is not over. Submit your work to @AECTTechTrends. #aect19i\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[114,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15654288,"id_str":"15654288","name":"Scott + J. Warren","screen_name":"constatively","location":"Denton, TX","description":"Professor + of learning tech; instructional design; ethics and greening schools\/orgs; + Business research - systems dev, operations, strategy","url":"https:\/\/t.co\/n5xEkVLkO1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/n5xEkVLkO1","expanded_url":"http:\/\/www.scottjwarren.net","display_url":"scottjwarren.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2186,"friends_count":4880,"listed_count":112,"created_at":"Wed + Jul 30 00:56:48 +0000 2008","favourites_count":62322,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15995,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1391548718940409862\/optqE67f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1391548718940409862\/optqE67f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15654288\/1523275532","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 18:37:44 +0000 2019","id":1187800427544268800,"id_str":"1187800427544268800","full_text":"The + conference is nearly over, but your chance to impact the field is not over. Submit + your work to @AECTTechTrends. #aect19inspired https:\/\/t.co\/Apm4iN9TnO","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[101,116]}],"urls":[],"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"photo","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"video","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"duration_millis":14133,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/pl\/T49X8pWvcWZ1hr0f.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/360x270\/jjTaFEgF3SEuLXiG.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/480x360\/lLxj8onGzGLt2Pjb.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/640x480\/fsmN351GfvkQwtsa.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:47:06 +0000 2019","id":1187817883381796864,"id_str":"1187817883381796864","full_text":"Hey + @tedaect members! Please take & share this short survey on classroom management. + Your answers will help VTD student designers at #UIdaho create a tool useful + for all educators to develop their classroom management skills further. #AECT19 + #AECTinspired https:\/\/t.co\/2bRw5YYDA9","truncated":false,"display_text_range":[0,284],"entities":{"hashtags":[{"text":"UIdaho","indices":[137,144]},{"text":"AECT19","indices":[239,246]},{"text":"AECTinspired","indices":[247,260]}],"symbols":[],"user_mentions":[{"screen_name":"tedaect","name":"TED + AECT","id":2165058337,"id_str":"2165058337","indices":[4,12]}],"urls":[{"url":"https:\/\/t.co\/2bRw5YYDA9","expanded_url":"https:\/\/docs.google.com\/forms\/d\/e\/1FAIpQLSco-FzBM9X7BTfgmdaps6SPZzEWc9j52hX5WdZYhG3uwp0ceg\/viewform","display_url":"docs.google.com\/forms\/d\/e\/1FAI\u2026","indices":[261,284]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 22:41:33 +0000 2019","id":1187861783354019840,"id_str":"1187861783354019840","full_text":"RT + @christieliuidtr: \u201cInternational Research Collaborative for Established + and Emerging Scholars (IRCEES) in Educational Technology\u201d, @eAng\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 17:36:01 +0000 2019","id":1187784896355266560,"id_str":"1187784896355266560","full_text":"\u201cInternational + Research Collaborative for Established and Emerging Scholars (IRCEES) in Educational + Technology\u201d, @eAngelaBenson remotely presenting from Namibia, #Internationalcollaboration + #Global @AECT @aectclt #aect19 #aect19inspired #Crossculture #Intercultural + @emergeAfrica https:\/\/t.co\/l6stp3PIvS","truncated":false,"display_text_range":[0,279],"entities":{"hashtags":[{"text":"Internationalcollaboration","indices":[162,189]},{"text":"Global","indices":[190,197]},{"text":"aect19","indices":[213,220]},{"text":"aect19inspired","indices":[221,236]},{"text":"Crossculture","indices":[237,250]},{"text":"Intercultural","indices":[251,265]}],"symbols":[],"user_mentions":[{"screen_name":"eAngelaBenson","name":"Angela + Benson","id":15969744,"id_str":"15969744","indices":[113,127]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[198,203]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[204,212]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[266,279]}],"urls":[],"media":[{"id":1187784890655264769,"id_str":"1187784890655264769","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvcEJ0VUAEVU-q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvcEJ0VUAEVU-q.jpg","url":"https:\/\/t.co\/l6stp3PIvS","display_url":"pic.twitter.com\/l6stp3PIvS","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187784896355266560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187784890655264769,"id_str":"1187784890655264769","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvcEJ0VUAEVU-q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvcEJ0VUAEVU-q.jpg","url":"https:\/\/t.co\/l6stp3PIvS","display_url":"pic.twitter.com\/l6stp3PIvS","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187784896355266560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1187784890651013120,"id_str":"1187784890651013120","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvcEJzUcAAPqPX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvcEJzUcAAPqPX.jpg","url":"https:\/\/t.co\/l6stp3PIvS","display_url":"pic.twitter.com\/l6stp3PIvS","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187784896355266560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 02:10:20 +0000 2019","id":1187914325341589504,"id_str":"1187914325341589504","full_text":"Hey + #aect19inspired @aect This is relevant to us too! https:\/\/t.co\/o9p3bXbvgA","truncated":false,"display_text_range":[0,53],"entities":{"hashtags":[{"text":"aect19inspired","indices":[4,19]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[20,25]}],"urls":[{"url":"https:\/\/t.co\/o9p3bXbvgA","expanded_url":"https:\/\/twitter.com\/eGeeking\/status\/1187755445307334656","display_url":"twitter.com\/eGeeking\/statu\u2026","indices":[54,77]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187755445307334656,"quoted_status_id_str":"1187755445307334656","quoted_status_permalink":{"url":"https:\/\/t.co\/o9p3bXbvgA","expanded":"https:\/\/twitter.com\/eGeeking\/status\/1187755445307334656","display":"twitter.com\/eGeeking\/statu\u2026"},"quoted_status":{"created_at":"Fri + Oct 25 15:39:00 +0000 2019","id":1187755445307334656,"id_str":"1187755445307334656","full_text":"It''s + the last day of #DevLearn! If you''re looking at how to take what you''ve + learned at the conference and put it into practice when you get to work, try + these 6 ideas.\n\nhttps:\/\/t.co\/2qEQm5bY4z","truncated":false,"display_text_range":[0,193],"entities":{"hashtags":[{"text":"DevLearn","indices":[21,30]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2qEQm5bY4z","expanded_url":"https:\/\/learningsolutionsmag.com\/articles\/6-ways-to-put-your-conference-learning-into-practice","display_url":"learningsolutionsmag.com\/articles\/6-way\u2026","indices":[170,193]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":408187328,"id_str":"408187328","name":"Bianca + Woods","screen_name":"eGeeking","location":"Toronto, Canada","description":"I''m + an instructional technologist who gets absurd joy out of geeking out about + fun tech, educational media, L&D, and great design. Pronouns: she\/her","url":"https:\/\/t.co\/2dVOzcvZJp","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2dVOzcvZJp","expanded_url":"http:\/\/biancawoods.weebly.com","display_url":"biancawoods.weebly.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6847,"friends_count":581,"listed_count":285,"created_at":"Wed + Nov 09 03:02:42 +0000 2011","favourites_count":14697,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36870,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1075228430206189569\/5pavvlPW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1075228430206189569\/5pavvlPW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/408187328\/1469024369","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:07:11 +0000 2019","id":1187807836744617987,"id_str":"1187807836744617987","full_text":"RT + @marena2040: Sleeping in is the best! #eme2040 #fsu2040 #aect19 https:\/\/t.co\/gY55GTuQxN","truncated":false,"display_text_range":[0,90],"entities":{"hashtags":[{"text":"eme2040","indices":[41,49]},{"text":"fsu2040","indices":[50,58]},{"text":"aect19","indices":[59,66]}],"symbols":[],"user_mentions":[{"screen_name":"marena2040","name":"Marena","id":1168887711664607239,"id_str":"1168887711664607239","indices":[3,14]}],"urls":[{"url":"https:\/\/t.co\/gY55GTuQxN","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1187462640206958592","display_url":"twitter.com\/FakeBobGagne\/s\u2026","indices":[67,90]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 15:39:54 +0000 2019","id":1187755674178113536,"id_str":"1187755674178113536","full_text":"Sleeping + in is the best! #eme2040 #fsu2040 #aect19 https:\/\/t.co\/gY55GTuQxN","truncated":false,"display_text_range":[0,50],"entities":{"hashtags":[{"text":"eme2040","indices":[25,33]},{"text":"fsu2040","indices":[34,42]},{"text":"aect19","indices":[43,50]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gY55GTuQxN","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1187462640206958592","display_url":"twitter.com\/FakeBobGagne\/s\u2026","indices":[51,74]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1168887711664607239,"id_str":"1168887711664607239","name":"Marena","screen_name":"marena2040","location":"","description":"this + is for class send tweet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":19,"listed_count":0,"created_at":"Tue + Sep 03 14:05:43 +0000 2019","favourites_count":14,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187462640206958592,"quoted_status_id_str":"1187462640206958592","quoted_status_permalink":{"url":"https:\/\/t.co\/gY55GTuQxN","expanded":"https:\/\/twitter.com\/FakeBobGagne\/status\/1187462640206958592","display":"twitter.com\/FakeBobGagne\/s\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 20:15:30 +0000 2019","id":1187462640206958592,"id_str":"1187462640206958592","full_text":"#aect19 + Tip #945 - post incessantly on twitter about your session tomorrow morning + and how great it will be. Then sleep in.","truncated":false,"display_text_range":[0,123],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1187462640206958592,"quoted_status_id_str":"1187462640206958592","quoted_status_permalink":{"url":"https:\/\/t.co\/gY55GTuQxN","expanded":"https:\/\/twitter.com\/FakeBobGagne\/status\/1187462640206958592","display":"twitter.com\/FakeBobGagne\/s\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:02:53 +0000 2019","id":1187806756732329984,"id_str":"1187806756732329984","full_text":"1 + workshop on VR in Education and 2 research presentation + delightful conversations + with the researchers coming all over the world in #aect19 #LasVegas https:\/\/t.co\/5TmAIyn5va","truncated":false,"display_text_range":[0,152],"entities":{"hashtags":[{"text":"aect19","indices":[135,142]},{"text":"LasVegas","indices":[143,152]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187806714516692993,"id_str":"1187806714516692993","indices":[153,176],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvv6eCXYAEHjA4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvv6eCXYAEHjA4.jpg","url":"https:\/\/t.co\/5TmAIyn5va","display_url":"pic.twitter.com\/5TmAIyn5va","expanded_url":"https:\/\/twitter.com\/DemirDCD\/status\/1187806756732329984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187806714516692993,"id_str":"1187806714516692993","indices":[153,176],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvv6eCXYAEHjA4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvv6eCXYAEHjA4.jpg","url":"https:\/\/t.co\/5TmAIyn5va","display_url":"pic.twitter.com\/5TmAIyn5va","expanded_url":"https:\/\/twitter.com\/DemirDCD\/status\/1187806756732329984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3290012801,"id_str":"3290012801","name":"Dr. + Fatih Demir","screen_name":"DemirDCD","location":"Illinois, USA","description":"Doctor + of Communications Design, Professor of UX Research & Design, #ResearchMethods + in #UX #InteractionDesign #HumanRights","url":"https:\/\/t.co\/IVgdj0LqPH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IVgdj0LqPH","expanded_url":"http:\/\/demirf.weebly.com","display_url":"demirf.weebly.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2909,"friends_count":2928,"listed_count":11,"created_at":"Tue + May 19 13:39:15 +0000 2015","favourites_count":641,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":572,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/923016525438767104\/FNwOe8IF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/923016525438767104\/FNwOe8IF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3290012801\/1483117448","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:36:06 +0000 2019","id":1187815113631453186,"id_str":"1187815113631453186","full_text":"RT + @DrTerriC: Watching an engaging session with @tel_education staff and @oueducation + students @CatJackson28 @kellyeross16 as they talk abo\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[3,12]},{"screen_name":"tel_education","name":"TEL + Education","id":950470158837051392,"id_str":"950470158837051392","indices":[48,62]},{"screen_name":"oueducation","name":"OU + Jeannine Rainbolt College of Education","id":15946481,"id_str":"15946481","indices":[73,85]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":950470158837051392,"id_str":"950470158837051392","name":"TEL + Education","screen_name":"tel_education","location":"Oklahoma City, OK","description":"Transforming + and Educating for Life!\n\nFollow @tel_learning for free access to a library + of openly-licensed course materials.","url":"https:\/\/t.co\/R2R67gCO6B","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/R2R67gCO6B","expanded_url":"https:\/\/tel-education.org\/","display_url":"tel-education.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":191,"friends_count":460,"listed_count":7,"created_at":"Mon + Jan 08 20:51:59 +0000 2018","favourites_count":1375,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2225,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1291855576972922880\/iXdr2PVj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1291855576972922880\/iXdr2PVj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/950470158837051392\/1572968025","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 18:09:54 +0000 2019","id":1187793421840240640,"id_str":"1187793421840240640","full_text":"Watching + an engaging session with @tel_education staff and @oueducation students @CatJackson28 + @kellyeross16 as they talk about learning environment modeling. @buckydodd #aect19inspired (room + 14) https:\/\/t.co\/5BRi92e71q","truncated":false,"display_text_range":[0,197],"entities":{"hashtags":[{"text":"aect19inspired","indices":[171,186]}],"symbols":[],"user_mentions":[{"screen_name":"tel_education","name":"TEL + Education","id":950470158837051392,"id_str":"950470158837051392","indices":[34,48]},{"screen_name":"oueducation","name":"OU + Jeannine Rainbolt College of Education","id":15946481,"id_str":"15946481","indices":[59,71]},{"screen_name":"kellyeross16","name":"Dr. + Kelly Ross","id":1194594229,"id_str":"1194594229","indices":[95,108]},{"screen_name":"buckydodd","name":"Bucky","id":158037639,"id_str":"158037639","indices":[159,169]}],"urls":[],"media":[{"id":1187793401636212736,"id_str":"1187793401636212736","indices":[198,221],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvjzjsUUAAKRlC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvjzjsUUAAKRlC.jpg","url":"https:\/\/t.co\/5BRi92e71q","display_url":"pic.twitter.com\/5BRi92e71q","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187793421840240640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187793401636212736,"id_str":"1187793401636212736","indices":[198,221],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvjzjsUUAAKRlC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvjzjsUUAAKRlC.jpg","url":"https:\/\/t.co\/5BRi92e71q","display_url":"pic.twitter.com\/5BRi92e71q","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187793421840240640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":"Tel + library"}]},"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" + rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 26 02:12:27 +0000 2019","id":1187914858290806784,"id_str":"1187914858290806784","full_text":"Sounds + like our mid-career sessiont today at #aect19inspired https:\/\/t.co\/vtCjI47XLD","truncated":false,"display_text_range":[0,60],"entities":{"hashtags":[{"text":"aect19inspired","indices":[45,60]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/vtCjI47XLD","expanded_url":"https:\/\/twitter.com\/KWhiteheadLab\/status\/1187811758926450688","display_url":"twitter.com\/KWhiteheadLab\/\u2026","indices":[61,84]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187811758926450688,"quoted_status_id_str":"1187811758926450688","quoted_status_permalink":{"url":"https:\/\/t.co\/vtCjI47XLD","expanded":"https:\/\/twitter.com\/KWhiteheadLab\/status\/1187811758926450688","display":"twitter.com\/KWhiteheadLab\/\u2026"},"quoted_status":{"created_at":"Fri + Oct 25 19:22:46 +0000 2019","id":1187811758926450688,"id_str":"1187811758926450688","full_text":"Recently + met another female professor- same career stage & family stage. She gets + up at 3:30 each morning bc her days are filled w meetings & service. I + was horrified, bc I require 8-9 hours of sleep every night. We talked about + how to save time & I want to share here: 1\/19","truncated":false,"display_text_range":[0,286],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2875950113,"id_str":"2875950113","name":"Prof. + Katie Whitehead","screen_name":"KWhiteheadLab","location":"Carnegie Mellon + University","description":"Drug delivery scientist, innovator, SciComm fanatic. + Saying by doing. TED talk https:\/\/t.co\/2NfS0obiCz and mRNA vaccine review + https:\/\/t.co\/X3hbSSkcdX. She\/her.","url":"https:\/\/t.co\/geoN2IWeuU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/geoN2IWeuU","expanded_url":"http:\/\/whitehead.cheme.cmu.edu","display_url":"whitehead.cheme.cmu.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/2NfS0obiCz","expanded_url":"http:\/\/bit.ly\/3zjICfe","display_url":"bit.ly\/3zjICfe","indices":[79,102]},{"url":"https:\/\/t.co\/X3hbSSkcdX","expanded_url":"http:\/\/rdcu.be\/cv5hz","display_url":"rdcu.be\/cv5hz","indices":[127,150]}]}},"protected":false,"followers_count":10173,"friends_count":1387,"listed_count":52,"created_at":"Fri + Nov 14 03:03:39 +0000 2014","favourites_count":15517,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5575,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1066362074954166272\/lvH0yBrV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1066362074954166272\/lvH0yBrV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2875950113\/1629986361","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1455,"favorite_count":5590,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 18:37:44 +0000 2019","id":1187800427544268800,"id_str":"1187800427544268800","full_text":"The + conference is nearly over, but your chance to impact the field is not over. Submit + your work to @AECTTechTrends. #aect19inspired https:\/\/t.co\/Apm4iN9TnO","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[101,116]}],"urls":[],"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"photo","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"video","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"duration_millis":14133,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/pl\/T49X8pWvcWZ1hr0f.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/360x270\/jjTaFEgF3SEuLXiG.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/480x360\/lLxj8onGzGLt2Pjb.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/640x480\/fsmN351GfvkQwtsa.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 18:50:27 +0000 2019","id":1187803627924013057,"id_str":"1187803627924013057","full_text":"Kaplan-Rakowski + & Johnson introduce VR to facilitate meditation in the classroom. Thank + you for supporting the cause! Still ask why I use meditation in my classes + second half of term, students? #aect19inspired #aect2019 #eme601 #eme603 #eme607 + https:\/\/t.co\/e2zDkLpAX2","truncated":false,"display_text_range":[0,247],"entities":{"hashtags":[{"text":"aect19inspired","indices":[198,213]},{"text":"aect2019","indices":[214,223]},{"text":"eme601","indices":[224,231]},{"text":"eme603","indices":[232,239]},{"text":"eme607","indices":[240,247]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187803618931396609,"id_str":"1187803618931396609","indices":[248,271],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvtGSFUUAE-jvo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvtGSFUUAE-jvo.jpg","url":"https:\/\/t.co\/e2zDkLpAX2","display_url":"pic.twitter.com\/e2zDkLpAX2","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187803627924013057\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187803618931396609,"id_str":"1187803618931396609","indices":[248,271],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvtGSFUUAE-jvo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvtGSFUUAE-jvo.jpg","url":"https:\/\/t.co\/e2zDkLpAX2","display_url":"pic.twitter.com\/e2zDkLpAX2","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187803627924013057\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187803618931433473,"id_str":"1187803618931433473","indices":[248,271],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvtGSFU4AEum0d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvtGSFU4AEum0d.jpg","url":"https:\/\/t.co\/e2zDkLpAX2","display_url":"pic.twitter.com\/e2zDkLpAX2","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187803627924013057\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187803618927267841,"id_str":"1187803618927267841","indices":[248,271],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvtGSEVUAE6N9r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvtGSEVUAE6N9r.jpg","url":"https:\/\/t.co\/e2zDkLpAX2","display_url":"pic.twitter.com\/e2zDkLpAX2","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187803627924013057\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187803618927185920,"id_str":"1187803618927185920","indices":[248,271],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvtGSEUEAAAgY2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvtGSEUEAAAgY2.jpg","url":"https:\/\/t.co\/e2zDkLpAX2","display_url":"pic.twitter.com\/e2zDkLpAX2","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187803627924013057\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 26 02:04:52 +0000 2019","id":1187912949077364737,"id_str":"1187912949077364737","full_text":"RT + @AmyLomellini_ID: #AECT19 has been a crazy whirlwind. Before we wrap up, I + want to give a special shout out to the Accessibility Committ\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[21,28]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":33650501,"id_str":"33650501","name":"Dawn + Wright","screen_name":"dawnwright67","location":"St. Augustine","description":"Statistics, + quantitative analysis and what we do with them in education and business. + Excelsior College Adjunct Professor. And yes, I took the photo.","url":"https:\/\/t.co\/JOFAiu4IBk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JOFAiu4IBk","expanded_url":"https:\/\/drdawnwright.com","display_url":"drdawnwright.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":344,"friends_count":476,"listed_count":68,"created_at":"Mon + Apr 20 20:28:30 +0000 2009","favourites_count":44999,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1427032425083936775\/UmeUwe1P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1427032425083936775\/UmeUwe1P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33650501\/1426898666","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 14:10:20 +0000 2019","id":1187733130611838976,"id_str":"1187733130611838976","full_text":"#AECT19 + has been a crazy whirlwind. Before we wrap up, I want to give a special shout + out to the Accessibility Committee for their hard work all year. \n\nRebecca + Reese\nChris Smith\nLinda Campion\nDavid Gardner\nIsmahan Arslan-Ari\nBob + Doyle\n\n*& Megan Murtaugh for coordinating interns","truncated":false,"display_text_range":[0,283],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910574724748644353,"id_str":"910574724748644353","name":"Amy + Lomellini","screen_name":"AmyLomellini_ID","location":"New York, USA","description":"Associate + Director of Blended & Online Learning and doctoral candidate with a passion + for accessible and inclusive online teaching and learning. #EdTech #A11y","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":644,"friends_count":1061,"listed_count":9,"created_at":"Wed + Sep 20 18:41:46 +0000 2017","favourites_count":7378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1141,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910574724748644353\/1551624059","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":16,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:38:07 +0000 2019","id":1187815622085885952,"id_str":"1187815622085885952","full_text":"This + would have been such a good session to go to! I think that video interactions + are becoming inevitable these days, and we can use them to help us connect + with people and students alike. We just have to learn how first! #fsu2040 + #AECT19 #AECT19inspired https:\/\/t.co\/YYoTKe42DA","truncated":false,"display_text_range":[0,255],"entities":{"hashtags":[{"text":"fsu2040","indices":[223,231]},{"text":"AECT19","indices":[232,239]},{"text":"AECT19inspired","indices":[240,255]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YYoTKe42DA","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187765363737391104","display_url":"twitter.com\/pazureka\/statu\u2026","indices":[256,279]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1168888858387386368,"id_str":"1168888858387386368","name":"Alyssa + DePury","screen_name":"AlyssaDepury","location":"","description":"This account + is for my EME 2040 class! :)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":15,"friends_count":21,"listed_count":0,"created_at":"Tue + Sep 03 14:10:16 +0000 2019","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":35,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1169602210231181312\/QfiMYggE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169602210231181312\/QfiMYggE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168888858387386368\/1567689904","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187765363737391104,"quoted_status_id_str":"1187765363737391104","quoted_status_permalink":{"url":"https:\/\/t.co\/YYoTKe42DA","expanded":"https:\/\/twitter.com\/pazureka\/status\/1187765363737391104","display":"twitter.com\/pazureka\/statu\u2026"},"quoted_status":{"created_at":"Fri + Oct 25 16:18:24 +0000 2019","id":1187765363737391104,"id_str":"1187765363737391104","full_text":"Interested + in fostering #SocialPresence in #OnlineLearning? Come talk with Dr. Matti + Koivula and I from @UMNews about how designers\/instructors can use video + based interactions to allow for authentic conversations. Today at 10AM in + Conference Room 14! @AECT #aect19 https:\/\/t.co\/r6Y8pQmZOL","truncated":false,"display_text_range":[0,265],"entities":{"hashtags":[{"text":"SocialPresence","indices":[24,39]},{"text":"OnlineLearning","indices":[43,58]},{"text":"aect19","indices":[258,265]}],"symbols":[],"user_mentions":[{"screen_name":"UMNews","name":"University + of Minnesota","id":18917572,"id_str":"18917572","indices":[104,111]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[252,257]}],"urls":[],"media":[{"id":1187765359387897856,"id_str":"1187765359387897856","indices":[266,289],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvKTSLUcAAPuKr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvKTSLUcAAPuKr.png","url":"https:\/\/t.co\/r6Y8pQmZOL","display_url":"pic.twitter.com\/r6Y8pQmZOL","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187765363737391104\/photo\/1","type":"photo","sizes":{"large":{"w":737,"h":330,"resize":"fit"},"medium":{"w":737,"h":330,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":304,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187765359387897856,"id_str":"1187765359387897856","indices":[266,289],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvKTSLUcAAPuKr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvKTSLUcAAPuKr.png","url":"https:\/\/t.co\/r6Y8pQmZOL","display_url":"pic.twitter.com\/r6Y8pQmZOL","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187765363737391104\/photo\/1","type":"photo","sizes":{"large":{"w":737,"h":330,"resize":"fit"},"medium":{"w":737,"h":330,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":304,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:30:02 +0000 2019","id":1187813588146110464,"id_str":"1187813588146110464","full_text":"RT + @nicolapallitt: Another fab presentation about #IRCEES @AECT @aectclt & + @emergeAfrica online international research collaborative #aect1\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"IRCEES","indices":[50,57]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[58,63]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[64,72]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[79,92]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 17:14:50 +0000 2019","id":1187779563356483585,"id_str":"1187779563356483585","full_text":"Another + fab presentation about #IRCEES @AECT @aectclt & @emergeAfrica online international + research collaborative #aect19inspired Great hearing about what folks in other + groups have been up to:) @eAngelaBenson @christieliuidtr @AZambodl https:\/\/t.co\/m8hHzLJe4D","truncated":false,"display_text_range":[0,240],"entities":{"hashtags":[{"text":"IRCEES","indices":[31,38]},{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[39,44]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[45,53]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[60,73]},{"screen_name":"eAngelaBenson","name":"Angela + Benson","id":15969744,"id_str":"15969744","indices":[199,213]},{"screen_name":"AZambodl","name":"alice + barlow zambodl","id":884836704,"id_str":"884836704","indices":[231,240]}],"urls":[],"media":[{"id":1187779549049704448,"id_str":"1187779549049704448","indices":[241,264],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvXNOyU0AA7DU0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvXNOyU0AA7DU0.jpg","url":"https:\/\/t.co\/m8hHzLJe4D","display_url":"pic.twitter.com\/m8hHzLJe4D","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187779563356483585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187779549049704448,"id_str":"1187779549049704448","indices":[241,264],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvXNOyU0AA7DU0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvXNOyU0AA7DU0.jpg","url":"https:\/\/t.co\/m8hHzLJe4D","display_url":"pic.twitter.com\/m8hHzLJe4D","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187779563356483585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187779557236953088,"id_str":"1187779557236953088","indices":[241,264],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvXNtSUUAAzmr-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvXNtSUUAAzmr-.jpg","url":"https:\/\/t.co\/m8hHzLJe4D","display_url":"pic.twitter.com\/m8hHzLJe4D","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187779563356483585\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 23:25:11 +0000 2019","id":1187872764029390848,"id_str":"1187872764029390848","full_text":"RT + @JCHEResearch: Consider turning your @AECT presentations into publications! + Submit to JCHE to share your inspiring and inspired work. #a\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JCHEResearch","name":"JCHE","id":3632440875,"id_str":"3632440875","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[40,45]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 17:41:57 +0000 2019","id":1187786388227276800,"id_str":"1187786388227276800","full_text":"Consider + turning your @AECT presentations into publications! Submit to JCHE to share + your inspiring and inspired work. #aect19 #aect19inspired","truncated":false,"display_text_range":[0,142],"entities":{"hashtags":[{"text":"aect19","indices":[119,126]},{"text":"aect19inspired","indices":[127,142]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[22,27]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3632440875,"id_str":"3632440875","name":"JCHE","screen_name":"JCHEResearch","location":"Springer + Publishing","description":"Journal of Computing in Higher Education: Research + and Integration of Instructional Technology","url":"http:\/\/t.co\/vp1fT27q0u","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/vp1fT27q0u","expanded_url":"http:\/\/www.springer.com","display_url":"springer.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":399,"friends_count":143,"listed_count":11,"created_at":"Sat + Sep 12 15:26:14 +0000 2015","favourites_count":55,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":67,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642728004989374464\/rT2xsSzd_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642728004989374464\/rT2xsSzd_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3632440875\/1442073430","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"93A644","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:49:37 +0000 2019","id":1187818515228692480,"id_str":"1187818515228692480","full_text":"I''m + so thrilled to co-present with @utexascoe #TexasCI #UTLT doc students, Yin + Hong Cheah & Yi Shi, our research on preservice and inservice teachers'' + pedagogical reasoning for their valued #edtech #aect19inspired @AECT https:\/\/t.co\/Zlx8dUrhb9","truncated":false,"display_text_range":[0,223],"entities":{"hashtags":[{"text":"TexasCI","indices":[46,54]},{"text":"UTLT","indices":[55,60]},{"text":"edtech","indices":[194,201]},{"text":"aect19inspired","indices":[202,217]}],"symbols":[],"user_mentions":[{"screen_name":"utexascoe","name":"College + of Education","id":19671331,"id_str":"19671331","indices":[35,45]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[218,223]}],"urls":[],"media":[{"id":1187818465098375175,"id_str":"1187818465098375175","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv6mcXWoAcEDna.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv6mcXWoAcEDna.jpg","url":"https:\/\/t.co\/Zlx8dUrhb9","display_url":"pic.twitter.com\/Zlx8dUrhb9","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187818515228692480\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187818465098375175,"id_str":"1187818465098375175","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv6mcXWoAcEDna.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv6mcXWoAcEDna.jpg","url":"https:\/\/t.co\/Zlx8dUrhb9","display_url":"pic.twitter.com\/Zlx8dUrhb9","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187818515228692480\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187818465098436608,"id_str":"1187818465098436608","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv6mcXXkAAnoNL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv6mcXXkAAnoNL.jpg","url":"https:\/\/t.co\/Zlx8dUrhb9","display_url":"pic.twitter.com\/Zlx8dUrhb9","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187818515228692480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187818465098379266,"id_str":"1187818465098379266","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv6mcXWsAIn3GZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv6mcXWsAIn3GZ.jpg","url":"https:\/\/t.co\/Zlx8dUrhb9","display_url":"pic.twitter.com\/Zlx8dUrhb9","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187818515228692480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187818465098379265,"id_str":"1187818465098379265","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv6mcXWsAEK0LP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv6mcXWsAEK0LP.jpg","url":"https:\/\/t.co\/Zlx8dUrhb9","display_url":"pic.twitter.com\/Zlx8dUrhb9","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187818515228692480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19613812,"id_str":"19613812","name":"Dr. + Joan E. Hughes","screen_name":"techedges","location":"Austin, TX","description":"Prof, + Learning Technologies, UT Austin. Researcher, teacher, writer: tech integration + in schools, teacher educ & PD. Author:https:\/\/t.co\/p12V06CqJU","url":"https:\/\/t.co\/0V3yBaAOKy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0V3yBaAOKy","expanded_url":"http:\/\/techedges.org","display_url":"techedges.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/p12V06CqJU","expanded_url":"http:\/\/bit.ly\/IntegratingEdTech","display_url":"bit.ly\/IntegratingEdT\u2026","indices":[124,147]}]}},"protected":false,"followers_count":1646,"friends_count":2355,"listed_count":158,"created_at":"Tue + Jan 27 20:26:10 +0000 2009","favourites_count":722,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2871,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEBB2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431552022538510336\/qGc8ZRJj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431552022538510336\/qGc8ZRJj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19613812\/1408660446","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 26 00:24:05 +0000 2019","id":1187887589526818818,"id_str":"1187887589526818818","full_text":"RT + @SultanMutlaq: The end #aect19inspired @KhbratKSU3 @khebrat_edu @ali_aleryany + @khal0d99 @CIMAKSTATE https:\/\/t.co\/EON2Hzn5vO","truncated":false,"display_text_range":[0,126],"entities":{"hashtags":[{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"SultanMutlaq","name":"SultanMutlaq","id":370132373,"id_str":"370132373","indices":[3,16]},{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[42,53]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[54,66]},{"screen_name":"ali_aleryany","name":"\ud83d\udcf8 + \u0639\u0644\u064a \u0627\u0644\u0639\u0631\u064a\u0627\u0646\u064a","id":424775077,"id_str":"424775077","indices":[67,80]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":323342808,"id_str":"323342808","name":"Abdulkareem + Omair","screen_name":"Abdulkareem0566","location":"United States","description":"English + Teacher. BA in English and Translation. MA in translation.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":85,"listed_count":3,"created_at":"Fri + Jun 24 17:26:16 +0000 2011","favourites_count":4583,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":47110,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1266065187339145216\/VT1Ue55y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1266065187339145216\/VT1Ue55y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/323342808\/1574650275","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 21:13:38 +0000 2019","id":1187839659277029377,"id_str":"1187839659277029377","full_text":"The + end #aect19inspired @KhbratKSU3 @khebrat_edu @ali_aleryany @khal0d99 @CIMAKSTATE + https:\/\/t.co\/EON2Hzn5vO","truncated":false,"display_text_range":[0,84],"entities":{"hashtags":[{"text":"aect19inspired","indices":[8,23]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[24,35]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[36,48]},{"screen_name":"ali_aleryany","name":"\ud83d\udcf8 + \u0639\u0644\u064a \u0627\u0644\u0639\u0631\u064a\u0627\u0646\u064a","id":424775077,"id_str":"424775077","indices":[49,62]},{"screen_name":"CIMAKSTATE","name":"CIMA","id":2450399486,"id_str":"2450399486","indices":[73,84]}],"urls":[],"media":[{"id":1187839652130017280,"id_str":"1187839652130017280","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHwN3sNVUAAeqTX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHwN3sNVUAAeqTX.jpg","url":"https:\/\/t.co\/EON2Hzn5vO","display_url":"pic.twitter.com\/EON2Hzn5vO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187839659277029377\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":1280,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187839652130017280,"id_str":"1187839652130017280","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHwN3sNVUAAeqTX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHwN3sNVUAAeqTX.jpg","url":"https:\/\/t.co\/EON2Hzn5vO","display_url":"pic.twitter.com\/EON2Hzn5vO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187839659277029377\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":1280,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1187839652205449216,"id_str":"1187839652205449216","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHwN3sfUUAA7JmD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHwN3sfUUAA7JmD.jpg","url":"https:\/\/t.co\/EON2Hzn5vO","display_url":"pic.twitter.com\/EON2Hzn5vO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187839659277029377\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":1280,"h":960,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 21:13:38 +0000 2019","id":1187839659277029377,"id_str":"1187839659277029377","full_text":"The + end #aect19inspired @KhbratKSU3 @khebrat_edu @ali_aleryany @khal0d99 @CIMAKSTATE + https:\/\/t.co\/EON2Hzn5vO","truncated":false,"display_text_range":[0,84],"entities":{"hashtags":[{"text":"aect19inspired","indices":[8,23]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[24,35]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[36,48]},{"screen_name":"ali_aleryany","name":"\ud83d\udcf8 + \u0639\u0644\u064a \u0627\u0644\u0639\u0631\u064a\u0627\u0646\u064a","id":424775077,"id_str":"424775077","indices":[49,62]},{"screen_name":"CIMAKSTATE","name":"CIMA","id":2450399486,"id_str":"2450399486","indices":[73,84]}],"urls":[],"media":[{"id":1187839652130017280,"id_str":"1187839652130017280","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHwN3sNVUAAeqTX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHwN3sNVUAAeqTX.jpg","url":"https:\/\/t.co\/EON2Hzn5vO","display_url":"pic.twitter.com\/EON2Hzn5vO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187839659277029377\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":1280,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187839652130017280,"id_str":"1187839652130017280","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHwN3sNVUAAeqTX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHwN3sNVUAAeqTX.jpg","url":"https:\/\/t.co\/EON2Hzn5vO","display_url":"pic.twitter.com\/EON2Hzn5vO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187839659277029377\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":1280,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1187839652205449216,"id_str":"1187839652205449216","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHwN3sfUUAA7JmD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHwN3sfUUAA7JmD.jpg","url":"https:\/\/t.co\/EON2Hzn5vO","display_url":"pic.twitter.com\/EON2Hzn5vO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187839659277029377\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":1280,"h":960,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 20:15:50 +0000 2019","id":1187825111786754050,"id_str":"1187825111786754050","full_text":"It + was a fun week presenting at 2 conferences. @AECT #aect19inspired in charming + Las Vegas & #CMS2019 \/ATMI in fabulous Louisville. Or maybe I got that + wrong... https:\/\/t.co\/MxXEg6MiNt","truncated":false,"display_text_range":[0,165],"entities":{"hashtags":[{"text":"aect19inspired","indices":[54,69]},{"text":"CMS2019","indices":[98,106]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[47,52]}],"urls":[],"media":[{"id":1187824842843836416,"id_str":"1187824842843836416","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187824842843836416\/pu\/img\/8vKaBcfTcjVYERID.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187824842843836416\/pu\/img\/8vKaBcfTcjVYERID.jpg","url":"https:\/\/t.co\/MxXEg6MiNt","display_url":"pic.twitter.com\/MxXEg6MiNt","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1187825111786754050\/video\/1","type":"photo","sizes":{"medium":{"w":984,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":984,"h":720,"resize":"fit"},"small":{"w":680,"h":498,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187824842843836416,"id_str":"1187824842843836416","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187824842843836416\/pu\/img\/8vKaBcfTcjVYERID.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187824842843836416\/pu\/img\/8vKaBcfTcjVYERID.jpg","url":"https:\/\/t.co\/MxXEg6MiNt","display_url":"pic.twitter.com\/MxXEg6MiNt","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1187825111786754050\/video\/1","type":"video","sizes":{"medium":{"w":984,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":984,"h":720,"resize":"fit"},"small":{"w":680,"h":498,"resize":"fit"}},"video_info":{"aspect_ratio":[41,30],"duration_millis":22857,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187824842843836416\/pu\/pl\/vB9PG9r-DpOptLU4.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187824842843836416\/pu\/vid\/492x360\/L4m4tD-BaWj9NJHJ.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187824842843836416\/pu\/vid\/984x720\/coVY0__YPa75ALdW.mp4?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187824842843836416\/pu\/vid\/368x270\/_VBszi_RsKvnWaPh.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":887813304311087104,"id_str":"887813304311087104","name":"Art + Brownlow","screen_name":"art_brownlow","location":"Brownsville, TX","description":"UTRGV + Music Prof & Academic Innovation Fellow, UT System Academy of Distinguished + Teachers, ROTA 2016, \uf8ffADE 2015, Braves fan, Husband & Dad","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":291,"friends_count":338,"listed_count":5,"created_at":"Wed + Jul 19 23:16:01 +0000 2017","favourites_count":237,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":132,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887813304311087104\/1500521777","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 22:50:08 +0000 2019","id":1187863946340044800,"id_str":"1187863946340044800","full_text":"#aect19 + Lots of firsts for me: 1st time in the US, 1st time at an AECT conference, + 1st time meeting my co-presenter in real life. Definitely worth travelling + from Stockholm Sweden to meet & hear from so many inspiring people. Thanks + #aect19inspired","truncated":false,"display_text_range":[0,252],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]},{"text":"aect19inspired","indices":[237,252]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27256471,"id_str":"27256471","name":"Tanya + O''Reilly","screen_name":"TenaciousTan","location":"Stockholm, Sweden","description":"A + bookish tea-guzzler interested in digital education, digital culture, multimodality, + New Materialism, innovative assessment practices in Higher Education","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":279,"friends_count":783,"listed_count":12,"created_at":"Sat + Mar 28 16:22:04 +0000 2009","favourites_count":2510,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1513,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/113025390\/manga_me_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/113025390\/manga_me_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27256471\/1452114046","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 18:16:58 +0000 2019","id":1187795200640339968,"id_str":"1187795200640339968","full_text":"Final + season of this #aect19, seeking some inspiration to get more out of #msteams. + https:\/\/t.co\/35Xr2o84gF","truncated":false,"display_text_range":[0,83],"entities":{"hashtags":[{"text":"aect19","indices":[21,28]},{"text":"msteams","indices":[74,82]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187795194579574784,"id_str":"1187795194579574784","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvlb67U4AAe2p_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvlb67U4AAe2p_.jpg","url":"https:\/\/t.co\/35Xr2o84gF","display_url":"pic.twitter.com\/35Xr2o84gF","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1187795200640339968\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187795194579574784,"id_str":"1187795194579574784","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvlb67U4AAe2p_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvlb67U4AAe2p_.jpg","url":"https:\/\/t.co\/35Xr2o84gF","display_url":"pic.twitter.com\/35Xr2o84gF","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1187795200640339968\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 26 01:10:03 +0000 2019","id":1187899155445886976,"id_str":"1187899155445886976","full_text":"RT + @nangur1: Cultural Responsive Instructional Design in online learning environments. + Such an important topic for inclusivity! #AECT19 #A\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[129,136]}],"symbols":[],"user_mentions":[{"screen_name":"nangur1","name":"Dr. + Nandita Gurjar","id":2743313304,"id_str":"2743313304","indices":[3,11]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":73681506,"id_str":"73681506","name":"Penny + Ralston-Berg","screen_name":"pennymoved","location":"","description":"Award-winning + instructional designer. Consultant. Long-time telecommuter. Quality devotee. + Using humor to build faculty\/instructional designer relationships.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":607,"friends_count":195,"listed_count":7,"created_at":"Sat + Sep 12 16:47:21 +0000 2009","favourites_count":7331,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3086,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/530079437979516928\/H3Y5A5kM_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/530079437979516928\/H3Y5A5kM_normal.jpeg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 22:19:45 +0000 2019","id":1187493910626463744,"id_str":"1187493910626463744","full_text":"Cultural + Responsive Instructional Design in online learning environments. Such an important + topic for inclusivity! #AECT19 #AECT19inspired https:\/\/t.co\/vqyOMaSNyt","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"AECT19","indices":[116,123]},{"text":"AECT19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187493903919808512,"id_str":"1187493903919808512","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187493903919808512,"id_str":"1187493903919808512","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187493903911358464,"id_str":"1187493903911358464","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafuUEAACDy5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafuUEAACDy5.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187493903915577346,"id_str":"1187493903915577346","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafvUcAIGLBq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafvUcAIGLBq.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 21:22:58 +0000 2019","id":1187842010079793152,"id_str":"1187842010079793152","full_text":"RT + @gravesle: #AECT19 #aect19inspired\n - audience member sharing about the potential + of Adobe Spark and how they use it to share: https:\/\/t\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]},{"text":"aect19inspired","indices":[22,37]}],"symbols":[],"user_mentions":[{"screen_name":"gravesle","name":"Dr. + Leigh Graves Wolf","id":11092692,"id_str":"11092692","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":628411319,"id_str":"628411319","name":"M\u00e1ire + N\u00ed Chaoimh","screen_name":"okeeffefiddle","location":"Kinvara, Galway, + Ireland","description":"Musician, Lecturer in Music Ed @MICLimerick love all + music especially #trad Irish #newventure Kinvara School of Traditional Music + and Culture #Kerry at heart","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1512,"friends_count":2213,"listed_count":49,"created_at":"Fri + Jul 06 14:10:43 +0000 2012","favourites_count":5410,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8594,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1020404033142394880\/NAqX0JSK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1020404033142394880\/NAqX0JSK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/628411319\/1547742192","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"B32A00","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 17:27:31 +0000 2019","id":1187782753602953218,"id_str":"1187782753602953218","full_text":"#AECT19 + #aect19inspired\n - audience member sharing about the potential of Adobe Spark + and how they use it to share: https:\/\/t.co\/Xo7y0HVbvA","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"aect19inspired","indices":[8,23]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Xo7y0HVbvA","expanded_url":"https:\/\/spark.adobe.com\/","display_url":"spark.adobe.com","indices":[116,139]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11092692,"id_str":"11092692","name":"Dr. + Leigh Graves Wolf","screen_name":"gravesle","location":"Michigan\/Galway\/Arizona\/Online","description":"I + like to share & listen. Human. Clinical Associate Professor Ed Leadership + & Innovation @asueducation. I tweet my own things. (Dr\/She\/Her)","url":"https:\/\/t.co\/CIZXWxMRrw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CIZXWxMRrw","expanded_url":"http:\/\/leighgraveswolf.com","display_url":"leighgraveswolf.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6034,"friends_count":6584,"listed_count":442,"created_at":"Wed + Dec 12 16:03:00 +0000 2007","favourites_count":31280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48218,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11092692\/1442771541","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"044905","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E2F8AA","profile_text_color":"659B08","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 22:23:29 +0000 2019","id":1187857239215869952,"id_str":"1187857239215869952","full_text":"RT + @EdTech_UofSC: Dr. @michaelmgrant accepting the @AECT gavel as president. + \n#aect19inspired \n@UofSCEducation https:\/\/t.co\/r1sSVcaWhT","truncated":false,"display_text_range":[0,134],"entities":{"hashtags":[{"text":"aect19inspired","indices":[78,93]}],"symbols":[],"user_mentions":[{"screen_name":"EdTech_UofSC","name":"LD&T + and EdTech at UofSC","id":2835369671,"id_str":"2835369671","indices":[3,16]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[22,36]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[51,56]},{"screen_name":"UofSCEducation","name":"UofSC + Education","id":1269656353,"id_str":"1269656353","indices":[95,110]}],"urls":[],"media":[{"id":1187111271872643072,"id_str":"1187111271872643072","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl3aYTUwAA5Gsr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl3aYTUwAA5Gsr.jpg","url":"https:\/\/t.co\/r1sSVcaWhT","display_url":"pic.twitter.com\/r1sSVcaWhT","expanded_url":"https:\/\/twitter.com\/EdTech_UofSC\/status\/1187111277946032128\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":564,"h":680,"resize":"fit"},"large":{"w":1698,"h":2048,"resize":"fit"},"medium":{"w":995,"h":1200,"resize":"fit"}},"source_status_id":1187111277946032128,"source_status_id_str":"1187111277946032128","source_user_id":2835369671,"source_user_id_str":"2835369671"}]},"extended_entities":{"media":[{"id":1187111271872643072,"id_str":"1187111271872643072","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl3aYTUwAA5Gsr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl3aYTUwAA5Gsr.jpg","url":"https:\/\/t.co\/r1sSVcaWhT","display_url":"pic.twitter.com\/r1sSVcaWhT","expanded_url":"https:\/\/twitter.com\/EdTech_UofSC\/status\/1187111277946032128\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":564,"h":680,"resize":"fit"},"large":{"w":1698,"h":2048,"resize":"fit"},"medium":{"w":995,"h":1200,"resize":"fit"}},"source_status_id":1187111277946032128,"source_status_id_str":"1187111277946032128","source_user_id":2835369671,"source_user_id_str":"2835369671","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":780166872352317440,"id_str":"780166872352317440","name":"Pattie + Wisniewski","screen_name":"OT_Pattie","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":18,"friends_count":231,"listed_count":0,"created_at":"Sun + Sep 25 22:07:32 +0000 2016","favourites_count":141,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":34,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1480680678853423114\/Sbh3SCNf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1480680678853423114\/Sbh3SCNf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/780166872352317440\/1546948889","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 20:59:18 +0000 2019","id":1187111277946032128,"id_str":"1187111277946032128","full_text":"Dr. + @michaelmgrant accepting the @AECT gavel as president. \n#aect19inspired \n@UofSCEducation + https:\/\/t.co\/r1sSVcaWhT","truncated":false,"display_text_range":[0,92],"entities":{"hashtags":[{"text":"aect19inspired","indices":[60,75]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[4,18]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[33,38]},{"screen_name":"UofSCEducation","name":"UofSC + Education","id":1269656353,"id_str":"1269656353","indices":[77,92]}],"urls":[],"media":[{"id":1187111271872643072,"id_str":"1187111271872643072","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl3aYTUwAA5Gsr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl3aYTUwAA5Gsr.jpg","url":"https:\/\/t.co\/r1sSVcaWhT","display_url":"pic.twitter.com\/r1sSVcaWhT","expanded_url":"https:\/\/twitter.com\/EdTech_UofSC\/status\/1187111277946032128\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":564,"h":680,"resize":"fit"},"large":{"w":1698,"h":2048,"resize":"fit"},"medium":{"w":995,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187111271872643072,"id_str":"1187111271872643072","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl3aYTUwAA5Gsr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl3aYTUwAA5Gsr.jpg","url":"https:\/\/t.co\/r1sSVcaWhT","display_url":"pic.twitter.com\/r1sSVcaWhT","expanded_url":"https:\/\/twitter.com\/EdTech_UofSC\/status\/1187111277946032128\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":564,"h":680,"resize":"fit"},"large":{"w":1698,"h":2048,"resize":"fit"},"medium":{"w":995,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2835369671,"id_str":"2835369671","name":"LD&T + and EdTech at UofSC","screen_name":"EdTech_UofSC","location":"South Carolina","description":"Our + LD&T\/EdTech programs are shared with USC-Columbia & USC-Aiken. We offer Masters + & doctoral degrees + distance education certification \u2014 all 100% online!","url":"https:\/\/t.co\/S5lHVmmaud","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/S5lHVmmaud","expanded_url":"https:\/\/sc.edu\/study\/colleges_schools\/education\/study\/advanced_study_in_education\/learning_design_te","display_url":"sc.edu\/study\/colleges\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":455,"friends_count":50,"listed_count":16,"created_at":"Fri + Oct 17 18:52:36 +0000 2014","favourites_count":353,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":667,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1265318847764148226\/-Y6YxrdB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1265318847764148226\/-Y6YxrdB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2835369671\/1590519327","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":29,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 18:44:47 +0000 2019","id":1187802201361502208,"id_str":"1187802201361502208","full_text":"It + was a fantastic conference as always! See you all in Jacksonville next time + around. #aect19 #aect19inspired","truncated":false,"display_text_range":[0,110],"entities":{"hashtags":[{"text":"aect19","indices":[87,94]},{"text":"aect19inspired","indices":[95,110]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":30278154,"id_str":"30278154","name":"Dr. + Dave Mulder","screen_name":"d_mulder","location":"Iowa","description":"Christ-follower. + Husband of one and dad of two. Professor of Education at @dordtuniversity. + #EdTech is my jam. My tweets speak only for me.","url":"https:\/\/t.co\/i9IOUI9RZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/i9IOUI9RZC","expanded_url":"https:\/\/drdave.substack.com\/","display_url":"drdave.substack.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3921,"friends_count":949,"listed_count":249,"created_at":"Fri + Apr 10 18:27:10 +0000 2009","favourites_count":39976,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30278154\/1568172162","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 22:07:35 +0000 2019","id":1187853237401067525,"id_str":"1187853237401067525","full_text":"RT + @PaulineMuljana: I really have to say this. I am proud to be an @epsODU doc + student and a Monarch! Look at the accomplishments, presenta\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]},{"screen_name":"epsODU","name":"ODU + Darden College of Educ & Professional Studies","id":124254976,"id_str":"124254976","indices":[67,74]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 18:32:36 +0000 2019","id":1187799133182033920,"id_str":"1187799133182033920","full_text":"I + really have to say this. I am proud to be an @epsODU doc student and a Monarch! + Look at the accomplishments, presentations and services of our faculty, alumni, + and students at #aect19. Like what Dr. @tintinluo said, \"we need to count + how many awards we have won this year!\"","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"aect19","indices":[178,185]}],"symbols":[],"user_mentions":[{"screen_name":"epsODU","name":"ODU + Darden College of Educ & Professional Studies","id":124254976,"id_str":"124254976","indices":[47,54]},{"screen_name":"tintinluo","name":"Tian + Luo","id":29474883,"id_str":"29474883","indices":[201,211]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 21:38:02 +0000 2019","id":1187845800182931456,"id_str":"1187845800182931456","full_text":"RT + @hodgesc: The conference is nearly over, but your chance to impact the field + is not over. Submit your work to @AECTTechTrends. #aect19i\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[114,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2905458781,"id_str":"2905458781","name":"Ross + Perkins, PhD","screen_name":"DrRossPerkins","location":"Apex, NC","description":"Asc + Prof @ Boise State. EdS\/EdD ProgCoord. https:\/\/t.co\/8jp7WXqbV1 | Huge + listserv influencer, 1998-2006.","url":"https:\/\/t.co\/8jp7WXqbV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[43,66]}]}},"protected":false,"followers_count":773,"friends_count":485,"listed_count":21,"created_at":"Thu + Nov 20 19:52:09 +0000 2014","favourites_count":3672,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2751,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2905458781\/1618315302","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 18:37:44 +0000 2019","id":1187800427544268800,"id_str":"1187800427544268800","full_text":"The + conference is nearly over, but your chance to impact the field is not over. Submit + your work to @AECTTechTrends. #aect19inspired https:\/\/t.co\/Apm4iN9TnO","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[101,116]}],"urls":[],"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"photo","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187800408619548672,"id_str":"1187800408619548672","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187800408619548672\/pu\/img\/errrHTzyLwAUYxUU.jpg","url":"https:\/\/t.co\/Apm4iN9TnO","display_url":"pic.twitter.com\/Apm4iN9TnO","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187800427544268800\/video\/1","type":"video","sizes":{"medium":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":480,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"duration_millis":14133,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/pl\/T49X8pWvcWZ1hr0f.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/360x270\/jjTaFEgF3SEuLXiG.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/480x360\/lLxj8onGzGLt2Pjb.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187800408619548672\/pu\/vid\/640x480\/fsmN351GfvkQwtsa.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:51:25 +0000 2019","id":1187818968410574848,"id_str":"1187818968410574848","full_text":"Fifth + and last day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 @khebrat_edu + @S_Meemar @onaizahedu.\nThis is what I got this year, it is the first time + for me but not the last.\nThank you @AECT ,thank you @rogerwagner for this + gift again. https:\/\/t.co\/E9LhR4iMYS","truncated":false,"display_text_range":[0,248],"entities":{"hashtags":[{"text":"aect19inspired","indices":[19,34]},{"text":"AECTech2019","indices":[35,47]},{"text":"aect19inspired","indices":[48,63]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[64,75]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[76,88]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[89,98]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[99,110]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[198,203]},{"screen_name":"rogerwagner","name":"rogerwagner","id":9920032,"id_str":"9920032","indices":[215,227]}],"urls":[],"media":[{"id":1187818957354328064,"id_str":"1187818957354328064","indices":[249,272],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv7DGKUYAAC05f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv7DGKUYAAC05f.jpg","url":"https:\/\/t.co\/E9LhR4iMYS","display_url":"pic.twitter.com\/E9LhR4iMYS","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187818968410574848\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187818957354328064,"id_str":"1187818957354328064","indices":[249,272],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv7DGKUYAAC05f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv7DGKUYAAC05f.jpg","url":"https:\/\/t.co\/E9LhR4iMYS","display_url":"pic.twitter.com\/E9LhR4iMYS","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187818968410574848\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1187818957362753537,"id_str":"1187818957362753537","indices":[249,272],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv7DGMU8AEVR7P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv7DGMU8AEVR7P.jpg","url":"https:\/\/t.co\/E9LhR4iMYS","display_url":"pic.twitter.com\/E9LhR4iMYS","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187818968410574848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":517,"h":680,"resize":"fit"},"medium":{"w":913,"h":1200,"resize":"fit"},"large":{"w":1558,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1187818957358551040,"id_str":"1187818957358551040","indices":[249,272],"media_url":"http:\/\/pbs.twimg.com\/media\/EHv7DGLU0AAavzX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHv7DGLU0AAavzX.jpg","url":"https:\/\/t.co\/E9LhR4iMYS","display_url":"pic.twitter.com\/E9LhR4iMYS","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187818968410574848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":526,"resize":"fit"},"medium":{"w":1200,"h":929,"resize":"fit"},"large":{"w":1984,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187813167637782528,"in_reply_to_status_id_str":"1187813167637782528","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 19:02:59 +0000 2019","id":1187806779289284609,"id_str":"1187806779289284609","full_text":"RT + @jeroen69: Paraphrasing Thomas Reeves: If you can\u2019t link your work to + any of these goals, you should probably rethink what you are doing\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jeroen69","name":"Jeroen","id":6848632,"id_str":"6848632","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":204949740,"id_str":"204949740","name":"Suzan + K\u00f6seo\u011flu","screen_name":"SuzanKoseoglu","location":"London, England","description":"educator\/researcher. + lecturer in L&T in higher education. online pedagogy, networked learning, + open scholarship, women empowerment and equity.","url":"https:\/\/t.co\/U6qNiQYvRB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/U6qNiQYvRB","expanded_url":"https:\/\/differentreadings.wordpress.com\/","display_url":"differentreadings.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1685,"friends_count":1421,"listed_count":66,"created_at":"Tue + Oct 19 20:45:53 +0000 2010","favourites_count":6674,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4817,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1383790471776858118\/7zte4_HU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1383790471776858118\/7zte4_HU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/204949740\/1618756263","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 16:27:08 +0000 2019","id":1186680396076875776,"id_str":"1186680396076875776","full_text":"Paraphrasing + Thomas Reeves: If you can\u2019t link your work to any of these goals, you + should probably rethink what you are doing. #aect19 #aectinspired https:\/\/t.co\/S4OYny9Oy7","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[{"text":"aect19","indices":[127,134]},{"text":"aectinspired","indices":[135,148]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186680255118884864,"id_str":"1186680255118884864","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","url":"https:\/\/t.co\/S4OYny9Oy7","display_url":"pic.twitter.com\/S4OYny9Oy7","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186680396076875776\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186680255118884864,"id_str":"1186680255118884864","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","url":"https:\/\/t.co\/S4OYny9Oy7","display_url":"pic.twitter.com\/S4OYny9Oy7","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186680396076875776\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1187795059992911873%2C1187794715254460417%2C1187794038587396096%2C1187793618121220097%2C1187793421840240640%2C1187789755804610560%2C1187789755804610560%2C1187788704582004736%2C1187788608255623168%2C1187788514324140032%2C1187788309495504898%2C1187788219321995269%2C1187788151852556293%2C1187788132038541312%2C1187787968301301760%2C1187787743515987968%2C1187787367244976132%2C1187787224919793664%2C1187786640996962304%2C1187786625465671680%2C1187786507605565441%2C1187786388227276800%2C1187786199856898048%2C1187786189626998784%2C1187785164392402946%2C1187784896355266560%2C1187783835351572480%2C1187782753602953218%2C1187782419396644864%2C1187781998896500737%2C1187781741445967873%2C1187781500059693056%2C1187781437174337536%2C1187781428068704257%2C1187781376780701696%2C1187780977201803264%2C1187780098939736064%2C1187780070217310209%2C1187779705488982016%2C1187779563356483585%2C1187779433945600005%2C1187778827180752896%2C1187778183011155969%2C1187776972040085507%2C1187775189313916929%2C1187775189313916929%2C1187774375338172417%2C1187773984596578304%2C1187772995500150787%2C1187772915657400325%2C1187772357622095873%2C1187772257105526786%2C1187772250658889730%2C1187771735610777601%2C1187770935962669058%2C1187770621192802305%2C1187770495179075584%2C1187770340996505729%2C1187770263661924357%2C1187770085651472390%2C1187770058803761152%2C1187769957783949312%2C1187769922937643009%2C1187769838577618949%2C1187769708881371137%2C1187769610705297410%2C1187769514445942785%2C1187769471638921216%2C1187769255107805184%2C1187768528893382656%2C1187767063827214336%2C1187765363737391104%2C1187765025785516032%2C1187764962002788357%2C1187764787716870144%2C1187764109170876419%2C1187763097080975362%2C1187762929791225856%2C1187762452542316544%2C1187762176431247360%2C1187761747635003392%2C1187761258151469057%2C1187761258151469057%2C1187758958045351936%2C1187756066299203584%2C1187755717190651905%2C1187754401080807424%2C1187754141545713664%2C1187752718573531137%2C1187752610608173058%2C1187750652098813952%2C1187750167098867713%2C1187749537227558912%2C1187746523733549056%2C1187745969871433728%2C1187745551112126465%2C1187745433403232258%2C1187745372535480321%2C1187745124962488322%2C1187745124962488322&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:41 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:41 GMT + x-transaction: ae12526789fe642c + content-length: '52214' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '290' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '535' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Fri Oct 25 17:14:50 +0000 2019","id":1187779563356483585,"id_str":"1187779563356483585","full_text":"Another + fab presentation about #IRCEES @AECT @aectclt & @emergeAfrica online international + research collaborative #aect19inspired Great hearing about what folks in other + groups have been up to:) @eAngelaBenson @christieliuidtr @AZambodl https:\/\/t.co\/m8hHzLJe4D","truncated":false,"display_text_range":[0,240],"entities":{"hashtags":[{"text":"IRCEES","indices":[31,38]},{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[39,44]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[45,53]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[60,73]},{"screen_name":"eAngelaBenson","name":"Angela + Benson","id":15969744,"id_str":"15969744","indices":[199,213]},{"screen_name":"AZambodl","name":"alice + barlow zambodl","id":884836704,"id_str":"884836704","indices":[231,240]}],"urls":[],"media":[{"id":1187779549049704448,"id_str":"1187779549049704448","indices":[241,264],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvXNOyU0AA7DU0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvXNOyU0AA7DU0.jpg","url":"https:\/\/t.co\/m8hHzLJe4D","display_url":"pic.twitter.com\/m8hHzLJe4D","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187779563356483585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187779549049704448,"id_str":"1187779549049704448","indices":[241,264],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvXNOyU0AA7DU0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvXNOyU0AA7DU0.jpg","url":"https:\/\/t.co\/m8hHzLJe4D","display_url":"pic.twitter.com\/m8hHzLJe4D","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187779563356483585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187779557236953088,"id_str":"1187779557236953088","indices":[241,264],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvXNtSUUAAzmr-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvXNtSUUAAzmr-.jpg","url":"https:\/\/t.co\/m8hHzLJe4D","display_url":"pic.twitter.com\/m8hHzLJe4D","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187779563356483585\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:22:15 +0000 2019","id":1187781428068704257,"id_str":"1187781428068704257","full_text":"#AECT19 + #aect19inspired\n Remember, you have to be a bit vulnerable - you never know + what will happen when you share openly. This is my favorite sharing story: + https:\/\/t.co\/bAGjDQgmGJ (cc @tech4teachers19)","truncated":false,"display_text_range":[0,204],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"aect19inspired","indices":[8,23]}],"symbols":[],"user_mentions":[{"screen_name":"tech4teachers19","name":"Debbie + McHorney","id":2586308906,"id_str":"2586308906","indices":[187,203]}],"urls":[{"url":"https:\/\/t.co\/bAGjDQgmGJ","expanded_url":"http:\/\/www.leighgraveswolf.com\/2019\/04\/12\/returning-from-oer19-quilting-together-a-short-story-on-the-power-of-being-open\/","display_url":"leighgraveswolf.com\/2019\/04\/12\/ret\u2026","indices":[159,182]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11092692,"id_str":"11092692","name":"Dr. + Leigh Graves Wolf","screen_name":"gravesle","location":"Michigan\/Galway\/Arizona\/Online","description":"I + like to share & listen. Human. Clinical Associate Professor Ed Leadership + & Innovation @asueducation. I tweet my own things. (Dr\/She\/Her)","url":"https:\/\/t.co\/CIZXWxMRrw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CIZXWxMRrw","expanded_url":"http:\/\/leighgraveswolf.com","display_url":"leighgraveswolf.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6033,"friends_count":6584,"listed_count":442,"created_at":"Wed + Dec 12 16:03:00 +0000 2007","favourites_count":31280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48218,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11092692\/1442771541","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"044905","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E2F8AA","profile_text_color":"659B08","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:09:24 +0000 2019","id":1187763097080975362,"id_str":"1187763097080975362","full_text":"What + is your personal identifying information online? It matters. How do we monitor? + @AECT #aect19 #aect19inspired #socialmedia","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"aect19","indices":[91,98]},{"text":"aect19inspired","indices":[99,114]},{"text":"socialmedia","indices":[115,127]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[85,90]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3917,"friends_count":382,"listed_count":163,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 14:58:58 +0000 2019","id":1187745372535480321,"id_str":"1187745372535480321","full_text":"It + is so great to see our lab members @VVongkulluksn @hawk_nathanA @Nelsmich + @ShengBo_Chen @DLResearchLab presented their research at #aect19 Supporting + graduate students and helping them to become the next generation of scholars + is essential to the field #aect19inspired https:\/\/t.co\/XobNxCAQEF","truncated":false,"display_text_range":[0,271],"entities":{"hashtags":[{"text":"aect19","indices":[134,141]},{"text":"aect19inspired","indices":[256,271]}],"symbols":[],"user_mentions":[{"screen_name":"VVongkulluksn","name":"Vanessa + Vongkulluksn","id":859192619582226432,"id_str":"859192619582226432","indices":[38,52]},{"screen_name":"hawk_nathanA","name":"Nathan + A Hawk","id":492536804,"id_str":"492536804","indices":[53,66]},{"screen_name":"Nelsmich","name":"Mike + Nelson","id":51712418,"id_str":"51712418","indices":[67,76]},{"screen_name":"ShengBo_Chen","name":"Sheng-Bo + Chen","id":1341770169669070849,"id_str":"1341770169669070849","indices":[77,90]},{"screen_name":"DLResearchLab","name":"Digital + Learning Lab","id":866326285999591426,"id_str":"866326285999591426","indices":[91,105]}],"urls":[],"media":[{"id":1187745354294464512,"id_str":"1187745354294464512","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHu4G1ZXkAApNgM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHu4G1ZXkAApNgM.jpg","url":"https:\/\/t.co\/XobNxCAQEF","display_url":"pic.twitter.com\/XobNxCAQEF","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187745372535480321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187745354294464512,"id_str":"1187745354294464512","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHu4G1ZXkAApNgM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHu4G1ZXkAApNgM.jpg","url":"https:\/\/t.co\/XobNxCAQEF","display_url":"pic.twitter.com\/XobNxCAQEF","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187745372535480321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187745354336342019,"id_str":"1187745354336342019","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHu4G1jWkAMHbPf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHu4G1jWkAMHbPf.jpg","url":"https:\/\/t.co\/XobNxCAQEF","display_url":"pic.twitter.com\/XobNxCAQEF","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187745372535480321\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":1440,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187745354294398976,"id_str":"1187745354294398976","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHu4G1ZWkAAOHAB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHu4G1ZWkAAOHAB.jpg","url":"https:\/\/t.co\/XobNxCAQEF","display_url":"pic.twitter.com\/XobNxCAQEF","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187745372535480321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187745354298613760,"id_str":"1187745354298613760","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHu4G1aW4AAK_A1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHu4G1aW4AAK_A1.jpg","url":"https:\/\/t.co\/XobNxCAQEF","display_url":"pic.twitter.com\/XobNxCAQEF","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187745372535480321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:41:57 +0000 2019","id":1187786388227276800,"id_str":"1187786388227276800","full_text":"Consider + turning your @AECT presentations into publications! Submit to JCHE to share + your inspiring and inspired work. #aect19 #aect19inspired","truncated":false,"display_text_range":[0,142],"entities":{"hashtags":[{"text":"aect19","indices":[119,126]},{"text":"aect19inspired","indices":[127,142]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[22,27]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3632440875,"id_str":"3632440875","name":"JCHE","screen_name":"JCHEResearch","location":"Springer + Publishing","description":"Journal of Computing in Higher Education: Research + and Integration of Instructional Technology","url":"http:\/\/t.co\/vp1fT27q0u","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/vp1fT27q0u","expanded_url":"http:\/\/www.springer.com","display_url":"springer.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":399,"friends_count":143,"listed_count":11,"created_at":"Sat + Sep 12 15:26:14 +0000 2015","favourites_count":55,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":67,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642728004989374464\/rT2xsSzd_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642728004989374464\/rT2xsSzd_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3632440875\/1442073430","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"93A644","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:22:32 +0000 2019","id":1187781500059693056,"id_str":"1187781500059693056","full_text":"RT + @nicolapallitt: Another fab presentation about #IRCEES @AECT @aectclt & + @emergeAfrica online international research collaborative #aect1\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"IRCEES","indices":[50,57]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[58,63]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[64,72]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[79,92]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 17:14:50 +0000 2019","id":1187779563356483585,"id_str":"1187779563356483585","full_text":"Another + fab presentation about #IRCEES @AECT @aectclt & @emergeAfrica online international + research collaborative #aect19inspired Great hearing about what folks in other + groups have been up to:) @eAngelaBenson @christieliuidtr @AZambodl https:\/\/t.co\/m8hHzLJe4D","truncated":false,"display_text_range":[0,240],"entities":{"hashtags":[{"text":"IRCEES","indices":[31,38]},{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[39,44]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[45,53]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[60,73]},{"screen_name":"eAngelaBenson","name":"Angela + Benson","id":15969744,"id_str":"15969744","indices":[199,213]},{"screen_name":"AZambodl","name":"alice + barlow zambodl","id":884836704,"id_str":"884836704","indices":[231,240]}],"urls":[],"media":[{"id":1187779549049704448,"id_str":"1187779549049704448","indices":[241,264],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvXNOyU0AA7DU0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvXNOyU0AA7DU0.jpg","url":"https:\/\/t.co\/m8hHzLJe4D","display_url":"pic.twitter.com\/m8hHzLJe4D","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187779563356483585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187779549049704448,"id_str":"1187779549049704448","indices":[241,264],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvXNOyU0AA7DU0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvXNOyU0AA7DU0.jpg","url":"https:\/\/t.co\/m8hHzLJe4D","display_url":"pic.twitter.com\/m8hHzLJe4D","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187779563356483585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187779557236953088,"id_str":"1187779557236953088","indices":[241,264],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvXNtSUUAAzmr-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvXNtSUUAAzmr-.jpg","url":"https:\/\/t.co\/m8hHzLJe4D","display_url":"pic.twitter.com\/m8hHzLJe4D","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187779563356483585\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:37:05 +0000 2019","id":1187785164392402946,"id_str":"1187785164392402946","full_text":"Q3: + \"Your influences are all worth sharing because they clue people into who + you are and what you do - sometimes even more than your own work. Who are + your sources of inspiration?\" #AECT19 #aect19inspired","truncated":false,"display_text_range":[0,204],"entities":{"hashtags":[{"text":"AECT19","indices":[181,188]},{"text":"aect19inspired","indices":[189,204]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11092692,"id_str":"11092692","name":"Dr. + Leigh Graves Wolf","screen_name":"gravesle","location":"Michigan\/Galway\/Arizona\/Online","description":"I + like to share & listen. Human. Clinical Associate Professor Ed Leadership + & Innovation @asueducation. I tweet my own things. (Dr\/She\/Her)","url":"https:\/\/t.co\/CIZXWxMRrw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CIZXWxMRrw","expanded_url":"http:\/\/leighgraveswolf.com","display_url":"leighgraveswolf.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6033,"friends_count":6584,"listed_count":442,"created_at":"Wed + Dec 12 16:03:00 +0000 2007","favourites_count":31280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48218,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11092692\/1442771541","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"044905","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E2F8AA","profile_text_color":"659B08","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 15:33:49 +0000 2019","id":1187754141545713664,"id_str":"1187754141545713664","full_text":"Had + a great time talking with #aect19inspired attendees about the possibilities + of chatbots built with Botkit - check them out at https:\/\/t.co\/h1x93l4X6R! + @AECT https:\/\/t.co\/rPkg9pm5yp","truncated":false,"display_text_range":[0,160],"entities":{"hashtags":[{"text":"aect19inspired","indices":[30,45]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[155,160]}],"urls":[{"url":"https:\/\/t.co\/h1x93l4X6R","expanded_url":"http:\/\/botkit.ai","display_url":"botkit.ai","indices":[130,153]}],"media":[{"id":1187754137762463744,"id_str":"1187754137762463744","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvAGGXVAAA7Gf0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvAGGXVAAA7Gf0.jpg","url":"https:\/\/t.co\/rPkg9pm5yp","display_url":"pic.twitter.com\/rPkg9pm5yp","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1187754141545713664\/photo\/1","type":"photo","sizes":{"medium":{"w":1079,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"large":{"w":1079,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187754137762463744,"id_str":"1187754137762463744","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvAGGXVAAA7Gf0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvAGGXVAAA7Gf0.jpg","url":"https:\/\/t.co\/rPkg9pm5yp","display_url":"pic.twitter.com\/rPkg9pm5yp","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1187754141545713664\/photo\/1","type":"photo","sizes":{"medium":{"w":1079,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"large":{"w":1079,"h":720,"resize":"fit"}},"ext_alt_text":"Botkit.ai + homepage"}]},"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" + rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:16:49 +0000 2019","id":1187764962002788357,"id_str":"1187764962002788357","full_text":"\u201cCLT + Inspire! Safeguard Your Online Persona\u201d, important topics these days + for everyone, an early morning inspiring! @aectclt @AECT #aect19 #aect19inspired + @teacherrogers @srogidd https:\/\/t.co\/1iP3TrJTNc","truncated":false,"display_text_range":[0,178],"entities":{"hashtags":[{"text":"aect19","indices":[131,138]},{"text":"aect19inspired","indices":[139,154]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[116,124]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[125,130]},{"screen_name":"teacherrogers","name":"Sandra + Annette Rogers, PhD","id":212784618,"id_str":"212784618","indices":[155,169]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[170,178]}],"urls":[],"media":[{"id":1187764955954565120,"id_str":"1187764955954565120","indices":[179,202],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvJ7zRUUAA-3eT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvJ7zRUUAA-3eT.jpg","url":"https:\/\/t.co\/1iP3TrJTNc","display_url":"pic.twitter.com\/1iP3TrJTNc","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187764962002788357\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187764955954565120,"id_str":"1187764955954565120","indices":[179,202],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvJ7zRUUAA-3eT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvJ7zRUUAA-3eT.jpg","url":"https:\/\/t.co\/1iP3TrJTNc","display_url":"pic.twitter.com\/1iP3TrJTNc","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187764962002788357\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1187764955942047744,"id_str":"1187764955942047744","indices":[179,202],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvJ7zOVUAAqMkn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvJ7zOVUAAqMkn.jpg","url":"https:\/\/t.co\/1iP3TrJTNc","display_url":"pic.twitter.com\/1iP3TrJTNc","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187764962002788357\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:30:59 +0000 2019","id":1187768528893382656,"id_str":"1187768528893382656","full_text":"If + you are a former teacher and would like to share your story with other teachers + looking to leave the classroom, please let me know. I would love to add your + story to these \u201cSuccess Stories\u201d if you are interested. #AECT19 + https:\/\/t.co\/ahXiwvNH2v","truncated":false,"display_text_range":[0,247],"entities":{"hashtags":[{"text":"AECT19","indices":[216,223]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ahXiwvNH2v","expanded_url":"https:\/\/otherjobsforteachers.com\/success-stories","display_url":"otherjobsforteachers.com\/success-stories","indices":[224,247]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":686,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:02:06 +0000 2019","id":1187761258151469057,"id_str":"1187761258151469057","full_text":"10 + am - 10:50 am at Convention Center - Pavilion 6\n423. The Trends in IDT Database: + A Means of Enhancing Your Professional Practice - Logan Arrington, Alison + Moore, Fabrizio Fornara, Weinan Zhao & Robert Reiser #AECT19 #FSU #FSUCOE + #ISLT #trendsandissues #instructionaldesign https:\/\/t.co\/5dS7536j9C","truncated":false,"display_text_range":[0,279],"entities":{"hashtags":[{"text":"AECT19","indices":[215,222]},{"text":"FSU","indices":[223,227]},{"text":"FSUCOE","indices":[228,235]},{"text":"ISLT","indices":[236,241]},{"text":"trendsandissues","indices":[242,258]},{"text":"instructionaldesign","indices":[259,279]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187761256238899201,"id_str":"1187761256238899201","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvGkcwXYAEc-C5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvGkcwXYAEc-C5.jpg","url":"https:\/\/t.co\/5dS7536j9C","display_url":"pic.twitter.com\/5dS7536j9C","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187761258151469057\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1005,"h":671,"resize":"fit"},"large":{"w":1005,"h":671,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187761256238899201,"id_str":"1187761256238899201","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvGkcwXYAEc-C5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvGkcwXYAEc-C5.jpg","url":"https:\/\/t.co\/5dS7536j9C","display_url":"pic.twitter.com\/5dS7536j9C","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187761258151469057\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1005,"h":671,"resize":"fit"},"large":{"w":1005,"h":671,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:05:45 +0000 2019","id":1187762176431247360,"id_str":"1187762176431247360","full_text":"@aect + #aect19 #aect19inspired https:\/\/t.co\/zJ7KtlYCfc","truncated":false,"display_text_range":[0,29],"entities":{"hashtags":[{"text":"aect19","indices":[6,13]},{"text":"aect19inspired","indices":[14,29]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]}],"urls":[],"media":[{"id":1187762171112935425,"id_str":"1187762171112935425","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvHZs7VUAETNCq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvHZs7VUAETNCq.jpg","url":"https:\/\/t.co\/zJ7KtlYCfc","display_url":"pic.twitter.com\/zJ7KtlYCfc","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187762176431247360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187762171112935425,"id_str":"1187762171112935425","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvHZs7VUAETNCq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvHZs7VUAETNCq.jpg","url":"https:\/\/t.co\/zJ7KtlYCfc","display_url":"pic.twitter.com\/zJ7KtlYCfc","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187762176431247360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3917,"friends_count":382,"listed_count":163,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Fri + Oct 25 17:48:58 +0000 2019","id":1187788151852556293,"id_str":"1187788151852556293","full_text":"Remember: + Slow & steady wins the race - keep building upon momentum. #aect19 #aect19inspired","truncated":false,"display_text_range":[0,96],"entities":{"hashtags":[{"text":"aect19","indices":[73,80]},{"text":"aect19inspired","indices":[81,96]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11092692,"id_str":"11092692","name":"Dr. + Leigh Graves Wolf","screen_name":"gravesle","location":"Michigan\/Galway\/Arizona\/Online","description":"I + like to share & listen. Human. Clinical Associate Professor Ed Leadership + & Innovation @asueducation. I tweet my own things. (Dr\/She\/Her)","url":"https:\/\/t.co\/CIZXWxMRrw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CIZXWxMRrw","expanded_url":"http:\/\/leighgraveswolf.com","display_url":"leighgraveswolf.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6033,"friends_count":6584,"listed_count":442,"created_at":"Wed + Dec 12 16:03:00 +0000 2007","favourites_count":31280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48218,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11092692\/1442771541","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"044905","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E2F8AA","profile_text_color":"659B08","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 14:59:41 +0000 2019","id":1187745551112126465,"id_str":"1187745551112126465","full_text":"RT + @pazureka: Happy Friday @AECT! During our last day together at #aect19, join + us to shine a light on the importance of #LearnerEngagement\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[66,73]},{"text":"LearnerEngagement","indices":[121,139]}],"symbols":[],"user_mentions":[{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[3,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 14:53:43 +0000 2019","id":1187744052525109248,"id_str":"1187744052525109248","full_text":"Happy + Friday @AECT! During our last day together at #aect19, join us to shine a + light on the importance of #LearnerEngagement and ways to facilitate it. \ud83c\udfc6@LearnEngage + https:\/\/t.co\/82aDlEPl4O","truncated":false,"display_text_range":[0,166],"entities":{"hashtags":[{"text":"aect19","indices":[52,59]},{"text":"LearnerEngagement","indices":[107,125]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[13,18]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[154,166]}],"urls":[],"media":[{"id":1187744047546458112,"id_str":"1187744047546458112","indices":[167,190],"media_url":"http:\/\/pbs.twimg.com\/media\/EHu26xYXYAAgBgk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHu26xYXYAAgBgk.jpg","url":"https:\/\/t.co\/82aDlEPl4O","display_url":"pic.twitter.com\/82aDlEPl4O","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187744052525109248\/photo\/1","type":"photo","sizes":{"medium":{"w":927,"h":362,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":266,"resize":"fit"},"large":{"w":927,"h":362,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187744047546458112,"id_str":"1187744047546458112","indices":[167,190],"media_url":"http:\/\/pbs.twimg.com\/media\/EHu26xYXYAAgBgk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHu26xYXYAAgBgk.jpg","url":"https:\/\/t.co\/82aDlEPl4O","display_url":"pic.twitter.com\/82aDlEPl4O","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187744052525109248\/photo\/1","type":"photo","sizes":{"medium":{"w":927,"h":362,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":266,"resize":"fit"},"large":{"w":927,"h":362,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:22:17 +0000 2019","id":1187781437174337536,"id_str":"1187781437174337536","full_text":"Felt + a bit awarkard being the only person on the screen, but very much appreciated + the opportunity of being able to join this at a distance. Thank you for everyone + that coordinated this event and I surely hope students found what I shared + useful. #aect19 https:\/\/t.co\/IrP2InLLS2","truncated":false,"display_text_range":[0,254],"entities":{"hashtags":[{"text":"aect19","indices":[247,254]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IrP2InLLS2","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187381441023201280","display_url":"twitter.com\/PaulineMuljana\u2026","indices":[255,278]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":29474883,"id_str":"29474883","name":"Tian + Luo","screen_name":"tintinluo","location":"","description":"Mom|Learner|Ed + Tech Researcher| Professor|Academic|Twitter4Edu\u2663|\u266bMusic&Karaoke|Runner|Hiker","url":"https:\/\/t.co\/JYxUkH3DmL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JYxUkH3DmL","expanded_url":"http:\/\/shorturl.at\/dvwS1","display_url":"shorturl.at\/dvwS1","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":351,"listed_count":9,"created_at":"Tue + Apr 07 15:51:16 +0000 2009","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1440,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1086694741184524288\/FOyL7iDO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1086694741184524288\/FOyL7iDO_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187381441023201280,"quoted_status_id_str":"1187381441023201280","quoted_status_permalink":{"url":"https:\/\/t.co\/IrP2InLLS2","expanded":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187381441023201280","display":"twitter.com\/PaulineMuljana\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 14:52:50 +0000 2019","id":1187381441023201280,"id_str":"1187381441023201280","full_text":"The + \"Narrowing Down your Research Interests\" @gsa_aect panel session that I + co-facilitated with Yam has inspired me. I''m sure it has inspired the attendees + as well. Shout out to the panelists, Drs. @aac3 , @tintinluo , @robmoore3 + , and @eromerohall . #aect19 https:\/\/t.co\/gKIkBntwgp","truncated":false,"display_text_range":[0,258],"entities":{"hashtags":[{"text":"aect19","indices":[251,258]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[45,54]},{"screen_name":"aac3","name":"Dr. + ali carr-chellman","id":27413768,"id_str":"27413768","indices":[198,203]},{"screen_name":"tintinluo","name":"Tian + Luo","id":29474883,"id_str":"29474883","indices":[206,216]},{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[219,229]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[236,248]}],"urls":[],"media":[{"id":1187381434102665217,"id_str":"1187381434102665217","indices":[259,282],"media_url":"http:\/\/pbs.twimg.com\/media\/EHptH5CVUAEliUj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHptH5CVUAEliUj.jpg","url":"https:\/\/t.co\/gKIkBntwgp","display_url":"pic.twitter.com\/gKIkBntwgp","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187381441023201280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187381434102665217,"id_str":"1187381434102665217","indices":[259,282],"media_url":"http:\/\/pbs.twimg.com\/media\/EHptH5CVUAEliUj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHptH5CVUAEliUj.jpg","url":"https:\/\/t.co\/gKIkBntwgp","display_url":"pic.twitter.com\/gKIkBntwgp","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187381441023201280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10718,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:48:14 +0000 2019","id":1187787968301301760,"id_str":"1187787968301301760","full_text":"\"A + wealth of information can create a poverty of attention and a need to allocate + attention efficiently.\" Herbert Simon, Nobel Recipient #aect2019 #aect19","truncated":false,"display_text_range":[0,154],"entities":{"hashtags":[{"text":"aect2019","indices":[137,146]},{"text":"aect19","indices":[147,154]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":51775264,"id_str":"51775264","name":"Eric + Paul Rogers","screen_name":"ericpaulrogers","location":"Salt Lake City, UT","description":"(he, + him) aspiring stone catcher | ally\ud83c\udf08","url":"https:\/\/t.co\/xhUZs9RX55","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xhUZs9RX55","expanded_url":"https:\/\/ericpaulrogers.com","display_url":"ericpaulrogers.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":361,"friends_count":1232,"listed_count":2,"created_at":"Sun + Jun 28 16:49:05 +0000 2009","favourites_count":27579,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3148,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1478471925911339008\/2wRBAyhT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1478471925911339008\/2wRBAyhT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/51775264\/1648702096","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:36:11 +0000 2019","id":1187769838577618949,"id_str":"1187769838577618949","full_text":"RT + @ISLT_FSU: 10 am - 10:50 am at Convention Center - Conference Rm 12\n426. + Moving from Gameplay to Learning: Exploring Learners\u2019 Problem-S\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4714,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 15:40:05 +0000 2019","id":1187755717190651905,"id_str":"1187755717190651905","full_text":"10 + am - 10:50 am at Convention Center - Conference Rm 12\n426. Moving from Gameplay + to Learning: Exploring Learners\u2019 Problem-Solving Behavior, in-game Performance + and Transfer of Learning in a Digital Game-based Learning Environment \u2013 + Zhichun Liu #AECT19 #FSU #FSUCOE #ISLT","truncated":false,"display_text_range":[0,272],"entities":{"hashtags":[{"text":"AECT19","indices":[246,253]},{"text":"FSU","indices":[254,258]},{"text":"FSUCOE","indices":[259,266]},{"text":"ISLT","indices":[267,272]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:16:58 +0000 2019","id":1187780098939736064,"id_str":"1187780098939736064","full_text":"If + you couldn\u2019t make it, make sure to visit and bookmark this URL https:\/\/t.co\/oupDYuJvjv + #AECT19 https:\/\/t.co\/gxYHutPysF","truncated":false,"display_text_range":[0,97],"entities":{"hashtags":[{"text":"AECT19","indices":[90,97]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oupDYuJvjv","expanded_url":"http:\/\/trendsandissues.org\/","display_url":"trendsandissues.org","indices":[66,89]},{"url":"https:\/\/t.co\/gxYHutPysF","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187761258151469057","display_url":"twitter.com\/ISLT_FSU\/statu\u2026","indices":[98,121]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187761258151469057,"quoted_status_id_str":"1187761258151469057","quoted_status_permalink":{"url":"https:\/\/t.co\/gxYHutPysF","expanded":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187761258151469057","display":"twitter.com\/ISLT_FSU\/statu\u2026"},"quoted_status":{"created_at":"Fri + Oct 25 16:02:06 +0000 2019","id":1187761258151469057,"id_str":"1187761258151469057","full_text":"10 + am - 10:50 am at Convention Center - Pavilion 6\n423. The Trends in IDT Database: + A Means of Enhancing Your Professional Practice - Logan Arrington, Alison + Moore, Fabrizio Fornara, Weinan Zhao & Robert Reiser #AECT19 #FSU #FSUCOE + #ISLT #trendsandissues #instructionaldesign https:\/\/t.co\/5dS7536j9C","truncated":false,"display_text_range":[0,279],"entities":{"hashtags":[{"text":"AECT19","indices":[215,222]},{"text":"FSU","indices":[223,227]},{"text":"FSUCOE","indices":[228,235]},{"text":"ISLT","indices":[236,241]},{"text":"trendsandissues","indices":[242,258]},{"text":"instructionaldesign","indices":[259,279]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187761256238899201,"id_str":"1187761256238899201","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvGkcwXYAEc-C5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvGkcwXYAEc-C5.jpg","url":"https:\/\/t.co\/5dS7536j9C","display_url":"pic.twitter.com\/5dS7536j9C","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187761258151469057\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1005,"h":671,"resize":"fit"},"large":{"w":1005,"h":671,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187761256238899201,"id_str":"1187761256238899201","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvGkcwXYAEc-C5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvGkcwXYAEc-C5.jpg","url":"https:\/\/t.co\/5dS7536j9C","display_url":"pic.twitter.com\/5dS7536j9C","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187761258151469057\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1005,"h":671,"resize":"fit"},"large":{"w":1005,"h":671,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:40:33 +0000 2019","id":1187770935962669058,"id_str":"1187770935962669058","full_text":"RT + @koubenec: Had a great time talking with #aect19inspired attendees about the + possibilities of chatbots built with Botkit - check them ou\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[44,59]}],"symbols":[],"user_mentions":[{"screen_name":"koubenec","name":"Noah + Koubenec","id":153965652,"id_str":"153965652","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4714,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 15:33:49 +0000 2019","id":1187754141545713664,"id_str":"1187754141545713664","full_text":"Had + a great time talking with #aect19inspired attendees about the possibilities + of chatbots built with Botkit - check them out at https:\/\/t.co\/h1x93l4X6R! + @AECT https:\/\/t.co\/rPkg9pm5yp","truncated":false,"display_text_range":[0,160],"entities":{"hashtags":[{"text":"aect19inspired","indices":[30,45]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[155,160]}],"urls":[{"url":"https:\/\/t.co\/h1x93l4X6R","expanded_url":"http:\/\/botkit.ai","display_url":"botkit.ai","indices":[130,153]}],"media":[{"id":1187754137762463744,"id_str":"1187754137762463744","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvAGGXVAAA7Gf0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvAGGXVAAA7Gf0.jpg","url":"https:\/\/t.co\/rPkg9pm5yp","display_url":"pic.twitter.com\/rPkg9pm5yp","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1187754141545713664\/photo\/1","type":"photo","sizes":{"medium":{"w":1079,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"large":{"w":1079,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187754137762463744,"id_str":"1187754137762463744","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvAGGXVAAA7Gf0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvAGGXVAAA7Gf0.jpg","url":"https:\/\/t.co\/rPkg9pm5yp","display_url":"pic.twitter.com\/rPkg9pm5yp","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1187754141545713664\/photo\/1","type":"photo","sizes":{"medium":{"w":1079,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"large":{"w":1079,"h":720,"resize":"fit"}},"ext_alt_text":"Botkit.ai + homepage"}]},"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" + rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:04:32 +0000 2019","id":1187776972040085507,"id_str":"1187776972040085507","full_text":"RT + @koubenec: Had a great time talking with #aect19inspired attendees about the + possibilities of chatbots built with Botkit - check them ou\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[44,59]}],"symbols":[],"user_mentions":[{"screen_name":"koubenec","name":"Noah + Koubenec","id":153965652,"id_str":"153965652","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":9027,"id_str":"9027","name":"Dark + FOMO","screen_name":"benbrown","location":"Austin, TX","description":"Internet + sellout punk old man. @spenceke is my pirate queen. Herculean appetite for + the diverse and the bizarre.","url":"https:\/\/t.co\/brh0uJ20N2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/brh0uJ20N2","expanded_url":"http:\/\/benbrown.com","display_url":"benbrown.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4962,"friends_count":585,"listed_count":284,"created_at":"Sun + Oct 15 07:53:57 +0000 2006","favourites_count":31682,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18045,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1547343423719575552\/xWuhPm5-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1547343423719575552\/xWuhPm5-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9027\/1591847042","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"F58EA8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 15:33:49 +0000 2019","id":1187754141545713664,"id_str":"1187754141545713664","full_text":"Had + a great time talking with #aect19inspired attendees about the possibilities + of chatbots built with Botkit - check them out at https:\/\/t.co\/h1x93l4X6R! + @AECT https:\/\/t.co\/rPkg9pm5yp","truncated":false,"display_text_range":[0,160],"entities":{"hashtags":[{"text":"aect19inspired","indices":[30,45]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[155,160]}],"urls":[{"url":"https:\/\/t.co\/h1x93l4X6R","expanded_url":"http:\/\/botkit.ai","display_url":"botkit.ai","indices":[130,153]}],"media":[{"id":1187754137762463744,"id_str":"1187754137762463744","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvAGGXVAAA7Gf0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvAGGXVAAA7Gf0.jpg","url":"https:\/\/t.co\/rPkg9pm5yp","display_url":"pic.twitter.com\/rPkg9pm5yp","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1187754141545713664\/photo\/1","type":"photo","sizes":{"medium":{"w":1079,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"large":{"w":1079,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187754137762463744,"id_str":"1187754137762463744","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvAGGXVAAA7Gf0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvAGGXVAAA7Gf0.jpg","url":"https:\/\/t.co\/rPkg9pm5yp","display_url":"pic.twitter.com\/rPkg9pm5yp","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1187754141545713664\/photo\/1","type":"photo","sizes":{"medium":{"w":1079,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"large":{"w":1079,"h":720,"resize":"fit"}},"ext_alt_text":"Botkit.ai + homepage"}]},"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" + rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:49:35 +0000 2019","id":1187788309495504898,"id_str":"1187788309495504898","full_text":"RT + @yuuki5000: \u201dThe Trends in Instructional Design and Technology Database\u201d + It is a very useful database for knowing the trends in the IDT\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"yuuki5000","name":"Yuki + Watanabe","id":65595602,"id_str":"65595602","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11092692,"id_str":"11092692","name":"Dr. + Leigh Graves Wolf","screen_name":"gravesle","location":"Michigan\/Galway\/Arizona\/Online","description":"I + like to share & listen. Human. Clinical Associate Professor Ed Leadership + & Innovation @asueducation. I tweet my own things. (Dr\/She\/Her)","url":"https:\/\/t.co\/CIZXWxMRrw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CIZXWxMRrw","expanded_url":"http:\/\/leighgraveswolf.com","display_url":"leighgraveswolf.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6033,"friends_count":6584,"listed_count":442,"created_at":"Wed + Dec 12 16:03:00 +0000 2007","favourites_count":31280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48218,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11092692\/1442771541","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"044905","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E2F8AA","profile_text_color":"659B08","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 17:49:14 +0000 2019","id":1187788219321995269,"id_str":"1187788219321995269","full_text":"\u201dThe + Trends in Instructional Design and Technology Database\u201d It is a very + useful database for knowing the trends in the IDT field. #aect19\nhttps:\/\/t.co\/QyyZYbs6EP","truncated":false,"display_text_range":[0,162],"entities":{"hashtags":[{"text":"aect19","indices":[131,138]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QyyZYbs6EP","expanded_url":"http:\/\/trendsandissues.org\/","display_url":"trendsandissues.org","indices":[139,162]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":65595602,"id_str":"65595602","name":"Yuki + Watanabe","screen_name":"yuuki5000","location":"Tokyo","description":"\u6e21\u8fba\u96c4\u8cb4\u3002\u6771\u4eac\u90fd\u51fa\u8eab\u3002\u3072\u3063\u305d\u308a\u3068\u6559\u80b2\u5de5\u5b66\u306e\u7814\u7a76\u3092\u3057\u3066\u307e\u3059\u3002\u6771\u4eac\u7406\u79d1\u5927\u5b66\u6559\u6388\u3002\u535a\u58eb\uff08\u5b66\u8853\uff09\u6771\u4eac\u5de5\u696d\u5927\u5b66 + \/ Professor (Educational Technology Lab.) at Tokyo University of Science, + Japan. Ph.D. Tokyo Tech","url":"https:\/\/t.co\/4RXslYSaqZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4RXslYSaqZ","expanded_url":"https:\/\/www.tus.ac.jp\/fac_grad\/p\/index.php?3bfc","display_url":"tus.ac.jp\/fac_grad\/p\/ind\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1130,"friends_count":314,"listed_count":43,"created_at":"Fri + Aug 14 08:42:14 +0000 2009","favourites_count":2992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12516,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1360616182319992838\/B-lMb0oC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1360616182319992838\/B-lMb0oC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65595602\/1440774032","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:54:13 +0000 2019","id":1187774375338172417,"id_str":"1187774375338172417","full_text":"@AECT + Safe travels #aect19inspired colleagues. Publish your new ideas in Technology, + Knowledge and Learning @SpringerEdu \n\n#Edtech\n\nhttps:\/\/t.co\/3A6GsVRzRO + https:\/\/t.co\/rejJwM9VGt","truncated":false,"display_text_range":[0,155],"entities":{"hashtags":[{"text":"aect19inspired","indices":[19,34]},{"text":"Edtech","indices":[123,130]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]},{"screen_name":"SpringerEdu","name":"Springer + Education","id":347188522,"id_str":"347188522","indices":[108,120]}],"urls":[{"url":"https:\/\/t.co\/3A6GsVRzRO","expanded_url":"http:\/\/springer.com\/10758","display_url":"springer.com\/10758","indices":[132,155]}],"media":[{"id":1187774350382063617,"id_str":"1187774350382063617","indices":[156,179],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvSeoPX4AEsdrB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvSeoPX4AEsdrB.jpg","url":"https:\/\/t.co\/rejJwM9VGt","display_url":"pic.twitter.com\/rejJwM9VGt","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187774375338172417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":153,"h":229,"resize":"fit"},"medium":{"w":153,"h":229,"resize":"fit"},"large":{"w":153,"h":229,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187774350382063617,"id_str":"1187774350382063617","indices":[156,179],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvSeoPX4AEsdrB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvSeoPX4AEsdrB.jpg","url":"https:\/\/t.co\/rejJwM9VGt","display_url":"pic.twitter.com\/rejJwM9VGt","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187774375338172417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":153,"h":229,"resize":"fit"},"medium":{"w":153,"h":229,"resize":"fit"},"large":{"w":153,"h":229,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":45137054,"id_str":"45137054","name":"Dirk + Ifenthaler","screen_name":"ifenthaler","location":"","description":"#learninganalytics","url":"https:\/\/t.co\/nGyfFQyRvo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nGyfFQyRvo","expanded_url":"http:\/\/www.ifenthaler.info","display_url":"ifenthaler.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":895,"friends_count":246,"listed_count":35,"created_at":"Sat + Jun 06 14:19:07 +0000 2009","favourites_count":615,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":878,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 15:40:05 +0000 2019","id":1187755717190651905,"id_str":"1187755717190651905","full_text":"10 + am - 10:50 am at Convention Center - Conference Rm 12\n426. Moving from Gameplay + to Learning: Exploring Learners\u2019 Problem-Solving Behavior, in-game Performance + and Transfer of Learning in a Digital Game-based Learning Environment \u2013 + Zhichun Liu #AECT19 #FSU #FSUCOE #ISLT","truncated":false,"display_text_range":[0,272],"entities":{"hashtags":[{"text":"AECT19","indices":[246,253]},{"text":"FSU","indices":[254,258]},{"text":"FSUCOE","indices":[259,266]},{"text":"ISLT","indices":[267,272]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:26:11 +0000 2019","id":1187782419396644864,"id_str":"1187782419396644864","full_text":"Q2: + Design out loud - Are you regularly sharing stories about your process with + others? If so, how?\n#AECT19 #aect19inspired","truncated":false,"display_text_range":[0,123],"entities":{"hashtags":[{"text":"AECT19","indices":[100,107]},{"text":"aect19inspired","indices":[108,123]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11092692,"id_str":"11092692","name":"Dr. + Leigh Graves Wolf","screen_name":"gravesle","location":"Michigan\/Galway\/Arizona\/Online","description":"I + like to share & listen. Human. Clinical Associate Professor Ed Leadership + & Innovation @asueducation. I tweet my own things. (Dr\/She\/Her)","url":"https:\/\/t.co\/CIZXWxMRrw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CIZXWxMRrw","expanded_url":"http:\/\/leighgraveswolf.com","display_url":"leighgraveswolf.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6033,"friends_count":6584,"listed_count":442,"created_at":"Wed + Dec 12 16:03:00 +0000 2007","favourites_count":31280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48218,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11092692\/1442771541","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"044905","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E2F8AA","profile_text_color":"659B08","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:38:48 +0000 2019","id":1187770495179075584,"id_str":"1187770495179075584","full_text":"RT + @DrRossPerkins: Heading home after #aect19inspired ? The airport #LAS is always + very busy... give yourself at least 1.5 hours once you g\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[38,53]},{"text":"LAS","indices":[68,72]}],"symbols":[],"user_mentions":[{"screen_name":"DrRossPerkins","name":"Ross + Perkins, PhD","id":2905458781,"id_str":"2905458781","indices":[3,17]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4714,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 12:52:02 +0000 2019","id":1187713428107870208,"id_str":"1187713428107870208","full_text":"Heading + home after #aect19inspired ? The airport #LAS is always very busy... give + yourself at least 1.5 hours once you get here - especially if checking a bag. + TSA is efficient but lots and lots of folks to move through.","truncated":false,"display_text_range":[0,220],"entities":{"hashtags":[{"text":"aect19inspired","indices":[19,34]},{"text":"LAS","indices":[49,53]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2905458781,"id_str":"2905458781","name":"Ross + Perkins, PhD","screen_name":"DrRossPerkins","location":"Apex, NC","description":"Asc + Prof @ Boise State. EdS\/EdD ProgCoord. https:\/\/t.co\/8jp7WXqbV1 | Huge + listserv influencer, 1998-2006.","url":"https:\/\/t.co\/8jp7WXqbV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[43,66]}]}},"protected":false,"followers_count":774,"friends_count":485,"listed_count":21,"created_at":"Thu + Nov 20 19:52:09 +0000 2014","favourites_count":3672,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2751,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2905458781\/1618315302","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:11:54 +0000 2019","id":1187778827180752896,"id_str":"1187778827180752896","full_text":"#AECT19 + #aect19inspired Here are the resources from our session: https:\/\/t.co\/IB5f5gWEmJ + (@jenm @tadousay jrosenberg6432 )","truncated":false,"display_text_range":[0,122],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"aect19inspired","indices":[8,23]}],"symbols":[],"user_mentions":[{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[90,95]},{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[96,105]}],"urls":[{"url":"https:\/\/t.co\/IB5f5gWEmJ","expanded_url":"http:\/\/bit.ly\/aect19open","display_url":"bit.ly\/aect19open","indices":[65,88]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11092692,"id_str":"11092692","name":"Dr. + Leigh Graves Wolf","screen_name":"gravesle","location":"Michigan\/Galway\/Arizona\/Online","description":"I + like to share & listen. Human. Clinical Associate Professor Ed Leadership + & Innovation @asueducation. I tweet my own things. (Dr\/She\/Her)","url":"https:\/\/t.co\/CIZXWxMRrw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CIZXWxMRrw","expanded_url":"http:\/\/leighgraveswolf.com","display_url":"leighgraveswolf.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6033,"friends_count":6584,"listed_count":442,"created_at":"Wed + Dec 12 16:03:00 +0000 2007","favourites_count":31280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48218,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11092692\/1442771541","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"044905","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E2F8AA","profile_text_color":"659B08","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:42:57 +0000 2019","id":1187786640996962304,"id_str":"1187786640996962304","full_text":"RT + @JCHEResearch: Consider turning your @AECT presentations into publications! + Submit to JCHE to share your inspiring and inspired work. #a\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JCHEResearch","name":"JCHE","id":3632440875,"id_str":"3632440875","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[40,45]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15636128,"id_str":"15636128","name":"stephanie + moore","screen_name":"steph_moore","location":"New Mexico Baby!","description":"Online + learning. Ethics & design. Tea. Bourbon. Chocolate. Leaning into metamodern. + Editor in Chief of @JCHEResearch she\/her, Author: SEL at a Distance","url":"https:\/\/t.co\/zwm2yMkODU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zwm2yMkODU","expanded_url":"https:\/\/wwnorton.com\/books\/9781324016571","display_url":"wwnorton.com\/books\/97813240\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3097,"friends_count":1316,"listed_count":54,"created_at":"Mon + Jul 28 19:10:00 +0000 2008","favourites_count":18809,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13765,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15636128\/1656742799","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 17:41:57 +0000 2019","id":1187786388227276800,"id_str":"1187786388227276800","full_text":"Consider + turning your @AECT presentations into publications! Submit to JCHE to share + your inspiring and inspired work. #aect19 #aect19inspired","truncated":false,"display_text_range":[0,142],"entities":{"hashtags":[{"text":"aect19","indices":[119,126]},{"text":"aect19inspired","indices":[127,142]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[22,27]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3632440875,"id_str":"3632440875","name":"JCHE","screen_name":"JCHEResearch","location":"Springer + Publishing","description":"Journal of Computing in Higher Education: Research + and Integration of Instructional Technology","url":"http:\/\/t.co\/vp1fT27q0u","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/vp1fT27q0u","expanded_url":"http:\/\/www.springer.com","display_url":"springer.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":399,"friends_count":143,"listed_count":11,"created_at":"Sat + Sep 12 15:26:14 +0000 2015","favourites_count":55,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":67,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642728004989374464\/rT2xsSzd_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642728004989374464\/rT2xsSzd_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3632440875\/1442073430","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"93A644","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:50:24 +0000 2019","id":1187788514324140032,"id_str":"1187788514324140032","full_text":"#IRCEES + using @zoom_us at @AECT @aectclt to bring in collaborators who couldn''t be + at the conference & enable a broader diversity of voices #aect19inspired + https:\/\/t.co\/FoSZQHt4Er","truncated":false,"display_text_range":[0,159],"entities":{"hashtags":[{"text":"IRCEES","indices":[0,7]},{"text":"aect19inspired","indices":[144,159]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[26,31]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[32,40]}],"urls":[],"media":[{"id":1187788506518568960,"id_str":"1187788506518568960","indices":[160,183],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvfWn9UwAAam64.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvfWn9UwAAam64.jpg","url":"https:\/\/t.co\/FoSZQHt4Er","display_url":"pic.twitter.com\/FoSZQHt4Er","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187788514324140032\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187788506518568960,"id_str":"1187788506518568960","indices":[160,183],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvfWn9UwAAam64.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvfWn9UwAAam64.jpg","url":"https:\/\/t.co\/FoSZQHt4Er","display_url":"pic.twitter.com\/FoSZQHt4Er","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187788514324140032\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:14:19 +0000 2019","id":1187779433945600005,"id_str":"1187779433945600005","full_text":"Already + so many references to The Accidental Instructional Designer in our session! + (Describes so many of us so well!) https:\/\/t.co\/HJ9D0d3XKd \n#AECT19 #aect19inspired","truncated":false,"display_text_range":[0,167],"entities":{"hashtags":[{"text":"AECT19","indices":[144,151]},{"text":"aect19inspired","indices":[152,167]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HJ9D0d3XKd","expanded_url":"https:\/\/www.amazon.com\/Accidental-Instructional-Designer-Learning-Digital\/dp\/1562869140","display_url":"amazon.com\/Accidental-Ins\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11092692,"id_str":"11092692","name":"Dr. + Leigh Graves Wolf","screen_name":"gravesle","location":"Michigan\/Galway\/Arizona\/Online","description":"I + like to share & listen. Human. Clinical Associate Professor Ed Leadership + & Innovation @asueducation. I tweet my own things. (Dr\/She\/Her)","url":"https:\/\/t.co\/CIZXWxMRrw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CIZXWxMRrw","expanded_url":"http:\/\/leighgraveswolf.com","display_url":"leighgraveswolf.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6033,"friends_count":6584,"listed_count":442,"created_at":"Wed + Dec 12 16:03:00 +0000 2007","favourites_count":31280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48218,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11092692\/1442771541","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"044905","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E2F8AA","profile_text_color":"659B08","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:15:24 +0000 2019","id":1187779705488982016,"id_str":"1187779705488982016","full_text":"Q1: + What is the best way to establish myself in this field \u2026 especially when + I have little experience and\/or training?\n(Virtual audience feel free to + chime in!) \n#AECT19 #aect19inspired","truncated":false,"display_text_range":[0,185],"entities":{"hashtags":[{"text":"AECT19","indices":[162,169]},{"text":"aect19inspired","indices":[170,185]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11092692,"id_str":"11092692","name":"Dr. + Leigh Graves Wolf","screen_name":"gravesle","location":"Michigan\/Galway\/Arizona\/Online","description":"I + like to share & listen. Human. Clinical Associate Professor Ed Leadership + & Innovation @asueducation. I tweet my own things. (Dr\/She\/Her)","url":"https:\/\/t.co\/CIZXWxMRrw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CIZXWxMRrw","expanded_url":"http:\/\/leighgraveswolf.com","display_url":"leighgraveswolf.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6033,"friends_count":6584,"listed_count":442,"created_at":"Wed + Dec 12 16:03:00 +0000 2007","favourites_count":31280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48218,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11092692\/1442771541","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"044905","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E2F8AA","profile_text_color":"659B08","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:48:25 +0000 2019","id":1187772915657400325,"id_str":"1187772915657400325","full_text":"RT + @tkolski716: Great seeing (& meeting in person) two Univ of South Carolina + EdD students, Emily Shank & Noah Koubenec, shine & inspire at\u2026","truncated":false,"display_text_range":[0,152],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tkolski716","name":"Tammi","id":3389128959,"id_str":"3389128959","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4714,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 15:03:33 +0000 2019","id":1187746523733549056,"id_str":"1187746523733549056","full_text":"Great + seeing (& meeting in person) two Univ of South Carolina EdD students, + Emily Shank & Noah Koubenec, shine & inspire at AECT #aect2019","truncated":false,"display_text_range":[0,150],"entities":{"hashtags":[{"text":"aect2019","indices":[141,150]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3389128959,"id_str":"3389128959","name":"Tammi","screen_name":"tkolski716","location":"","description":"Middle + aged, adjunct college faculty professor, proud mother, wife, daughter and + sister, Doctoral of Education Technology student.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":57,"listed_count":2,"created_at":"Thu + Jul 23 13:11:07 +0000 2015","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/839131581377830914\/-YayFh8V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/839131581377830914\/-YayFh8V_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 15:19:57 +0000 2019","id":1187750652098813952,"id_str":"1187750652098813952","full_text":"The + amazing students of #EdTeach_UofSC inspire me #AECT2019","truncated":false,"display_text_range":[0,59],"entities":{"hashtags":[{"text":"EdTeach_UofSC","indices":[24,38]},{"text":"AECT2019","indices":[50,59]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3389128959,"id_str":"3389128959","name":"Tammi","screen_name":"tkolski716","location":"","description":"Middle + aged, adjunct college faculty professor, proud mother, wife, daughter and + sister, Doctoral of Education Technology student.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":57,"listed_count":2,"created_at":"Thu + Jul 23 13:11:07 +0000 2015","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/839131581377830914\/-YayFh8V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/839131581377830914\/-YayFh8V_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:33:52 +0000 2019","id":1187769255107805184,"id_str":"1187769255107805184","full_text":"I + am #aect19inspired by Jes\u00fas Trespalacios and Lida Uribe-Florez from @edtechbsu! + Great to learn with and from these mentors. #aect19 https:\/\/t.co\/Wvc8zugYfK","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"aect19inspired","indices":[5,20]},{"text":"aect19","indices":[126,133]}],"symbols":[],"user_mentions":[{"screen_name":"edtechbsu","name":"EDTECH@Boise + State","id":29818149,"id_str":"29818149","indices":[70,80]}],"urls":[],"media":[{"id":1187769236778676224,"id_str":"1187769236778676224","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvN0-lUcAAheUS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvN0-lUcAAheUS.jpg","url":"https:\/\/t.co\/Wvc8zugYfK","display_url":"pic.twitter.com\/Wvc8zugYfK","expanded_url":"https:\/\/twitter.com\/d_mulder\/status\/1187769255107805184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187769236778676224,"id_str":"1187769236778676224","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvN0-lUcAAheUS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvN0-lUcAAheUS.jpg","url":"https:\/\/t.co\/Wvc8zugYfK","display_url":"pic.twitter.com\/Wvc8zugYfK","expanded_url":"https:\/\/twitter.com\/d_mulder\/status\/1187769255107805184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":30278154,"id_str":"30278154","name":"Dr. + Dave Mulder","screen_name":"d_mulder","location":"Iowa","description":"Christ-follower. + Husband of one and dad of two. Professor of Education at @dordtuniversity. + #EdTech is my jam. My tweets speak only for me.","url":"https:\/\/t.co\/i9IOUI9RZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/i9IOUI9RZC","expanded_url":"https:\/\/drdave.substack.com\/","display_url":"drdave.substack.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3921,"friends_count":949,"listed_count":249,"created_at":"Fri + Apr 10 18:27:10 +0000 2009","favourites_count":39976,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30278154\/1568172162","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:22:02 +0000 2019","id":1187781376780701696,"id_str":"1187781376780701696","full_text":"RT + @nicolapallitt: Another fab presentation about #IRCEES @AECT @aectclt & + @emergeAfrica online international research collaborative #aect1\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"IRCEES","indices":[50,57]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[58,63]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[64,72]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[79,92]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":123168263,"id_str":"123168263","name":"Irene + Maweu \ud83c\udf3b\ud83c\udf3b","screen_name":"wavinya66","location":"Kenya","description":"By + Faith \/ With Respect \/ Facilitating from the heart \/ Liberating Structures + Gospel \/ IAF Member","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":762,"friends_count":772,"listed_count":9,"created_at":"Mon + Mar 15 06:31:31 +0000 2010","favourites_count":10218,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5795,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123168263\/1610274071","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 17:14:50 +0000 2019","id":1187779563356483585,"id_str":"1187779563356483585","full_text":"Another + fab presentation about #IRCEES @AECT @aectclt & @emergeAfrica online international + research collaborative #aect19inspired Great hearing about what folks in other + groups have been up to:) @eAngelaBenson @christieliuidtr @AZambodl https:\/\/t.co\/m8hHzLJe4D","truncated":false,"display_text_range":[0,240],"entities":{"hashtags":[{"text":"IRCEES","indices":[31,38]},{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[39,44]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[45,53]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[60,73]},{"screen_name":"eAngelaBenson","name":"Angela + Benson","id":15969744,"id_str":"15969744","indices":[199,213]},{"screen_name":"AZambodl","name":"alice + barlow zambodl","id":884836704,"id_str":"884836704","indices":[231,240]}],"urls":[],"media":[{"id":1187779549049704448,"id_str":"1187779549049704448","indices":[241,264],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvXNOyU0AA7DU0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvXNOyU0AA7DU0.jpg","url":"https:\/\/t.co\/m8hHzLJe4D","display_url":"pic.twitter.com\/m8hHzLJe4D","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187779563356483585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187779549049704448,"id_str":"1187779549049704448","indices":[241,264],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvXNOyU0AA7DU0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvXNOyU0AA7DU0.jpg","url":"https:\/\/t.co\/m8hHzLJe4D","display_url":"pic.twitter.com\/m8hHzLJe4D","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187779563356483585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187779557236953088,"id_str":"1187779557236953088","indices":[241,264],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvXNtSUUAAzmr-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvXNtSUUAAzmr-.jpg","url":"https:\/\/t.co\/m8hHzLJe4D","display_url":"pic.twitter.com\/m8hHzLJe4D","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187779563356483585\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:23:29 +0000 2019","id":1187781741445967873,"id_str":"1187781741445967873","full_text":"#aect19 + attendees, consider publishing your papers in this journal. https:\/\/t.co\/j5KbBhznog","truncated":false,"display_text_range":[0,67],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/j5KbBhznog","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187774375338172417","display_url":"twitter.com\/ifenthaler\/sta\u2026","indices":[68,91]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10718,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"36ac79e68ace76e4","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/36ac79e68ace76e4.json","place_type":"city","name":"Rancho + Cucamonga","full_name":"Rancho Cucamonga, CA","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-117.637862,34.077184],[-117.4864431,34.077184],[-117.4864431,34.166156],[-117.637862,34.166156]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1187774375338172417,"quoted_status_id_str":"1187774375338172417","quoted_status_permalink":{"url":"https:\/\/t.co\/j5KbBhznog","expanded":"https:\/\/twitter.com\/ifenthaler\/status\/1187774375338172417","display":"twitter.com\/ifenthaler\/sta\u2026"},"quoted_status":{"created_at":"Fri + Oct 25 16:54:13 +0000 2019","id":1187774375338172417,"id_str":"1187774375338172417","full_text":"@AECT + Safe travels #aect19inspired colleagues. Publish your new ideas in Technology, + Knowledge and Learning @SpringerEdu \n\n#Edtech\n\nhttps:\/\/t.co\/3A6GsVRzRO + https:\/\/t.co\/rejJwM9VGt","truncated":false,"display_text_range":[0,155],"entities":{"hashtags":[{"text":"aect19inspired","indices":[19,34]},{"text":"Edtech","indices":[123,130]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]},{"screen_name":"SpringerEdu","name":"Springer + Education","id":347188522,"id_str":"347188522","indices":[108,120]}],"urls":[{"url":"https:\/\/t.co\/3A6GsVRzRO","expanded_url":"http:\/\/springer.com\/10758","display_url":"springer.com\/10758","indices":[132,155]}],"media":[{"id":1187774350382063617,"id_str":"1187774350382063617","indices":[156,179],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvSeoPX4AEsdrB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvSeoPX4AEsdrB.jpg","url":"https:\/\/t.co\/rejJwM9VGt","display_url":"pic.twitter.com\/rejJwM9VGt","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187774375338172417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":153,"h":229,"resize":"fit"},"medium":{"w":153,"h":229,"resize":"fit"},"large":{"w":153,"h":229,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187774350382063617,"id_str":"1187774350382063617","indices":[156,179],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvSeoPX4AEsdrB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvSeoPX4AEsdrB.jpg","url":"https:\/\/t.co\/rejJwM9VGt","display_url":"pic.twitter.com\/rejJwM9VGt","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187774375338172417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":153,"h":229,"resize":"fit"},"medium":{"w":153,"h":229,"resize":"fit"},"large":{"w":153,"h":229,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":45137054,"id_str":"45137054","name":"Dirk + Ifenthaler","screen_name":"ifenthaler","location":"","description":"#learninganalytics","url":"https:\/\/t.co\/nGyfFQyRvo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nGyfFQyRvo","expanded_url":"http:\/\/www.ifenthaler.info","display_url":"ifenthaler.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":895,"friends_count":246,"listed_count":35,"created_at":"Sat + Jun 06 14:19:07 +0000 2009","favourites_count":615,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":878,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 14:59:13 +0000 2019","id":1187745433403232258,"id_str":"1187745433403232258","full_text":"RT + @FakeBobGagne: What happens in Vegas, stays in Vegas, so be sure to forget + all of the great things you learned at #aect19 before going h\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[117,124]}],"symbols":[],"user_mentions":[{"screen_name":"FakeBobGagne","name":"FakeBobGagne","id":4130346912,"id_str":"4130346912","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20121888,"id_str":"20121888","name":"McKoo","screen_name":"TheRealMcKoo","location":"Provo, + UT","description":"I''m a grad student getting my PhD in instructional psychology + & technology. \nI mostly tweet about movies and Marvel comics.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":171,"friends_count":1158,"listed_count":1,"created_at":"Thu + Feb 05 05:18:33 +0000 2009","favourites_count":20568,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2538,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1011108118376300545\/qibJHw9O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1011108118376300545\/qibJHw9O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20121888\/1496960217","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0047D6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 14:57:59 +0000 2019","id":1187745124962488322,"id_str":"1187745124962488322","full_text":"What + happens in Vegas, stays in Vegas, so be sure to forget all of the great things + you learned at #aect19 before going home.","truncated":false,"display_text_range":[0,125],"entities":{"hashtags":[{"text":"aect19","indices":[99,106]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:13:25 +0000 2019","id":1187764109170876419,"id_str":"1187764109170876419","full_text":"Prepping + to (virtually) present Design in the Open\nInspire Session with @jenm @tadousay + & @jrosenberg6432 at #AECT19 - if you''re in Vegas join us at 10am PT + in the Convention Center, Conference Room 7. If you''re also virtual, you + can follow along in the hashtags! #AECTinspired","truncated":false,"display_text_range":[0,281],"entities":{"hashtags":[{"text":"AECT19","indices":[113,120]},{"text":"AECTinspired","indices":[268,281]}],"symbols":[],"user_mentions":[{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[72,77]},{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[78,87]},{"screen_name":"jrosenberg6432","name":"Joshua + Rosenberg","id":10950512,"id_str":"10950512","indices":[94,109]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11092692,"id_str":"11092692","name":"Dr. + Leigh Graves Wolf","screen_name":"gravesle","location":"Michigan\/Galway\/Arizona\/Online","description":"I + like to share & listen. Human. Clinical Associate Professor Ed Leadership + & Innovation @asueducation. I tweet my own things. (Dr\/She\/Her)","url":"https:\/\/t.co\/CIZXWxMRrw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CIZXWxMRrw","expanded_url":"http:\/\/leighgraveswolf.com","display_url":"leighgraveswolf.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6033,"friends_count":6584,"listed_count":442,"created_at":"Wed + Dec 12 16:03:00 +0000 2007","favourites_count":31280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48218,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11092692\/1442771541","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"044905","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E2F8AA","profile_text_color":"659B08","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:17:04 +0000 2019","id":1187765025785516032,"id_str":"1187765025785516032","full_text":"RT + @ISLT_FSU: Come join us! We are looking for a new colleague. Teaching faculty + position is open. If you are in Vegas at AECT come find Dr\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":142359679,"id_str":"142359679","name":"Vanessa + Dennen","screen_name":"vdennen","location":"Tallahassee, FL","description":"Professor + of Instructional Systems & Learning Technologies at FSU (views are my own), + avid traveler, amateur gardener, she\/her","url":"https:\/\/t.co\/2brlz0Rnzr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2brlz0Rnzr","expanded_url":"http:\/\/vanessadennen.com","display_url":"vanessadennen.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1151,"friends_count":759,"listed_count":40,"created_at":"Mon + May 10 17:39:35 +0000 2010","favourites_count":1097,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2102,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1137140666771918848\/ghs_iYhS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1137140666771918848\/ghs_iYhS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/142359679\/1584134048","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 13:12:02 +0000 2019","id":1187356073964912642,"id_str":"1187356073964912642","full_text":"Come + join us! We are looking for a new colleague. Teaching faculty position is + open. If you are in Vegas at AECT come find Dr. Jim Klein or @vdennen. #JobsInHigherEd + #HigherEdJobs #FacultyPosition #JobOpening #AECT19 #Vegas #Learning #Education + #Teaching #Instruction #FSU https:\/\/t.co\/6cBHuscFrb","truncated":false,"display_text_range":[0,272],"entities":{"hashtags":[{"text":"JobsInHigherEd","indices":[150,165]},{"text":"HigherEdJobs","indices":[166,179]},{"text":"FacultyPosition","indices":[180,196]},{"text":"JobOpening","indices":[197,208]},{"text":"AECT19","indices":[209,216]},{"text":"Vegas","indices":[217,223]},{"text":"Learning","indices":[224,233]},{"text":"Education","indices":[234,244]},{"text":"Teaching","indices":[245,254]},{"text":"Instruction","indices":[255,267]},{"text":"FSU","indices":[268,272]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[140,148]}],"urls":[],"media":[{"id":1187356064808722433,"id_str":"1187356064808722433","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpWDNDUYAEHK6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpWDNDUYAEHK6m.jpg","url":"https:\/\/t.co\/6cBHuscFrb","display_url":"pic.twitter.com\/6cBHuscFrb","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187356073964912642\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":1600,"h":1067,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187356064808722433,"id_str":"1187356064808722433","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpWDNDUYAEHK6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpWDNDUYAEHK6m.jpg","url":"https:\/\/t.co\/6cBHuscFrb","display_url":"pic.twitter.com\/6cBHuscFrb","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187356073964912642\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":1600,"h":1067,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:09:21 +0000 2019","id":1187778183011155969,"id_str":"1187778183011155969","full_text":"Here + we go! #AECT19 #aect19inspired https:\/\/t.co\/51fKBzHN7K","truncated":false,"display_text_range":[0,35],"entities":{"hashtags":[{"text":"AECT19","indices":[12,19]},{"text":"aect19inspired","indices":[20,35]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187778176820359170,"id_str":"1187778176820359170","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvV9W1WsAIVxcf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvV9W1WsAIVxcf.jpg","url":"https:\/\/t.co\/51fKBzHN7K","display_url":"pic.twitter.com\/51fKBzHN7K","expanded_url":"https:\/\/twitter.com\/gravesle\/status\/1187778183011155969\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187778176820359170,"id_str":"1187778176820359170","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvV9W1WsAIVxcf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvV9W1WsAIVxcf.jpg","url":"https:\/\/t.co\/51fKBzHN7K","display_url":"pic.twitter.com\/51fKBzHN7K","expanded_url":"https:\/\/twitter.com\/gravesle\/status\/1187778183011155969\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":"Pictures + of Jennifer Maddrell Tonia Dousay Josh Rosenberg Leigh Graves Wolf"}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11092692,"id_str":"11092692","name":"Dr. + Leigh Graves Wolf","screen_name":"gravesle","location":"Michigan\/Galway\/Arizona\/Online","description":"I + like to share & listen. Human. Clinical Associate Professor Ed Leadership + & Innovation @asueducation. I tweet my own things. (Dr\/She\/Her)","url":"https:\/\/t.co\/CIZXWxMRrw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CIZXWxMRrw","expanded_url":"http:\/\/leighgraveswolf.com","display_url":"leighgraveswolf.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6033,"friends_count":6584,"listed_count":442,"created_at":"Wed + Dec 12 16:03:00 +0000 2007","favourites_count":31280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48218,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11092692\/1442771541","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"044905","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E2F8AA","profile_text_color":"659B08","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:46:12 +0000 2019","id":1187772357622095873,"id_str":"1187772357622095873","full_text":"RT + @valarywithawhy: As things are winding down at #aect19, what was one of your + key takeaways? I haven''t perfected cloning myself, so I cou\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[50,57]}],"symbols":[],"user_mentions":[{"screen_name":"valarywithawhy","name":"Valary + Oleinik","id":111391715,"id_str":"111391715","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4714,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 15:41:28 +0000 2019","id":1187756066299203584,"id_str":"1187756066299203584","full_text":"As + things are winding down at #aect19, what was one of your key takeaways? I + haven''t perfected cloning myself, so I couldn''t attend all of the sessions. + :)","truncated":false,"display_text_range":[0,155],"entities":{"hashtags":[{"text":"aect19","indices":[30,37]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":111391715,"id_str":"111391715","name":"Valary + Oleinik","screen_name":"valarywithawhy","location":"New York, NY","description":"speaker + | engager of learners | gamifier of things | unleasher of creativity | geek + | writer | queriest","url":"https:\/\/t.co\/5XjhvhYTqb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5XjhvhYTqb","expanded_url":"http:\/\/www.valarywithawhy.com","display_url":"valarywithawhy.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1251,"friends_count":1550,"listed_count":60,"created_at":"Thu + Feb 04 19:24:07 +0000 2010","favourites_count":9041,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4317,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111391715\/1454624226","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:36:01 +0000 2019","id":1187784896355266560,"id_str":"1187784896355266560","full_text":"\u201cInternational + Research Collaborative for Established and Emerging Scholars (IRCEES) in Educational + Technology\u201d, @eAngelaBenson remotely presenting from Namibia, #Internationalcollaboration + #Global @AECT @aectclt #aect19 #aect19inspired #Crossculture #Intercultural + @emergeAfrica https:\/\/t.co\/l6stp3PIvS","truncated":false,"display_text_range":[0,279],"entities":{"hashtags":[{"text":"Internationalcollaboration","indices":[162,189]},{"text":"Global","indices":[190,197]},{"text":"aect19","indices":[213,220]},{"text":"aect19inspired","indices":[221,236]},{"text":"Crossculture","indices":[237,250]},{"text":"Intercultural","indices":[251,265]}],"symbols":[],"user_mentions":[{"screen_name":"eAngelaBenson","name":"Angela + Benson","id":15969744,"id_str":"15969744","indices":[113,127]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[198,203]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[204,212]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[266,279]}],"urls":[],"media":[{"id":1187784890655264769,"id_str":"1187784890655264769","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvcEJ0VUAEVU-q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvcEJ0VUAEVU-q.jpg","url":"https:\/\/t.co\/l6stp3PIvS","display_url":"pic.twitter.com\/l6stp3PIvS","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187784896355266560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187784890655264769,"id_str":"1187784890655264769","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvcEJ0VUAEVU-q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvcEJ0VUAEVU-q.jpg","url":"https:\/\/t.co\/l6stp3PIvS","display_url":"pic.twitter.com\/l6stp3PIvS","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187784896355266560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1187784890651013120,"id_str":"1187784890651013120","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvcEJzUcAAPqPX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvcEJzUcAAPqPX.jpg","url":"https:\/\/t.co\/l6stp3PIvS","display_url":"pic.twitter.com\/l6stp3PIvS","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187784896355266560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:49:14 +0000 2019","id":1187788219321995269,"id_str":"1187788219321995269","full_text":"\u201dThe + Trends in Instructional Design and Technology Database\u201d It is a very + useful database for knowing the trends in the IDT field. #aect19\nhttps:\/\/t.co\/QyyZYbs6EP","truncated":false,"display_text_range":[0,162],"entities":{"hashtags":[{"text":"aect19","indices":[131,138]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QyyZYbs6EP","expanded_url":"http:\/\/trendsandissues.org\/","display_url":"trendsandissues.org","indices":[139,162]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":65595602,"id_str":"65595602","name":"Yuki + Watanabe","screen_name":"yuuki5000","location":"Tokyo","description":"\u6e21\u8fba\u96c4\u8cb4\u3002\u6771\u4eac\u90fd\u51fa\u8eab\u3002\u3072\u3063\u305d\u308a\u3068\u6559\u80b2\u5de5\u5b66\u306e\u7814\u7a76\u3092\u3057\u3066\u307e\u3059\u3002\u6771\u4eac\u7406\u79d1\u5927\u5b66\u6559\u6388\u3002\u535a\u58eb\uff08\u5b66\u8853\uff09\u6771\u4eac\u5de5\u696d\u5927\u5b66 + \/ Professor (Educational Technology Lab.) at Tokyo University of Science, + Japan. Ph.D. Tokyo Tech","url":"https:\/\/t.co\/4RXslYSaqZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4RXslYSaqZ","expanded_url":"https:\/\/www.tus.ac.jp\/fac_grad\/p\/index.php?3bfc","display_url":"tus.ac.jp\/fac_grad\/p\/ind\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1130,"friends_count":314,"listed_count":43,"created_at":"Fri + Aug 14 08:42:14 +0000 2009","favourites_count":2992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12516,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1360616182319992838\/B-lMb0oC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1360616182319992838\/B-lMb0oC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65595602\/1440774032","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:34:54 +0000 2019","id":1187769514445942785,"id_str":"1187769514445942785","full_text":"RT + @AmyLomellini_ID: #AECT19 has been a crazy whirlwind. Before we wrap up, I + want to give a special shout out to the Accessibility Committ\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[21,28]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4714,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 14:10:20 +0000 2019","id":1187733130611838976,"id_str":"1187733130611838976","full_text":"#AECT19 + has been a crazy whirlwind. Before we wrap up, I want to give a special shout + out to the Accessibility Committee for their hard work all year. \n\nRebecca + Reese\nChris Smith\nLinda Campion\nDavid Gardner\nIsmahan Arslan-Ari\nBob + Doyle\n\n*& Megan Murtaugh for coordinating interns","truncated":false,"display_text_range":[0,283],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910574724748644353,"id_str":"910574724748644353","name":"Amy + Lomellini","screen_name":"AmyLomellini_ID","location":"New York, USA","description":"Associate + Director of Blended & Online Learning and doctoral candidate with a passion + for accessible and inclusive online teaching and learning. #EdTech #A11y","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":644,"friends_count":1061,"listed_count":9,"created_at":"Wed + Sep 20 18:41:46 +0000 2017","favourites_count":7378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1141,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910574724748644353\/1551624059","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":16,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 15:28:10 +0000 2019","id":1187752718573531137,"id_str":"1187752718573531137","full_text":"RT + @tammyhuangrui: For those who have not published or who have been rejected, + this session \u201cGSA: Tips and Tricks for Journal Publishing: A\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1461,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 23:02:02 +0000 2019","id":1187504550908854272,"id_str":"1187504550908854272","full_text":"For + those who have not published or who have been rejected, this session \u201cGSA: + Tips and Tricks for Journal Publishing: Advice from the Editors\u201d was + really helpful. Thanks to @AlbertRitzhaupt and Dr. Sharon Stidham #aect19 + #aect19inspired @UF_COE https:\/\/t.co\/Lw1EhfcugX","truncated":false,"display_text_range":[0,245],"entities":{"hashtags":[{"text":"aect19","indices":[214,221]},{"text":"aect19inspired","indices":[222,237]}],"symbols":[],"user_mentions":[{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[174,190]},{"screen_name":"UF_COE","name":"UF + College of Education","id":38508931,"id_str":"38508931","indices":[238,245]}],"urls":[],"media":[{"id":1187504544634114048,"id_str":"1187504544634114048","indices":[246,269],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrdF3gUEAAtGEj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrdF3gUEAAtGEj.jpg","url":"https:\/\/t.co\/Lw1EhfcugX","display_url":"pic.twitter.com\/Lw1EhfcugX","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187504550908854272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1530,"resize":"fit"},"small":{"w":680,"h":508,"resize":"fit"},"medium":{"w":1200,"h":896,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187504544634114048,"id_str":"1187504544634114048","indices":[246,269],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrdF3gUEAAtGEj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrdF3gUEAAtGEj.jpg","url":"https:\/\/t.co\/Lw1EhfcugX","display_url":"pic.twitter.com\/Lw1EhfcugX","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187504550908854272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1530,"resize":"fit"},"small":{"w":680,"h":508,"resize":"fit"},"medium":{"w":1200,"h":896,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988637594,"id_str":"2988637594","name":"Rui + \"Tammy\" Huang","screen_name":"ruitammyhuang","location":"FL","description":"PhD, + fellow in Ed Tech @UF_COE, game-based learning and immersive technology researcher, + designer & developer. Learning experience design researcher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":185,"listed_count":6,"created_at":"Wed + Jan 21 02:08:50 +0000 2015","favourites_count":399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988637594\/1621697544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:04:02 +0000 2019","id":1187761747635003392,"id_str":"1187761747635003392","full_text":"Session + about online personal data curation with benevolent intention and safeguards. + @aect #aect19 #aect19inspired https:\/\/t.co\/DtM0PbHUfF","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect19","indices":[92,99]},{"text":"aect19inspired","indices":[100,115]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[86,91]}],"urls":[],"media":[{"id":1187761741565853698,"id_str":"1187761741565853698","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvHAsvVAAIV0uO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvHAsvVAAIV0uO.jpg","url":"https:\/\/t.co\/DtM0PbHUfF","display_url":"pic.twitter.com\/DtM0PbHUfF","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187761747635003392\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187761741565853698,"id_str":"1187761741565853698","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvHAsvVAAIV0uO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvHAsvVAAIV0uO.jpg","url":"https:\/\/t.co\/DtM0PbHUfF","display_url":"pic.twitter.com\/DtM0PbHUfF","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187761747635003392\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3917,"friends_count":382,"listed_count":163,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:45:17 +0000 2019","id":1187787224919793664,"id_str":"1187787224919793664","full_text":"A1: + Dive-in, roll-up my sleeves and get to work, also employ my #PLN to support + my learning & growth. #AECT19","truncated":false,"display_text_range":[0,113],"entities":{"hashtags":[{"text":"PLN","indices":[64,68]},{"text":"AECT19","indices":[106,113]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2338796726,"id_str":"2338796726","name":"Nate + Moore","screen_name":"TheeMrMoore","location":"Michigan, USA","description":"Executive + Director of Technology. Reader. Music lover. Piano player. Learner. Leader. + Former teacher, coach. CTO MSBO. @MACUL Delegate Team @MAET #LeadLearnGrow","url":"https:\/\/t.co\/M4xBfznJyv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/M4xBfznJyv","expanded_url":"http:\/\/www.TheeMrMoore.com","display_url":"TheeMrMoore.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":830,"friends_count":508,"listed_count":26,"created_at":"Tue + Feb 11 18:35:53 +0000 2014","favourites_count":12789,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3111,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1032005082244689920\/RlMQlRSP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1032005082244689920\/RlMQlRSP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2338796726\/1610215790","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"89C9FA","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:31:48 +0000 2019","id":1187783835351572480,"id_str":"1187783835351572480","full_text":"RT + @gravesle: #AECT19 #aect19inspired\n Remember, you have to be a bit vulnerable + - you never know what will happen when you share openly. T\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]},{"text":"aect19inspired","indices":[22,37]}],"symbols":[],"user_mentions":[{"screen_name":"gravesle","name":"Dr. + Leigh Graves Wolf","id":11092692,"id_str":"11092692","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2586308906,"id_str":"2586308906","name":"Debbie + McHorney","screen_name":"tech4teachers19","location":"Burbank, CA","description":"Ed + Tech Integration Specialist #BurbankUSD, Twitter Advocate, Former Special + Educator, #MSU @MAET Instructor and Alumni, #TOSAChat junkie (Tweets are my + own)","url":"https:\/\/t.co\/i8efs4HRGF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/i8efs4HRGF","expanded_url":"http:\/\/tech4teachers19.com","display_url":"tech4teachers19.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2149,"friends_count":2743,"listed_count":69,"created_at":"Tue + Jun 24 20:32:59 +0000 2014","favourites_count":3925,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2500,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/842059035071275008\/PDYeJa72_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/842059035071275008\/PDYeJa72_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2586308906\/1471545345","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 17:22:15 +0000 2019","id":1187781428068704257,"id_str":"1187781428068704257","full_text":"#AECT19 + #aect19inspired\n Remember, you have to be a bit vulnerable - you never know + what will happen when you share openly. This is my favorite sharing story: + https:\/\/t.co\/bAGjDQgmGJ (cc @tech4teachers19)","truncated":false,"display_text_range":[0,204],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"aect19inspired","indices":[8,23]}],"symbols":[],"user_mentions":[{"screen_name":"tech4teachers19","name":"Debbie + McHorney","id":2586308906,"id_str":"2586308906","indices":[187,203]}],"urls":[{"url":"https:\/\/t.co\/bAGjDQgmGJ","expanded_url":"http:\/\/www.leighgraveswolf.com\/2019\/04\/12\/returning-from-oer19-quilting-together-a-short-story-on-the-power-of-being-open\/","display_url":"leighgraveswolf.com\/2019\/04\/12\/ret\u2026","indices":[159,182]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11092692,"id_str":"11092692","name":"Dr. + Leigh Graves Wolf","screen_name":"gravesle","location":"Michigan\/Galway\/Arizona\/Online","description":"I + like to share & listen. Human. Clinical Associate Professor Ed Leadership + & Innovation @asueducation. I tweet my own things. (Dr\/She\/Her)","url":"https:\/\/t.co\/CIZXWxMRrw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CIZXWxMRrw","expanded_url":"http:\/\/leighgraveswolf.com","display_url":"leighgraveswolf.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6033,"friends_count":6584,"listed_count":442,"created_at":"Wed + Dec 12 16:03:00 +0000 2007","favourites_count":31280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48218,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11092692\/1442771541","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"044905","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E2F8AA","profile_text_color":"659B08","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:37:53 +0000 2019","id":1187770263661924357,"id_str":"1187770263661924357","full_text":"RT + @d_mulder: I am #aect19inspired by Jes\u00fas Trespalacios and Lida Uribe-Florez + from @edtechbsu! Great to learn with and from these mentors.\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[19,34]}],"symbols":[],"user_mentions":[{"screen_name":"d_mulder","name":"Dr. + Dave Mulder","id":30278154,"id_str":"30278154","indices":[3,12]},{"screen_name":"edtechbsu","name":"EDTECH@Boise + State","id":29818149,"id_str":"29818149","indices":[84,94]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4714,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 16:33:52 +0000 2019","id":1187769255107805184,"id_str":"1187769255107805184","full_text":"I + am #aect19inspired by Jes\u00fas Trespalacios and Lida Uribe-Florez from @edtechbsu! + Great to learn with and from these mentors. #aect19 https:\/\/t.co\/Wvc8zugYfK","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"aect19inspired","indices":[5,20]},{"text":"aect19","indices":[126,133]}],"symbols":[],"user_mentions":[{"screen_name":"edtechbsu","name":"EDTECH@Boise + State","id":29818149,"id_str":"29818149","indices":[70,80]}],"urls":[],"media":[{"id":1187769236778676224,"id_str":"1187769236778676224","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvN0-lUcAAheUS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvN0-lUcAAheUS.jpg","url":"https:\/\/t.co\/Wvc8zugYfK","display_url":"pic.twitter.com\/Wvc8zugYfK","expanded_url":"https:\/\/twitter.com\/d_mulder\/status\/1187769255107805184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187769236778676224,"id_str":"1187769236778676224","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvN0-lUcAAheUS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvN0-lUcAAheUS.jpg","url":"https:\/\/t.co\/Wvc8zugYfK","display_url":"pic.twitter.com\/Wvc8zugYfK","expanded_url":"https:\/\/twitter.com\/d_mulder\/status\/1187769255107805184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":30278154,"id_str":"30278154","name":"Dr. + Dave Mulder","screen_name":"d_mulder","location":"Iowa","description":"Christ-follower. + Husband of one and dad of two. Professor of Education at @dordtuniversity. + #EdTech is my jam. My tweets speak only for me.","url":"https:\/\/t.co\/i9IOUI9RZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/i9IOUI9RZC","expanded_url":"https:\/\/drdave.substack.com\/","display_url":"drdave.substack.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3921,"friends_count":949,"listed_count":249,"created_at":"Fri + Apr 10 18:27:10 +0000 2009","favourites_count":39976,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30278154\/1568172162","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 15:03:33 +0000 2019","id":1187746523733549056,"id_str":"1187746523733549056","full_text":"Great + seeing (& meeting in person) two Univ of South Carolina EdD students, + Emily Shank & Noah Koubenec, shine & inspire at AECT #aect2019","truncated":false,"display_text_range":[0,150],"entities":{"hashtags":[{"text":"aect2019","indices":[141,150]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3389128959,"id_str":"3389128959","name":"Tammi","screen_name":"tkolski716","location":"","description":"Middle + aged, adjunct college faculty professor, proud mother, wife, daughter and + sister, Doctoral of Education Technology student.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":57,"listed_count":2,"created_at":"Thu + Jul 23 13:11:07 +0000 2015","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/839131581377830914\/-YayFh8V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/839131581377830914\/-YayFh8V_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:35:40 +0000 2019","id":1187769708881371137,"id_str":"1187769708881371137","full_text":"RT + @pazureka: Happy Friday @AECT! During our last day together at #aect19, join + us to shine a light on the importance of #LearnerEngagement\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[66,73]},{"text":"LearnerEngagement","indices":[121,139]}],"symbols":[],"user_mentions":[{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[3,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4714,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 14:53:43 +0000 2019","id":1187744052525109248,"id_str":"1187744052525109248","full_text":"Happy + Friday @AECT! During our last day together at #aect19, join us to shine a + light on the importance of #LearnerEngagement and ways to facilitate it. \ud83c\udfc6@LearnEngage + https:\/\/t.co\/82aDlEPl4O","truncated":false,"display_text_range":[0,166],"entities":{"hashtags":[{"text":"aect19","indices":[52,59]},{"text":"LearnerEngagement","indices":[107,125]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[13,18]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[154,166]}],"urls":[],"media":[{"id":1187744047546458112,"id_str":"1187744047546458112","indices":[167,190],"media_url":"http:\/\/pbs.twimg.com\/media\/EHu26xYXYAAgBgk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHu26xYXYAAgBgk.jpg","url":"https:\/\/t.co\/82aDlEPl4O","display_url":"pic.twitter.com\/82aDlEPl4O","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187744052525109248\/photo\/1","type":"photo","sizes":{"medium":{"w":927,"h":362,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":266,"resize":"fit"},"large":{"w":927,"h":362,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187744047546458112,"id_str":"1187744047546458112","indices":[167,190],"media_url":"http:\/\/pbs.twimg.com\/media\/EHu26xYXYAAgBgk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHu26xYXYAAgBgk.jpg","url":"https:\/\/t.co\/82aDlEPl4O","display_url":"pic.twitter.com\/82aDlEPl4O","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187744052525109248\/photo\/1","type":"photo","sizes":{"medium":{"w":927,"h":362,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":266,"resize":"fit"},"large":{"w":927,"h":362,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 14:57:59 +0000 2019","id":1187745124962488322,"id_str":"1187745124962488322","full_text":"What + happens in Vegas, stays in Vegas, so be sure to forget all of the great things + you learned at #aect19 before going home.","truncated":false,"display_text_range":[0,125],"entities":{"hashtags":[{"text":"aect19","indices":[99,106]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:51:09 +0000 2019","id":1187788704582004736,"id_str":"1187788704582004736","full_text":"At + #aect19inspired #aect19","truncated":false,"display_text_range":[0,26],"entities":{"hashtags":[{"text":"aect19inspired","indices":[3,18]},{"text":"aect19","indices":[19,26]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1187788119937970176,"in_reply_to_status_id_str":"1187788119937970176","in_reply_to_user_id":38657815,"in_reply_to_user_id_str":"38657815","in_reply_to_screen_name":"DKSch","user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Fri + Oct 25 15:27:44 +0000 2019","id":1187752610608173058,"id_str":"1187752610608173058","full_text":"RT + @christieliuidtr: So great sharing the one hour concurrent sessions with Dr. + Elizabeth Boling from @IndianaUniv about common interests o\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IndianaUniv","name":"Indiana + University","id":100367386,"id_str":"100367386","indices":[102,114]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14847510,"id_str":"14847510","name":"JMU + TLT","screen_name":"JMUTLT","location":"Harrisonburg, VA","description":"The + Teaching & Learning with Technology (TLT) Conference at JMU is an event showcasing + best practices for using technology to support student learning. #JMUTLT","url":"https:\/\/t.co\/XEeIFzsMdY","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XEeIFzsMdY","expanded_url":"https:\/\/sites.lib.jmu.edu\/jmutlt\/","display_url":"sites.lib.jmu.edu\/jmutlt\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":434,"friends_count":320,"listed_count":16,"created_at":"Tue + May 20 16:55:27 +0000 2008","favourites_count":787,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1851,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1367864972420734981\/bn_ac29X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1367864972420734981\/bn_ac29X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14847510\/1614958829","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 07:03:44 +0000 2019","id":1187625774724943872,"id_str":"1187625774724943872","full_text":"So + great sharing the one hour concurrent sessions with Dr. Elizabeth Boling from + @IndianaUniv about common interests on #instructionaldesign #design #aect19 + #aect19inspired @AECT @aectdddivision @jmulibraries @JMU https:\/\/t.co\/z3AVu6DBjc","truncated":false,"display_text_range":[0,213],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[120,140]},{"text":"design","indices":[141,148]},{"text":"aect19","indices":[149,156]},{"text":"aect19inspired","indices":[157,172]}],"symbols":[],"user_mentions":[{"screen_name":"IndianaUniv","name":"Indiana + University","id":100367386,"id_str":"100367386","indices":[81,93]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[173,178]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[179,194]},{"screen_name":"JMUlibraries","name":"JMU + Libraries","id":159108009,"id_str":"159108009","indices":[195,208]},{"screen_name":"JMU","name":"JMU","id":15998113,"id_str":"15998113","indices":[209,213]}],"urls":[],"media":[{"id":1187625759713591297,"id_str":"1187625759713591297","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHtLVg3VAAEe9-c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHtLVg3VAAEe9-c.jpg","url":"https:\/\/t.co\/z3AVu6DBjc","display_url":"pic.twitter.com\/z3AVu6DBjc","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187625774724943872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187625759713591297,"id_str":"1187625759713591297","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHtLVg3VAAEe9-c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHtLVg3VAAEe9-c.jpg","url":"https:\/\/t.co\/z3AVu6DBjc","display_url":"pic.twitter.com\/z3AVu6DBjc","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187625774724943872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187625759709384704,"id_str":"1187625759709384704","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHtLVg2U0AAUrVA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHtLVg2U0AAUrVA.jpg","url":"https:\/\/t.co\/z3AVu6DBjc","display_url":"pic.twitter.com\/z3AVu6DBjc","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187625774724943872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187625759709388800,"id_str":"1187625759709388800","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHtLVg2U4AA3YLg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHtLVg2U4AA3YLg.jpg","url":"https:\/\/t.co\/z3AVu6DBjc","display_url":"pic.twitter.com\/z3AVu6DBjc","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187625774724943872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:36:40 +0000 2019","id":1187769957783949312,"id_str":"1187769957783949312","full_text":"RT + @ISLT_FSU: 10 am - 10:50 am at Convention Center - Pavilion 6\n423. The Trends + in IDT Database: A Means of Enhancing Your Professional Pr\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4714,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 16:02:06 +0000 2019","id":1187761258151469057,"id_str":"1187761258151469057","full_text":"10 + am - 10:50 am at Convention Center - Pavilion 6\n423. The Trends in IDT Database: + A Means of Enhancing Your Professional Practice - Logan Arrington, Alison + Moore, Fabrizio Fornara, Weinan Zhao & Robert Reiser #AECT19 #FSU #FSUCOE + #ISLT #trendsandissues #instructionaldesign https:\/\/t.co\/5dS7536j9C","truncated":false,"display_text_range":[0,279],"entities":{"hashtags":[{"text":"AECT19","indices":[215,222]},{"text":"FSU","indices":[223,227]},{"text":"FSUCOE","indices":[228,235]},{"text":"ISLT","indices":[236,241]},{"text":"trendsandissues","indices":[242,258]},{"text":"instructionaldesign","indices":[259,279]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187761256238899201,"id_str":"1187761256238899201","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvGkcwXYAEc-C5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvGkcwXYAEc-C5.jpg","url":"https:\/\/t.co\/5dS7536j9C","display_url":"pic.twitter.com\/5dS7536j9C","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187761258151469057\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1005,"h":671,"resize":"fit"},"large":{"w":1005,"h":671,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187761256238899201,"id_str":"1187761256238899201","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvGkcwXYAEc-C5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvGkcwXYAEc-C5.jpg","url":"https:\/\/t.co\/5dS7536j9C","display_url":"pic.twitter.com\/5dS7536j9C","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187761258151469057\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"medium":{"w":1005,"h":671,"resize":"fit"},"large":{"w":1005,"h":671,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:50:46 +0000 2019","id":1187788608255623168,"id_str":"1187788608255623168","full_text":"Very + interesting session! @aect #aect19inspired #aect19 https:\/\/t.co\/NVnYv0nU9z","truncated":false,"display_text_range":[0,55],"entities":{"hashtags":[{"text":"aect19inspired","indices":[32,47]},{"text":"aect19","indices":[48,55]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[26,31]}],"urls":[],"media":[{"id":1187788603826401280,"id_str":"1187788603826401280","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvfcSdUcAA0k8W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvfcSdUcAA0k8W.jpg","url":"https:\/\/t.co\/NVnYv0nU9z","display_url":"pic.twitter.com\/NVnYv0nU9z","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187788608255623168\/photo\/1","type":"photo","sizes":{"medium":{"w":770,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":828,"h":1290,"resize":"fit"},"small":{"w":436,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187788603826401280,"id_str":"1187788603826401280","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvfcSdUcAA0k8W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvfcSdUcAA0k8W.jpg","url":"https:\/\/t.co\/NVnYv0nU9z","display_url":"pic.twitter.com\/NVnYv0nU9z","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187788608255623168\/photo\/1","type":"photo","sizes":{"medium":{"w":770,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":828,"h":1290,"resize":"fit"},"small":{"w":436,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3917,"friends_count":382,"listed_count":163,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:41:10 +0000 2019","id":1187786189626998784,"id_str":"1187786189626998784","full_text":"Getting + #aect19inspired to design in the open, with @JenM , @tadousay , et al. #aect19","truncated":false,"display_text_range":[0,86],"entities":{"hashtags":[{"text":"aect19inspired","indices":[8,23]},{"text":"aect19","indices":[79,86]}],"symbols":[],"user_mentions":[{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[52,57]},{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[60,69]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:38:11 +0000 2019","id":1187770340996505729,"id_str":"1187770340996505729","full_text":"RT + @KuiXieOSU: It is so great to see our lab members @VVongkulluksn @hawk_nathanA + @Nelsmich @ShengBo_Chen @DLResearchLab presented their re\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"VVongkulluksn","name":"Vanessa + Vongkulluksn","id":859192619582226432,"id_str":"859192619582226432","indices":[53,67]},{"screen_name":"hawk_nathanA","name":"Nathan + A Hawk","id":492536804,"id_str":"492536804","indices":[68,81]},{"screen_name":"Nelsmich","name":"Mike + Nelson","id":51712418,"id_str":"51712418","indices":[82,91]},{"screen_name":"ShengBo_Chen","name":"Sheng-Bo + Chen","id":1341770169669070849,"id_str":"1341770169669070849","indices":[92,105]},{"screen_name":"DLResearchLab","name":"Digital + Learning Lab","id":866326285999591426,"id_str":"866326285999591426","indices":[106,120]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4714,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 14:58:58 +0000 2019","id":1187745372535480321,"id_str":"1187745372535480321","full_text":"It + is so great to see our lab members @VVongkulluksn @hawk_nathanA @Nelsmich + @ShengBo_Chen @DLResearchLab presented their research at #aect19 Supporting + graduate students and helping them to become the next generation of scholars + is essential to the field #aect19inspired https:\/\/t.co\/XobNxCAQEF","truncated":false,"display_text_range":[0,271],"entities":{"hashtags":[{"text":"aect19","indices":[134,141]},{"text":"aect19inspired","indices":[256,271]}],"symbols":[],"user_mentions":[{"screen_name":"VVongkulluksn","name":"Vanessa + Vongkulluksn","id":859192619582226432,"id_str":"859192619582226432","indices":[38,52]},{"screen_name":"hawk_nathanA","name":"Nathan + A Hawk","id":492536804,"id_str":"492536804","indices":[53,66]},{"screen_name":"Nelsmich","name":"Mike + Nelson","id":51712418,"id_str":"51712418","indices":[67,76]},{"screen_name":"ShengBo_Chen","name":"Sheng-Bo + Chen","id":1341770169669070849,"id_str":"1341770169669070849","indices":[77,90]},{"screen_name":"DLResearchLab","name":"Digital + Learning Lab","id":866326285999591426,"id_str":"866326285999591426","indices":[91,105]}],"urls":[],"media":[{"id":1187745354294464512,"id_str":"1187745354294464512","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHu4G1ZXkAApNgM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHu4G1ZXkAApNgM.jpg","url":"https:\/\/t.co\/XobNxCAQEF","display_url":"pic.twitter.com\/XobNxCAQEF","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187745372535480321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187745354294464512,"id_str":"1187745354294464512","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHu4G1ZXkAApNgM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHu4G1ZXkAApNgM.jpg","url":"https:\/\/t.co\/XobNxCAQEF","display_url":"pic.twitter.com\/XobNxCAQEF","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187745372535480321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187745354336342019,"id_str":"1187745354336342019","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHu4G1jWkAMHbPf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHu4G1jWkAMHbPf.jpg","url":"https:\/\/t.co\/XobNxCAQEF","display_url":"pic.twitter.com\/XobNxCAQEF","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187745372535480321\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":1440,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187745354294398976,"id_str":"1187745354294398976","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHu4G1ZWkAAOHAB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHu4G1ZWkAAOHAB.jpg","url":"https:\/\/t.co\/XobNxCAQEF","display_url":"pic.twitter.com\/XobNxCAQEF","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187745372535480321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187745354298613760,"id_str":"1187745354298613760","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHu4G1aW4AAK_A1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHu4G1aW4AAK_A1.jpg","url":"https:\/\/t.co\/XobNxCAQEF","display_url":"pic.twitter.com\/XobNxCAQEF","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187745372535480321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 15:52:57 +0000 2019","id":1187758958045351936,"id_str":"1187758958045351936","full_text":"My + gosh. I should not tweet when just waking up. @mete_akca does seriously + rock. And we had a great time at #aect19inspired but would have loved to + see him. #iste20 https:\/\/t.co\/axup05ZGex","truncated":false,"display_text_range":[0,167],"entities":{"hashtags":[{"text":"aect19inspired","indices":[110,125]},{"text":"iste20","indices":[160,167]}],"symbols":[],"user_mentions":[{"screen_name":"mete_akca","name":"Mete + Akcaoglu","id":16245045,"id_str":"16245045","indices":[51,61]}],"urls":[{"url":"https:\/\/t.co\/axup05ZGex","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187728817562898438","display_url":"twitter.com\/DrTerriC\/statu\u2026","indices":[168,191]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5826,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26963,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1187728817562898438,"quoted_status_id_str":"1187728817562898438","quoted_status_permalink":{"url":"https:\/\/t.co\/axup05ZGex","expanded":"https:\/\/twitter.com\/DrTerriC\/status\/1187728817562898438","display":"twitter.com\/DrTerriC\/statu\u2026"},"quoted_status":{"created_at":"Fri + Oct 25 13:53:11 +0000 2019","id":1187728817562898438,"id_str":"1187728817562898438","full_text":"@mete_akca + Thanks Mete you rock. Wish we could hav see. Each other at #aect19inspired","truncated":false,"display_text_range":[11,85],"entities":{"hashtags":[{"text":"aect19inspired","indices":[70,85]}],"symbols":[],"user_mentions":[{"screen_name":"mete_akca","name":"Mete + Akcaoglu","id":16245045,"id_str":"16245045","indices":[0,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187715140910751746,"in_reply_to_status_id_str":"1187715140910751746","in_reply_to_user_id":16245045,"in_reply_to_user_id_str":"16245045","in_reply_to_screen_name":"mete_akca","user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5826,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26963,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 15:01:21 +0000 2019","id":1187745969871433728,"id_str":"1187745969871433728","full_text":"RT + @KuiXieOSU: It is so great to see our lab members @VVongkulluksn @hawk_nathanA + @Nelsmich @ShengBo_Chen @DLResearchLab presented their re\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"VVongkulluksn","name":"Vanessa + Vongkulluksn","id":859192619582226432,"id_str":"859192619582226432","indices":[53,67]},{"screen_name":"hawk_nathanA","name":"Nathan + A Hawk","id":492536804,"id_str":"492536804","indices":[68,81]},{"screen_name":"Nelsmich","name":"Mike + Nelson","id":51712418,"id_str":"51712418","indices":[82,91]},{"screen_name":"ShengBo_Chen","name":"Sheng-Bo + Chen","id":1341770169669070849,"id_str":"1341770169669070849","indices":[92,105]},{"screen_name":"DLResearchLab","name":"Digital + Learning Lab","id":866326285999591426,"id_str":"866326285999591426","indices":[106,120]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":866326285999591426,"id_str":"866326285999591426","name":"Digital + Learning Lab","screen_name":"DLResearchLab","location":"Columbus, OH","description":"In + Research Laboratory for Digital Learning, we strive to understand how students + learn and how to design and integrate technology to improve student success.","url":"https:\/\/t.co\/uuHiL3zY6O","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uuHiL3zY6O","expanded_url":"http:\/\/dl.ehe.osu.edu","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":523,"friends_count":211,"listed_count":8,"created_at":"Sun + May 21 16:14:16 +0000 2017","favourites_count":190,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":277,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/866338092130742273\/WzV6Mzgv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/866338092130742273\/WzV6Mzgv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/866326285999591426\/1495384056","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 14:58:58 +0000 2019","id":1187745372535480321,"id_str":"1187745372535480321","full_text":"It + is so great to see our lab members @VVongkulluksn @hawk_nathanA @Nelsmich + @ShengBo_Chen @DLResearchLab presented their research at #aect19 Supporting + graduate students and helping them to become the next generation of scholars + is essential to the field #aect19inspired https:\/\/t.co\/XobNxCAQEF","truncated":false,"display_text_range":[0,271],"entities":{"hashtags":[{"text":"aect19","indices":[134,141]},{"text":"aect19inspired","indices":[256,271]}],"symbols":[],"user_mentions":[{"screen_name":"VVongkulluksn","name":"Vanessa + Vongkulluksn","id":859192619582226432,"id_str":"859192619582226432","indices":[38,52]},{"screen_name":"hawk_nathanA","name":"Nathan + A Hawk","id":492536804,"id_str":"492536804","indices":[53,66]},{"screen_name":"Nelsmich","name":"Mike + Nelson","id":51712418,"id_str":"51712418","indices":[67,76]},{"screen_name":"ShengBo_Chen","name":"Sheng-Bo + Chen","id":1341770169669070849,"id_str":"1341770169669070849","indices":[77,90]},{"screen_name":"DLResearchLab","name":"Digital + Learning Lab","id":866326285999591426,"id_str":"866326285999591426","indices":[91,105]}],"urls":[],"media":[{"id":1187745354294464512,"id_str":"1187745354294464512","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHu4G1ZXkAApNgM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHu4G1ZXkAApNgM.jpg","url":"https:\/\/t.co\/XobNxCAQEF","display_url":"pic.twitter.com\/XobNxCAQEF","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187745372535480321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187745354294464512,"id_str":"1187745354294464512","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHu4G1ZXkAApNgM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHu4G1ZXkAApNgM.jpg","url":"https:\/\/t.co\/XobNxCAQEF","display_url":"pic.twitter.com\/XobNxCAQEF","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187745372535480321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187745354336342019,"id_str":"1187745354336342019","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHu4G1jWkAMHbPf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHu4G1jWkAMHbPf.jpg","url":"https:\/\/t.co\/XobNxCAQEF","display_url":"pic.twitter.com\/XobNxCAQEF","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187745372535480321\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":1440,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187745354294398976,"id_str":"1187745354294398976","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHu4G1ZWkAAOHAB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHu4G1ZWkAAOHAB.jpg","url":"https:\/\/t.co\/XobNxCAQEF","display_url":"pic.twitter.com\/XobNxCAQEF","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187745372535480321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187745354298613760,"id_str":"1187745354298613760","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHu4G1aW4AAK_A1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHu4G1aW4AAK_A1.jpg","url":"https:\/\/t.co\/XobNxCAQEF","display_url":"pic.twitter.com\/XobNxCAQEF","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187745372535480321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:16:51 +0000 2019","id":1187780070217310209,"id_str":"1187780070217310209","full_text":"RT + @gravesle: Q1: What is the best way to establish myself in this field \u2026 + especially when I have little experience and\/or training?\n(Virtu\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gravesle","name":"Dr. + Leigh Graves Wolf","id":11092692,"id_str":"11092692","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2227286222,"id_str":"2227286222","name":"Dr. + Ryan Straight","screen_name":"RyanStraight","location":"Signal box somewhere + near Hove","description":"Asst\/Honors Applied Computing\/Cyber Operations + Prof @uarizona, | Director: @mavrxlab | tweets mine alone, RT \u2260 endorsement + | he\/him\/his | R''amen","url":"https:\/\/t.co\/9wMmegDjTz","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9wMmegDjTz","expanded_url":"https:\/\/ryanstraight.com","display_url":"ryanstraight.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1202,"friends_count":928,"listed_count":58,"created_at":"Mon + Dec 02 21:18:04 +0000 2013","favourites_count":34456,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16503,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1268187133669289984\/cXWd5fjx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1268187133669289984\/cXWd5fjx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2227286222\/1591194430","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"57000F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 17:15:24 +0000 2019","id":1187779705488982016,"id_str":"1187779705488982016","full_text":"Q1: + What is the best way to establish myself in this field \u2026 especially when + I have little experience and\/or training?\n(Virtual audience feel free to + chime in!) \n#AECT19 #aect19inspired","truncated":false,"display_text_range":[0,185],"entities":{"hashtags":[{"text":"AECT19","indices":[162,169]},{"text":"aect19inspired","indices":[170,185]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11092692,"id_str":"11092692","name":"Dr. + Leigh Graves Wolf","screen_name":"gravesle","location":"Michigan\/Galway\/Arizona\/Online","description":"I + like to share & listen. Human. Clinical Associate Professor Ed Leadership + & Innovation @asueducation. I tweet my own things. (Dr\/She\/Her)","url":"https:\/\/t.co\/CIZXWxMRrw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CIZXWxMRrw","expanded_url":"http:\/\/leighgraveswolf.com","display_url":"leighgraveswolf.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6033,"friends_count":6584,"listed_count":442,"created_at":"Wed + Dec 12 16:03:00 +0000 2007","favourites_count":31280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48218,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11092692\/1442771541","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"044905","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E2F8AA","profile_text_color":"659B08","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:18:24 +0000 2019","id":1187765363737391104,"id_str":"1187765363737391104","full_text":"Interested + in fostering #SocialPresence in #OnlineLearning? Come talk with Dr. Matti + Koivula and I from @UMNews about how designers\/instructors can use video + based interactions to allow for authentic conversations. Today at 10AM in + Conference Room 14! @AECT #aect19 https:\/\/t.co\/r6Y8pQmZOL","truncated":false,"display_text_range":[0,265],"entities":{"hashtags":[{"text":"SocialPresence","indices":[24,39]},{"text":"OnlineLearning","indices":[43,58]},{"text":"aect19","indices":[258,265]}],"symbols":[],"user_mentions":[{"screen_name":"UMNews","name":"University + of Minnesota","id":18917572,"id_str":"18917572","indices":[104,111]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[252,257]}],"urls":[],"media":[{"id":1187765359387897856,"id_str":"1187765359387897856","indices":[266,289],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvKTSLUcAAPuKr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvKTSLUcAAPuKr.png","url":"https:\/\/t.co\/r6Y8pQmZOL","display_url":"pic.twitter.com\/r6Y8pQmZOL","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187765363737391104\/photo\/1","type":"photo","sizes":{"large":{"w":737,"h":330,"resize":"fit"},"medium":{"w":737,"h":330,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":304,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187765359387897856,"id_str":"1187765359387897856","indices":[266,289],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvKTSLUcAAPuKr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvKTSLUcAAPuKr.png","url":"https:\/\/t.co\/r6Y8pQmZOL","display_url":"pic.twitter.com\/r6Y8pQmZOL","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187765363737391104\/photo\/1","type":"photo","sizes":{"large":{"w":737,"h":330,"resize":"fit"},"medium":{"w":737,"h":330,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":304,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:37:04 +0000 2019","id":1187770058803761152,"id_str":"1187770058803761152","full_text":"RT + @pazureka: Interested in fostering #SocialPresence in #OnlineLearning? Come + talk with Dr. Matti Koivula and I from @UMNews about how des\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"SocialPresence","indices":[38,53]},{"text":"OnlineLearning","indices":[57,72]}],"symbols":[],"user_mentions":[{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[3,12]},{"screen_name":"UMNews","name":"University + of Minnesota","id":18917572,"id_str":"18917572","indices":[118,125]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4714,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 16:18:24 +0000 2019","id":1187765363737391104,"id_str":"1187765363737391104","full_text":"Interested + in fostering #SocialPresence in #OnlineLearning? Come talk with Dr. Matti + Koivula and I from @UMNews about how designers\/instructors can use video + based interactions to allow for authentic conversations. Today at 10AM in + Conference Room 14! @AECT #aect19 https:\/\/t.co\/r6Y8pQmZOL","truncated":false,"display_text_range":[0,265],"entities":{"hashtags":[{"text":"SocialPresence","indices":[24,39]},{"text":"OnlineLearning","indices":[43,58]},{"text":"aect19","indices":[258,265]}],"symbols":[],"user_mentions":[{"screen_name":"UMNews","name":"University + of Minnesota","id":18917572,"id_str":"18917572","indices":[104,111]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[252,257]}],"urls":[],"media":[{"id":1187765359387897856,"id_str":"1187765359387897856","indices":[266,289],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvKTSLUcAAPuKr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvKTSLUcAAPuKr.png","url":"https:\/\/t.co\/r6Y8pQmZOL","display_url":"pic.twitter.com\/r6Y8pQmZOL","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187765363737391104\/photo\/1","type":"photo","sizes":{"large":{"w":737,"h":330,"resize":"fit"},"medium":{"w":737,"h":330,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":304,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187765359387897856,"id_str":"1187765359387897856","indices":[266,289],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvKTSLUcAAPuKr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvKTSLUcAAPuKr.png","url":"https:\/\/t.co\/r6Y8pQmZOL","display_url":"pic.twitter.com\/r6Y8pQmZOL","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187765363737391104\/photo\/1","type":"photo","sizes":{"large":{"w":737,"h":330,"resize":"fit"},"medium":{"w":737,"h":330,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":304,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:35:17 +0000 2019","id":1187769610705297410,"id_str":"1187769610705297410","full_text":"RT + @kariknisely: If you are a former teacher and would like to share your story + with other teachers looking to leave the classroom, please\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4714,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 16:30:59 +0000 2019","id":1187768528893382656,"id_str":"1187768528893382656","full_text":"If + you are a former teacher and would like to share your story with other teachers + looking to leave the classroom, please let me know. I would love to add your + story to these \u201cSuccess Stories\u201d if you are interested. #AECT19 + https:\/\/t.co\/ahXiwvNH2v","truncated":false,"display_text_range":[0,247],"entities":{"hashtags":[{"text":"AECT19","indices":[216,223]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ahXiwvNH2v","expanded_url":"https:\/\/otherjobsforteachers.com\/success-stories","display_url":"otherjobsforteachers.com\/success-stories","indices":[224,247]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":686,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 18:12:21 +0000 2019","id":1187794038587396096,"id_str":"1187794038587396096","full_text":"#aect19inspired + is too difficult to type for me....","truncated":false,"display_text_range":[0,51],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1187791907855822849,"in_reply_to_status_id_str":"1187791907855822849","in_reply_to_user_id":38657815,"in_reply_to_user_id_str":"38657815","in_reply_to_screen_name":"DKSch","user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 15:41:28 +0000 2019","id":1187756066299203584,"id_str":"1187756066299203584","full_text":"As + things are winding down at #aect19, what was one of your key takeaways? I + haven''t perfected cloning myself, so I couldn''t attend all of the sessions. + :)","truncated":false,"display_text_range":[0,155],"entities":{"hashtags":[{"text":"aect19","indices":[30,37]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":111391715,"id_str":"111391715","name":"Valary + Oleinik","screen_name":"valarywithawhy","location":"New York, NY","description":"speaker + | engager of learners | gamifier of things | unleasher of creativity | geek + | writer | queriest","url":"https:\/\/t.co\/5XjhvhYTqb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5XjhvhYTqb","expanded_url":"http:\/\/www.valarywithawhy.com","display_url":"valarywithawhy.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1251,"friends_count":1550,"listed_count":60,"created_at":"Thu + Feb 04 19:24:07 +0000 2010","favourites_count":9041,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4317,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111391715\/1454624226","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 15:15:31 +0000 2019","id":1187749537227558912,"id_str":"1187749537227558912","full_text":"RT + @tadousay: When you realize it''s your 10th anniversary in #AECT. \u2764\ufe0f\ud83c\udf89 + #aect19 #aectinspired https:\/\/t.co\/RyzxGQjRjQ https:\/\/t.co\/gbLIBDbD\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT","indices":[61,66]},{"text":"aect19","indices":[72,79]},{"text":"aectinspired","indices":[80,93]}],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/RyzxGQjRjQ","expanded_url":"http:\/\/bit.ly\/2MAVsQk","display_url":"bit.ly\/2MAVsQk","indices":[94,117]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3181969286,"id_str":"3181969286","name":"Terry + Callaghan","screen_name":"tcallaghan55","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":172,"listed_count":35,"created_at":"Fri + May 01 16:49:56 +0000 2015","favourites_count":1837,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1231,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594185316967190529\/x1Ql3Lio_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594185316967190529\/x1Ql3Lio_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 01:04:19 +0000 2019","id":1186448160195043328,"id_str":"1186448160195043328","full_text":"When + you realize it''s your 10th anniversary in #AECT. \u2764\ufe0f\ud83c\udf89 + #aect19 #aectinspired https:\/\/t.co\/RyzxGQjRjQ https:\/\/t.co\/gbLIBDbDj7","truncated":false,"display_text_range":[0,103],"entities":{"hashtags":[{"text":"AECT","indices":[47,52]},{"text":"aect19","indices":[58,65]},{"text":"aectinspired","indices":[66,79]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RyzxGQjRjQ","expanded_url":"http:\/\/bit.ly\/2MAVsQk","display_url":"bit.ly\/2MAVsQk","indices":[80,103]}],"media":[{"id":1186448159104524288,"id_str":"1186448159104524288","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/EHccUIvXYAA61He.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHccUIvXYAA61He.jpg","url":"https:\/\/t.co\/gbLIBDbDj7","display_url":"pic.twitter.com\/gbLIBDbDj7","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186448160195043328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186448159104524288,"id_str":"1186448159104524288","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/EHccUIvXYAA61He.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHccUIvXYAA61He.jpg","url":"https:\/\/t.co\/gbLIBDbDj7","display_url":"pic.twitter.com\/gbLIBDbDj7","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186448160195043328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":32,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 18:09:54 +0000 2019","id":1187793421840240640,"id_str":"1187793421840240640","full_text":"Watching + an engaging session with @tel_education staff and @oueducation students @CatJackson28 + @kellyeross16 as they talk about learning environment modeling. @buckydodd #aect19inspired (room + 14) https:\/\/t.co\/5BRi92e71q","truncated":false,"display_text_range":[0,197],"entities":{"hashtags":[{"text":"aect19inspired","indices":[171,186]}],"symbols":[],"user_mentions":[{"screen_name":"tel_education","name":"TEL + Education","id":950470158837051392,"id_str":"950470158837051392","indices":[34,48]},{"screen_name":"oueducation","name":"OU + Jeannine Rainbolt College of Education","id":15946481,"id_str":"15946481","indices":[59,71]},{"screen_name":"kellyeross16","name":"Dr. + Kelly Ross","id":1194594229,"id_str":"1194594229","indices":[95,108]},{"screen_name":"buckydodd","name":"Bucky","id":158037639,"id_str":"158037639","indices":[159,169]}],"urls":[],"media":[{"id":1187793401636212736,"id_str":"1187793401636212736","indices":[198,221],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvjzjsUUAAKRlC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvjzjsUUAAKRlC.jpg","url":"https:\/\/t.co\/5BRi92e71q","display_url":"pic.twitter.com\/5BRi92e71q","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187793421840240640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187793401636212736,"id_str":"1187793401636212736","indices":[198,221],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvjzjsUUAAKRlC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvjzjsUUAAKRlC.jpg","url":"https:\/\/t.co\/5BRi92e71q","display_url":"pic.twitter.com\/5BRi92e71q","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187793421840240640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":"Tel + library"}]},"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" + rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5826,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26963,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:37:10 +0000 2019","id":1187770085651472390,"id_str":"1187770085651472390","full_text":"RT + @DrVirtuality: Session about online personal data curation with benevolent + intention and safeguards. @aect #aect19 #aect19inspired https\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[110,117]},{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[104,109]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4714,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 16:04:02 +0000 2019","id":1187761747635003392,"id_str":"1187761747635003392","full_text":"Session + about online personal data curation with benevolent intention and safeguards. + @aect #aect19 #aect19inspired https:\/\/t.co\/DtM0PbHUfF","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect19","indices":[92,99]},{"text":"aect19inspired","indices":[100,115]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[86,91]}],"urls":[],"media":[{"id":1187761741565853698,"id_str":"1187761741565853698","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvHAsvVAAIV0uO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvHAsvVAAIV0uO.jpg","url":"https:\/\/t.co\/DtM0PbHUfF","display_url":"pic.twitter.com\/DtM0PbHUfF","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187761747635003392\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187761741565853698,"id_str":"1187761741565853698","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvHAsvVAAIV0uO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvHAsvVAAIV0uO.jpg","url":"https:\/\/t.co\/DtM0PbHUfF","display_url":"pic.twitter.com\/DtM0PbHUfF","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187761747635003392\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3917,"friends_count":382,"listed_count":163,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:45:48 +0000 2019","id":1187772257105526786,"id_str":"1187772257105526786","full_text":"RT + @koubenec: Had a great time talking with #aect19inspired attendees about the + possibilities of chatbots built with Botkit - check them ou\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[44,59]}],"symbols":[],"user_mentions":[{"screen_name":"koubenec","name":"Noah + Koubenec","id":153965652,"id_str":"153965652","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":24230822,"id_str":"24230822","name":"Patrick + Plante","screen_name":"patrickplante","location":"Qu\u00e9bec","description":"Professeur + en fad et technologie \u00e9ducative \u2013 T\u00c9LUQ. E-learning - Design + p\u00e9dagogique - Th\u00e9ories de la technologie - Hackers - Jeux s\u00e9rieux + - Ludification.","url":"https:\/\/t.co\/O6byOknob9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/O6byOknob9","expanded_url":"https:\/\/www.teluq.ca\/siteweb\/univ\/pplante.html","display_url":"teluq.ca\/siteweb\/univ\/p\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2189,"friends_count":3097,"listed_count":151,"created_at":"Fri + Mar 13 19:12:45 +0000 2009","favourites_count":3778,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5479,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/917816022052225024\/FfSUN4GI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/917816022052225024\/FfSUN4GI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24230822\/1464878437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 15:33:49 +0000 2019","id":1187754141545713664,"id_str":"1187754141545713664","full_text":"Had + a great time talking with #aect19inspired attendees about the possibilities + of chatbots built with Botkit - check them out at https:\/\/t.co\/h1x93l4X6R! + @AECT https:\/\/t.co\/rPkg9pm5yp","truncated":false,"display_text_range":[0,160],"entities":{"hashtags":[{"text":"aect19inspired","indices":[30,45]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[155,160]}],"urls":[{"url":"https:\/\/t.co\/h1x93l4X6R","expanded_url":"http:\/\/botkit.ai","display_url":"botkit.ai","indices":[130,153]}],"media":[{"id":1187754137762463744,"id_str":"1187754137762463744","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvAGGXVAAA7Gf0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvAGGXVAAA7Gf0.jpg","url":"https:\/\/t.co\/rPkg9pm5yp","display_url":"pic.twitter.com\/rPkg9pm5yp","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1187754141545713664\/photo\/1","type":"photo","sizes":{"medium":{"w":1079,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"large":{"w":1079,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187754137762463744,"id_str":"1187754137762463744","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvAGGXVAAA7Gf0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvAGGXVAAA7Gf0.jpg","url":"https:\/\/t.co\/rPkg9pm5yp","display_url":"pic.twitter.com\/rPkg9pm5yp","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1187754141545713664\/photo\/1","type":"photo","sizes":{"medium":{"w":1079,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":454,"resize":"fit"},"large":{"w":1079,"h":720,"resize":"fit"}},"ext_alt_text":"Botkit.ai + homepage"}]},"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" + rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:34:44 +0000 2019","id":1187769471638921216,"id_str":"1187769471638921216","full_text":"RT + @LearnEngage: How do roles adopted in a discussion affect critical thinking? + In large lecture format courses, how might we be able to re\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4714,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 14:00:00 +0000 2019","id":1187730533637410818,"id_str":"1187730533637410818","full_text":"How + do roles adopted in a discussion affect critical thinking? In large lecture + format courses, how might we be able to reduce student anxiety in asking questions? + Explore these questions and more in the Online Discussion session, 10am in + Conf Room 8! #AECT19 https:\/\/t.co\/zYTrsa34bq","truncated":false,"display_text_range":[0,259],"entities":{"hashtags":[{"text":"AECT19","indices":[252,259]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187705693387673600,"id_str":"1187705693387673600","indices":[260,283],"media_url":"http:\/\/pbs.twimg.com\/media\/EHuUCRAU0AA6lf-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHuUCRAU0AA6lf-.jpg","url":"https:\/\/t.co\/zYTrsa34bq","display_url":"pic.twitter.com\/zYTrsa34bq","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187730533637410818\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":801,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"large":{"w":1920,"h":1281,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187705693387673600,"id_str":"1187705693387673600","indices":[260,283],"media_url":"http:\/\/pbs.twimg.com\/media\/EHuUCRAU0AA6lf-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHuUCRAU0AA6lf-.jpg","url":"https:\/\/t.co\/zYTrsa34bq","display_url":"pic.twitter.com\/zYTrsa34bq","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187730533637410818\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":801,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"large":{"w":1920,"h":1281,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:39:18 +0000 2019","id":1187770621192802305,"id_str":"1187770621192802305","full_text":"RT + @learnics1: Had great conversations about online behavior data at the #aect2019 + convention. Lots of innovation thinkers in attendance!\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"aect2019","indices":[73,82]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4714,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 15:34:51 +0000 2019","id":1187754401080807424,"id_str":"1187754401080807424","full_text":"Had + great conversations about online behavior data at the #aect2019 convention. Lots + of innovation thinkers in attendance! https:\/\/t.co\/rmsDut7SZ5","truncated":false,"display_text_range":[0,123],"entities":{"hashtags":[{"text":"aect2019","indices":[58,67]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187754392750919680,"id_str":"1187754392750919680","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvAU8RUEAAdb_A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvAU8RUEAAdb_A.jpg","url":"https:\/\/t.co\/rmsDut7SZ5","display_url":"pic.twitter.com\/rmsDut7SZ5","expanded_url":"https:\/\/twitter.com\/learnics1\/status\/1187754401080807424\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187754392750919680,"id_str":"1187754392750919680","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvAU8RUEAAdb_A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvAU8RUEAAdb_A.jpg","url":"https:\/\/t.co\/rmsDut7SZ5","display_url":"pic.twitter.com\/rmsDut7SZ5","expanded_url":"https:\/\/twitter.com\/learnics1\/status\/1187754401080807424\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":899777510237450240,"id_str":"899777510237450240","name":"Learnics","screen_name":"Learnics_","location":"Easton, + PA","description":"Learnics supports your school\u2019s shift to digital learning + by revealing student online experiences. \n#NSFFunded #EdTech #DataAnalytics + #GoogleClassroom","url":"https:\/\/t.co\/ZCKYuTA8XB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZCKYuTA8XB","expanded_url":"https:\/\/www.learnics.com\/","display_url":"learnics.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":400,"friends_count":1176,"listed_count":4,"created_at":"Mon + Aug 21 23:37:30 +0000 2017","favourites_count":2536,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":778,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1239638592508567559\/oZwh_chM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1239638592508567559\/oZwh_chM_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/899777510237450240\/1612204423","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:45:51 +0000 2019","id":1187787367244976132,"id_str":"1187787367244976132","full_text":"@eromerohall + Missing you & #aect19 too! We are excited to host 60 internationals and + growing at #otessa20 from 15 countries of over 200 & growing daily who + say they plan to submit. \n\nDon\u2019t forget to sign up for free membership + for now to the end of 2019 at https:\/\/t.co\/omk6LNPghQ","truncated":false,"display_text_range":[13,288],"entities":{"hashtags":[{"text":"aect19","indices":[31,38]},{"text":"otessa20","indices":[100,109]}],"symbols":[],"user_mentions":[{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/omk6LNPghQ","expanded_url":"http:\/\/otessa.org","display_url":"otessa.org","indices":[265,288]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187773984596578304,"in_reply_to_status_id_str":"1187773984596578304","in_reply_to_user_id":918747876,"in_reply_to_user_id_str":"918747876","in_reply_to_screen_name":"eromerohall","user":{"id":40426722,"id_str":"40426722","name":"Dr. + Valerie Irvine #IStandWithUkraine \ud83c\uddfa\ud83c\udde6\ud83c\uddfa\ud83c\udde6","screen_name":"_valeriei","location":"Victoria + | WS\u00c1NE\u0106 & Lekwungen","description":"#UVic #Edtech Professor. @tielab + Director. @edtechuvic Advisor. @otessa_org President. Consultant. #Speaker. + #tiegrad #edci336 Tweet work\/play like the real me.","url":"https:\/\/t.co\/u3koNzUBMK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/u3koNzUBMK","expanded_url":"http:\/\/valerieirvine.ca","display_url":"valerieirvine.ca","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6324,"friends_count":6278,"listed_count":416,"created_at":"Sat + May 16 07:12:43 +0000 2009","favourites_count":15749,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":57096,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FAFAFA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1399070279993753604\/9cQIllka_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1399070279993753604\/9cQIllka_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40426722\/1538029660","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3300FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CBD5D6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:41:12 +0000 2019","id":1187786199856898048,"id_str":"1187786199856898048","full_text":"@SBarksway + Thank you for attending, Sarah, and taking some photos! Looking forward to + talking more with you. #aect19 #aect19inspired","truncated":false,"display_text_range":[11,132],"entities":{"hashtags":[{"text":"aect19","indices":[109,116]},{"text":"aect19inspired","indices":[117,132]}],"symbols":[],"user_mentions":[{"screen_name":"SBarksway","name":"Sarah + Barksdale","id":908737706699710464,"id_str":"908737706699710464","indices":[0,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1187567214607552514,"in_reply_to_status_id_str":"1187567214607552514","in_reply_to_user_id":908737706699710464,"in_reply_to_user_id_str":"908737706699710464","in_reply_to_screen_name":"SBarksway","user":{"id":64769037,"id_str":"64769037","name":"jenn\u03b9\u0493er + engl\u03c5nd","screen_name":"jmenglund03","location":"Settler on Dakota homelands","description":"@UMN_CI + LT PhD Candidate \u2022 @UMNews instructional designer \u2022 @GOGN_OER scholar + \u2022 @femedtech member \u2022 #OEP advocate \u2022 Pronouns: she\/her","url":"https:\/\/t.co\/cjLLex1JDn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cjLLex1JDn","expanded_url":"https:\/\/jenniferenglund.net\/","display_url":"jenniferenglund.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":662,"friends_count":627,"listed_count":72,"created_at":"Tue + Aug 11 17:10:00 +0000 2009","favourites_count":2052,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2918,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B7C8E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64769037\/1500750705","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"452568","profile_sidebar_border_color":"204207","profile_sidebar_fill_color":"060A00","profile_text_color":"618238","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:27:31 +0000 2019","id":1187782753602953218,"id_str":"1187782753602953218","full_text":"#AECT19 + #aect19inspired\n - audience member sharing about the potential of Adobe Spark + and how they use it to share: https:\/\/t.co\/Xo7y0HVbvA","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"aect19inspired","indices":[8,23]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Xo7y0HVbvA","expanded_url":"https:\/\/spark.adobe.com\/","display_url":"spark.adobe.com","indices":[116,139]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11092692,"id_str":"11092692","name":"Dr. + Leigh Graves Wolf","screen_name":"gravesle","location":"Michigan\/Galway\/Arizona\/Online","description":"I + like to share & listen. Human. Clinical Associate Professor Ed Leadership + & Innovation @asueducation. I tweet my own things. (Dr\/She\/Her)","url":"https:\/\/t.co\/CIZXWxMRrw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CIZXWxMRrw","expanded_url":"http:\/\/leighgraveswolf.com","display_url":"leighgraveswolf.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6033,"friends_count":6584,"listed_count":442,"created_at":"Wed + Dec 12 16:03:00 +0000 2007","favourites_count":31280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48218,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11092692\/1442771541","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"044905","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E2F8AA","profile_text_color":"659B08","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 18:10:41 +0000 2019","id":1187793618121220097,"id_str":"1187793618121220097","full_text":"RT + @DrTerriC: Watching an engaging session with @tel_education staff and @oueducation + students @CatJackson28 @kellyeross16 as they talk abo\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[3,12]},{"screen_name":"tel_education","name":"TEL + Education","id":950470158837051392,"id_str":"950470158837051392","indices":[48,62]},{"screen_name":"oueducation","name":"OU + Jeannine Rainbolt College of Education","id":15946481,"id_str":"15946481","indices":[73,85]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":158037639,"id_str":"158037639","name":"Bucky","screen_name":"buckydodd","location":"","description":"Master + Teacher. Innovator. Leader.","url":"https:\/\/t.co\/9UIx25dRRl","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9UIx25dRRl","expanded_url":"http:\/\/flatverb.com","display_url":"flatverb.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":153,"friends_count":424,"listed_count":23,"created_at":"Mon + Jun 21 16:12:53 +0000 2010","favourites_count":413,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":729,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/849135428913463296\/YxKnscl2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/849135428913463296\/YxKnscl2_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 18:09:54 +0000 2019","id":1187793421840240640,"id_str":"1187793421840240640","full_text":"Watching + an engaging session with @tel_education staff and @oueducation students @CatJackson28 + @kellyeross16 as they talk about learning environment modeling. @buckydodd #aect19inspired (room + 14) https:\/\/t.co\/5BRi92e71q","truncated":false,"display_text_range":[0,197],"entities":{"hashtags":[{"text":"aect19inspired","indices":[171,186]}],"symbols":[],"user_mentions":[{"screen_name":"tel_education","name":"TEL + Education","id":950470158837051392,"id_str":"950470158837051392","indices":[34,48]},{"screen_name":"oueducation","name":"OU + Jeannine Rainbolt College of Education","id":15946481,"id_str":"15946481","indices":[59,71]},{"screen_name":"kellyeross16","name":"Dr. + Kelly Ross","id":1194594229,"id_str":"1194594229","indices":[95,108]},{"screen_name":"buckydodd","name":"Bucky","id":158037639,"id_str":"158037639","indices":[159,169]}],"urls":[],"media":[{"id":1187793401636212736,"id_str":"1187793401636212736","indices":[198,221],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvjzjsUUAAKRlC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvjzjsUUAAKRlC.jpg","url":"https:\/\/t.co\/5BRi92e71q","display_url":"pic.twitter.com\/5BRi92e71q","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187793421840240640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187793401636212736,"id_str":"1187793401636212736","indices":[198,221],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvjzjsUUAAKRlC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvjzjsUUAAKRlC.jpg","url":"https:\/\/t.co\/5BRi92e71q","display_url":"pic.twitter.com\/5BRi92e71q","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187793421840240640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":"Tel + library"}]},"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" + rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5826,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26963,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:20:27 +0000 2019","id":1187780977201803264,"id_str":"1187780977201803264","full_text":"This + session happening now. @aect #aect19 #aect19inspired https:\/\/t.co\/GjqO9qEq4s","truncated":false,"display_text_range":[0,57],"entities":{"hashtags":[{"text":"aect19","indices":[34,41]},{"text":"aect19inspired","indices":[42,57]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[28,33]}],"urls":[],"media":[{"id":1187780969144537088,"id_str":"1187780969144537088","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvYf5DUUAAbDWN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvYf5DUUAAbDWN.jpg","url":"https:\/\/t.co\/GjqO9qEq4s","display_url":"pic.twitter.com\/GjqO9qEq4s","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187780977201803264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187780969144537088,"id_str":"1187780969144537088","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvYf5DUUAAbDWN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvYf5DUUAAbDWN.jpg","url":"https:\/\/t.co\/GjqO9qEq4s","display_url":"pic.twitter.com\/GjqO9qEq4s","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187780977201803264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3917,"friends_count":382,"listed_count":163,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:43:44 +0000 2019","id":1187771735610777601,"id_str":"1187771735610777601","full_text":"Just + opened the gift from @SICET; I cannot help to show it off because they are + beautiful. Thanks to @Happy_Tao for inviting me to share my work @SICET #aect19. + https:\/\/t.co\/VeMBximzTs","truncated":false,"display_text_range":[0,160],"entities":{"hashtags":[{"text":"aect19","indices":[152,159]}],"symbols":[],"user_mentions":[{"screen_name":"SICET","name":"SICET","id":114832274,"id_str":"114832274","indices":[26,32]},{"screen_name":"Happy_Tao","name":"Hengtao + Tang","id":482227724,"id_str":"482227724","indices":[101,111]},{"screen_name":"SICET","name":"SICET","id":114832274,"id_str":"114832274","indices":[145,151]}],"urls":[],"media":[{"id":1187771723409551360,"id_str":"1187771723409551360","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvQFuAUcAA1lOA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvQFuAUcAA1lOA.jpg","url":"https:\/\/t.co\/VeMBximzTs","display_url":"pic.twitter.com\/VeMBximzTs","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187771735610777601\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187771723409551360,"id_str":"1187771723409551360","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvQFuAUcAA1lOA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvQFuAUcAA1lOA.jpg","url":"https:\/\/t.co\/VeMBximzTs","display_url":"pic.twitter.com\/VeMBximzTs","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187771735610777601\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 15:34:51 +0000 2019","id":1187754401080807424,"id_str":"1187754401080807424","full_text":"Had + great conversations about online behavior data at the #aect2019 convention. Lots + of innovation thinkers in attendance! https:\/\/t.co\/rmsDut7SZ5","truncated":false,"display_text_range":[0,123],"entities":{"hashtags":[{"text":"aect2019","indices":[58,67]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187754392750919680,"id_str":"1187754392750919680","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvAU8RUEAAdb_A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvAU8RUEAAdb_A.jpg","url":"https:\/\/t.co\/rmsDut7SZ5","display_url":"pic.twitter.com\/rmsDut7SZ5","expanded_url":"https:\/\/twitter.com\/learnics1\/status\/1187754401080807424\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187754392750919680,"id_str":"1187754392750919680","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvAU8RUEAAdb_A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvAU8RUEAAdb_A.jpg","url":"https:\/\/t.co\/rmsDut7SZ5","display_url":"pic.twitter.com\/rmsDut7SZ5","expanded_url":"https:\/\/twitter.com\/learnics1\/status\/1187754401080807424\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":899777510237450240,"id_str":"899777510237450240","name":"Learnics","screen_name":"Learnics_","location":"Easton, + PA","description":"Learnics supports your school\u2019s shift to digital learning + by revealing student online experiences. \n#NSFFunded #EdTech #DataAnalytics + #GoogleClassroom","url":"https:\/\/t.co\/ZCKYuTA8XB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZCKYuTA8XB","expanded_url":"https:\/\/www.learnics.com\/","display_url":"learnics.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":400,"friends_count":1176,"listed_count":4,"created_at":"Mon + Aug 21 23:37:30 +0000 2017","favourites_count":2536,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":778,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1239638592508567559\/oZwh_chM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1239638592508567559\/oZwh_chM_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/899777510237450240\/1612204423","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:42:54 +0000 2019","id":1187786625465671680,"id_str":"1187786625465671680","full_text":"#aect19 + #aect19inspired Sharing my inspirations! https:\/\/t.co\/OD8cGBDcyq \n@carriejill + @femedtech @findingada","truncated":false,"display_text_range":[0,108],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]},{"text":"aect19inspired","indices":[8,23]}],"symbols":[],"user_mentions":[{"screen_name":"carriejill","name":"carriejill","id":14961234,"id_str":"14961234","indices":[74,85]},{"screen_name":"femedtech","name":"FemEdTech + - shared account for FemEdTech network","id":807239380138160128,"id_str":"807239380138160128","indices":[86,96]},{"screen_name":"FindingAda","name":"FindingAda","id":16736682,"id_str":"16736682","indices":[97,108]}],"urls":[{"url":"https:\/\/t.co\/OD8cGBDcyq","expanded_url":"https:\/\/youtu.be\/Qs7l4rIHJMo","display_url":"youtu.be\/Qs7l4rIHJMo","indices":[49,72]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11092692,"id_str":"11092692","name":"Dr. + Leigh Graves Wolf","screen_name":"gravesle","location":"Michigan\/Galway\/Arizona\/Online","description":"I + like to share & listen. Human. Clinical Associate Professor Ed Leadership + & Innovation @asueducation. I tweet my own things. (Dr\/She\/Her)","url":"https:\/\/t.co\/CIZXWxMRrw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CIZXWxMRrw","expanded_url":"http:\/\/leighgraveswolf.com","display_url":"leighgraveswolf.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6033,"friends_count":6584,"listed_count":442,"created_at":"Wed + Dec 12 16:03:00 +0000 2007","favourites_count":31280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48218,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11092692\/1442771541","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"044905","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E2F8AA","profile_text_color":"659B08","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:25:10 +0000 2019","id":1187767063827214336,"id_str":"1187767063827214336","full_text":"RT + @nicolapallitt: My favourite panel so far... Educational Technology, Social + Justice & Critical Whiteness with @camille_dd Amy Bradshaw &\u2026","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"camille_dd","name":"Camille + Dickson-Deane","id":398945750,"id_str":"398945750","indices":[117,128]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:26:34 +0000 2019","id":1187480525365104645,"id_str":"1187480525365104645","full_text":"My + favourite panel so far... Educational Technology, Social Justice & Critical + Whiteness with @camille_dd Amy Bradshaw & Deepak Subramony @aectclt @AECT + #aect19inspired Thanks for the great reading list:) Will definitely be sharing + in my @emergeAfrica report back webinar https:\/\/t.co\/UEuaa3EjP5","truncated":false,"display_text_range":[0,279],"entities":{"hashtags":[{"text":"aect19inspired","indices":[161,176]}],"symbols":[],"user_mentions":[{"screen_name":"camille_dd","name":"Camille + Dickson-Deane","id":398945750,"id_str":"398945750","indices":[98,109]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[146,154]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[155,160]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[246,259]}],"urls":[],"media":[{"id":1187480521418264577,"id_str":"1187480521418264577","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrHPiDU0AEBRU4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrHPiDU0AEBRU4.jpg","url":"https:\/\/t.co\/UEuaa3EjP5","display_url":"pic.twitter.com\/UEuaa3EjP5","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187480525365104645\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":455,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":302,"resize":"fit"},"large":{"w":1024,"h":455,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187480521418264577,"id_str":"1187480521418264577","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrHPiDU0AEBRU4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrHPiDU0AEBRU4.jpg","url":"https:\/\/t.co\/UEuaa3EjP5","display_url":"pic.twitter.com\/UEuaa3EjP5","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187480525365104645\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":455,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":302,"resize":"fit"},"large":{"w":1024,"h":455,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:06:50 +0000 2019","id":1187762452542316544,"id_str":"1187762452542316544","full_text":"@aect + #aect19 #aect19inspired #digitalfootprint #socialmedia https:\/\/t.co\/2XnrmuFuQb","truncated":false,"display_text_range":[0,60],"entities":{"hashtags":[{"text":"aect19","indices":[6,13]},{"text":"aect19inspired","indices":[14,29]},{"text":"digitalfootprint","indices":[30,47]},{"text":"socialmedia","indices":[48,60]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]}],"urls":[],"media":[{"id":1187762421374472192,"id_str":"1187762421374472192","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvHoROVUAALGbX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvHoROVUAALGbX.jpg","url":"https:\/\/t.co\/2XnrmuFuQb","display_url":"pic.twitter.com\/2XnrmuFuQb","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187762452542316544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187762421374472192,"id_str":"1187762421374472192","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvHoROVUAALGbX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvHoROVUAALGbX.jpg","url":"https:\/\/t.co\/2XnrmuFuQb","display_url":"pic.twitter.com\/2XnrmuFuQb","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187762452542316544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3917,"friends_count":382,"listed_count":163,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Fri + Oct 25 16:45:46 +0000 2019","id":1187772250658889730,"id_str":"1187772250658889730","full_text":"RT + @gravesle: Prepping to (virtually) present Design in the Open\nInspire Session + with @jenm @tadousay & @jrosenberg6432 at #AECT19 - if you\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"AECT19","indices":[127,134]}],"symbols":[],"user_mentions":[{"screen_name":"gravesle","name":"Dr. + Leigh Graves Wolf","id":11092692,"id_str":"11092692","indices":[3,12]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[86,91]},{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[92,101]},{"screen_name":"jrosenberg6432","name":"Joshua + Rosenberg","id":10950512,"id_str":"10950512","indices":[108,123]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4714,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 16:13:25 +0000 2019","id":1187764109170876419,"id_str":"1187764109170876419","full_text":"Prepping + to (virtually) present Design in the Open\nInspire Session with @jenm @tadousay + & @jrosenberg6432 at #AECT19 - if you''re in Vegas join us at 10am PT + in the Convention Center, Conference Room 7. If you''re also virtual, you + can follow along in the hashtags! #AECTinspired","truncated":false,"display_text_range":[0,281],"entities":{"hashtags":[{"text":"AECT19","indices":[113,120]},{"text":"AECTinspired","indices":[268,281]}],"symbols":[],"user_mentions":[{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[72,77]},{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[78,87]},{"screen_name":"jrosenberg6432","name":"Joshua + Rosenberg","id":10950512,"id_str":"10950512","indices":[94,109]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11092692,"id_str":"11092692","name":"Dr. + Leigh Graves Wolf","screen_name":"gravesle","location":"Michigan\/Galway\/Arizona\/Online","description":"I + like to share & listen. Human. Clinical Associate Professor Ed Leadership + & Innovation @asueducation. I tweet my own things. (Dr\/She\/Her)","url":"https:\/\/t.co\/CIZXWxMRrw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CIZXWxMRrw","expanded_url":"http:\/\/leighgraveswolf.com","display_url":"leighgraveswolf.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":6033,"friends_count":6584,"listed_count":442,"created_at":"Wed + Dec 12 16:03:00 +0000 2007","favourites_count":31280,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":48218,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556752709709070337\/ks7BJRrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11092692\/1442771541","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"044905","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E2F8AA","profile_text_color":"659B08","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:42:26 +0000 2019","id":1187786507605565441,"id_str":"1187786507605565441","full_text":"RT + @DrTerriC: Really enjoying the interactions and conversations at #AECT19 .. + I feel as though @michaelmgrant and @dctrcurry ''s hard work\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"AECT19","indices":[68,75]}],"symbols":[],"user_mentions":[{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[3,12]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[96,110]},{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[115,125]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3632440875,"id_str":"3632440875","name":"JCHE","screen_name":"JCHEResearch","location":"Springer + Publishing","description":"Journal of Computing in Higher Education: Research + and Integration of Instructional Technology","url":"http:\/\/t.co\/vp1fT27q0u","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/vp1fT27q0u","expanded_url":"http:\/\/www.springer.com","display_url":"springer.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":399,"friends_count":143,"listed_count":11,"created_at":"Sat + Sep 12 15:26:14 +0000 2015","favourites_count":55,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":67,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642728004989374464\/rT2xsSzd_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642728004989374464\/rT2xsSzd_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3632440875\/1442073430","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"93A644","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 23:26:42 +0000 2019","id":1187510757266583552,"id_str":"1187510757266583552","full_text":"Really + enjoying the interactions and conversations at #AECT19 .. I feel as though + @michaelmgrant and @dctrcurry ''s hard work is paying off for all attendees. + #aect19inspired See you at the membership meeting at 5!","truncated":false,"display_text_range":[0,214],"entities":{"hashtags":[{"text":"AECT19","indices":[54,61]},{"text":"aect19inspired","indices":[158,173]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[82,96]},{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[101,111]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5826,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26963,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 16:36:31 +0000 2019","id":1187769922937643009,"id_str":"1187769922937643009","full_text":"RT + @christieliuidtr: \u201cCLT Inspire! Safeguard Your Online Persona\u201d, + important topics these days for everyone, an early morning inspiring! @a\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4714,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 16:16:49 +0000 2019","id":1187764962002788357,"id_str":"1187764962002788357","full_text":"\u201cCLT + Inspire! Safeguard Your Online Persona\u201d, important topics these days + for everyone, an early morning inspiring! @aectclt @AECT #aect19 #aect19inspired + @teacherrogers @srogidd https:\/\/t.co\/1iP3TrJTNc","truncated":false,"display_text_range":[0,178],"entities":{"hashtags":[{"text":"aect19","indices":[131,138]},{"text":"aect19inspired","indices":[139,154]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[116,124]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[125,130]},{"screen_name":"teacherrogers","name":"Sandra + Annette Rogers, PhD","id":212784618,"id_str":"212784618","indices":[155,169]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[170,178]}],"urls":[],"media":[{"id":1187764955954565120,"id_str":"1187764955954565120","indices":[179,202],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvJ7zRUUAA-3eT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvJ7zRUUAA-3eT.jpg","url":"https:\/\/t.co\/1iP3TrJTNc","display_url":"pic.twitter.com\/1iP3TrJTNc","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187764962002788357\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187764955954565120,"id_str":"1187764955954565120","indices":[179,202],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvJ7zRUUAA-3eT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvJ7zRUUAA-3eT.jpg","url":"https:\/\/t.co\/1iP3TrJTNc","display_url":"pic.twitter.com\/1iP3TrJTNc","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187764962002788357\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1187764955942047744,"id_str":"1187764955942047744","indices":[179,202],"media_url":"http:\/\/pbs.twimg.com\/media\/EHvJ7zOVUAAqMkn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHvJ7zOVUAAqMkn.jpg","url":"https:\/\/t.co\/1iP3TrJTNc","display_url":"pic.twitter.com\/1iP3TrJTNc","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187764962002788357\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:48:53 +0000 2019","id":1187788132038541312,"id_str":"1187788132038541312","full_text":"RT + @JCHEResearch: Consider turning your @AECT presentations into publications! + Submit to JCHE to share your inspiring and inspired work. #a\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"JCHEResearch","name":"JCHE","id":3632440875,"id_str":"3632440875","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[40,45]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10718,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 17:41:57 +0000 2019","id":1187786388227276800,"id_str":"1187786388227276800","full_text":"Consider + turning your @AECT presentations into publications! Submit to JCHE to share + your inspiring and inspired work. #aect19 #aect19inspired","truncated":false,"display_text_range":[0,142],"entities":{"hashtags":[{"text":"aect19","indices":[119,126]},{"text":"aect19inspired","indices":[127,142]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[22,27]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3632440875,"id_str":"3632440875","name":"JCHE","screen_name":"JCHEResearch","location":"Springer + Publishing","description":"Journal of Computing in Higher Education: Research + and Integration of Instructional Technology","url":"http:\/\/t.co\/vp1fT27q0u","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/vp1fT27q0u","expanded_url":"http:\/\/www.springer.com","display_url":"springer.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":399,"friends_count":143,"listed_count":11,"created_at":"Sat + Sep 12 15:26:14 +0000 2015","favourites_count":55,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":67,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642728004989374464\/rT2xsSzd_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642728004989374464\/rT2xsSzd_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3632440875\/1442073430","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"93A644","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 18:15:02 +0000 2019","id":1187794715254460417,"id_str":"1187794715254460417","full_text":"Design + thinking folks: how about coming to this session room 14 and see a design + language. #aect19inspired DDL Inspire! Inspiring Online Course Design https:\/\/t.co\/G78EFALOhN","truncated":false,"display_text_range":[0,174],"entities":{"hashtags":[{"text":"aect19inspired","indices":[91,106]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/G78EFALOhN","expanded_url":"http:\/\/l.core-apps.com\/aect19\/event?event=b038d05c063d8ab60ed1330fb72f21eb","display_url":"l.core-apps.com\/aect19\/event?e\u2026","indices":[151,174]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1187744052525109248%2C1187743672030388225%2C1187741920002371585%2C1187739541509042177%2C1187736583954292736%2C1187733130611838976%2C1187732056840658944%2C1187730533637410818%2C1187730195744055296%2C1187729804780396544%2C1187729711666876416%2C1187729711666876416%2C1187728817562898438%2C1187727299929694209%2C1187725430805225478%2C1187724659019735042%2C1187724538789928975%2C1187724234400903169%2C1187723966330392576%2C1187715436185448449%2C1187714296974843904%2C1187714296974843904%2C1187713428107870208%2C1187708278047834112%2C1187707894440976384%2C1187707894440976384%2C1187697070922059776%2C1187695846239813638%2C1187694943709663234%2C1187688746554138624%2C1187687981664165889%2C1187686945859743744%2C1187686852142292992%2C1187685697672679424%2C1187685472866320384%2C1187685328431267840%2C1187685229265334272%2C1187684991058268160%2C1187684952894332928%2C1187684759398440961%2C1187684704780247041%2C1187684500509085697%2C1187684500509085697%2C1187676201088888832%2C1187676108440952837%2C1187676108440952837%2C1187656777288036352%2C1187646122036084736%2C1187643910752858112%2C1187643910752858112%2C1187637880585424896%2C1187625774724943872%2C1187625774724943872%2C1187606035722227712%2C1187605926209097728%2C1187605788619091969%2C1187604819923689474%2C1187604620576731136%2C1187601313372094465%2C1187598253484695552%2C1187598253484695552%2C1187587786762682369%2C1187581116510699520%2C1187581116510699520%2C1187575953523785731%2C1187575147441442816%2C1187573514649210880%2C1187571440435859456%2C1187570291389546497%2C1187567875206180865%2C1187567629998772225%2C1187567214607552514%2C1187563469257658369%2C1187563469257658369%2C1187561587642494983%2C1187561363406651393%2C1187560947000336384%2C1187560813235752961%2C1187560369901850624%2C1187558049021644800%2C1187557458350206976%2C1187557389156925440%2C1187557320366215168%2C1187557218591350785%2C1187557060583444481%2C1187557024139112448%2C1187556864554258432%2C1187556798129029120%2C1187556596240408577%2C1187556497615659008%2C1187556438165590016%2C1187556407811493888%2C1187556378128183297%2C1187556376744202240%2C1187555387777703936%2C1187555297897922560%2C1187555284484612096%2C1187555021296193536%2C1187554897769697286%2C1187554790026436608&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:42 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:42 GMT + x-transaction: 055754e61dc102f0 + content-length: '64545' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '289' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '398' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Fri Oct 25 11:38:35 +0000 2019","id":1187694943709663234,"id_str":"1187694943709663234","full_text":"RT + @hodgesc: Not too many years ago, the thought of walking by the @SpringerEdu + table and seeing these would have seemed like an impossibil\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"SpringerEdu","name":"Springer + Education","id":347188522,"id_str":"347188522","indices":[67,79]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":812536063537414145,"id_str":"812536063537414145","name":"\u062f.\u062a\u0647\u0627\u0646\u064a + \u0627\u0644\u062f\u0633\u064a\u0645\u0627\u0646\u064a Tahani Aldosemani","screen_name":"Tahanialdo","location":"Kingdom + of Saudi Arabia","description":"Associate Professor of #Educational_Technology + & #Instructional_Design. #Skills and #professional_development expert. #Researcher + #Consultant.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10545,"friends_count":932,"listed_count":35,"created_at":"Sat + Dec 24 05:51:08 +0000 2016","favourites_count":11166,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6565,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1498531559506427905\/Ooue4XQD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1498531559506427905\/Ooue4XQD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/812536063537414145\/1656857336","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 22:30:00 +0000 2019","id":1187496489230176257,"id_str":"1187496489230176257","full_text":"Not + too many years ago, the thought of walking by the @SpringerEdu table and seeing + these would have seemed like an impossibility. @AECT helped make them and + so many other things possible for me. What''s your next project? #aect19inspired + https:\/\/t.co\/tyIkFJAINL","truncated":false,"display_text_range":[0,239],"entities":{"hashtags":[{"text":"aect19inspired","indices":[224,239]}],"symbols":[],"user_mentions":[{"screen_name":"SpringerEdu","name":"Springer + Education","id":347188522,"id_str":"347188522","indices":[54,66]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[132,137]}],"urls":[],"media":[{"id":1187486977341263872,"id_str":"1187486977341263872","indices":[240,263],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","url":"https:\/\/t.co\/tyIkFJAINL","display_url":"pic.twitter.com\/tyIkFJAINL","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187496489230176257\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":466,"resize":"fit"},"large":{"w":2048,"h":1402,"resize":"fit"},"medium":{"w":1200,"h":822,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187486977341263872,"id_str":"1187486977341263872","indices":[240,263],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","url":"https:\/\/t.co\/tyIkFJAINL","display_url":"pic.twitter.com\/tyIkFJAINL","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187496489230176257\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":466,"resize":"fit"},"large":{"w":2048,"h":1402,"resize":"fit"},"medium":{"w":1200,"h":822,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":36,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 05:14:22 +0000 2019","id":1187598253484695552,"id_str":"1187598253484695552","full_text":"#AECT19 + is winding down. We''ve, got a half day left to go, but seeing this #inspiredme + message tonight really puts the \ud83c\udf52 on top of the awesomesauce sundae. + \u2764\ufe0f #proudbabysister https:\/\/t.co\/X7Lpv7MsWl https:\/\/t.co\/qeZ2xlJtPj","truncated":false,"display_text_range":[0,199],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"inspiredme","indices":[75,86]},{"text":"proudbabysister","indices":[159,175]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/X7Lpv7MsWl","expanded_url":"http:\/\/bit.ly\/2BKDBjm","display_url":"bit.ly\/2BKDBjm","indices":[176,199]}],"media":[{"id":1187598252239048704,"id_str":"1187598252239048704","indices":[200,223],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsyUXiVUAATKcu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsyUXiVUAATKcu.jpg","url":"https:\/\/t.co\/qeZ2xlJtPj","display_url":"pic.twitter.com\/qeZ2xlJtPj","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1187598253484695552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187598252239048704,"id_str":"1187598252239048704","indices":[200,223],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsyUXiVUAATKcu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsyUXiVUAATKcu.jpg","url":"https:\/\/t.co\/qeZ2xlJtPj","display_url":"pic.twitter.com\/qeZ2xlJtPj","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1187598253484695552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 05:44:19 +0000 2019","id":1187605788619091969,"id_str":"1187605788619091969","full_text":"RT + @hodgesc: Not too many years ago, the thought of walking by the @SpringerEdu + table and seeing these would have seemed like an impossibil\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"SpringerEdu","name":"Springer + Education","id":347188522,"id_str":"347188522","indices":[67,79]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 22:30:00 +0000 2019","id":1187496489230176257,"id_str":"1187496489230176257","full_text":"Not + too many years ago, the thought of walking by the @SpringerEdu table and seeing + these would have seemed like an impossibility. @AECT helped make them and + so many other things possible for me. What''s your next project? #aect19inspired + https:\/\/t.co\/tyIkFJAINL","truncated":false,"display_text_range":[0,239],"entities":{"hashtags":[{"text":"aect19inspired","indices":[224,239]}],"symbols":[],"user_mentions":[{"screen_name":"SpringerEdu","name":"Springer + Education","id":347188522,"id_str":"347188522","indices":[54,66]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[132,137]}],"urls":[],"media":[{"id":1187486977341263872,"id_str":"1187486977341263872","indices":[240,263],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","url":"https:\/\/t.co\/tyIkFJAINL","display_url":"pic.twitter.com\/tyIkFJAINL","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187496489230176257\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":466,"resize":"fit"},"large":{"w":2048,"h":1402,"resize":"fit"},"medium":{"w":1200,"h":822,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187486977341263872,"id_str":"1187486977341263872","indices":[240,263],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","url":"https:\/\/t.co\/tyIkFJAINL","display_url":"pic.twitter.com\/tyIkFJAINL","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187496489230176257\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":466,"resize":"fit"},"large":{"w":2048,"h":1402,"resize":"fit"},"medium":{"w":1200,"h":822,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":36,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:30:32 +0000 2019","id":1187557024139112448,"id_str":"1187557024139112448","full_text":"RT + @tutaleni: We had a lot of fun, asked many questions, learned about new tools, + talked through ideas and made new connections at the #Eme\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1613204671,"id_str":"1613204671","name":"ETC + Research Lab","screen_name":"okstate_etc","location":"OSU 326 Willard Hall","description":"Exploring + Innovative, Creative and Imaginative Ways to Improve Teaching and Learning + with Emerging Technologies.","url":"https:\/\/t.co\/hWiysnAxXW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hWiysnAxXW","expanded_url":"https:\/\/techplaygroundblog.wordpress.com\/","display_url":"techplaygroundblog.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":475,"friends_count":204,"listed_count":39,"created_at":"Mon + Jul 22 16:29:05 +0000 2013","favourites_count":592,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1292,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000370545468\/7abdcb924b2a422e3cffdfa95c339a2d_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000370545468\/7abdcb924b2a422e3cffdfa95c339a2d_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1613204671\/1398954413","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 23:17:34 +0000 2019","id":1187508461078102017,"id_str":"1187508461078102017","full_text":"We + had a lot of fun, asked many questions, learned about new tools, talked through + ideas and made new connections at the #EmergingTechShowcase. Thank you \ud83d\udc4f\ud83c\udfff\ud83d\udc4f\ud83c\udfff + to those who presented and who took part. #aect19inspired #EmergingTechShowcase + #aect19 https:\/\/t.co\/z1P3YuG8CY","truncated":false,"display_text_range":[0,246],"entities":{"hashtags":[{"text":"EmergingTechShowcase","indices":[121,142]},{"text":"aect19inspired","indices":[201,216]},{"text":"EmergingTechShowcase","indices":[217,238]},{"text":"aect19","indices":[239,246]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187508456443396096,"id_str":"1187508456443396096","indices":[247,270],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","url":"https:\/\/t.co\/z1P3YuG8CY","display_url":"pic.twitter.com\/z1P3YuG8CY","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187508461078102017\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1195,"h":1499,"resize":"fit"},"small":{"w":542,"h":680,"resize":"fit"},"medium":{"w":957,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187508456443396096,"id_str":"1187508456443396096","indices":[247,270],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","url":"https:\/\/t.co\/z1P3YuG8CY","display_url":"pic.twitter.com\/z1P3YuG8CY","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187508461078102017\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1195,"h":1499,"resize":"fit"},"small":{"w":542,"h":680,"resize":"fit"},"medium":{"w":957,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 03:13:40 +0000 2019","id":1187567875206180865,"id_str":"1187567875206180865","full_text":"A + great thanks to @AlbertRitzhaupt. Bye #aect19, going back to @UF_COE https:\/\/t.co\/CXXWIl2shF","truncated":false,"display_text_range":[0,70],"entities":{"hashtags":[{"text":"aect19","indices":[40,47]}],"symbols":[],"user_mentions":[{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[18,34]},{"screen_name":"UF_COE","name":"UF + College of Education","id":38508931,"id_str":"38508931","indices":[63,70]}],"urls":[{"url":"https:\/\/t.co\/CXXWIl2shF","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187561587642494983","display_url":"twitter.com\/hampthephd\/sta\u2026","indices":[71,94]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988637594,"id_str":"2988637594","name":"Rui + \"Tammy\" Huang","screen_name":"ruitammyhuang","location":"FL","description":"PhD, + fellow in Ed Tech @UF_COE, game-based learning and immersive technology researcher, + designer & developer. Learning experience design researcher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":185,"listed_count":6,"created_at":"Wed + Jan 21 02:08:50 +0000 2015","favourites_count":399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988637594\/1621697544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187561587642494983,"quoted_status_id_str":"1187561587642494983","quoted_status_permalink":{"url":"https:\/\/t.co\/CXXWIl2shF","expanded":"https:\/\/twitter.com\/hampthephd\/status\/1187561587642494983","display":"twitter.com\/hampthephd\/sta\u2026"},"quoted_status":{"created_at":"Fri + Oct 25 02:48:40 +0000 2019","id":1187561587642494983,"id_str":"1187561587642494983","full_text":"Last + dinner in Vegas with the PhD crew before flying back! It\u2019s been a great + trip! #aect19 https:\/\/t.co\/vMM3PSTcog","truncated":false,"display_text_range":[0,90],"entities":{"hashtags":[{"text":"aect19","indices":[83,90]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187561563302981632,"id_str":"1187561563302981632","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsQ8ymU8AArIi2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsQ8ymU8AArIi2.jpg","url":"https:\/\/t.co\/vMM3PSTcog","display_url":"pic.twitter.com\/vMM3PSTcog","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187561587642494983\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":988,"resize":"fit"},"small":{"w":680,"h":560,"resize":"fit"},"large":{"w":2048,"h":1686,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187561563302981632,"id_str":"1187561563302981632","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsQ8ymU8AArIi2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsQ8ymU8AArIi2.jpg","url":"https:\/\/t.co\/vMM3PSTcog","display_url":"pic.twitter.com\/vMM3PSTcog","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187561587642494983\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":988,"resize":"fit"},"small":{"w":680,"h":560,"resize":"fit"},"large":{"w":2048,"h":1686,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"107377ad9b54f000","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/107377ad9b54f000.json","place_type":"poi","name":"THE + Steak House","full_name":"THE Steak House","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.16448391,36.13717463],[-115.16448391,36.13717463],[-115.16448391,36.13717463],[-115.16448391,36.13717463]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:48:40 +0000 2019","id":1187561587642494983,"id_str":"1187561587642494983","full_text":"Last + dinner in Vegas with the PhD crew before flying back! It\u2019s been a great + trip! #aect19 https:\/\/t.co\/vMM3PSTcog","truncated":false,"display_text_range":[0,90],"entities":{"hashtags":[{"text":"aect19","indices":[83,90]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187561563302981632,"id_str":"1187561563302981632","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsQ8ymU8AArIi2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsQ8ymU8AArIi2.jpg","url":"https:\/\/t.co\/vMM3PSTcog","display_url":"pic.twitter.com\/vMM3PSTcog","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187561587642494983\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":988,"resize":"fit"},"small":{"w":680,"h":560,"resize":"fit"},"large":{"w":2048,"h":1686,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187561563302981632,"id_str":"1187561563302981632","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsQ8ymU8AArIi2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsQ8ymU8AArIi2.jpg","url":"https:\/\/t.co\/vMM3PSTcog","display_url":"pic.twitter.com\/vMM3PSTcog","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187561587642494983\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":988,"resize":"fit"},"small":{"w":680,"h":560,"resize":"fit"},"large":{"w":2048,"h":1686,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"107377ad9b54f000","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/107377ad9b54f000.json","place_type":"poi","name":"THE + Steak House","full_name":"THE Steak House","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.16448391,36.13717463],[-115.16448391,36.13717463],[-115.16448391,36.13717463],[-115.16448391,36.13717463]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 07:03:44 +0000 2019","id":1187625774724943872,"id_str":"1187625774724943872","full_text":"So + great sharing the one hour concurrent sessions with Dr. Elizabeth Boling from + @IndianaUniv about common interests on #instructionaldesign #design #aect19 + #aect19inspired @AECT @aectdddivision @jmulibraries @JMU https:\/\/t.co\/z3AVu6DBjc","truncated":false,"display_text_range":[0,213],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[120,140]},{"text":"design","indices":[141,148]},{"text":"aect19","indices":[149,156]},{"text":"aect19inspired","indices":[157,172]}],"symbols":[],"user_mentions":[{"screen_name":"IndianaUniv","name":"Indiana + University","id":100367386,"id_str":"100367386","indices":[81,93]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[173,178]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[179,194]},{"screen_name":"JMUlibraries","name":"JMU + Libraries","id":159108009,"id_str":"159108009","indices":[195,208]},{"screen_name":"JMU","name":"JMU","id":15998113,"id_str":"15998113","indices":[209,213]}],"urls":[],"media":[{"id":1187625759713591297,"id_str":"1187625759713591297","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHtLVg3VAAEe9-c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHtLVg3VAAEe9-c.jpg","url":"https:\/\/t.co\/z3AVu6DBjc","display_url":"pic.twitter.com\/z3AVu6DBjc","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187625774724943872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187625759713591297,"id_str":"1187625759713591297","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHtLVg3VAAEe9-c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHtLVg3VAAEe9-c.jpg","url":"https:\/\/t.co\/z3AVu6DBjc","display_url":"pic.twitter.com\/z3AVu6DBjc","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187625774724943872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187625759709384704,"id_str":"1187625759709384704","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHtLVg2U0AAUrVA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHtLVg2U0AAUrVA.jpg","url":"https:\/\/t.co\/z3AVu6DBjc","display_url":"pic.twitter.com\/z3AVu6DBjc","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187625774724943872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187625759709388800,"id_str":"1187625759709388800","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHtLVg2U4AA3YLg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHtLVg2U4AA3YLg.jpg","url":"https:\/\/t.co\/z3AVu6DBjc","display_url":"pic.twitter.com\/z3AVu6DBjc","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187625774724943872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 10:57:54 +0000 2019","id":1187684704780247041,"id_str":"1187684704780247041","full_text":"RT + @onmyway2here: The winner is....#AECT2019 #VT_IDT https:\/\/t.co\/uSWflKBlPg","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"AECT2019","indices":[35,44]},{"text":"VT_IDT","indices":[45,52]}],"symbols":[],"user_mentions":[{"screen_name":"onmyway2here","name":"Alicia + Johnson","id":1003232844,"id_str":"1003232844","indices":[3,16]}],"urls":[],"media":[{"id":1187561356620206081,"id_str":"1187561356620206081","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsQwwpUEAEEnWi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsQwwpUEAEEnWi.jpg","url":"https:\/\/t.co\/uSWflKBlPg","display_url":"pic.twitter.com\/uSWflKBlPg","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187561363406651393\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"}},"source_status_id":1187561363406651393,"source_status_id_str":"1187561363406651393","source_user_id":1003232844,"source_user_id_str":"1003232844"}]},"extended_entities":{"media":[{"id":1187561356620206081,"id_str":"1187561356620206081","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsQwwpUEAEEnWi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsQwwpUEAEEnWi.jpg","url":"https:\/\/t.co\/uSWflKBlPg","display_url":"pic.twitter.com\/uSWflKBlPg","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187561363406651393\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"}},"source_status_id":1187561363406651393,"source_status_id_str":"1187561363406651393","source_user_id":1003232844,"source_user_id_str":"1003232844","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 02:47:47 +0000 2019","id":1187561363406651393,"id_str":"1187561363406651393","full_text":"The + winner is....#AECT2019 #VT_IDT https:\/\/t.co\/uSWflKBlPg","truncated":false,"display_text_range":[0,34],"entities":{"hashtags":[{"text":"AECT2019","indices":[17,26]},{"text":"VT_IDT","indices":[27,34]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187561356620206081,"id_str":"1187561356620206081","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsQwwpUEAEEnWi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsQwwpUEAEEnWi.jpg","url":"https:\/\/t.co\/uSWflKBlPg","display_url":"pic.twitter.com\/uSWflKBlPg","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187561363406651393\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187561356620206081,"id_str":"1187561356620206081","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsQwwpUEAEEnWi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsQwwpUEAEEnWi.jpg","url":"https:\/\/t.co\/uSWflKBlPg","display_url":"pic.twitter.com\/uSWflKBlPg","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187561363406651393\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1003232844,"id_str":"1003232844","name":"Alicia + Johnson","screen_name":"onmyway2here","location":"Christiansburg, VA","description":"Instructional + Designer of Instructional Design (ID) Instruction PhD@virginiatechIDT. Good + days = Students, ID, Instruction, Research, Edtech, & Learning.","url":"https:\/\/t.co\/cCcuGeqoTV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cCcuGeqoTV","expanded_url":"https:\/\/liberalarts.vt.edu\/departments-and-schools\/school-of-education\/faculty\/alicia-johnson.html","display_url":"liberalarts.vt.edu\/departments-an\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":199,"friends_count":382,"listed_count":2,"created_at":"Tue + Dec 11 03:55:07 +0000 2012","favourites_count":4008,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":808,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3195564046\/04c6c148cecd8aeabb563780bedea34b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3195564046\/04c6c148cecd8aeabb563780bedea34b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1003232844\/1355198723","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 05:45:18 +0000 2019","id":1187606035722227712,"id_str":"1187606035722227712","full_text":"Interesting....What + tool did you use? Definitely evidence of #virtualityculture shift.... #Technology + mediating #humanpresence that can\u2019t be explained by #orality or #literacy + culture... #aect19 #aect19inspired #AR #AugmentedReality https:\/\/t.co\/LcVYPjUUG3","truncated":false,"display_text_range":[0,232],"entities":{"hashtags":[{"text":"virtualityculture","indices":[61,79]},{"text":"Technology","indices":[90,101]},{"text":"humanpresence","indices":[112,126]},{"text":"orality","indices":[154,162]},{"text":"literacy","indices":[166,175]},{"text":"aect19","indices":[187,194]},{"text":"aect19inspired","indices":[195,210]},{"text":"AR","indices":[211,214]},{"text":"AugmentedReality","indices":[215,232]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LcVYPjUUG3","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124","display_url":"twitter.com\/art_brownlow\/s\u2026","indices":[233,256]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"8fa6d7a33b83ef26","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8fa6d7a33b83ef26.json","place_type":"city","name":"Paradise","full_name":"Paradise, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.2092535,35.984784],[-115.0610763,35.984784],[-115.0610763,36.137145],[-115.2092535,36.137145]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1186330250994565124,"quoted_status_id_str":"1186330250994565124","quoted_status_permalink":{"url":"https:\/\/t.co\/LcVYPjUUG3","expanded":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124","display":"twitter.com\/art_brownlow\/s\u2026"},"quoted_status":{"created_at":"Mon + Oct 21 17:15:47 +0000 2019","id":1186330250994565124,"id_str":"1186330250994565124","full_text":"Learning + a lot about instructional use of AR @AECT. Meanwhile, we had a visitor at + our session. #aect2019 #aect19inspired https:\/\/t.co\/HjfO4IZVEm","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"aect2019","indices":[96,105]},{"text":"aect19inspired","indices":[106,121]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[45,50]}],"urls":[],"media":[{"id":1186330138339753986,"id_str":"1186330138339753986","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","url":"https:\/\/t.co\/HjfO4IZVEm","display_url":"pic.twitter.com\/HjfO4IZVEm","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186330138339753986,"id_str":"1186330138339753986","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","url":"https:\/\/t.co\/HjfO4IZVEm","display_url":"pic.twitter.com\/HjfO4IZVEm","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}},"video_info":{"aspect_ratio":[37,80],"duration_millis":11690,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/320x690\/qzYSXhtp8GVHwAkS.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/pl\/HOQqLq2LCOe8QZdY.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/360x778\/mxoPjfmwzOZWrqSf.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/592x1280\/pBUtbxYAYdW5YWLx.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":887813304311087104,"id_str":"887813304311087104","name":"Art + Brownlow","screen_name":"art_brownlow","location":"Brownsville, TX","description":"UTRGV + Music Prof & Academic Innovation Fellow, UT System Academy of Distinguished + Teachers, ROTA 2016, \uf8ffADE 2015, Braves fan, Husband & Dad","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":291,"friends_count":338,"listed_count":5,"created_at":"Wed + Jul 19 23:16:01 +0000 2017","favourites_count":237,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":132,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887813304311087104\/1500521777","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":42,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 11:42:10 +0000 2019","id":1187695846239813638,"id_str":"1187695846239813638","full_text":"RT + @Chiffonbest: My first AECT presentation! Nailed it! So thankful for my Morehead + State professors who inspired me to write and complete\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Chiffonbest","name":"Cassandra + Best, Ed.D","id":110001691,"id_str":"110001691","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1131688878,"id_str":"1131688878","name":"Morehead + State News","screen_name":"News_MSU","location":"Morehead, KY","description":"Official + source of info for media, govt, agencies, writers, orgs, etc. Prospective\/current + students\/families, alumni & employees may also follow @moreheadstate.","url":"https:\/\/t.co\/Gu7y4AKSrW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Gu7y4AKSrW","expanded_url":"http:\/\/www.moreheadstate.edu\/news","display_url":"moreheadstate.edu\/news","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3856,"friends_count":2195,"listed_count":29,"created_at":"Tue + Jan 29 17:49:12 +0000 2013","favourites_count":3501,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13448,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1408426823680073732\/BPFFt0xD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1408426823680073732\/BPFFt0xD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1131688878\/1616417709","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"082280","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 00:43:55 +0000 2019","id":1187530189967749121,"id_str":"1187530189967749121","full_text":"My + first AECT presentation! Nailed it! So thankful for my Morehead State professors + who inspired me to write and complete the proposal! #aect19inspired https:\/\/t.co\/4T0sbNcFHH","truncated":false,"display_text_range":[0,151],"entities":{"hashtags":[{"text":"aect19inspired","indices":[136,151]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187530113128091648,"id_str":"1187530113128091648","indices":[152,175],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr0WJkUUAA5nn1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr0WJkUUAA5nn1.jpg","url":"https:\/\/t.co\/4T0sbNcFHH","display_url":"pic.twitter.com\/4T0sbNcFHH","expanded_url":"https:\/\/twitter.com\/Chiffonbest\/status\/1187530189967749121\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187530113128091648,"id_str":"1187530113128091648","indices":[152,175],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr0WJkUUAA5nn1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr0WJkUUAA5nn1.jpg","url":"https:\/\/t.co\/4T0sbNcFHH","display_url":"pic.twitter.com\/4T0sbNcFHH","expanded_url":"https:\/\/twitter.com\/Chiffonbest\/status\/1187530189967749121\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110001691,"id_str":"110001691","name":"Cassandra + Best, Ed.D","screen_name":"Chiffonbest","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":106,"listed_count":0,"created_at":"Sun + Jan 31 00:51:44 +0000 2010","favourites_count":18,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1186432682307158016\/GcigpEuF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186432682307158016\/GcigpEuF_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:31:19 +0000 2019","id":1187557218591350785,"id_str":"1187557218591350785","full_text":"RT + @WilsonInEdu: As you get ready to leave Vegas, keep in mind that (in this + one instance) you\u2019re excused from the rules. In other words, w\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WilsonInEdu","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","id":489118534,"id_str":"489118534","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 02:18:32 +0000 2019","id":1187554004147949568,"id_str":"1187554004147949568","full_text":"As + you get ready to leave Vegas, keep in mind that (in this one instance) you\u2019re + excused from the rules. In other words, what happened at #aect19 - #aect19inspired + in Vegas does not have to stay in Vegas.","truncated":false,"display_text_range":[0,204],"entities":{"hashtags":[{"text":"aect19","indices":[138,145]},{"text":"aect19inspired","indices":[148,163]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 10:23:44 +0000 2019","id":1187676108440952837,"id_str":"1187676108440952837","full_text":"RT + @hodgesc: Not too many years ago, the thought of walking by the @SpringerEdu + table and seeing these would have seemed like an impossibil\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"SpringerEdu","name":"Springer + Education","id":347188522,"id_str":"347188522","indices":[67,79]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":123168263,"id_str":"123168263","name":"Irene + Maweu \ud83c\udf3b\ud83c\udf3b","screen_name":"wavinya66","location":"Kenya","description":"By + Faith \/ With Respect \/ Facilitating from the heart \/ Liberating Structures + Gospel \/ IAF Member","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":762,"friends_count":772,"listed_count":9,"created_at":"Mon + Mar 15 06:31:31 +0000 2010","favourites_count":10218,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5795,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123168263\/1610274071","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 22:30:00 +0000 2019","id":1187496489230176257,"id_str":"1187496489230176257","full_text":"Not + too many years ago, the thought of walking by the @SpringerEdu table and seeing + these would have seemed like an impossibility. @AECT helped make them and + so many other things possible for me. What''s your next project? #aect19inspired + https:\/\/t.co\/tyIkFJAINL","truncated":false,"display_text_range":[0,239],"entities":{"hashtags":[{"text":"aect19inspired","indices":[224,239]}],"symbols":[],"user_mentions":[{"screen_name":"SpringerEdu","name":"Springer + Education","id":347188522,"id_str":"347188522","indices":[54,66]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[132,137]}],"urls":[],"media":[{"id":1187486977341263872,"id_str":"1187486977341263872","indices":[240,263],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","url":"https:\/\/t.co\/tyIkFJAINL","display_url":"pic.twitter.com\/tyIkFJAINL","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187496489230176257\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":466,"resize":"fit"},"large":{"w":2048,"h":1402,"resize":"fit"},"medium":{"w":1200,"h":822,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187486977341263872,"id_str":"1187486977341263872","indices":[240,263],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","url":"https:\/\/t.co\/tyIkFJAINL","display_url":"pic.twitter.com\/tyIkFJAINL","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187496489230176257\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":466,"resize":"fit"},"large":{"w":2048,"h":1402,"resize":"fit"},"medium":{"w":1200,"h":822,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":36,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 13:53:11 +0000 2019","id":1187728817562898438,"id_str":"1187728817562898438","full_text":"@mete_akca + Thanks Mete you rock. Wish we could hav see. Each other at #aect19inspired","truncated":false,"display_text_range":[11,85],"entities":{"hashtags":[{"text":"aect19inspired","indices":[70,85]}],"symbols":[],"user_mentions":[{"screen_name":"mete_akca","name":"Mete + Akcaoglu","id":16245045,"id_str":"16245045","indices":[0,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187715140910751746,"in_reply_to_status_id_str":"1187715140910751746","in_reply_to_user_id":16245045,"in_reply_to_user_id_str":"16245045","in_reply_to_screen_name":"mete_akca","user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:28:13 +0000 2019","id":1187556438165590016,"id_str":"1187556438165590016","full_text":"RT + @Chiffonbest: #aect2019 https:\/\/t.co\/qov176MK65","truncated":false,"display_text_range":[0,50],"entities":{"hashtags":[{"text":"aect2019","indices":[17,26]}],"symbols":[],"user_mentions":[{"screen_name":"Chiffonbest","name":"Cassandra + Best, Ed.D","id":110001691,"id_str":"110001691","indices":[3,15]}],"urls":[],"media":[{"id":1187527687352401920,"id_str":"1187527687352401920","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/EHryI82UwAAwewO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHryI82UwAAwewO.jpg","url":"https:\/\/t.co\/qov176MK65","display_url":"pic.twitter.com\/qov176MK65","expanded_url":"https:\/\/twitter.com\/Chiffonbest\/status\/1187527693077643264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":1187527693077643264,"source_status_id_str":"1187527693077643264","source_user_id":110001691,"source_user_id_str":"110001691"}]},"extended_entities":{"media":[{"id":1187527687352401920,"id_str":"1187527687352401920","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/EHryI82UwAAwewO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHryI82UwAAwewO.jpg","url":"https:\/\/t.co\/qov176MK65","display_url":"pic.twitter.com\/qov176MK65","expanded_url":"https:\/\/twitter.com\/Chiffonbest\/status\/1187527693077643264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":1187527693077643264,"source_status_id_str":"1187527693077643264","source_user_id":110001691,"source_user_id_str":"110001691","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 00:33:59 +0000 2019","id":1187527693077643264,"id_str":"1187527693077643264","full_text":"#aect2019 + https:\/\/t.co\/qov176MK65","truncated":false,"display_text_range":[0,9],"entities":{"hashtags":[{"text":"aect2019","indices":[0,9]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187527687352401920,"id_str":"1187527687352401920","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/EHryI82UwAAwewO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHryI82UwAAwewO.jpg","url":"https:\/\/t.co\/qov176MK65","display_url":"pic.twitter.com\/qov176MK65","expanded_url":"https:\/\/twitter.com\/Chiffonbest\/status\/1187527693077643264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187527687352401920,"id_str":"1187527687352401920","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/EHryI82UwAAwewO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHryI82UwAAwewO.jpg","url":"https:\/\/t.co\/qov176MK65","display_url":"pic.twitter.com\/qov176MK65","expanded_url":"https:\/\/twitter.com\/Chiffonbest\/status\/1187527693077643264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110001691,"id_str":"110001691","name":"Cassandra + Best, Ed.D","screen_name":"Chiffonbest","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":106,"listed_count":0,"created_at":"Sun + Jan 31 00:51:44 +0000 2010","favourites_count":18,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1186432682307158016\/GcigpEuF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186432682307158016\/GcigpEuF_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Fri + Oct 25 02:28:50 +0000 2019","id":1187556596240408577,"id_str":"1187556596240408577","full_text":"RT + @tutaleni: Good job presenting @X1Tab on The Rural vs Urban Divide in Educational + Technology. #aect19inspired @EdTechOkstate https:\/\/t\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1613204671,"id_str":"1613204671","name":"ETC + Research Lab","screen_name":"okstate_etc","location":"OSU 326 Willard Hall","description":"Exploring + Innovative, Creative and Imaginative Ways to Improve Teaching and Learning + with Emerging Technologies.","url":"https:\/\/t.co\/hWiysnAxXW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hWiysnAxXW","expanded_url":"https:\/\/techplaygroundblog.wordpress.com\/","display_url":"techplaygroundblog.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":475,"friends_count":204,"listed_count":39,"created_at":"Mon + Jul 22 16:29:05 +0000 2013","favourites_count":592,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1292,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000370545468\/7abdcb924b2a422e3cffdfa95c339a2d_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000370545468\/7abdcb924b2a422e3cffdfa95c339a2d_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1613204671\/1398954413","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 23:30:40 +0000 2019","id":1187511755745792000,"id_str":"1187511755745792000","full_text":"Good + job presenting @X1Tab on The Rural vs Urban Divide in Educational Technology. + #aect19inspired @EdTechOkstate https:\/\/t.co\/B6WCx9zrfG","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect19inspired","indices":[84,99]}],"symbols":[],"user_mentions":[{"screen_name":"EdTechOkstate","name":"Okstate + Ed Tech","id":4141659852,"id_str":"4141659852","indices":[101,115]}],"urls":[],"media":[{"id":1187511750914007040,"id_str":"1187511750914007040","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrjpU_U4AAUwx7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrjpU_U4AAUwx7.jpg","url":"https:\/\/t.co\/B6WCx9zrfG","display_url":"pic.twitter.com\/B6WCx9zrfG","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187511755745792000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":314,"resize":"fit"},"large":{"w":2048,"h":946,"resize":"fit"},"medium":{"w":1200,"h":554,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187511750914007040,"id_str":"1187511750914007040","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrjpU_U4AAUwx7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrjpU_U4AAUwx7.jpg","url":"https:\/\/t.co\/B6WCx9zrfG","display_url":"pic.twitter.com\/B6WCx9zrfG","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187511755745792000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":314,"resize":"fit"},"large":{"w":2048,"h":946,"resize":"fit"},"medium":{"w":1200,"h":554,"resize":"fit"}},"ext_alt_text":null},{"id":1187511750918164480,"id_str":"1187511750918164480","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrjpVAUUAA3XPB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrjpVAUUAA3XPB.jpg","url":"https:\/\/t.co\/B6WCx9zrfG","display_url":"pic.twitter.com\/B6WCx9zrfG","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187511755745792000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 12:52:02 +0000 2019","id":1187713428107870208,"id_str":"1187713428107870208","full_text":"Heading + home after #aect19inspired ? The airport #LAS is always very busy... give + yourself at least 1.5 hours once you get here - especially if checking a bag. + TSA is efficient but lots and lots of folks to move through.","truncated":false,"display_text_range":[0,220],"entities":{"hashtags":[{"text":"aect19inspired","indices":[19,34]},{"text":"LAS","indices":[49,53]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2905458781,"id_str":"2905458781","name":"Ross + Perkins, PhD","screen_name":"DrRossPerkins","location":"Apex, NC","description":"Asc + Prof @ Boise State. EdS\/EdD ProgCoord. https:\/\/t.co\/8jp7WXqbV1 | Huge + listserv influencer, 1998-2006.","url":"https:\/\/t.co\/8jp7WXqbV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[43,66]}]}},"protected":false,"followers_count":773,"friends_count":485,"listed_count":21,"created_at":"Thu + Nov 20 19:52:09 +0000 2014","favourites_count":3672,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2751,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2905458781\/1618315302","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:22:05 +0000 2019","id":1187554897769697286,"id_str":"1187554897769697286","full_text":"RT + @DrTerriC: Really enjoying the interactions and conversations at #AECT19 .. + I feel as though @michaelmgrant and @dctrcurry ''s hard work\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"AECT19","indices":[68,75]}],"symbols":[],"user_mentions":[{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[3,12]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[96,110]},{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[115,125]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 23:26:42 +0000 2019","id":1187510757266583552,"id_str":"1187510757266583552","full_text":"Really + enjoying the interactions and conversations at #AECT19 .. I feel as though + @michaelmgrant and @dctrcurry ''s hard work is paying off for all attendees. + #aect19inspired See you at the membership meeting at 5!","truncated":false,"display_text_range":[0,214],"entities":{"hashtags":[{"text":"AECT19","indices":[54,61]},{"text":"aect19inspired","indices":[158,173]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[82,96]},{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[101,111]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 08:15:48 +0000 2019","id":1187643910752858112,"id_str":"1187643910752858112","full_text":"Happy + runners. Good people. Thanks for starting the day off with a breath of fresh + air, #aect19inspired athletes! https:\/\/t.co\/5PvkLRmCvs","truncated":false,"display_text_range":[0,113],"entities":{"hashtags":[{"text":"aect19inspired","indices":[88,103]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187643895951179777,"id_str":"1187643895951179777","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/EHtb1LnUwAEPhes.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHtb1LnUwAEPhes.jpg","url":"https:\/\/t.co\/5PvkLRmCvs","display_url":"pic.twitter.com\/5PvkLRmCvs","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187643910752858112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1538,"resize":"fit"},"small":{"w":680,"h":511,"resize":"fit"},"medium":{"w":1200,"h":901,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187643895951179777,"id_str":"1187643895951179777","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/EHtb1LnUwAEPhes.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHtb1LnUwAEPhes.jpg","url":"https:\/\/t.co\/5PvkLRmCvs","display_url":"pic.twitter.com\/5PvkLRmCvs","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187643910752858112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1538,"resize":"fit"},"small":{"w":680,"h":511,"resize":"fit"},"medium":{"w":1200,"h":901,"resize":"fit"}},"ext_alt_text":null},{"id":1187643895951192065,"id_str":"1187643895951192065","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/EHtb1LnU8AEVk_c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHtb1LnU8AEVk_c.jpg","url":"https:\/\/t.co\/5PvkLRmCvs","display_url":"pic.twitter.com\/5PvkLRmCvs","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187643910752858112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 13:36:40 +0000 2019","id":1187724659019735042,"id_str":"1187724659019735042","full_text":"RT + @DrTerriC: Been talking to #iste20 research reviewers all week at #aect19inspired + and through email. I am so fortunate to have such enga\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"iste20","indices":[30,37]},{"text":"aect19inspired","indices":[69,84]}],"symbols":[],"user_mentions":[{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 14:30:14 +0000 2019","id":1187375752095899648,"id_str":"1187375752095899648","full_text":"Been + talking to #iste20 research reviewers all week at #aect19inspired and through + email. I am so fortunate to have such engaged and thoughtful reviewers. #iste20 + is gonna be great.","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"iste20","indices":[16,23]},{"text":"aect19inspired","indices":[55,70]},{"text":"iste20","indices":[155,162]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 03:36:04 +0000 2019","id":1187573514649210880,"id_str":"1187573514649210880","full_text":"Finished + off Day 4 of #AECT19 with the university reception and grabbing a pic with + these amazing women all who inspire and encourage me in various ways. @LaurenBagdy + @vdennen @eromerohall https:\/\/t.co\/MzwqmNZPSE","truncated":false,"display_text_range":[0,189],"entities":{"hashtags":[{"text":"AECT19","indices":[22,29]}],"symbols":[],"user_mentions":[{"screen_name":"LaurenBagdy","name":"Lauren + Bagdy","id":22214646,"id_str":"22214646","indices":[155,167]},{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[168,176]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[177,189]}],"urls":[],"media":[{"id":1187573508873699328,"id_str":"1187573508873699328","indices":[190,213],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsb0HUUwAA6qk5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsb0HUUwAA6qk5.jpg","url":"https:\/\/t.co\/MzwqmNZPSE","display_url":"pic.twitter.com\/MzwqmNZPSE","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1187573514649210880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187573508873699328,"id_str":"1187573508873699328","indices":[190,213],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsb0HUUwAA6qk5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsb0HUUwAA6qk5.jpg","url":"https:\/\/t.co\/MzwqmNZPSE","display_url":"pic.twitter.com\/MzwqmNZPSE","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1187573514649210880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"8fa6d7a33b83ef26","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8fa6d7a33b83ef26.json","place_type":"city","name":"Paradise","full_name":"Paradise, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.2092535,35.984784],[-115.0610763,35.984784],[-115.0610763,36.137145],[-115.2092535,36.137145]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 14:06:04 +0000 2019","id":1187732056840658944,"id_str":"1187732056840658944","full_text":"This + was a great session! #aect19inspired #aect19 https:\/\/t.co\/HbWRAAuY8f","truncated":false,"display_text_range":[0,49],"entities":{"hashtags":[{"text":"aect19inspired","indices":[26,41]},{"text":"aect19","indices":[42,49]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HbWRAAuY8f","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187052312495316992","display_url":"twitter.com\/hodgesc\/status\u2026","indices":[50,73]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1187052312495316992,"quoted_status_id_str":"1187052312495316992","quoted_status_permalink":{"url":"https:\/\/t.co\/HbWRAAuY8f","expanded":"https:\/\/twitter.com\/hodgesc\/status\/1187052312495316992","display":"twitter.com\/hodgesc\/status\u2026"},"quoted_status":{"created_at":"Wed + Oct 23 17:05:00 +0000 2019","id":1187052312495316992,"id_str":"1187052312495316992","full_text":"Chat + with me today about @AECTTechTrends at the Meet the Editors Roundtables\nWed, + Oct 23, 4:00 to 4:50pm, Convention Center, Pavilion 4 #aect19 #aect19inspired","truncated":false,"display_text_range":[0,159],"entities":{"hashtags":[{"text":"aect19","indices":[136,143]},{"text":"aect19inspired","indices":[144,159]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[25,40]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 10:58:53 +0000 2019","id":1187684952894332928,"id_str":"1187684952894332928","full_text":"RT + @hampthephd: Last dinner in Vegas with the PhD crew before flying back! It\u2019s + been a great trip! #aect19 https:\/\/t.co\/vMM3PSTcog","truncated":false,"display_text_range":[0,130],"entities":{"hashtags":[{"text":"aect19","indices":[99,106]}],"symbols":[],"user_mentions":[{"screen_name":"hampthephd","name":"John + Hampton, PhD","id":936686250,"id_str":"936686250","indices":[3,14]}],"urls":[],"media":[{"id":1187561563302981632,"id_str":"1187561563302981632","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsQ8ymU8AArIi2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsQ8ymU8AArIi2.jpg","url":"https:\/\/t.co\/vMM3PSTcog","display_url":"pic.twitter.com\/vMM3PSTcog","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187561587642494983\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":988,"resize":"fit"},"small":{"w":680,"h":560,"resize":"fit"},"large":{"w":2048,"h":1686,"resize":"fit"}},"source_status_id":1187561587642494983,"source_status_id_str":"1187561587642494983","source_user_id":936686250,"source_user_id_str":"936686250"}]},"extended_entities":{"media":[{"id":1187561563302981632,"id_str":"1187561563302981632","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsQ8ymU8AArIi2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsQ8ymU8AArIi2.jpg","url":"https:\/\/t.co\/vMM3PSTcog","display_url":"pic.twitter.com\/vMM3PSTcog","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187561587642494983\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":988,"resize":"fit"},"small":{"w":680,"h":560,"resize":"fit"},"large":{"w":2048,"h":1686,"resize":"fit"}},"source_status_id":1187561587642494983,"source_status_id_str":"1187561587642494983","source_user_id":936686250,"source_user_id_str":"936686250","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 02:48:40 +0000 2019","id":1187561587642494983,"id_str":"1187561587642494983","full_text":"Last + dinner in Vegas with the PhD crew before flying back! It\u2019s been a great + trip! #aect19 https:\/\/t.co\/vMM3PSTcog","truncated":false,"display_text_range":[0,90],"entities":{"hashtags":[{"text":"aect19","indices":[83,90]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187561563302981632,"id_str":"1187561563302981632","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsQ8ymU8AArIi2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsQ8ymU8AArIi2.jpg","url":"https:\/\/t.co\/vMM3PSTcog","display_url":"pic.twitter.com\/vMM3PSTcog","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187561587642494983\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":988,"resize":"fit"},"small":{"w":680,"h":560,"resize":"fit"},"large":{"w":2048,"h":1686,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187561563302981632,"id_str":"1187561563302981632","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsQ8ymU8AArIi2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsQ8ymU8AArIi2.jpg","url":"https:\/\/t.co\/vMM3PSTcog","display_url":"pic.twitter.com\/vMM3PSTcog","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187561587642494983\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":988,"resize":"fit"},"small":{"w":680,"h":560,"resize":"fit"},"large":{"w":2048,"h":1686,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"107377ad9b54f000","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/107377ad9b54f000.json","place_type":"poi","name":"THE + Steak House","full_name":"THE Steak House","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.16448391,36.13717463],[-115.16448391,36.13717463],[-115.16448391,36.13717463],[-115.16448391,36.13717463]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 13:33:55 +0000 2019","id":1187723966330392576,"id_str":"1187723966330392576","full_text":"RT + @LearnEngage: Will you uncover The Secret of the Learner Engagement? Jump + start your day at #AECT19 with a little intrigue at the Inspir\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[95,102]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 13:00:01 +0000 2019","id":1187715436185448449,"id_str":"1187715436185448449","full_text":"Will + you uncover The Secret of the Learner Engagement? Jump start your day at #AECT19 + with a little intrigue at the Inspire! EdTech Mystery Series, hosted by the + incomparable @caranorth11 at 9am in Conf Room 8! #aect19inspired @AECT https:\/\/t.co\/9UOIpRvHeY","truncated":false,"display_text_range":[0,232],"entities":{"hashtags":[{"text":"AECT19","indices":[78,85]},{"text":"aect19inspired","indices":[211,226]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[175,187]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[227,232]}],"urls":[],"media":[{"id":1187703135965347840,"id_str":"1187703135965347840","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EHuRtZ3VAAAVmwY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHuRtZ3VAAAVmwY.jpg","url":"https:\/\/t.co\/9UOIpRvHeY","display_url":"pic.twitter.com\/9UOIpRvHeY","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187715436185448449\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":340,"resize":"fit"},"large":{"w":2000,"h":1000,"resize":"fit"},"medium":{"w":1200,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187703135965347840,"id_str":"1187703135965347840","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EHuRtZ3VAAAVmwY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHuRtZ3VAAAVmwY.jpg","url":"https:\/\/t.co\/9UOIpRvHeY","display_url":"pic.twitter.com\/9UOIpRvHeY","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187715436185448449\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":340,"resize":"fit"},"large":{"w":2000,"h":1000,"resize":"fit"},"medium":{"w":1200,"h":600,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:30:41 +0000 2019","id":1187557060583444481,"id_str":"1187557060583444481","full_text":"RT + @tutaleni: Who knew Newton\u2019s law could be this fun? #AECT19inspired #EmergingTechShowcase + https:\/\/t.co\/r8wJlakPFI","truncated":false,"display_text_range":[0,116],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[55,70]},{"text":"EmergingTechShowcase","indices":[71,92]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]}],"urls":[],"media":[{"id":1187482047473782784,"id_str":"1187482047473782784","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","url":"https:\/\/t.co\/r8wJlakPFI","display_url":"pic.twitter.com\/r8wJlakPFI","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187482052481843200\/photo\/1","type":"photo","sizes":{"large":{"w":1152,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}},"source_status_id":1187482052481843200,"source_status_id_str":"1187482052481843200","source_user_id":48223678,"source_user_id_str":"48223678"}]},"extended_entities":{"media":[{"id":1187482047473782784,"id_str":"1187482047473782784","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","url":"https:\/\/t.co\/r8wJlakPFI","display_url":"pic.twitter.com\/r8wJlakPFI","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187482052481843200\/photo\/1","type":"photo","sizes":{"large":{"w":1152,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}},"source_status_id":1187482052481843200,"source_status_id_str":"1187482052481843200","source_user_id":48223678,"source_user_id_str":"48223678","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1613204671,"id_str":"1613204671","name":"ETC + Research Lab","screen_name":"okstate_etc","location":"OSU 326 Willard Hall","description":"Exploring + Innovative, Creative and Imaginative Ways to Improve Teaching and Learning + with Emerging Technologies.","url":"https:\/\/t.co\/hWiysnAxXW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hWiysnAxXW","expanded_url":"https:\/\/techplaygroundblog.wordpress.com\/","display_url":"techplaygroundblog.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":475,"friends_count":204,"listed_count":39,"created_at":"Mon + Jul 22 16:29:05 +0000 2013","favourites_count":592,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1292,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000370545468\/7abdcb924b2a422e3cffdfa95c339a2d_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000370545468\/7abdcb924b2a422e3cffdfa95c339a2d_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1613204671\/1398954413","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:32:38 +0000 2019","id":1187482052481843200,"id_str":"1187482052481843200","full_text":"Who + knew Newton\u2019s law could be this fun? #AECT19inspired #EmergingTechShowcase + https:\/\/t.co\/r8wJlakPFI","truncated":false,"display_text_range":[0,78],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[41,56]},{"text":"EmergingTechShowcase","indices":[57,78]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187482047473782784,"id_str":"1187482047473782784","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","url":"https:\/\/t.co\/r8wJlakPFI","display_url":"pic.twitter.com\/r8wJlakPFI","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187482052481843200\/photo\/1","type":"photo","sizes":{"large":{"w":1152,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187482047473782784,"id_str":"1187482047473782784","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","url":"https:\/\/t.co\/r8wJlakPFI","display_url":"pic.twitter.com\/r8wJlakPFI","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187482052481843200\/photo\/1","type":"photo","sizes":{"large":{"w":1152,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:28:06 +0000 2019","id":1187556407811493888,"id_str":"1187556407811493888","full_text":"RT + @WilsonInEdu: Along with @troman at #aect2019 #aect19inspired from @KSUITEC + @KSUBCOE @kennesawstate #KSUITEC https:\/\/t.co\/MXJPPRJZjK","truncated":false,"display_text_range":[0,135],"entities":{"hashtags":[{"text":"aect2019","indices":[39,48]},{"text":"aect19inspired","indices":[49,64]}],"symbols":[],"user_mentions":[{"screen_name":"WilsonInEdu","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","id":489118534,"id_str":"489118534","indices":[3,15]},{"screen_name":"troman","name":"Dr. + Tiffany Roman","id":15299255,"id_str":"15299255","indices":[28,35]},{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[70,78]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 01:37:25 +0000 2019","id":1187543656590270464,"id_str":"1187543656590270464","full_text":"Along + with @troman at #aect2019 #aect19inspired from @KSUITEC @KSUBCOE @kennesawstate + #KSUITEC https:\/\/t.co\/MXJPPRJZjK","truncated":false,"display_text_range":[0,94],"entities":{"hashtags":[{"text":"aect2019","indices":[22,31]},{"text":"aect19inspired","indices":[32,47]},{"text":"KSUITEC","indices":[86,94]}],"symbols":[],"user_mentions":[{"screen_name":"troman","name":"Dr. + Tiffany Roman","id":15299255,"id_str":"15299255","indices":[11,18]},{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[53,61]},{"screen_name":"kennesawstate","name":"Kennesaw + State","id":54637018,"id_str":"54637018","indices":[71,85]}],"urls":[],"media":[{"id":1187543650013573121,"id_str":"1187543650013573121","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsAqGZUcAE8WlC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsAqGZUcAE8WlC.jpg","url":"https:\/\/t.co\/MXJPPRJZjK","display_url":"pic.twitter.com\/MXJPPRJZjK","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1187543656590270464\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1179,"resize":"fit"},"small":{"w":680,"h":668,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1941,"h":1907,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187543650013573121,"id_str":"1187543650013573121","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsAqGZUcAE8WlC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsAqGZUcAE8WlC.jpg","url":"https:\/\/t.co\/MXJPPRJZjK","display_url":"pic.twitter.com\/MXJPPRJZjK","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1187543656590270464\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1179,"resize":"fit"},"small":{"w":680,"h":668,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1941,"h":1907,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:43:50 +0000 2019","id":1187560369901850624,"id_str":"1187560369901850624","full_text":"Thank + you #AECTSTC for giving us the Outstanding Article Award. Also, congrats, + Dr. @tintinluo, my advisor and co-author. I wouldn''t have gotten this award + without her guidance and support. #aect19 #aect19inspired #GoMonarchs https:\/\/t.co\/yebLI3bRfB","truncated":false,"display_text_range":[0,225],"entities":{"hashtags":[{"text":"AECTSTC","indices":[10,18]},{"text":"aect19","indices":[190,197]},{"text":"aect19inspired","indices":[198,213]},{"text":"GoMonarchs","indices":[214,225]}],"symbols":[],"user_mentions":[{"screen_name":"tintinluo","name":"Tian + Luo","id":29474883,"id_str":"29474883","indices":[84,94]}],"urls":[],"media":[{"id":1187560358333968384,"id_str":"1187560358333968384","indices":[226,249],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsP2pvU8AAAzTB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsP2pvU8AAAzTB.jpg","url":"https:\/\/t.co\/yebLI3bRfB","display_url":"pic.twitter.com\/yebLI3bRfB","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187560369901850624\/photo\/1","type":"photo","sizes":{"small":{"w":675,"h":487,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":487,"resize":"fit"},"large":{"w":675,"h":487,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187560358333968384,"id_str":"1187560358333968384","indices":[226,249],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsP2pvU8AAAzTB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsP2pvU8AAAzTB.jpg","url":"https:\/\/t.co\/yebLI3bRfB","display_url":"pic.twitter.com\/yebLI3bRfB","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187560369901850624\/photo\/1","type":"photo","sizes":{"small":{"w":675,"h":487,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":487,"resize":"fit"},"large":{"w":675,"h":487,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":25,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 10:57:05 +0000 2019","id":1187684500509085697,"id_str":"1187684500509085697","full_text":"Almost + time to leave #aect19 #aect19inspired. But before I go how could I not comment + on my room decor. Noice. https:\/\/t.co\/I54h8m6GaK","truncated":false,"display_text_range":[0,110],"entities":{"hashtags":[{"text":"aect19","indices":[21,28]},{"text":"aect19inspired","indices":[29,44]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187684489075412993,"id_str":"1187684489075412993","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/EHuAwAyU0AE5g6k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHuAwAyU0AE5g6k.jpg","url":"https:\/\/t.co\/I54h8m6GaK","display_url":"pic.twitter.com\/I54h8m6GaK","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1187684500509085697\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187684489075412993,"id_str":"1187684489075412993","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/EHuAwAyU0AE5g6k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHuAwAyU0AE5g6k.jpg","url":"https:\/\/t.co\/I54h8m6GaK","display_url":"pic.twitter.com\/I54h8m6GaK","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1187684500509085697\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1187684489075380224,"id_str":"1187684489075380224","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/EHuAwAyUUAACC2w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHuAwAyUUAACC2w.jpg","url":"https:\/\/t.co\/I54h8m6GaK","display_url":"pic.twitter.com\/I54h8m6GaK","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1187684500509085697\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 10:58:07 +0000 2019","id":1187684759398440961,"id_str":"1187684759398440961","full_text":"RT + @SBarksway: I finished my last #aect19 session by checking out an awesome + emerging tech showcase- Using H5P to Create Engaging Microlear\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[34,41]}],"symbols":[],"user_mentions":[{"screen_name":"SBarksway","name":"Sarah + Barksdale","id":908737706699710464,"id_str":"908737706699710464","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 03:11:02 +0000 2019","id":1187567214607552514,"id_str":"1187567214607552514","full_text":"I + finished my last #aect19 session by checking out an awesome emerging tech + showcase- Using H5P to Create Engaging Microlearning Experiences! Can\u2019t + wait to explore this lore. Thanks for inspiring me @jmenglund03 & annette! + \ud83e\udd29#aectinspired https:\/\/t.co\/YympxVHvpy","truncated":false,"display_text_range":[0,241],"entities":{"hashtags":[{"text":"aect19","indices":[19,26]},{"text":"aectinspired","indices":[228,241]}],"symbols":[],"user_mentions":[{"screen_name":"jmenglund03","name":"jenn\u03b9\u0493er + engl\u03c5nd","id":64769037,"id_str":"64769037","indices":[199,211]}],"urls":[],"media":[{"id":1187567179652157440,"id_str":"1187567179652157440","indices":[242,265],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsWDtIUUAA--UE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsWDtIUUAA--UE.jpg","url":"https:\/\/t.co\/YympxVHvpy","display_url":"pic.twitter.com\/YympxVHvpy","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187567214607552514\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1882,"h":2048,"resize":"fit"},"small":{"w":625,"h":680,"resize":"fit"},"medium":{"w":1103,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187567179652157440,"id_str":"1187567179652157440","indices":[242,265],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsWDtIUUAA--UE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsWDtIUUAA--UE.jpg","url":"https:\/\/t.co\/YympxVHvpy","display_url":"pic.twitter.com\/YympxVHvpy","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187567214607552514\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1882,"h":2048,"resize":"fit"},"small":{"w":625,"h":680,"resize":"fit"},"medium":{"w":1103,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1187567179685748736,"id_str":"1187567179685748736","indices":[242,265],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsWDtQU4AAk1Nm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsWDtQU4AAk1Nm.jpg","url":"https:\/\/t.co\/YympxVHvpy","display_url":"pic.twitter.com\/YympxVHvpy","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187567214607552514\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1366,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"}},"ext_alt_text":null},{"id":1187567179723468800,"id_str":"1187567179723468800","indices":[242,265],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsWDtZUcAA5hx2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsWDtZUcAA5hx2.jpg","url":"https:\/\/t.co\/YympxVHvpy","display_url":"pic.twitter.com\/YympxVHvpy","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187567214607552514\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":672,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1186,"resize":"fit"},"large":{"w":2048,"h":2024,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":908737706699710464,"id_str":"908737706699710464","name":"Sarah + Barksdale","screen_name":"SBarksway","location":"","description":"Educator + \ud83d\udcda Researcher \u270d\ud83c\udffb Instructional Design \ud83d\udc69\u200d\ud83c\udfa8 + PhD Cand.\u2615\ufe0f Learning Technologies \ud83d\udcbb Adventurer & Travelholic + \ud83c\udfd4\ufe0f \ud83d\udc99: #edtech #CSforALL #teachered #pd","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":329,"friends_count":480,"listed_count":5,"created_at":"Fri + Sep 15 17:02:07 +0000 2017","favourites_count":2160,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":428,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/908737706699710464\/1506899531","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 11:47:02 +0000 2019","id":1187697070922059776,"id_str":"1187697070922059776","full_text":"RT + @MelGoodEDU: Morehead State University EdD students had a blast at the University + Reception tonight. As AECT 1st timers, we are definite\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MelGoodEDU","name":"Melissa + Goodman","id":1161087679,"id_str":"1161087679","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1131688878,"id_str":"1131688878","name":"Morehead + State News","screen_name":"News_MSU","location":"Morehead, KY","description":"Official + source of info for media, govt, agencies, writers, orgs, etc. Prospective\/current + students\/families, alumni & employees may also follow @moreheadstate.","url":"https:\/\/t.co\/Gu7y4AKSrW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Gu7y4AKSrW","expanded_url":"http:\/\/www.moreheadstate.edu\/news","display_url":"moreheadstate.edu\/news","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3856,"friends_count":2195,"listed_count":29,"created_at":"Tue + Jan 29 17:49:12 +0000 2013","favourites_count":3501,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13448,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1408426823680073732\/BPFFt0xD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1408426823680073732\/BPFFt0xD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1131688878\/1616417709","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"082280","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 04:06:17 +0000 2019","id":1187581116510699520,"id_str":"1187581116510699520","full_text":"Morehead + State University EdD students had a blast at the University Reception tonight. + As AECT 1st timers, we are definitely leaving inspired! #aect19inspired #aect19 + https:\/\/t.co\/qkULo7Azar","truncated":false,"display_text_range":[0,167],"entities":{"hashtags":[{"text":"aect19inspired","indices":[144,159]},{"text":"aect19","indices":[160,167]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187581078325755904,"id_str":"1187581078325755904","indices":[168,191],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsistuVAAAssGy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsistuVAAAssGy.jpg","url":"https:\/\/t.co\/qkULo7Azar","display_url":"pic.twitter.com\/qkULo7Azar","expanded_url":"https:\/\/twitter.com\/MelGoodEDU\/status\/1187581116510699520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187581078325755904,"id_str":"1187581078325755904","indices":[168,191],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsistuVAAAssGy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsistuVAAAssGy.jpg","url":"https:\/\/t.co\/qkULo7Azar","display_url":"pic.twitter.com\/qkULo7Azar","expanded_url":"https:\/\/twitter.com\/MelGoodEDU\/status\/1187581116510699520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187581078321549315,"id_str":"1187581078321549315","indices":[168,191],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsisttU0AMWa_s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsisttU0AMWa_s.jpg","url":"https:\/\/t.co\/qkULo7Azar","display_url":"pic.twitter.com\/qkULo7Azar","expanded_url":"https:\/\/twitter.com\/MelGoodEDU\/status\/1187581116510699520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161087679,"id_str":"1161087679","name":"Melissa + Goodman","screen_name":"MelGoodEDU","location":"Clinton, KY","description":"County + Extension Agent for 4-H Youth Development | Education & Collaboration | Advocate + for FCS & CTE. Views are my own. RT not endorsement.","url":"https:\/\/t.co\/izMiFuYPzA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/izMiFuYPzA","expanded_url":"https:\/\/hickman.ca.uky.edu\/","display_url":"hickman.ca.uky.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":529,"friends_count":1279,"listed_count":18,"created_at":"Fri + Feb 08 19:57:55 +0000 2013","favourites_count":2183,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":987,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1553982233865756672\/yp_OWTk1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1553982233865756672\/yp_OWTk1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1161087679\/1659334237","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 03:12:41 +0000 2019","id":1187567629998772225,"id_str":"1187567629998772225","full_text":"RT + @nicolapallitt: Meeting up with fellow Africans at @AECT #aect19inspired Liberia, + Tanzania, Nigeria, SA & Namibia https:\/\/t.co\/0Zp0eUlGJ1","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19inspired","indices":[60,75]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[54,59]}],"urls":[],"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}},"source_status_id":1187529122987180032,"source_status_id_str":"1187529122987180032","source_user_id":118368334,"source_user_id_str":"118368334"}]},"extended_entities":{"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}},"source_status_id":1187529122987180032,"source_status_id_str":"1187529122987180032","source_user_id":118368334,"source_user_id_str":"118368334","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 00:39:40 +0000 2019","id":1187529122987180032,"id_str":"1187529122987180032","full_text":"Meeting + up with fellow Africans at @AECT #aect19inspired Liberia, Tanzania, Nigeria, + SA & Namibia https:\/\/t.co\/0Zp0eUlGJ1","truncated":false,"display_text_range":[0,101],"entities":{"hashtags":[{"text":"aect19inspired","indices":[41,56]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[35,40]}],"urls":[],"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 13:57:07 +0000 2019","id":1187729804780396544,"id_str":"1187729804780396544","full_text":"RT + @AllisonHallAZ: \u201cThe proper question is not, \u2018how can people motivate + others?\u2019 But rather, \u2018how can people create the conditions within\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AllisonHallAZ","name":"Dr. + Allison Barsnica Hall","id":720930385,"id_str":"720930385","indices":[3,17]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 23:13:59 +0000 2019","id":1187507557838884865,"id_str":"1187507557838884865","full_text":"\u201cThe + proper question is not, \u2018how can people motivate others?\u2019 But rather, + \u2018how can people create the conditions within which others will motivate + themselves?\u2019\u201d Deci Love this quote! Thanks, @valarywithawhy #aect19inspired + https:\/\/t.co\/NDVIH7ByK7","truncated":false,"display_text_range":[0,223],"entities":{"hashtags":[{"text":"aect19inspired","indices":[208,223]}],"symbols":[],"user_mentions":[{"screen_name":"valarywithawhy","name":"Valary + Oleinik","id":111391715,"id_str":"111391715","indices":[192,207]}],"urls":[],"media":[{"id":1187507542621995008,"id_str":"1187507542621995008","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrf0X4UwAAhUvl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrf0X4UwAAhUvl.jpg","url":"https:\/\/t.co\/NDVIH7ByK7","display_url":"pic.twitter.com\/NDVIH7ByK7","expanded_url":"https:\/\/twitter.com\/AllisonHallAZ\/status\/1187507557838884865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187507542621995008,"id_str":"1187507542621995008","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrf0X4UwAAhUvl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrf0X4UwAAhUvl.jpg","url":"https:\/\/t.co\/NDVIH7ByK7","display_url":"pic.twitter.com\/NDVIH7ByK7","expanded_url":"https:\/\/twitter.com\/AllisonHallAZ\/status\/1187507557838884865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":720930385,"id_str":"720930385","name":"Dr. + Allison Barsnica Hall","screen_name":"AllisonHallAZ","location":"Tempe, AZ","description":"Director + of Learning Experience Design @ ASU. Lifelong Learner. Interested in how to + help ALL learners. she\/her\/hers","url":"https:\/\/t.co\/Pi5aZFLirT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Pi5aZFLirT","expanded_url":"https:\/\/www.linkedin.com\/in\/allisonbhall\/","display_url":"linkedin.com\/in\/allisonbhal\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":417,"friends_count":563,"listed_count":30,"created_at":"Fri + Jul 27 21:42:06 +0000 2012","favourites_count":3118,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1022,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/981993480833515520\/S96xaBm1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/981993480833515520\/S96xaBm1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/720930385\/1581027324","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 03:45:46 +0000 2019","id":1187575953523785731,"id_str":"1187575953523785731","full_text":"RT + @tutaleni: Darron Lamkin demonstrating Engineering design concepts and 4 forces + of flights #EmergingTechShowcase #aect19inspired https:\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"EmergingTechShowcase","indices":[95,116]},{"text":"aect19inspired","indices":[117,132]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":91361410,"id_str":"91361410","name":"Frances + Alvarado","screen_name":"francesmarg","location":"Earth","description":"Learning, + Design, & Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":146,"listed_count":1,"created_at":"Fri + Nov 20 15:25:28 +0000 2009","favourites_count":3639,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":567,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1333933432435568645\/WGnKKjwS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1333933432435568645\/WGnKKjwS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/91361410\/1533572819","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:36:52 +0000 2019","id":1187483119231700993,"id_str":"1187483119231700993","full_text":"Darron + Lamkin demonstrating Engineering design concepts and 4 forces of flights #EmergingTechShowcase + #aect19inspired https:\/\/t.co\/c3IbeaiZCT","truncated":false,"display_text_range":[0,118],"entities":{"hashtags":[{"text":"EmergingTechShowcase","indices":[81,102]},{"text":"aect19inspired","indices":[103,118]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187483111228985344,"id_str":"1187483111228985344","indices":[119,142],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrJmR2UUAAiX5J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrJmR2UUAAiX5J.jpg","url":"https:\/\/t.co\/c3IbeaiZCT","display_url":"pic.twitter.com\/c3IbeaiZCT","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187483119231700993\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187483111228985344,"id_str":"1187483111228985344","indices":[119,142],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrJmR2UUAAiX5J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrJmR2UUAAiX5J.jpg","url":"https:\/\/t.co\/c3IbeaiZCT","display_url":"pic.twitter.com\/c3IbeaiZCT","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187483119231700993\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1187483111233187840,"id_str":"1187483111233187840","indices":[119,142],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrJmR3UcAAvk59.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrJmR3UcAAvk59.jpg","url":"https:\/\/t.co\/c3IbeaiZCT","display_url":"pic.twitter.com\/c3IbeaiZCT","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187483119231700993\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1187483111233212416,"id_str":"1187483111233212416","indices":[119,142],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrJmR3U0AAwNVl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrJmR3U0AAwNVl.jpg","url":"https:\/\/t.co\/c3IbeaiZCT","display_url":"pic.twitter.com\/c3IbeaiZCT","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187483119231700993\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187483111354855424,"id_str":"1187483111354855424","indices":[119,142],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrJmSUU8AAnbE2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrJmSUU8AAnbE2.jpg","url":"https:\/\/t.co\/c3IbeaiZCT","display_url":"pic.twitter.com\/c3IbeaiZCT","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187483119231700993\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 05:26:32 +0000 2019","id":1187601313372094465,"id_str":"1187601313372094465","full_text":"RT + @tutaleni: We had a lot of fun, asked many questions, learned about new tools, + talked through ideas and made new connections at the #Eme\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 23:17:34 +0000 2019","id":1187508461078102017,"id_str":"1187508461078102017","full_text":"We + had a lot of fun, asked many questions, learned about new tools, talked through + ideas and made new connections at the #EmergingTechShowcase. Thank you \ud83d\udc4f\ud83c\udfff\ud83d\udc4f\ud83c\udfff + to those who presented and who took part. #aect19inspired #EmergingTechShowcase + #aect19 https:\/\/t.co\/z1P3YuG8CY","truncated":false,"display_text_range":[0,246],"entities":{"hashtags":[{"text":"EmergingTechShowcase","indices":[121,142]},{"text":"aect19inspired","indices":[201,216]},{"text":"EmergingTechShowcase","indices":[217,238]},{"text":"aect19","indices":[239,246]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187508456443396096,"id_str":"1187508456443396096","indices":[247,270],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","url":"https:\/\/t.co\/z1P3YuG8CY","display_url":"pic.twitter.com\/z1P3YuG8CY","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187508461078102017\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1195,"h":1499,"resize":"fit"},"small":{"w":542,"h":680,"resize":"fit"},"medium":{"w":957,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187508456443396096,"id_str":"1187508456443396096","indices":[247,270],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","url":"https:\/\/t.co\/z1P3YuG8CY","display_url":"pic.twitter.com\/z1P3YuG8CY","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187508461078102017\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1195,"h":1499,"resize":"fit"},"small":{"w":542,"h":680,"resize":"fit"},"medium":{"w":957,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 13:58:40 +0000 2019","id":1187730195744055296,"id_str":"1187730195744055296","full_text":"RT + @LearnEngage: Will you uncover The Secret of the Learner Engagement? Jump + start your day at #AECT19 with a little intrigue at the Inspir\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[95,102]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 13:00:01 +0000 2019","id":1187715436185448449,"id_str":"1187715436185448449","full_text":"Will + you uncover The Secret of the Learner Engagement? Jump start your day at #AECT19 + with a little intrigue at the Inspire! EdTech Mystery Series, hosted by the + incomparable @caranorth11 at 9am in Conf Room 8! #aect19inspired @AECT https:\/\/t.co\/9UOIpRvHeY","truncated":false,"display_text_range":[0,232],"entities":{"hashtags":[{"text":"AECT19","indices":[78,85]},{"text":"aect19inspired","indices":[211,226]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[175,187]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[227,232]}],"urls":[],"media":[{"id":1187703135965347840,"id_str":"1187703135965347840","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EHuRtZ3VAAAVmwY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHuRtZ3VAAAVmwY.jpg","url":"https:\/\/t.co\/9UOIpRvHeY","display_url":"pic.twitter.com\/9UOIpRvHeY","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187715436185448449\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":340,"resize":"fit"},"large":{"w":2000,"h":1000,"resize":"fit"},"medium":{"w":1200,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187703135965347840,"id_str":"1187703135965347840","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EHuRtZ3VAAAVmwY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHuRtZ3VAAAVmwY.jpg","url":"https:\/\/t.co\/9UOIpRvHeY","display_url":"pic.twitter.com\/9UOIpRvHeY","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187715436185448449\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":340,"resize":"fit"},"large":{"w":2000,"h":1000,"resize":"fit"},"medium":{"w":1200,"h":600,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 10:24:06 +0000 2019","id":1187676201088888832,"id_str":"1187676201088888832","full_text":"RT + @nicolapallitt: Meeting up with fellow Africans at @AECT #aect19inspired Liberia, + Tanzania, Nigeria, SA & Namibia https:\/\/t.co\/0Zp0eUlGJ1","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19inspired","indices":[60,75]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[54,59]}],"urls":[],"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}},"source_status_id":1187529122987180032,"source_status_id_str":"1187529122987180032","source_user_id":118368334,"source_user_id_str":"118368334"}]},"extended_entities":{"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}},"source_status_id":1187529122987180032,"source_status_id_str":"1187529122987180032","source_user_id":118368334,"source_user_id_str":"118368334","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":123168263,"id_str":"123168263","name":"Irene + Maweu \ud83c\udf3b\ud83c\udf3b","screen_name":"wavinya66","location":"Kenya","description":"By + Faith \/ With Respect \/ Facilitating from the heart \/ Liberating Structures + Gospel \/ IAF Member","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":762,"friends_count":772,"listed_count":9,"created_at":"Mon + Mar 15 06:31:31 +0000 2010","favourites_count":10218,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5795,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123168263\/1610274071","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 00:39:40 +0000 2019","id":1187529122987180032,"id_str":"1187529122987180032","full_text":"Meeting + up with fellow Africans at @AECT #aect19inspired Liberia, Tanzania, Nigeria, + SA & Namibia https:\/\/t.co\/0Zp0eUlGJ1","truncated":false,"display_text_range":[0,101],"entities":{"hashtags":[{"text":"aect19inspired","indices":[41,56]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[35,40]}],"urls":[],"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 13:00:01 +0000 2019","id":1187715436185448449,"id_str":"1187715436185448449","full_text":"Will + you uncover The Secret of the Learner Engagement? Jump start your day at #AECT19 + with a little intrigue at the Inspire! EdTech Mystery Series, hosted by the + incomparable @caranorth11 at 9am in Conf Room 8! #aect19inspired @AECT https:\/\/t.co\/9UOIpRvHeY","truncated":false,"display_text_range":[0,232],"entities":{"hashtags":[{"text":"AECT19","indices":[78,85]},{"text":"aect19inspired","indices":[211,226]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[175,187]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[227,232]}],"urls":[],"media":[{"id":1187703135965347840,"id_str":"1187703135965347840","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EHuRtZ3VAAAVmwY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHuRtZ3VAAAVmwY.jpg","url":"https:\/\/t.co\/9UOIpRvHeY","display_url":"pic.twitter.com\/9UOIpRvHeY","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187715436185448449\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":340,"resize":"fit"},"large":{"w":2000,"h":1000,"resize":"fit"},"medium":{"w":1200,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187703135965347840,"id_str":"1187703135965347840","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EHuRtZ3VAAAVmwY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHuRtZ3VAAAVmwY.jpg","url":"https:\/\/t.co\/9UOIpRvHeY","display_url":"pic.twitter.com\/9UOIpRvHeY","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187715436185448449\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":340,"resize":"fit"},"large":{"w":2000,"h":1000,"resize":"fit"},"medium":{"w":1200,"h":600,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 13:36:11 +0000 2019","id":1187724538789928975,"id_str":"1187724538789928975","full_text":"RT + @tutaleni: Darron Lamkin demonstrating Engineering design concepts and 4 forces + of flights #EmergingTechShowcase #aect19inspired https:\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"EmergingTechShowcase","indices":[95,116]},{"text":"aect19inspired","indices":[117,132]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:36:52 +0000 2019","id":1187483119231700993,"id_str":"1187483119231700993","full_text":"Darron + Lamkin demonstrating Engineering design concepts and 4 forces of flights #EmergingTechShowcase + #aect19inspired https:\/\/t.co\/c3IbeaiZCT","truncated":false,"display_text_range":[0,118],"entities":{"hashtags":[{"text":"EmergingTechShowcase","indices":[81,102]},{"text":"aect19inspired","indices":[103,118]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187483111228985344,"id_str":"1187483111228985344","indices":[119,142],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrJmR2UUAAiX5J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrJmR2UUAAiX5J.jpg","url":"https:\/\/t.co\/c3IbeaiZCT","display_url":"pic.twitter.com\/c3IbeaiZCT","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187483119231700993\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187483111228985344,"id_str":"1187483111228985344","indices":[119,142],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrJmR2UUAAiX5J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrJmR2UUAAiX5J.jpg","url":"https:\/\/t.co\/c3IbeaiZCT","display_url":"pic.twitter.com\/c3IbeaiZCT","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187483119231700993\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1187483111233187840,"id_str":"1187483111233187840","indices":[119,142],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrJmR3UcAAvk59.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrJmR3UcAAvk59.jpg","url":"https:\/\/t.co\/c3IbeaiZCT","display_url":"pic.twitter.com\/c3IbeaiZCT","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187483119231700993\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1187483111233212416,"id_str":"1187483111233212416","indices":[119,142],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrJmR3U0AAwNVl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrJmR3U0AAwNVl.jpg","url":"https:\/\/t.co\/c3IbeaiZCT","display_url":"pic.twitter.com\/c3IbeaiZCT","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187483119231700993\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187483111354855424,"id_str":"1187483111354855424","indices":[119,142],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrJmSUU8AAnbE2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrJmSUU8AAnbE2.jpg","url":"https:\/\/t.co\/c3IbeaiZCT","display_url":"pic.twitter.com\/c3IbeaiZCT","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187483119231700993\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:23:41 +0000 2019","id":1187555297897922560,"id_str":"1187555297897922560","full_text":"RT + @hodgesc: Help a Hokie by answering a survey, get a stylus. University reception + Virginia Tech table. #aect19inspired https:\/\/t.co\/715nF\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[105,120]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 00:51:42 +0000 2019","id":1187532151794720769,"id_str":"1187532151794720769","full_text":"Help + a Hokie by answering a survey, get a stylus. University reception Virginia + Tech table. #aect19inspired https:\/\/t.co\/715nFvPUf5","truncated":false,"display_text_range":[0,107],"entities":{"hashtags":[{"text":"aect19inspired","indices":[92,107]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187531379531120640,"id_str":"1187531379531120640","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr1f3SVAAAxs4v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr1f3SVAAAxs4v.jpg","url":"https:\/\/t.co\/715nFvPUf5","display_url":"pic.twitter.com\/715nFvPUf5","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187532151794720769\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187531379531120640,"id_str":"1187531379531120640","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr1f3SVAAAxs4v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr1f3SVAAAxs4v.jpg","url":"https:\/\/t.co\/715nFvPUf5","display_url":"pic.twitter.com\/715nFvPUf5","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187532151794720769\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 10:59:02 +0000 2019","id":1187684991058268160,"id_str":"1187684991058268160","full_text":"RT + @DrVirtuality: #Sketchnoting session now at @AECT. @aect19 #aect19inspired + https:\/\/t.co\/GNjzJsf3Sy","truncated":false,"display_text_range":[0,101],"entities":{"hashtags":[{"text":"Sketchnoting","indices":[18,31]},{"text":"aect19inspired","indices":[62,77]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[47,52]},{"screen_name":"aect19","name":"Windy + Trinidad","id":918458306619891712,"id_str":"918458306619891712","indices":[54,61]}],"urls":[],"media":[{"id":1187492041011298304,"id_str":"1187492041011298304","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrRuD4VAAA1N1n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrRuD4VAAA1N1n.jpg","url":"https:\/\/t.co\/GNjzJsf3Sy","display_url":"pic.twitter.com\/GNjzJsf3Sy","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187492048313536512\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":899,"h":1200,"resize":"fit"},"large":{"w":1534,"h":2048,"resize":"fit"},"small":{"w":509,"h":680,"resize":"fit"}},"source_status_id":1187492048313536512,"source_status_id_str":"1187492048313536512","source_user_id":15667548,"source_user_id_str":"15667548"}]},"extended_entities":{"media":[{"id":1187492041011298304,"id_str":"1187492041011298304","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrRuD4VAAA1N1n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrRuD4VAAA1N1n.jpg","url":"https:\/\/t.co\/GNjzJsf3Sy","display_url":"pic.twitter.com\/GNjzJsf3Sy","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187492048313536512\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":899,"h":1200,"resize":"fit"},"large":{"w":1534,"h":2048,"resize":"fit"},"small":{"w":509,"h":680,"resize":"fit"}},"source_status_id":1187492048313536512,"source_status_id_str":"1187492048313536512","source_user_id":15667548,"source_user_id_str":"15667548","ext_alt_text":null},{"id":1187492041011281920,"id_str":"1187492041011281920","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrRuD4UwAA1l4T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrRuD4UwAA1l4T.jpg","url":"https:\/\/t.co\/GNjzJsf3Sy","display_url":"pic.twitter.com\/GNjzJsf3Sy","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187492048313536512\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1187492048313536512,"source_status_id_str":"1187492048313536512","source_user_id":15667548,"source_user_id_str":"15667548","ext_alt_text":null},{"id":1187492041036419072,"id_str":"1187492041036419072","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrRuD-UUAAjGf4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrRuD-UUAAjGf4.jpg","url":"https:\/\/t.co\/GNjzJsf3Sy","display_url":"pic.twitter.com\/GNjzJsf3Sy","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187492048313536512\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":1187492048313536512,"source_status_id_str":"1187492048313536512","source_user_id":15667548,"source_user_id_str":"15667548","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 22:12:21 +0000 2019","id":1187492048313536512,"id_str":"1187492048313536512","full_text":"#Sketchnoting + session now at @AECT. @aect19 #aect19inspired https:\/\/t.co\/GNjzJsf3Sy","truncated":false,"display_text_range":[0,59],"entities":{"hashtags":[{"text":"Sketchnoting","indices":[0,13]},{"text":"aect19inspired","indices":[44,59]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[29,34]},{"screen_name":"aect19","name":"Windy + Trinidad","id":918458306619891712,"id_str":"918458306619891712","indices":[36,43]}],"urls":[],"media":[{"id":1187492041011298304,"id_str":"1187492041011298304","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrRuD4VAAA1N1n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrRuD4VAAA1N1n.jpg","url":"https:\/\/t.co\/GNjzJsf3Sy","display_url":"pic.twitter.com\/GNjzJsf3Sy","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187492048313536512\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":899,"h":1200,"resize":"fit"},"large":{"w":1534,"h":2048,"resize":"fit"},"small":{"w":509,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187492041011298304,"id_str":"1187492041011298304","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrRuD4VAAA1N1n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrRuD4VAAA1N1n.jpg","url":"https:\/\/t.co\/GNjzJsf3Sy","display_url":"pic.twitter.com\/GNjzJsf3Sy","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187492048313536512\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":899,"h":1200,"resize":"fit"},"large":{"w":1534,"h":2048,"resize":"fit"},"small":{"w":509,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187492041011281920,"id_str":"1187492041011281920","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrRuD4UwAA1l4T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrRuD4UwAA1l4T.jpg","url":"https:\/\/t.co\/GNjzJsf3Sy","display_url":"pic.twitter.com\/GNjzJsf3Sy","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187492048313536512\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187492041036419072,"id_str":"1187492041036419072","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrRuD-UUAAjGf4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrRuD-UUAAjGf4.jpg","url":"https:\/\/t.co\/GNjzJsf3Sy","display_url":"pic.twitter.com\/GNjzJsf3Sy","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187492048313536512\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 05:44:52 +0000 2019","id":1187605926209097728,"id_str":"1187605926209097728","full_text":"RT + @christieliuidtr: Emerging tech showcase @AECT #aect19 #aect19inspired https:\/\/t.co\/rQcBIOKx4n","truncated":false,"display_text_range":[0,97],"entities":{"hashtags":[{"text":"aect19","indices":[50,57]},{"text":"aect19inspired","indices":[58,73]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[44,49]}],"urls":[],"media":[{"id":1187484195045564417,"id_str":"1187484195045564417","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrKlXYU4AElhWs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrKlXYU4AElhWs.jpg","url":"https:\/\/t.co\/rQcBIOKx4n","display_url":"pic.twitter.com\/rQcBIOKx4n","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187484200590426112\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":934,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":529,"resize":"fit"},"large":{"w":2048,"h":1594,"resize":"fit"}},"source_status_id":1187484200590426112,"source_status_id_str":"1187484200590426112","source_user_id":321423678,"source_user_id_str":"321423678"}]},"extended_entities":{"media":[{"id":1187484195045564417,"id_str":"1187484195045564417","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrKlXYU4AElhWs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrKlXYU4AElhWs.jpg","url":"https:\/\/t.co\/rQcBIOKx4n","display_url":"pic.twitter.com\/rQcBIOKx4n","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187484200590426112\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":934,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":529,"resize":"fit"},"large":{"w":2048,"h":1594,"resize":"fit"}},"source_status_id":1187484200590426112,"source_status_id_str":"1187484200590426112","source_user_id":321423678,"source_user_id_str":"321423678","ext_alt_text":null},{"id":1187484195049730048,"id_str":"1187484195049730048","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrKlXZUcAAuZq0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrKlXZUcAAuZq0.jpg","url":"https:\/\/t.co\/rQcBIOKx4n","display_url":"pic.twitter.com\/rQcBIOKx4n","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187484200590426112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":903,"h":1200,"resize":"fit"},"large":{"w":1150,"h":1529,"resize":"fit"},"small":{"w":511,"h":680,"resize":"fit"}},"source_status_id":1187484200590426112,"source_status_id_str":"1187484200590426112","source_user_id":321423678,"source_user_id_str":"321423678","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:41:10 +0000 2019","id":1187484200590426112,"id_str":"1187484200590426112","full_text":"Emerging + tech showcase @AECT #aect19 #aect19inspired https:\/\/t.co\/rQcBIOKx4n","truncated":false,"display_text_range":[0,52],"entities":{"hashtags":[{"text":"aect19","indices":[29,36]},{"text":"aect19inspired","indices":[37,52]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[23,28]}],"urls":[],"media":[{"id":1187484195045564417,"id_str":"1187484195045564417","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrKlXYU4AElhWs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrKlXYU4AElhWs.jpg","url":"https:\/\/t.co\/rQcBIOKx4n","display_url":"pic.twitter.com\/rQcBIOKx4n","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187484200590426112\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":934,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":529,"resize":"fit"},"large":{"w":2048,"h":1594,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187484195045564417,"id_str":"1187484195045564417","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrKlXYU4AElhWs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrKlXYU4AElhWs.jpg","url":"https:\/\/t.co\/rQcBIOKx4n","display_url":"pic.twitter.com\/rQcBIOKx4n","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187484200590426112\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":934,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":529,"resize":"fit"},"large":{"w":2048,"h":1594,"resize":"fit"}},"ext_alt_text":null},{"id":1187484195049730048,"id_str":"1187484195049730048","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrKlXZUcAAuZq0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrKlXZUcAAuZq0.jpg","url":"https:\/\/t.co\/rQcBIOKx4n","display_url":"pic.twitter.com\/rQcBIOKx4n","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187484200590426112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":903,"h":1200,"resize":"fit"},"large":{"w":1150,"h":1529,"resize":"fit"},"small":{"w":511,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:56:09 +0000 2019","id":1187563469257658369,"id_str":"1187563469257658369","full_text":"RT + @DrTerriC: We got an autonomous @lyft squee!! #aect19inspired always learning. + https:\/\/t.co\/cTFV2a0M3E","truncated":false,"display_text_range":[0,105],"entities":{"hashtags":[{"text":"aect19inspired","indices":[49,64]}],"symbols":[],"user_mentions":[{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[3,12]},{"screen_name":"lyft","name":"Lyft","id":569569550,"id_str":"569569550","indices":[35,40]}],"urls":[],"media":[{"id":1187556791279685632,"id_str":"1187556791279685632","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsMnBbUEAAAl4-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsMnBbUEAAAl4-.jpg","url":"https:\/\/t.co\/cTFV2a0M3E","display_url":"pic.twitter.com\/cTFV2a0M3E","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187556798129029120\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1187556798129029120,"source_status_id_str":"1187556798129029120","source_user_id":466078904,"source_user_id_str":"466078904"}]},"extended_entities":{"media":[{"id":1187556791279685632,"id_str":"1187556791279685632","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsMnBbUEAAAl4-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsMnBbUEAAAl4-.jpg","url":"https:\/\/t.co\/cTFV2a0M3E","display_url":"pic.twitter.com\/cTFV2a0M3E","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187556798129029120\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1187556798129029120,"source_status_id_str":"1187556798129029120","source_user_id":466078904,"source_user_id_str":"466078904","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":704060337700515840,"id_str":"704060337700515840","name":"Brian + Chirgwin","screen_name":"BChirgwin","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":43,"friends_count":262,"listed_count":4,"created_at":"Sun + Feb 28 21:47:20 +0000 2016","favourites_count":505,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1003,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/718254844906233856\/pTZEm1xO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/718254844906233856\/pTZEm1xO_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 02:29:39 +0000 2019","id":1187556798129029120,"id_str":"1187556798129029120","full_text":"We + got an autonomous @lyft squee!! #aect19inspired always learning. https:\/\/t.co\/cTFV2a0M3E","truncated":false,"display_text_range":[0,67],"entities":{"hashtags":[{"text":"aect19inspired","indices":[35,50]}],"symbols":[],"user_mentions":[{"screen_name":"lyft","name":"Lyft","id":569569550,"id_str":"569569550","indices":[21,26]}],"urls":[],"media":[{"id":1187556791279685632,"id_str":"1187556791279685632","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsMnBbUEAAAl4-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsMnBbUEAAAl4-.jpg","url":"https:\/\/t.co\/cTFV2a0M3E","display_url":"pic.twitter.com\/cTFV2a0M3E","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187556798129029120\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187556791279685632,"id_str":"1187556791279685632","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsMnBbUEAAAl4-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsMnBbUEAAAl4-.jpg","url":"https:\/\/t.co\/cTFV2a0M3E","display_url":"pic.twitter.com\/cTFV2a0M3E","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187556798129029120\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 13:34:58 +0000 2019","id":1187724234400903169,"id_str":"1187724234400903169","full_text":"RT + @kariknisely: Finished off Day 4 of #AECT19 with the university reception + and grabbing a pic with these amazing women all who inspire an\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[39,46]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 03:36:04 +0000 2019","id":1187573514649210880,"id_str":"1187573514649210880","full_text":"Finished + off Day 4 of #AECT19 with the university reception and grabbing a pic with + these amazing women all who inspire and encourage me in various ways. @LaurenBagdy + @vdennen @eromerohall https:\/\/t.co\/MzwqmNZPSE","truncated":false,"display_text_range":[0,189],"entities":{"hashtags":[{"text":"AECT19","indices":[22,29]}],"symbols":[],"user_mentions":[{"screen_name":"LaurenBagdy","name":"Lauren + Bagdy","id":22214646,"id_str":"22214646","indices":[155,167]},{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[168,176]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[177,189]}],"urls":[],"media":[{"id":1187573508873699328,"id_str":"1187573508873699328","indices":[190,213],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsb0HUUwAA6qk5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsb0HUUwAA6qk5.jpg","url":"https:\/\/t.co\/MzwqmNZPSE","display_url":"pic.twitter.com\/MzwqmNZPSE","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1187573514649210880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187573508873699328,"id_str":"1187573508873699328","indices":[190,213],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsb0HUUwAA6qk5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsb0HUUwAA6qk5.jpg","url":"https:\/\/t.co\/MzwqmNZPSE","display_url":"pic.twitter.com\/MzwqmNZPSE","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1187573514649210880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"8fa6d7a33b83ef26","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8fa6d7a33b83ef26.json","place_type":"city","name":"Paradise","full_name":"Paradise, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.2092535,35.984784],[-115.0610763,35.984784],[-115.0610763,36.137145],[-115.2092535,36.137145]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 12:30:03 +0000 2019","id":1187707894440976384,"id_str":"1187707894440976384","full_text":"RT + @nicolapallitt: Meeting up with fellow Africans at @AECT #aect19inspired Liberia, + Tanzania, Nigeria, SA & Namibia https:\/\/t.co\/0Zp0eUlGJ1","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19inspired","indices":[60,75]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[54,59]}],"urls":[],"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}},"source_status_id":1187529122987180032,"source_status_id_str":"1187529122987180032","source_user_id":118368334,"source_user_id_str":"118368334"}]},"extended_entities":{"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}},"source_status_id":1187529122987180032,"source_status_id_str":"1187529122987180032","source_user_id":118368334,"source_user_id_str":"118368334","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2950104673,"id_str":"2950104673","name":"Ayodeji + Ibukun","screen_name":"lbukunAA","location":"Oklahoma, USA","description":"B.Engrg + MS MNSE","url":"https:\/\/t.co\/kVfuPQQfYs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kVfuPQQfYs","expanded_url":"http:\/\/www.ayoibukun.com","display_url":"ayoibukun.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":489,"listed_count":0,"created_at":"Mon + Dec 29 12:06:33 +0000 2014","favourites_count":665,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":154,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2950104673\/1574622610","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 00:39:40 +0000 2019","id":1187529122987180032,"id_str":"1187529122987180032","full_text":"Meeting + up with fellow Africans at @AECT #aect19inspired Liberia, Tanzania, Nigeria, + SA & Namibia https:\/\/t.co\/0Zp0eUlGJ1","truncated":false,"display_text_range":[0,101],"entities":{"hashtags":[{"text":"aect19inspired","indices":[41,56]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[35,40]}],"urls":[],"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 11:00:57 +0000 2019","id":1187685472866320384,"id_str":"1187685472866320384","full_text":"RT + @ChangeIt4Better: Happy runners. Good people. Thanks for starting the day + off with a breath of fresh air, #aect19inspired athletes! http\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[109,124]}],"symbols":[],"user_mentions":[{"screen_name":"ChangeIt4Better","name":"Dr. + Suzanne Ensmann","id":1596150056,"id_str":"1596150056","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 08:15:48 +0000 2019","id":1187643910752858112,"id_str":"1187643910752858112","full_text":"Happy + runners. Good people. Thanks for starting the day off with a breath of fresh + air, #aect19inspired athletes! https:\/\/t.co\/5PvkLRmCvs","truncated":false,"display_text_range":[0,113],"entities":{"hashtags":[{"text":"aect19inspired","indices":[88,103]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187643895951179777,"id_str":"1187643895951179777","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/EHtb1LnUwAEPhes.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHtb1LnUwAEPhes.jpg","url":"https:\/\/t.co\/5PvkLRmCvs","display_url":"pic.twitter.com\/5PvkLRmCvs","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187643910752858112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1538,"resize":"fit"},"small":{"w":680,"h":511,"resize":"fit"},"medium":{"w":1200,"h":901,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187643895951179777,"id_str":"1187643895951179777","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/EHtb1LnUwAEPhes.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHtb1LnUwAEPhes.jpg","url":"https:\/\/t.co\/5PvkLRmCvs","display_url":"pic.twitter.com\/5PvkLRmCvs","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187643910752858112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1538,"resize":"fit"},"small":{"w":680,"h":511,"resize":"fit"},"medium":{"w":1200,"h":901,"resize":"fit"}},"ext_alt_text":null},{"id":1187643895951192065,"id_str":"1187643895951192065","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/EHtb1LnU8AEVk_c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHtb1LnU8AEVk_c.jpg","url":"https:\/\/t.co\/5PvkLRmCvs","display_url":"pic.twitter.com\/5PvkLRmCvs","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187643910752858112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:29:54 +0000 2019","id":1187556864554258432,"id_str":"1187556864554258432","full_text":"RT + @tutaleni: The @EdTechOkstate @OSUEHA is ready for our workshop in ballroom + D. Join us #AECT19inspired https:\/\/t.co\/WCClXexFkK","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]},{"screen_name":"EdTechOkstate","name":"Okstate + Ed Tech","id":4141659852,"id_str":"4141659852","indices":[18,32]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1613204671,"id_str":"1613204671","name":"ETC + Research Lab","screen_name":"okstate_etc","location":"OSU 326 Willard Hall","description":"Exploring + Innovative, Creative and Imaginative Ways to Improve Teaching and Learning + with Emerging Technologies.","url":"https:\/\/t.co\/hWiysnAxXW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hWiysnAxXW","expanded_url":"https:\/\/techplaygroundblog.wordpress.com\/","display_url":"techplaygroundblog.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":475,"friends_count":204,"listed_count":39,"created_at":"Mon + Jul 22 16:29:05 +0000 2013","favourites_count":592,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1292,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000370545468\/7abdcb924b2a422e3cffdfa95c339a2d_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000370545468\/7abdcb924b2a422e3cffdfa95c339a2d_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1613204671\/1398954413","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 15:08:57 +0000 2019","id":1187385494805471232,"id_str":"1187385494805471232","full_text":"The + @EdTechOkstate @OSUEHA is ready for our workshop in ballroom D. Join us #AECT19inspired + https:\/\/t.co\/WCClXexFkK","truncated":false,"display_text_range":[0,91],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[76,91]}],"symbols":[],"user_mentions":[{"screen_name":"EdTechOkstate","name":"Okstate + Ed Tech","id":4141659852,"id_str":"4141659852","indices":[4,18]}],"urls":[],"media":[{"id":1187385489050877958,"id_str":"1187385489050877958","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpwz65UwAY4A8K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpwz65UwAY4A8K.jpg","url":"https:\/\/t.co\/WCClXexFkK","display_url":"pic.twitter.com\/WCClXexFkK","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187385494805471232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187385489050877958,"id_str":"1187385489050877958","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpwz65UwAY4A8K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpwz65UwAY4A8K.jpg","url":"https:\/\/t.co\/WCClXexFkK","display_url":"pic.twitter.com\/WCClXexFkK","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187385494805471232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 05:39:40 +0000 2019","id":1187604620576731136,"id_str":"1187604620576731136","full_text":"RT + @tadousay: #AECT19 is winding down. We''ve, got a half day left to go, but + seeing this #inspiredme message tonight really puts the \ud83c\udf52 on t\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]},{"text":"inspiredme","indices":[89,100]}],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 05:14:22 +0000 2019","id":1187598253484695552,"id_str":"1187598253484695552","full_text":"#AECT19 + is winding down. We''ve, got a half day left to go, but seeing this #inspiredme + message tonight really puts the \ud83c\udf52 on top of the awesomesauce sundae. + \u2764\ufe0f #proudbabysister https:\/\/t.co\/X7Lpv7MsWl https:\/\/t.co\/qeZ2xlJtPj","truncated":false,"display_text_range":[0,199],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"inspiredme","indices":[75,86]},{"text":"proudbabysister","indices":[159,175]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/X7Lpv7MsWl","expanded_url":"http:\/\/bit.ly\/2BKDBjm","display_url":"bit.ly\/2BKDBjm","indices":[176,199]}],"media":[{"id":1187598252239048704,"id_str":"1187598252239048704","indices":[200,223],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsyUXiVUAATKcu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsyUXiVUAATKcu.jpg","url":"https:\/\/t.co\/qeZ2xlJtPj","display_url":"pic.twitter.com\/qeZ2xlJtPj","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1187598253484695552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187598252239048704,"id_str":"1187598252239048704","indices":[200,223],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsyUXiVUAATKcu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsyUXiVUAATKcu.jpg","url":"https:\/\/t.co\/qeZ2xlJtPj","display_url":"pic.twitter.com\/qeZ2xlJtPj","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1187598253484695552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 03:23:16 +0000 2019","id":1187570291389546497,"id_str":"1187570291389546497","full_text":"Me + eating dinner after the university reception #aect19 https:\/\/t.co\/AVOIOT5tZm","truncated":false,"display_text_range":[0,55],"entities":{"hashtags":[{"text":"aect19","indices":[48,55]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187570272435523584,"id_str":"1187570272435523584","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHsY3upVUAAAxPK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHsY3upVUAAAxPK.jpg","url":"https:\/\/t.co\/AVOIOT5tZm","display_url":"pic.twitter.com\/AVOIOT5tZm","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1187570291389546497\/photo\/1","type":"photo","sizes":{"large":{"w":498,"h":372,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":498,"h":372,"resize":"fit"},"small":{"w":498,"h":372,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187570272435523584,"id_str":"1187570272435523584","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHsY3upVUAAAxPK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHsY3upVUAAAxPK.jpg","url":"https:\/\/t.co\/AVOIOT5tZm","display_url":"pic.twitter.com\/AVOIOT5tZm","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1187570291389546497\/photo\/1","type":"animated_gif","sizes":{"large":{"w":498,"h":372,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":498,"h":372,"resize":"fit"},"small":{"w":498,"h":372,"resize":"fit"}},"video_info":{"aspect_ratio":[83,62],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHsY3upVUAAAxPK.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:47:47 +0000 2019","id":1187561363406651393,"id_str":"1187561363406651393","full_text":"The + winner is....#AECT2019 #VT_IDT https:\/\/t.co\/uSWflKBlPg","truncated":false,"display_text_range":[0,34],"entities":{"hashtags":[{"text":"AECT2019","indices":[17,26]},{"text":"VT_IDT","indices":[27,34]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187561356620206081,"id_str":"1187561356620206081","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsQwwpUEAEEnWi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsQwwpUEAEEnWi.jpg","url":"https:\/\/t.co\/uSWflKBlPg","display_url":"pic.twitter.com\/uSWflKBlPg","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187561363406651393\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187561356620206081,"id_str":"1187561356620206081","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsQwwpUEAEEnWi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsQwwpUEAEEnWi.jpg","url":"https:\/\/t.co\/uSWflKBlPg","display_url":"pic.twitter.com\/uSWflKBlPg","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187561363406651393\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1003232844,"id_str":"1003232844","name":"Alicia + Johnson","screen_name":"onmyway2here","location":"Christiansburg, VA","description":"Instructional + Designer of Instructional Design (ID) Instruction PhD@virginiatechIDT. Good + days = Students, ID, Instruction, Research, Edtech, & Learning.","url":"https:\/\/t.co\/cCcuGeqoTV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cCcuGeqoTV","expanded_url":"https:\/\/liberalarts.vt.edu\/departments-and-schools\/school-of-education\/faculty\/alicia-johnson.html","display_url":"liberalarts.vt.edu\/departments-an\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":199,"friends_count":382,"listed_count":2,"created_at":"Tue + Dec 11 03:55:07 +0000 2012","favourites_count":4008,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":808,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3195564046\/04c6c148cecd8aeabb563780bedea34b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3195564046\/04c6c148cecd8aeabb563780bedea34b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1003232844\/1355198723","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 14:52:13 +0000 2019","id":1187743672030388225,"id_str":"1187743672030388225","full_text":"RT + @tutaleni: We had a lot of fun, asked many questions, learned about new tools, + talked through ideas and made new connections at the #Eme\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2950104673,"id_str":"2950104673","name":"Ayodeji + Ibukun","screen_name":"lbukunAA","location":"Oklahoma, USA","description":"B.Engrg + MS MNSE","url":"https:\/\/t.co\/kVfuPQQfYs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kVfuPQQfYs","expanded_url":"http:\/\/www.ayoibukun.com","display_url":"ayoibukun.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":489,"listed_count":0,"created_at":"Mon + Dec 29 12:06:33 +0000 2014","favourites_count":665,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":154,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2950104673\/1574622610","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 23:17:34 +0000 2019","id":1187508461078102017,"id_str":"1187508461078102017","full_text":"We + had a lot of fun, asked many questions, learned about new tools, talked through + ideas and made new connections at the #EmergingTechShowcase. Thank you \ud83d\udc4f\ud83c\udfff\ud83d\udc4f\ud83c\udfff + to those who presented and who took part. #aect19inspired #EmergingTechShowcase + #aect19 https:\/\/t.co\/z1P3YuG8CY","truncated":false,"display_text_range":[0,246],"entities":{"hashtags":[{"text":"EmergingTechShowcase","indices":[121,142]},{"text":"aect19inspired","indices":[201,216]},{"text":"EmergingTechShowcase","indices":[217,238]},{"text":"aect19","indices":[239,246]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187508456443396096,"id_str":"1187508456443396096","indices":[247,270],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","url":"https:\/\/t.co\/z1P3YuG8CY","display_url":"pic.twitter.com\/z1P3YuG8CY","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187508461078102017\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1195,"h":1499,"resize":"fit"},"small":{"w":542,"h":680,"resize":"fit"},"medium":{"w":957,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187508456443396096,"id_str":"1187508456443396096","indices":[247,270],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","url":"https:\/\/t.co\/z1P3YuG8CY","display_url":"pic.twitter.com\/z1P3YuG8CY","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187508461078102017\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1195,"h":1499,"resize":"fit"},"small":{"w":542,"h":680,"resize":"fit"},"medium":{"w":957,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 11:06:26 +0000 2019","id":1187686852142292992,"id_str":"1187686852142292992","full_text":"RT + @MelGoodEDU: Morehead State University EdD students had a blast at the University + Reception tonight. As AECT 1st timers, we are definite\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MelGoodEDU","name":"Melissa + Goodman","id":1161087679,"id_str":"1161087679","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 04:06:17 +0000 2019","id":1187581116510699520,"id_str":"1187581116510699520","full_text":"Morehead + State University EdD students had a blast at the University Reception tonight. + As AECT 1st timers, we are definitely leaving inspired! #aect19inspired #aect19 + https:\/\/t.co\/qkULo7Azar","truncated":false,"display_text_range":[0,167],"entities":{"hashtags":[{"text":"aect19inspired","indices":[144,159]},{"text":"aect19","indices":[160,167]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187581078325755904,"id_str":"1187581078325755904","indices":[168,191],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsistuVAAAssGy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsistuVAAAssGy.jpg","url":"https:\/\/t.co\/qkULo7Azar","display_url":"pic.twitter.com\/qkULo7Azar","expanded_url":"https:\/\/twitter.com\/MelGoodEDU\/status\/1187581116510699520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187581078325755904,"id_str":"1187581078325755904","indices":[168,191],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsistuVAAAssGy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsistuVAAAssGy.jpg","url":"https:\/\/t.co\/qkULo7Azar","display_url":"pic.twitter.com\/qkULo7Azar","expanded_url":"https:\/\/twitter.com\/MelGoodEDU\/status\/1187581116510699520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187581078321549315,"id_str":"1187581078321549315","indices":[168,191],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsisttU0AMWa_s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsisttU0AMWa_s.jpg","url":"https:\/\/t.co\/qkULo7Azar","display_url":"pic.twitter.com\/qkULo7Azar","expanded_url":"https:\/\/twitter.com\/MelGoodEDU\/status\/1187581116510699520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161087679,"id_str":"1161087679","name":"Melissa + Goodman","screen_name":"MelGoodEDU","location":"Clinton, KY","description":"County + Extension Agent for 4-H Youth Development | Education & Collaboration | Advocate + for FCS & CTE. Views are my own. RT not endorsement.","url":"https:\/\/t.co\/izMiFuYPzA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/izMiFuYPzA","expanded_url":"https:\/\/hickman.ca.uky.edu\/","display_url":"hickman.ca.uky.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":529,"friends_count":1279,"listed_count":18,"created_at":"Fri + Feb 08 19:57:55 +0000 2013","favourites_count":2183,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":987,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1553982233865756672\/yp_OWTk1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1553982233865756672\/yp_OWTk1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1161087679\/1659334237","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:21:40 +0000 2019","id":1187554790026436608,"id_str":"1187554790026436608","full_text":"RT + @SBarksway: Just attended my 1st ever round table session @ #aect19 and it + was FANTASTIC! Thank you for leading such a wonderful, engagi\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[63,70]}],"symbols":[],"user_mentions":[{"screen_name":"SBarksway","name":"Sarah + Barksdale","id":908737706699710464,"id_str":"908737706699710464","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 18:57:54 +0000 2019","id":1187443113922445312,"id_str":"1187443113922445312","full_text":"Just + attended my 1st ever round table session @ #aect19 and it was FANTASTIC! Thank + you for leading such a wonderful, engaging discussion around phenomenology + @JolieKennedy @pazureka #aect19inspired @LTMediaLab @UMN_CI https:\/\/t.co\/KD1sxKUERh","truncated":false,"display_text_range":[0,218],"entities":{"hashtags":[{"text":"aect19","indices":[48,55]},{"text":"aect19inspired","indices":[183,198]}],"symbols":[],"user_mentions":[{"screen_name":"JolieKennedy","name":"Jolie + Kennedy","id":202011104,"id_str":"202011104","indices":[159,172]},{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[173,182]},{"screen_name":"LTMediaLab","name":"Learning + Technologies","id":1260285405787652101,"id_str":"1260285405787652101","indices":[199,210]},{"screen_name":"UMN_CI","name":"U + of MN CEHD C&I","id":759684692,"id_str":"759684692","indices":[211,218]}],"urls":[],"media":[{"id":1187442309144563712,"id_str":"1187442309144563712","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":770,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1314,"resize":"fit"},"small":{"w":680,"h":436,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187442309144563712,"id_str":"1187442309144563712","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":770,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1314,"resize":"fit"},"small":{"w":680,"h":436,"resize":"fit"}},"ext_alt_text":null},{"id":1187442309148762112,"id_str":"1187442309148762112","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkfSQU4AA6UVk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkfSQU4AA6UVk.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187442394054004738,"id_str":"1187442394054004738","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkkOjUEAIwLPB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkkOjUEAIwLPB.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":908737706699710464,"id_str":"908737706699710464","name":"Sarah + Barksdale","screen_name":"SBarksway","location":"","description":"Educator + \ud83d\udcda Researcher \u270d\ud83c\udffb Instructional Design \ud83d\udc69\u200d\ud83c\udfa8 + PhD Cand.\u2615\ufe0f Learning Technologies \ud83d\udcbb Adventurer & Travelholic + \ud83c\udfd4\ufe0f \ud83d\udc99: #edtech #CSforALL #teachered #pd","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":329,"friends_count":480,"listed_count":5,"created_at":"Fri + Sep 15 17:02:07 +0000 2017","favourites_count":2160,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":428,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/908737706699710464\/1506899531","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 14:10:20 +0000 2019","id":1187733130611838976,"id_str":"1187733130611838976","full_text":"#AECT19 + has been a crazy whirlwind. Before we wrap up, I want to give a special shout + out to the Accessibility Committee for their hard work all year. \n\nRebecca + Reese\nChris Smith\nLinda Campion\nDavid Gardner\nIsmahan Arslan-Ari\nBob + Doyle\n\n*& Megan Murtaugh for coordinating interns","truncated":false,"display_text_range":[0,283],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910574724748644353,"id_str":"910574724748644353","name":"Amy + Lomellini","screen_name":"AmyLomellini_ID","location":"New York, USA","description":"Associate + Director of Blended & Online Learning and doctoral candidate with a passion + for accessible and inclusive online teaching and learning. #EdTech #A11y","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":644,"friends_count":1061,"listed_count":9,"created_at":"Wed + Sep 20 18:41:46 +0000 2017","favourites_count":7378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1141,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910574724748644353\/1551624059","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":16,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 12:55:29 +0000 2019","id":1187714296974843904,"id_str":"1187714296974843904","full_text":"Last + day to be inspired at #AECT19! Highlights include 3 workshops and 14 Inspire! + Sessions. Safe travels, everyone, and hope to see you all in Jacksonville + next year! https:\/\/t.co\/wn2Ky8BASn","truncated":false,"display_text_range":[0,167],"entities":{"hashtags":[{"text":"AECT19","indices":[27,34]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187714292507906051,"id_str":"1187714292507906051","indices":[168,191],"media_url":"http:\/\/pbs.twimg.com\/media\/EHub2zOWkAM9MPw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHub2zOWkAM9MPw.jpg","url":"https:\/\/t.co\/wn2Ky8BASn","display_url":"pic.twitter.com\/wn2Ky8BASn","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187714296974843904\/photo\/1","type":"photo","sizes":{"large":{"w":1070,"h":748,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1070,"h":748,"resize":"fit"},"small":{"w":680,"h":475,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187714292507906051,"id_str":"1187714292507906051","indices":[168,191],"media_url":"http:\/\/pbs.twimg.com\/media\/EHub2zOWkAM9MPw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHub2zOWkAM9MPw.jpg","url":"https:\/\/t.co\/wn2Ky8BASn","display_url":"pic.twitter.com\/wn2Ky8BASn","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187714296974843904\/photo\/1","type":"photo","sizes":{"large":{"w":1070,"h":748,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1070,"h":748,"resize":"fit"},"small":{"w":680,"h":475,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 14:45:15 +0000 2019","id":1187741920002371585,"id_str":"1187741920002371585","full_text":"RT + @LearnEngage: How do roles adopted in a discussion affect critical thinking? + In large lecture format courses, how might we be able to re\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 14:00:00 +0000 2019","id":1187730533637410818,"id_str":"1187730533637410818","full_text":"How + do roles adopted in a discussion affect critical thinking? In large lecture + format courses, how might we be able to reduce student anxiety in asking questions? + Explore these questions and more in the Online Discussion session, 10am in + Conf Room 8! #AECT19 https:\/\/t.co\/zYTrsa34bq","truncated":false,"display_text_range":[0,259],"entities":{"hashtags":[{"text":"AECT19","indices":[252,259]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187705693387673600,"id_str":"1187705693387673600","indices":[260,283],"media_url":"http:\/\/pbs.twimg.com\/media\/EHuUCRAU0AA6lf-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHuUCRAU0AA6lf-.jpg","url":"https:\/\/t.co\/zYTrsa34bq","display_url":"pic.twitter.com\/zYTrsa34bq","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187730533637410818\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":801,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"large":{"w":1920,"h":1281,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187705693387673600,"id_str":"1187705693387673600","indices":[260,283],"media_url":"http:\/\/pbs.twimg.com\/media\/EHuUCRAU0AA6lf-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHuUCRAU0AA6lf-.jpg","url":"https:\/\/t.co\/zYTrsa34bq","display_url":"pic.twitter.com\/zYTrsa34bq","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187730533637410818\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":801,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"large":{"w":1920,"h":1281,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 14:35:48 +0000 2019","id":1187739541509042177,"id_str":"1187739541509042177","full_text":"RT + @dtpthanh: Thanks for coming with us!\n @PaulineMuljana #aect19 #aect19inspired + https:\/\/t.co\/FLYTwCXyIZ","truncated":false,"display_text_range":[0,105],"entities":{"hashtags":[{"text":"aect19","indices":[58,65]},{"text":"aect19inspired","indices":[66,81]}],"symbols":[],"user_mentions":[{"screen_name":"dtpthanh","name":"\u0110inh + Th\u1ecb Ph\u01b0\u01a1ng Thanh","id":1531907057473187841,"id_str":"1531907057473187841","indices":[3,12]},{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[42,57]}],"urls":[{"url":"https:\/\/t.co\/FLYTwCXyIZ","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187399618918699008","display_url":"twitter.com\/PaulineMuljana\u2026","indices":[82,105]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:44:57 +0000 2019","id":1187485152424841218,"id_str":"1187485152424841218","full_text":"Thanks + for coming with us!\n @PaulineMuljana #aect19 #aect19inspired https:\/\/t.co\/FLYTwCXyIZ","truncated":false,"display_text_range":[0,67],"entities":{"hashtags":[{"text":"aect19","indices":[44,51]},{"text":"aect19inspired","indices":[52,67]}],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[28,43]}],"urls":[{"url":"https:\/\/t.co\/FLYTwCXyIZ","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187399618918699008","display_url":"twitter.com\/PaulineMuljana\u2026","indices":[68,91]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":991017763824025600,"id_str":"991017763824025600","name":"Thanh + Do","screen_name":"_ThanhDo","location":"Oklahoma, USA","description":"\u2618\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":50,"listed_count":0,"created_at":"Mon + Apr 30 18:13:41 +0000 2018","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1461175168152195079\/c3x7Df6b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1461175168152195079\/c3x7Df6b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/991017763824025600\/1554832273","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"F58EA8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187399618918699008,"quoted_status_id_str":"1187399618918699008","quoted_status_permalink":{"url":"https:\/\/t.co\/FLYTwCXyIZ","expanded":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187399618918699008","display":"twitter.com\/PaulineMuljana\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 16:05:04 +0000 2019","id":1187399618918699008,"id_str":"1187399618918699008","full_text":"This + \"I Zap, U Zap, We All Zap\" workshop is totally inspiring. If you are in + the job market, this is a great idea to present your resume. Shout out to + the Oklahoma State Univ team who are facilitating the workshop! #aect19 #aect19inspired + https:\/\/t.co\/WIt9namhFl","truncated":false,"display_text_range":[0,238],"entities":{"hashtags":[{"text":"aect19","indices":[215,222]},{"text":"aect19inspired","indices":[223,238]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187399594914639872,"id_str":"1187399594914639872","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHp9o_VUcAAHsvp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHp9o_VUcAAHsvp.jpg","url":"https:\/\/t.co\/WIt9namhFl","display_url":"pic.twitter.com\/WIt9namhFl","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187399618918699008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":240,"h":320,"resize":"fit"},"small":{"w":240,"h":320,"resize":"fit"},"medium":{"w":240,"h":320,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187399594914639872,"id_str":"1187399594914639872","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHp9o_VUcAAHsvp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHp9o_VUcAAHsvp.jpg","url":"https:\/\/t.co\/WIt9namhFl","display_url":"pic.twitter.com\/WIt9namhFl","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187399618918699008\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":240,"h":320,"resize":"fit"},"small":{"w":240,"h":320,"resize":"fit"},"medium":{"w":240,"h":320,"resize":"fit"}},"video_info":{"aspect_ratio":[3,4],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHp9o_VUcAAHsvp.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1187399618918699008,"quoted_status_id_str":"1187399618918699008","quoted_status_permalink":{"url":"https:\/\/t.co\/FLYTwCXyIZ","expanded":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187399618918699008","display":"twitter.com\/PaulineMuljana\u2026"},"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:45:36 +0000 2019","id":1187560813235752961,"id_str":"1187560813235752961","full_text":"RT + @HsuBSU: Had a great meeting and discussions with Dr. Hodges! Look forward + to serving as the International Column Editor in the next few\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HsuBSU","name":"Yu-Chang + Hsu","id":237053180,"id_str":"237053180","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":804807943,"id_str":"804807943","name":"TechTrends + Editor","screen_name":"AECTTechTrends","location":"","description":"Tweets + from the Editor of TechTrends, an AECT journal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2050,"friends_count":15,"listed_count":57,"created_at":"Wed + Sep 05 15:17:03 +0000 2012","favourites_count":772,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/804807943\/1483653902","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:30:19 +0000 2019","id":1187405973012377600,"id_str":"1187405973012377600","full_text":"Had + a great meeting and discussions with Dr. Hodges! Look forward to serving as + the International Column Editor in the next few years! @hodgesc @AECTTechTrends + #aect2019 https:\/\/t.co\/i83vrYpRms","truncated":false,"display_text_range":[0,169],"entities":{"hashtags":[{"text":"aect2019","indices":[160,169]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[135,143]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[144,159]}],"urls":[],"media":[{"id":1187405922986946560,"id_str":"1187405922986946560","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqDZVPU8AA_VGt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqDZVPU8AA_VGt.jpg","url":"https:\/\/t.co\/i83vrYpRms","display_url":"pic.twitter.com\/i83vrYpRms","expanded_url":"https:\/\/twitter.com\/HsuBSU\/status\/1187405973012377600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":920,"h":1200,"resize":"fit"},"large":{"w":1570,"h":2048,"resize":"fit"},"small":{"w":521,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187405922986946560,"id_str":"1187405922986946560","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqDZVPU8AA_VGt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqDZVPU8AA_VGt.jpg","url":"https:\/\/t.co\/i83vrYpRms","display_url":"pic.twitter.com\/i83vrYpRms","expanded_url":"https:\/\/twitter.com\/HsuBSU\/status\/1187405973012377600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":920,"h":1200,"resize":"fit"},"large":{"w":1570,"h":2048,"resize":"fit"},"small":{"w":521,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237053180,"id_str":"237053180","name":"Yu-Chang + Hsu","screen_name":"HsuBSU","location":"","description":"Professor, Boise + State University","url":"https:\/\/t.co\/hyvWHDFMCC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hyvWHDFMCC","expanded_url":"https:\/\/yuchanghsu.wixsite.com\/portfolio","display_url":"yuchanghsu.wixsite.com\/portfolio","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":405,"listed_count":0,"created_at":"Tue + Jan 11 23:53:22 +0000 2011","favourites_count":1093,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":432,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213226927\/HSU_Headshot_new_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213226927\/HSU_Headshot_new_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 14:00:00 +0000 2019","id":1187730533637410818,"id_str":"1187730533637410818","full_text":"How + do roles adopted in a discussion affect critical thinking? In large lecture + format courses, how might we be able to reduce student anxiety in asking questions? + Explore these questions and more in the Online Discussion session, 10am in + Conf Room 8! #AECT19 https:\/\/t.co\/zYTrsa34bq","truncated":false,"display_text_range":[0,259],"entities":{"hashtags":[{"text":"AECT19","indices":[252,259]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187705693387673600,"id_str":"1187705693387673600","indices":[260,283],"media_url":"http:\/\/pbs.twimg.com\/media\/EHuUCRAU0AA6lf-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHuUCRAU0AA6lf-.jpg","url":"https:\/\/t.co\/zYTrsa34bq","display_url":"pic.twitter.com\/zYTrsa34bq","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187730533637410818\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":801,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"large":{"w":1920,"h":1281,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187705693387673600,"id_str":"1187705693387673600","indices":[260,283],"media_url":"http:\/\/pbs.twimg.com\/media\/EHuUCRAU0AA6lf-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHuUCRAU0AA6lf-.jpg","url":"https:\/\/t.co\/zYTrsa34bq","display_url":"pic.twitter.com\/zYTrsa34bq","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187730533637410818\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":801,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"large":{"w":1920,"h":1281,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 13:39:44 +0000 2019","id":1187725430805225478,"id_str":"1187725430805225478","full_text":"I + do all of my own stunts #aect19","truncated":false,"display_text_range":[0,33],"entities":{"hashtags":[{"text":"aect19","indices":[26,33]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 08:24:35 +0000 2019","id":1187646122036084736,"id_str":"1187646122036084736","full_text":"#aect19inspired + Alma mater all represent for University night! @MSU_EDD @IUSchoolofEd @fsu + https:\/\/t.co\/Zt3HuRoQA8","truncated":false,"display_text_range":[0,91],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[{"screen_name":"MSU_EDD","name":"MSU + EDD","id":735131095054815232,"id_str":"735131095054815232","indices":[64,72]},{"screen_name":"IUSchoolofEd","name":"IU + School of Education","id":33737494,"id_str":"33737494","indices":[73,86]},{"screen_name":"fsu","name":"FSU","id":1549272836,"id_str":"1549272836","indices":[87,91]}],"urls":[{"url":"https:\/\/t.co\/Zt3HuRoQA8","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187646122036084736\/photo\/1","display_url":"pic.twitter.com\/Zt3HuRoQA8","indices":[92,115]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:22:35 +0000 2019","id":1187555021296193536,"id_str":"1187555021296193536","full_text":"RT + @FanXU92073425: Today we had an amazing panel discussion in Organizational + Training & Performance session. thanks for @correia65 @carano\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FanXU92073425","name":"Fan + XU \u8bb8\u5e06","id":1098051352645623808,"id_str":"1098051352645623808","indices":[3,17]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[125,135]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 01:07:30 +0000 2019","id":1187536126183034880,"id_str":"1187536126183034880","full_text":"Today + we had an amazing panel discussion in Organizational Training & Performance + session. thanks for @correia65 @caranorth11 @AnnaRoseLeach @dr_tracy_s reviewing + the current needs of instructional designers from different perspectives. + Really inspired! #aect19inspired #aect19 https:\/\/t.co\/FDRKTlv711","truncated":false,"display_text_range":[0,281],"entities":{"hashtags":[{"text":"aect19inspired","indices":[258,273]},{"text":"aect19","indices":[274,281]}],"symbols":[],"user_mentions":[{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[106,116]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[117,129]},{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[130,144]}],"urls":[],"media":[{"id":1187536098794164225,"id_str":"1187536098794164225","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr5yj6UUAEJaKg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr5yj6UUAEJaKg.jpg","url":"https:\/\/t.co\/FDRKTlv711","display_url":"pic.twitter.com\/FDRKTlv711","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187536098794164225,"id_str":"1187536098794164225","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr5yj6UUAEJaKg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr5yj6UUAEJaKg.jpg","url":"https:\/\/t.co\/FDRKTlv711","display_url":"pic.twitter.com\/FDRKTlv711","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187536098798366720,"id_str":"1187536098798366720","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr5yj7UcAAq-Yt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr5yj7UcAAq-Yt.jpg","url":"https:\/\/t.co\/FDRKTlv711","display_url":"pic.twitter.com\/FDRKTlv711","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187536098802561026,"id_str":"1187536098802561026","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr5yj8UcAIV63L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr5yj8UcAIV63L.jpg","url":"https:\/\/t.co\/FDRKTlv711","display_url":"pic.twitter.com\/FDRKTlv711","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187536098890678274,"id_str":"1187536098890678274","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr5ykRVAAIshTr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr5ykRVAAIshTr.jpg","url":"https:\/\/t.co\/FDRKTlv711","display_url":"pic.twitter.com\/FDRKTlv711","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1098051352645623808,"id_str":"1098051352645623808","name":"Fan + XU \u8bb8\u5e06","screen_name":"FanXU92073425","location":"Columbus, Ohio","description":"Ph.D. + candidate of Learning Technologies @OhioState @OSUehe Graduate Research Assistant + @OSUcete Member of Research Group @LEDresearch","url":"https:\/\/t.co\/wYY2xiYHsc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wYY2xiYHsc","expanded_url":"https:\/\/fanxuspace.webnode.page","display_url":"fanxuspace.webnode.page","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":158,"friends_count":302,"listed_count":0,"created_at":"Wed + Feb 20 02:46:58 +0000 2019","favourites_count":391,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":109,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1098051352645623808\/1646758591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:29:39 +0000 2019","id":1187556798129029120,"id_str":"1187556798129029120","full_text":"We + got an autonomous @lyft squee!! #aect19inspired always learning. https:\/\/t.co\/cTFV2a0M3E","truncated":false,"display_text_range":[0,67],"entities":{"hashtags":[{"text":"aect19inspired","indices":[35,50]}],"symbols":[],"user_mentions":[{"screen_name":"lyft","name":"Lyft","id":569569550,"id_str":"569569550","indices":[21,26]}],"urls":[],"media":[{"id":1187556791279685632,"id_str":"1187556791279685632","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsMnBbUEAAAl4-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsMnBbUEAAAl4-.jpg","url":"https:\/\/t.co\/cTFV2a0M3E","display_url":"pic.twitter.com\/cTFV2a0M3E","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187556798129029120\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187556791279685632,"id_str":"1187556791279685632","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsMnBbUEAAAl4-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsMnBbUEAAAl4-.jpg","url":"https:\/\/t.co\/cTFV2a0M3E","display_url":"pic.twitter.com\/cTFV2a0M3E","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187556798129029120\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 10:59:59 +0000 2019","id":1187685229265334272,"id_str":"1187685229265334272","full_text":"RT + @PaulineMuljana: Thank you #AECTSTC for giving us the Outstanding Article + Award. Also, congrats, Dr. @tintinluo, my advisor and co-autho\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECTSTC","indices":[30,38]}],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]},{"screen_name":"tintinluo","name":"Tian + Luo","id":29474883,"id_str":"29474883","indices":[104,114]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 02:43:50 +0000 2019","id":1187560369901850624,"id_str":"1187560369901850624","full_text":"Thank + you #AECTSTC for giving us the Outstanding Article Award. Also, congrats, + Dr. @tintinluo, my advisor and co-author. I wouldn''t have gotten this award + without her guidance and support. #aect19 #aect19inspired #GoMonarchs https:\/\/t.co\/yebLI3bRfB","truncated":false,"display_text_range":[0,225],"entities":{"hashtags":[{"text":"AECTSTC","indices":[10,18]},{"text":"aect19","indices":[190,197]},{"text":"aect19inspired","indices":[198,213]},{"text":"GoMonarchs","indices":[214,225]}],"symbols":[],"user_mentions":[{"screen_name":"tintinluo","name":"Tian + Luo","id":29474883,"id_str":"29474883","indices":[84,94]}],"urls":[],"media":[{"id":1187560358333968384,"id_str":"1187560358333968384","indices":[226,249],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsP2pvU8AAAzTB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsP2pvU8AAAzTB.jpg","url":"https:\/\/t.co\/yebLI3bRfB","display_url":"pic.twitter.com\/yebLI3bRfB","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187560369901850624\/photo\/1","type":"photo","sizes":{"small":{"w":675,"h":487,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":487,"resize":"fit"},"large":{"w":675,"h":487,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187560358333968384,"id_str":"1187560358333968384","indices":[226,249],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsP2pvU8AAAzTB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsP2pvU8AAAzTB.jpg","url":"https:\/\/t.co\/yebLI3bRfB","display_url":"pic.twitter.com\/yebLI3bRfB","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187560369901850624\/photo\/1","type":"photo","sizes":{"small":{"w":675,"h":487,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":487,"resize":"fit"},"large":{"w":675,"h":487,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":25,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 03:11:02 +0000 2019","id":1187567214607552514,"id_str":"1187567214607552514","full_text":"I + finished my last #aect19 session by checking out an awesome emerging tech + showcase- Using H5P to Create Engaging Microlearning Experiences! Can\u2019t + wait to explore this lore. Thanks for inspiring me @jmenglund03 & annette! + \ud83e\udd29#aectinspired https:\/\/t.co\/YympxVHvpy","truncated":false,"display_text_range":[0,241],"entities":{"hashtags":[{"text":"aect19","indices":[19,26]},{"text":"aectinspired","indices":[228,241]}],"symbols":[],"user_mentions":[{"screen_name":"jmenglund03","name":"jenn\u03b9\u0493er + engl\u03c5nd","id":64769037,"id_str":"64769037","indices":[199,211]}],"urls":[],"media":[{"id":1187567179652157440,"id_str":"1187567179652157440","indices":[242,265],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsWDtIUUAA--UE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsWDtIUUAA--UE.jpg","url":"https:\/\/t.co\/YympxVHvpy","display_url":"pic.twitter.com\/YympxVHvpy","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187567214607552514\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1882,"h":2048,"resize":"fit"},"small":{"w":625,"h":680,"resize":"fit"},"medium":{"w":1103,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187567179652157440,"id_str":"1187567179652157440","indices":[242,265],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsWDtIUUAA--UE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsWDtIUUAA--UE.jpg","url":"https:\/\/t.co\/YympxVHvpy","display_url":"pic.twitter.com\/YympxVHvpy","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187567214607552514\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1882,"h":2048,"resize":"fit"},"small":{"w":625,"h":680,"resize":"fit"},"medium":{"w":1103,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1187567179685748736,"id_str":"1187567179685748736","indices":[242,265],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsWDtQU4AAk1Nm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsWDtQU4AAk1Nm.jpg","url":"https:\/\/t.co\/YympxVHvpy","display_url":"pic.twitter.com\/YympxVHvpy","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187567214607552514\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1366,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"}},"ext_alt_text":null},{"id":1187567179723468800,"id_str":"1187567179723468800","indices":[242,265],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsWDtZUcAA5hx2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsWDtZUcAA5hx2.jpg","url":"https:\/\/t.co\/YympxVHvpy","display_url":"pic.twitter.com\/YympxVHvpy","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187567214607552514\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":672,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1186,"resize":"fit"},"large":{"w":2048,"h":2024,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":908737706699710464,"id_str":"908737706699710464","name":"Sarah + Barksdale","screen_name":"SBarksway","location":"","description":"Educator + \ud83d\udcda Researcher \u270d\ud83c\udffb Instructional Design \ud83d\udc69\u200d\ud83c\udfa8 + PhD Cand.\u2615\ufe0f Learning Technologies \ud83d\udcbb Adventurer & Travelholic + \ud83c\udfd4\ufe0f \ud83d\udc99: #edtech #CSforALL #teachered #pd","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":329,"friends_count":480,"listed_count":5,"created_at":"Fri + Sep 15 17:02:07 +0000 2017","favourites_count":2160,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":428,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/908737706699710464\/1506899531","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 03:42:33 +0000 2019","id":1187575147441442816,"id_str":"1187575147441442816","full_text":"RT + @hodgesc: Not too many years ago, the thought of walking by the @SpringerEdu + table and seeing these would have seemed like an impossibil\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"SpringerEdu","name":"Springer + Education","id":347188522,"id_str":"347188522","indices":[67,79]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37832184,"id_str":"37832184","name":"May","screen_name":"literacyandland","location":"","description":"I''m + a life-long learner. First generation immigrant. Multilingualist. she\/her.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":234,"friends_count":1201,"listed_count":10,"created_at":"Tue + May 05 02:20:23 +0000 2009","favourites_count":2552,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2288,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1250917316344201216\/_nctWKqp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1250917316344201216\/_nctWKqp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37832184\/1400465496","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 22:30:00 +0000 2019","id":1187496489230176257,"id_str":"1187496489230176257","full_text":"Not + too many years ago, the thought of walking by the @SpringerEdu table and seeing + these would have seemed like an impossibility. @AECT helped make them and + so many other things possible for me. What''s your next project? #aect19inspired + https:\/\/t.co\/tyIkFJAINL","truncated":false,"display_text_range":[0,239],"entities":{"hashtags":[{"text":"aect19inspired","indices":[224,239]}],"symbols":[],"user_mentions":[{"screen_name":"SpringerEdu","name":"Springer + Education","id":347188522,"id_str":"347188522","indices":[54,66]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[132,137]}],"urls":[],"media":[{"id":1187486977341263872,"id_str":"1187486977341263872","indices":[240,263],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","url":"https:\/\/t.co\/tyIkFJAINL","display_url":"pic.twitter.com\/tyIkFJAINL","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187496489230176257\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":466,"resize":"fit"},"large":{"w":2048,"h":1402,"resize":"fit"},"medium":{"w":1200,"h":822,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187486977341263872,"id_str":"1187486977341263872","indices":[240,263],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","url":"https:\/\/t.co\/tyIkFJAINL","display_url":"pic.twitter.com\/tyIkFJAINL","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187496489230176257\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":466,"resize":"fit"},"large":{"w":2048,"h":1402,"resize":"fit"},"medium":{"w":1200,"h":822,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":36,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 05:40:28 +0000 2019","id":1187604819923689474,"id_str":"1187604819923689474","full_text":"RT + @nicolapallitt: Meeting up with fellow Africans at @AECT #aect19inspired Liberia, + Tanzania, Nigeria, SA & Namibia https:\/\/t.co\/0Zp0eUlGJ1","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19inspired","indices":[60,75]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[54,59]}],"urls":[],"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}},"source_status_id":1187529122987180032,"source_status_id_str":"1187529122987180032","source_user_id":118368334,"source_user_id_str":"118368334"}]},"extended_entities":{"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}},"source_status_id":1187529122987180032,"source_status_id_str":"1187529122987180032","source_user_id":118368334,"source_user_id_str":"118368334","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 00:39:40 +0000 2019","id":1187529122987180032,"id_str":"1187529122987180032","full_text":"Meeting + up with fellow Africans at @AECT #aect19inspired Liberia, Tanzania, Nigeria, + SA & Namibia https:\/\/t.co\/0Zp0eUlGJ1","truncated":false,"display_text_range":[0,101],"entities":{"hashtags":[{"text":"aect19inspired","indices":[41,56]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[35,40]}],"urls":[],"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 14:53:43 +0000 2019","id":1187744052525109248,"id_str":"1187744052525109248","full_text":"Happy + Friday @AECT! During our last day together at #aect19, join us to shine a + light on the importance of #LearnerEngagement and ways to facilitate it. \ud83c\udfc6@LearnEngage + https:\/\/t.co\/82aDlEPl4O","truncated":false,"display_text_range":[0,166],"entities":{"hashtags":[{"text":"aect19","indices":[52,59]},{"text":"LearnerEngagement","indices":[107,125]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[13,18]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[154,166]}],"urls":[],"media":[{"id":1187744047546458112,"id_str":"1187744047546458112","indices":[167,190],"media_url":"http:\/\/pbs.twimg.com\/media\/EHu26xYXYAAgBgk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHu26xYXYAAgBgk.jpg","url":"https:\/\/t.co\/82aDlEPl4O","display_url":"pic.twitter.com\/82aDlEPl4O","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187744052525109248\/photo\/1","type":"photo","sizes":{"medium":{"w":927,"h":362,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":266,"resize":"fit"},"large":{"w":927,"h":362,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187744047546458112,"id_str":"1187744047546458112","indices":[167,190],"media_url":"http:\/\/pbs.twimg.com\/media\/EHu26xYXYAAgBgk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHu26xYXYAAgBgk.jpg","url":"https:\/\/t.co\/82aDlEPl4O","display_url":"pic.twitter.com\/82aDlEPl4O","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187744052525109248\/photo\/1","type":"photo","sizes":{"medium":{"w":927,"h":362,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":266,"resize":"fit"},"large":{"w":927,"h":362,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:31:43 +0000 2019","id":1187557320366215168,"id_str":"1187557320366215168","full_text":"RT + @CaseyHi29640551: love this! so import to stay inspired, that\u2019s what + this is all about! #aect19 #aect19inspired #eme2040 #fsu2020 https:\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[91,98]},{"text":"aect19inspired","indices":[99,114]},{"text":"eme2040","indices":[115,123]},{"text":"fsu2020","indices":[124,132]}],"symbols":[],"user_mentions":[{"screen_name":"CaseyHi29640551","name":"Casey + Higgins","id":1168888326880931842,"id_str":"1168888326880931842","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 00:49:17 +0000 2019","id":1187531541557194754,"id_str":"1187531541557194754","full_text":"love + this! so import to stay inspired, that\u2019s what this is all about! #aect19 + #aect19inspired #eme2040 #fsu2020 https:\/\/t.co\/7VtnfWr40w","truncated":false,"display_text_range":[0,111],"entities":{"hashtags":[{"text":"aect19","indices":[70,77]},{"text":"aect19inspired","indices":[78,93]},{"text":"eme2040","indices":[94,102]},{"text":"fsu2020","indices":[103,111]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7VtnfWr40w","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410","display_url":"twitter.com\/SultanMutlaq\/s\u2026","indices":[112,135]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1168888326880931842,"id_str":"1168888326880931842","name":"Casey + Higgins","screen_name":"CaseyHi29640551","location":"","description":"eme2040","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":17,"listed_count":0,"created_at":"Tue + Sep 03 14:07:57 +0000 2019","favourites_count":23,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1169610264288944128\/IyVyu3w5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169610264288944128\/IyVyu3w5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168888326880931842\/1567691349","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187068404655505410,"quoted_status_id_str":"1187068404655505410","quoted_status_permalink":{"url":"https:\/\/t.co\/7VtnfWr40w","expanded":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410","display":"twitter.com\/SultanMutlaq\/s\u2026"},"quoted_status":{"created_at":"Wed + Oct 23 18:08:56 +0000 2019","id":1187068404655505410,"id_str":"1187068404655505410","full_text":"Third + day #aect19inspired #AECTech2019 #aect19inspired Be inspired https:\/\/t.co\/OdpkOCJKOG","truncated":false,"display_text_range":[0,66],"entities":{"hashtags":[{"text":"aect19inspired","indices":[10,25]},{"text":"AECTech2019","indices":[26,38]},{"text":"aect19inspired","indices":[39,54]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187068399836266496,"id_str":"1187068399836266496","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","url":"https:\/\/t.co\/OdpkOCJKOG","display_url":"pic.twitter.com\/OdpkOCJKOG","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187068399836266496,"id_str":"1187068399836266496","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","url":"https:\/\/t.co\/OdpkOCJKOG","display_url":"pic.twitter.com\/OdpkOCJKOG","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187052419324055552,"in_reply_to_status_id_str":"1187052419324055552","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1187068404655505410,"quoted_status_id_str":"1187068404655505410","quoted_status_permalink":{"url":"https:\/\/t.co\/7VtnfWr40w","expanded":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410","display":"twitter.com\/SultanMutlaq\/s\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:24:02 +0000 2019","id":1187555387777703936,"id_str":"1187555387777703936","full_text":"RT + @idtesu: #AECT2019\nBreakfast with Champions: an event where experienced professionals + in the field of instructional design and technolog\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT2019","indices":[12,21]}],"symbols":[],"user_mentions":[{"screen_name":"idtesu","name":"ESU + Instructional Design & Technology Program","id":107144043,"id_str":"107144043","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 22:43:19 +0000 2019","id":1187499840483164160,"id_str":"1187499840483164160","full_text":"#AECT2019\nBreakfast + with Champions: an event where experienced professionals in the field of instructional + design and technology share from their expertise with those who are early + off in their careers, to provide them with mentorship and advice. https:\/\/t.co\/WK4kDSDaFJ","truncated":false,"display_text_range":[0,246],"entities":{"hashtags":[{"text":"AECT2019","indices":[0,9]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187499829800210432,"id_str":"1187499829800210432","indices":[247,270],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrYzbYUEAAG7zY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrYzbYUEAAG7zY.jpg","url":"https:\/\/t.co\/WK4kDSDaFJ","display_url":"pic.twitter.com\/WK4kDSDaFJ","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1187499840483164160\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187499829800210432,"id_str":"1187499829800210432","indices":[247,270],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrYzbYUEAAG7zY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrYzbYUEAAG7zY.jpg","url":"https:\/\/t.co\/WK4kDSDaFJ","display_url":"pic.twitter.com\/WK4kDSDaFJ","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1187499840483164160\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187499829804486656,"id_str":"1187499829804486656","indices":[247,270],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrYzbZVUAAAFH9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrYzbZVUAAAFH9.jpg","url":"https:\/\/t.co\/WK4kDSDaFJ","display_url":"pic.twitter.com\/WK4kDSDaFJ","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1187499840483164160\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 11:01:51 +0000 2019","id":1187685697672679424,"id_str":"1187685697672679424","full_text":"RT + @christieliuidtr: So great sharing the one hour concurrent sessions with Dr. + Elizabeth Boling from @IndianaUniv about common interests o\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"IndianaUniv","name":"Indiana + University","id":100367386,"id_str":"100367386","indices":[102,114]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 07:03:44 +0000 2019","id":1187625774724943872,"id_str":"1187625774724943872","full_text":"So + great sharing the one hour concurrent sessions with Dr. Elizabeth Boling from + @IndianaUniv about common interests on #instructionaldesign #design #aect19 + #aect19inspired @AECT @aectdddivision @jmulibraries @JMU https:\/\/t.co\/z3AVu6DBjc","truncated":false,"display_text_range":[0,213],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[120,140]},{"text":"design","indices":[141,148]},{"text":"aect19","indices":[149,156]},{"text":"aect19inspired","indices":[157,172]}],"symbols":[],"user_mentions":[{"screen_name":"IndianaUniv","name":"Indiana + University","id":100367386,"id_str":"100367386","indices":[81,93]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[173,178]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[179,194]},{"screen_name":"JMUlibraries","name":"JMU + Libraries","id":159108009,"id_str":"159108009","indices":[195,208]},{"screen_name":"JMU","name":"JMU","id":15998113,"id_str":"15998113","indices":[209,213]}],"urls":[],"media":[{"id":1187625759713591297,"id_str":"1187625759713591297","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHtLVg3VAAEe9-c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHtLVg3VAAEe9-c.jpg","url":"https:\/\/t.co\/z3AVu6DBjc","display_url":"pic.twitter.com\/z3AVu6DBjc","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187625774724943872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187625759713591297,"id_str":"1187625759713591297","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHtLVg3VAAEe9-c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHtLVg3VAAEe9-c.jpg","url":"https:\/\/t.co\/z3AVu6DBjc","display_url":"pic.twitter.com\/z3AVu6DBjc","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187625774724943872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187625759709384704,"id_str":"1187625759709384704","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHtLVg2U0AAUrVA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHtLVg2U0AAUrVA.jpg","url":"https:\/\/t.co\/z3AVu6DBjc","display_url":"pic.twitter.com\/z3AVu6DBjc","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187625774724943872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187625759709388800,"id_str":"1187625759709388800","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHtLVg2U4AA3YLg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHtLVg2U4AA3YLg.jpg","url":"https:\/\/t.co\/z3AVu6DBjc","display_url":"pic.twitter.com\/z3AVu6DBjc","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187625774724943872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 04:06:17 +0000 2019","id":1187581116510699520,"id_str":"1187581116510699520","full_text":"Morehead + State University EdD students had a blast at the University Reception tonight. + As AECT 1st timers, we are definitely leaving inspired! #aect19inspired #aect19 + https:\/\/t.co\/qkULo7Azar","truncated":false,"display_text_range":[0,167],"entities":{"hashtags":[{"text":"aect19inspired","indices":[144,159]},{"text":"aect19","indices":[160,167]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187581078325755904,"id_str":"1187581078325755904","indices":[168,191],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsistuVAAAssGy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsistuVAAAssGy.jpg","url":"https:\/\/t.co\/qkULo7Azar","display_url":"pic.twitter.com\/qkULo7Azar","expanded_url":"https:\/\/twitter.com\/MelGoodEDU\/status\/1187581116510699520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187581078325755904,"id_str":"1187581078325755904","indices":[168,191],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsistuVAAAssGy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsistuVAAAssGy.jpg","url":"https:\/\/t.co\/qkULo7Azar","display_url":"pic.twitter.com\/qkULo7Azar","expanded_url":"https:\/\/twitter.com\/MelGoodEDU\/status\/1187581116510699520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187581078321549315,"id_str":"1187581078321549315","indices":[168,191],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsisttU0AMWa_s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsisttU0AMWa_s.jpg","url":"https:\/\/t.co\/qkULo7Azar","display_url":"pic.twitter.com\/qkULo7Azar","expanded_url":"https:\/\/twitter.com\/MelGoodEDU\/status\/1187581116510699520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161087679,"id_str":"1161087679","name":"Melissa + Goodman","screen_name":"MelGoodEDU","location":"Clinton, KY","description":"County + Extension Agent for 4-H Youth Development | Education & Collaboration | Advocate + for FCS & CTE. Views are my own. RT not endorsement.","url":"https:\/\/t.co\/izMiFuYPzA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/izMiFuYPzA","expanded_url":"https:\/\/hickman.ca.uky.edu\/","display_url":"hickman.ca.uky.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":529,"friends_count":1279,"listed_count":18,"created_at":"Fri + Feb 08 19:57:55 +0000 2013","favourites_count":2183,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":987,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1553982233865756672\/yp_OWTk1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1553982233865756672\/yp_OWTk1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1161087679\/1659334237","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:32:16 +0000 2019","id":1187557458350206976,"id_str":"1187557458350206976","full_text":"RT + @tutaleni: We are almost ready! If you\u2019re showing come set up. #aect19inspired + https:\/\/t.co\/BBwfBnUQpo","truncated":false,"display_text_range":[0,105],"entities":{"hashtags":[{"text":"aect19inspired","indices":[66,81]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]}],"urls":[],"media":[{"id":1187471961854640130,"id_str":"1187471961854640130","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq_dTMVAAIvfTQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq_dTMVAAIvfTQ.jpg","url":"https:\/\/t.co\/BBwfBnUQpo","display_url":"pic.twitter.com\/BBwfBnUQpo","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187471969328873478\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"source_status_id":1187471969328873478,"source_status_id_str":"1187471969328873478","source_user_id":48223678,"source_user_id_str":"48223678"}]},"extended_entities":{"media":[{"id":1187471961854640130,"id_str":"1187471961854640130","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq_dTMVAAIvfTQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq_dTMVAAIvfTQ.jpg","url":"https:\/\/t.co\/BBwfBnUQpo","display_url":"pic.twitter.com\/BBwfBnUQpo","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187471969328873478\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"source_status_id":1187471969328873478,"source_status_id_str":"1187471969328873478","source_user_id":48223678,"source_user_id_str":"48223678","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1613204671,"id_str":"1613204671","name":"ETC + Research Lab","screen_name":"okstate_etc","location":"OSU 326 Willard Hall","description":"Exploring + Innovative, Creative and Imaginative Ways to Improve Teaching and Learning + with Emerging Technologies.","url":"https:\/\/t.co\/hWiysnAxXW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hWiysnAxXW","expanded_url":"https:\/\/techplaygroundblog.wordpress.com\/","display_url":"techplaygroundblog.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":475,"friends_count":204,"listed_count":39,"created_at":"Mon + Jul 22 16:29:05 +0000 2013","favourites_count":592,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1292,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000370545468\/7abdcb924b2a422e3cffdfa95c339a2d_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000370545468\/7abdcb924b2a422e3cffdfa95c339a2d_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1613204671\/1398954413","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 20:52:34 +0000 2019","id":1187471969328873478,"id_str":"1187471969328873478","full_text":"We + are almost ready! If you\u2019re showing come set up. #aect19inspired https:\/\/t.co\/BBwfBnUQpo","truncated":false,"display_text_range":[0,67],"entities":{"hashtags":[{"text":"aect19inspired","indices":[52,67]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187471961854640130,"id_str":"1187471961854640130","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq_dTMVAAIvfTQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq_dTMVAAIvfTQ.jpg","url":"https:\/\/t.co\/BBwfBnUQpo","display_url":"pic.twitter.com\/BBwfBnUQpo","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187471969328873478\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187471961854640130,"id_str":"1187471961854640130","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq_dTMVAAIvfTQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq_dTMVAAIvfTQ.jpg","url":"https:\/\/t.co\/BBwfBnUQpo","display_url":"pic.twitter.com\/BBwfBnUQpo","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187471969328873478\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 13:56:44 +0000 2019","id":1187729711666876416,"id_str":"1187729711666876416","full_text":"RT + @Happy_Tao: So happy to see our own Noah Koubenec @EdTech_UofSC delivered + the Inspire! Session on GitHub! Nicely done! #aect19 #aect19in\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[122,129]}],"symbols":[],"user_mentions":[{"screen_name":"Happy_Tao","name":"Hengtao + Tang","id":482227724,"id_str":"482227724","indices":[3,13]},{"screen_name":"EdTech_UofSC","name":"LD&T + and EdTech at UofSC","id":2835369671,"id_str":"2835369671","indices":[53,66]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:27:17 +0000 2019","id":1187405208441065472,"id_str":"1187405208441065472","full_text":"So + happy to see our own Noah Koubenec @EdTech_UofSC delivered the Inspire! Session + on GitHub! Nicely done! #aect19 #aect19inspired https:\/\/t.co\/2L4JpYHjOP","truncated":false,"display_text_range":[0,130],"entities":{"hashtags":[{"text":"aect19","indices":[107,114]},{"text":"aect19inspired","indices":[115,130]}],"symbols":[],"user_mentions":[{"screen_name":"EdTech_UofSC","name":"LD&T + and EdTech at UofSC","id":2835369671,"id_str":"2835369671","indices":[38,51]}],"urls":[],"media":[{"id":1187405190883790849,"id_str":"1187405190883790849","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqCut8VUAE0j-V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqCut8VUAE0j-V.jpg","url":"https:\/\/t.co\/2L4JpYHjOP","display_url":"pic.twitter.com\/2L4JpYHjOP","expanded_url":"https:\/\/twitter.com\/Happy_Tao\/status\/1187405208441065472\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187405190883790849,"id_str":"1187405190883790849","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqCut8VUAE0j-V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqCut8VUAE0j-V.jpg","url":"https:\/\/t.co\/2L4JpYHjOP","display_url":"pic.twitter.com\/2L4JpYHjOP","expanded_url":"https:\/\/twitter.com\/Happy_Tao\/status\/1187405208441065472\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":482227724,"id_str":"482227724","name":"Hengtao + Tang","screen_name":"Happy_Tao","location":"Columbia, SC","description":"Assistant + Professor @edtech_uofsc. #Gamecock Live love teach! @psuldt alumni. We are....","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":390,"friends_count":870,"listed_count":13,"created_at":"Fri + Feb 03 17:29:31 +0000 2012","favourites_count":2095,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1127,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1804992888\/h_large_CCWB_7b22000080c72f76_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1804992888\/h_large_CCWB_7b22000080c72f76_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/482227724\/1578336887","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:31:59 +0000 2019","id":1187557389156925440,"id_str":"1187557389156925440","full_text":"RT + @CaseyHi29640551: i am so pleased to see this! what a progressive time to + be alive #aect19 #aect19inspired #eme2040 #fsu2040 https:\/\/t.c\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[86,93]},{"text":"aect19inspired","indices":[94,109]},{"text":"eme2040","indices":[110,118]},{"text":"fsu2040","indices":[119,127]}],"symbols":[],"user_mentions":[{"screen_name":"CaseyHi29640551","name":"Casey + Higgins","id":1168888326880931842,"id_str":"1168888326880931842","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 00:47:43 +0000 2019","id":1187531146160156672,"id_str":"1187531146160156672","full_text":"i + am so pleased to see this! what a progressive time to be alive #aect19 #aect19inspired + #eme2040 #fsu2040 https:\/\/t.co\/G1os7oLIaa","truncated":false,"display_text_range":[0,106],"entities":{"hashtags":[{"text":"aect19","indices":[65,72]},{"text":"aect19inspired","indices":[73,88]},{"text":"eme2040","indices":[89,97]},{"text":"fsu2040","indices":[98,106]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/G1os7oLIaa","expanded_url":"https:\/\/twitter.com\/wheelissa\/status\/1186345766895472640","display_url":"twitter.com\/wheelissa\/stat\u2026","indices":[107,130]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1168888326880931842,"id_str":"1168888326880931842","name":"Casey + Higgins","screen_name":"CaseyHi29640551","location":"","description":"eme2040","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":17,"listed_count":0,"created_at":"Tue + Sep 03 14:07:57 +0000 2019","favourites_count":23,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1169610264288944128\/IyVyu3w5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169610264288944128\/IyVyu3w5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168888326880931842\/1567691349","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186345766895472640,"quoted_status_id_str":"1186345766895472640","quoted_status_permalink":{"url":"https:\/\/t.co\/G1os7oLIaa","expanded":"https:\/\/twitter.com\/wheelissa\/status\/1186345766895472640","display":"twitter.com\/wheelissa\/stat\u2026"},"quoted_status":{"created_at":"Mon + Oct 21 18:17:26 +0000 2019","id":1186345766895472640,"id_str":"1186345766895472640","full_text":"I\u2019m + usually quick to discard conference name badges but I was so impressed with + the available level-up ribbons at #AECTech2019 that I might have to keep this + one. https:\/\/t.co\/2nlRWKS6fK","truncated":false,"display_text_range":[0,162],"entities":{"hashtags":[{"text":"AECTech2019","indices":[114,126]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186345750881550336,"id_str":"1186345750881550336","indices":[163,186],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa_LMYWwAAYyth.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa_LMYWwAAYyth.jpg","url":"https:\/\/t.co\/2nlRWKS6fK","display_url":"pic.twitter.com\/2nlRWKS6fK","expanded_url":"https:\/\/twitter.com\/wheelissa\/status\/1186345766895472640\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186345750881550336,"id_str":"1186345750881550336","indices":[163,186],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa_LMYWwAAYyth.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa_LMYWwAAYyth.jpg","url":"https:\/\/t.co\/2nlRWKS6fK","display_url":"pic.twitter.com\/2nlRWKS6fK","expanded_url":"https:\/\/twitter.com\/wheelissa\/status\/1186345766895472640\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":87260304,"id_str":"87260304","name":"Elissa","screen_name":"wheelissa","location":"Toronto!!!!","description":"Geometer + looking for all kinds of collaborators.","url":"http:\/\/t.co\/5ATCGIzL6K","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/5ATCGIzL6K","expanded_url":"http:\/\/www.elissaross.ca","display_url":"elissaross.ca","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":610,"friends_count":284,"listed_count":23,"created_at":"Tue + Nov 03 19:15:18 +0000 2009","favourites_count":533,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":656,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601407345076342784\/lJLdGwZ6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601407345076342784\/lJLdGwZ6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/87260304\/1424304054","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":25,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186345766895472640,"quoted_status_id_str":"1186345766895472640","quoted_status_permalink":{"url":"https:\/\/t.co\/G1os7oLIaa","expanded":"https:\/\/twitter.com\/wheelissa\/status\/1186345766895472640","display":"twitter.com\/wheelissa\/stat\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 11:00:23 +0000 2019","id":1187685328431267840,"id_str":"1187685328431267840","full_text":"RT + @ChangeIt4Better: #aect19inspired Alma mater all represent for University + night! @MSU_EDD @IUSchoolofEd @fsu https:\/\/t.co\/Zt3HuRoQA8","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19inspired","indices":[21,36]}],"symbols":[],"user_mentions":[{"screen_name":"ChangeIt4Better","name":"Dr. + Suzanne Ensmann","id":1596150056,"id_str":"1596150056","indices":[3,19]},{"screen_name":"MSU_EDD","name":"MSU + EDD","id":735131095054815232,"id_str":"735131095054815232","indices":[85,93]},{"screen_name":"IUSchoolofEd","name":"IU + School of Education","id":33737494,"id_str":"33737494","indices":[94,107]},{"screen_name":"fsu","name":"FSU","id":1549272836,"id_str":"1549272836","indices":[108,112]}],"urls":[{"url":"https:\/\/t.co\/Zt3HuRoQA8","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187646122036084736\/photo\/1","display_url":"pic.twitter.com\/Zt3HuRoQA8","indices":[113,136]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 08:24:35 +0000 2019","id":1187646122036084736,"id_str":"1187646122036084736","full_text":"#aect19inspired + Alma mater all represent for University night! @MSU_EDD @IUSchoolofEd @fsu + https:\/\/t.co\/Zt3HuRoQA8","truncated":false,"display_text_range":[0,91],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[{"screen_name":"MSU_EDD","name":"MSU + EDD","id":735131095054815232,"id_str":"735131095054815232","indices":[64,72]},{"screen_name":"IUSchoolofEd","name":"IU + School of Education","id":33737494,"id_str":"33737494","indices":[73,86]},{"screen_name":"fsu","name":"FSU","id":1549272836,"id_str":"1549272836","indices":[87,91]}],"urls":[{"url":"https:\/\/t.co\/Zt3HuRoQA8","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187646122036084736\/photo\/1","display_url":"pic.twitter.com\/Zt3HuRoQA8","indices":[92,115]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 09:06:55 +0000 2019","id":1187656777288036352,"id_str":"1187656777288036352","full_text":"RT + @nangur1: Cultural Responsive Instructional Design in online learning environments. + Such an important topic for inclusivity! #AECT19 #A\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[129,136]}],"symbols":[],"user_mentions":[{"screen_name":"nangur1","name":"Dr. + Nandita Gurjar","id":2743313304,"id_str":"2743313304","indices":[3,11]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":204949740,"id_str":"204949740","name":"Suzan + K\u00f6seo\u011flu","screen_name":"SuzanKoseoglu","location":"London, England","description":"educator\/researcher. + lecturer in L&T in higher education. online pedagogy, networked learning, + open scholarship, women empowerment and equity.","url":"https:\/\/t.co\/U6qNiQYvRB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/U6qNiQYvRB","expanded_url":"https:\/\/differentreadings.wordpress.com\/","display_url":"differentreadings.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1685,"friends_count":1421,"listed_count":66,"created_at":"Tue + Oct 19 20:45:53 +0000 2010","favourites_count":6674,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4817,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1383790471776858118\/7zte4_HU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1383790471776858118\/7zte4_HU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/204949740\/1618756263","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 22:19:45 +0000 2019","id":1187493910626463744,"id_str":"1187493910626463744","full_text":"Cultural + Responsive Instructional Design in online learning environments. Such an important + topic for inclusivity! #AECT19 #AECT19inspired https:\/\/t.co\/vqyOMaSNyt","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"AECT19","indices":[116,123]},{"text":"AECT19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187493903919808512,"id_str":"1187493903919808512","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187493903919808512,"id_str":"1187493903919808512","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187493903911358464,"id_str":"1187493903911358464","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafuUEAACDy5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafuUEAACDy5.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187493903915577346,"id_str":"1187493903915577346","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafvUcAIGLBq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafvUcAIGLBq.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:23:38 +0000 2019","id":1187555284484612096,"id_str":"1187555284484612096","full_text":"RT + @idtesu: Weiwei Ji, former IDT student, is taking part of professional development + sessions at the #AECT2019 Convention.\n\nHe is currentl\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT2019","indices":[102,111]}],"symbols":[],"user_mentions":[{"screen_name":"idtesu","name":"ESU + Instructional Design & Technology Program","id":107144043,"id_str":"107144043","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 22:34:14 +0000 2019","id":1187497555392753665,"id_str":"1187497555392753665","full_text":"Weiwei + Ji, former IDT student, is taking part of professional development sessions + at the #AECT2019 Convention.\n\nHe is currently serving as an instructional + designer at Arkansas Tech University.\n\nCongratulations! \ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\n\n#HornetPride + #IDT #ESU https:\/\/t.co\/2ro6XQHiUO","truncated":false,"display_text_range":[0,240],"entities":{"hashtags":[{"text":"AECT2019","indices":[90,99]},{"text":"HornetPride","indices":[218,230]},{"text":"IDT","indices":[231,235]},{"text":"ESU","indices":[236,240]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187497550686744577,"id_str":"1187497550686744577","indices":[241,264],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrWuxBUcAEoROy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrWuxBUcAEoROy.jpg","url":"https:\/\/t.co\/2ro6XQHiUO","display_url":"pic.twitter.com\/2ro6XQHiUO","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1187497555392753665\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187497550686744577,"id_str":"1187497550686744577","indices":[241,264],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrWuxBUcAEoROy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrWuxBUcAEoROy.jpg","url":"https:\/\/t.co\/2ro6XQHiUO","display_url":"pic.twitter.com\/2ro6XQHiUO","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1187497555392753665\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 13:47:09 +0000 2019","id":1187727299929694209,"id_str":"1187727299929694209","full_text":"Special + thanks to @AnnaRoseLeach who made my participation @AECT panel in Las Vegas, + NV a reality...#aect19 #aect19inspired https:\/\/t.co\/TgjmJfDKd7","truncated":false,"display_text_range":[0,123],"entities":{"hashtags":[{"text":"aect19","indices":[100,107]},{"text":"aect19inspired","indices":[108,123]}],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[18,32]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[59,64]}],"urls":[{"url":"https:\/\/t.co\/TgjmJfDKd7","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880","display_url":"twitter.com\/FanXU92073425\/\u2026","indices":[124,147]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153141293,"id_str":"153141293","name":"Ana-Paula + Correia \u2600\ufe0f","screen_name":"correia65","location":"","description":"Professor + of Learning Technologies @OhioState @OSUehe. Director of @OSUcete. Learning + Designer. Researcher. Leader. @LEDresearch \ud83c\uddfa\ud83c\uddf8\ud83c\uddf5\ud83c\uddf9","url":"https:\/\/t.co\/mgeGAbT0AP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mgeGAbT0AP","expanded_url":"https:\/\/www.ana-paulacorreia.com\/","display_url":"ana-paulacorreia.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3494,"friends_count":3241,"listed_count":29,"created_at":"Mon + Jun 07 20:00:45 +0000 2010","favourites_count":10293,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":654,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1149684446838345728\/1XaCxgEx_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1149684446838345728\/1XaCxgEx_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153141293\/1562941057","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187536126183034880,"quoted_status_id_str":"1187536126183034880","quoted_status_permalink":{"url":"https:\/\/t.co\/TgjmJfDKd7","expanded":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880","display":"twitter.com\/FanXU92073425\/\u2026"},"quoted_status":{"created_at":"Fri + Oct 25 01:07:30 +0000 2019","id":1187536126183034880,"id_str":"1187536126183034880","full_text":"Today + we had an amazing panel discussion in Organizational Training & Performance + session. thanks for @correia65 @caranorth11 @AnnaRoseLeach @dr_tracy_s reviewing + the current needs of instructional designers from different perspectives. + Really inspired! #aect19inspired #aect19 https:\/\/t.co\/FDRKTlv711","truncated":false,"display_text_range":[0,281],"entities":{"hashtags":[{"text":"aect19inspired","indices":[258,273]},{"text":"aect19","indices":[274,281]}],"symbols":[],"user_mentions":[{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[106,116]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[117,129]},{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[130,144]}],"urls":[],"media":[{"id":1187536098794164225,"id_str":"1187536098794164225","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr5yj6UUAEJaKg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr5yj6UUAEJaKg.jpg","url":"https:\/\/t.co\/FDRKTlv711","display_url":"pic.twitter.com\/FDRKTlv711","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187536098794164225,"id_str":"1187536098794164225","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr5yj6UUAEJaKg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr5yj6UUAEJaKg.jpg","url":"https:\/\/t.co\/FDRKTlv711","display_url":"pic.twitter.com\/FDRKTlv711","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187536098798366720,"id_str":"1187536098798366720","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr5yj7UcAAq-Yt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr5yj7UcAAq-Yt.jpg","url":"https:\/\/t.co\/FDRKTlv711","display_url":"pic.twitter.com\/FDRKTlv711","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187536098802561026,"id_str":"1187536098802561026","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr5yj8UcAIV63L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr5yj8UcAIV63L.jpg","url":"https:\/\/t.co\/FDRKTlv711","display_url":"pic.twitter.com\/FDRKTlv711","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187536098890678274,"id_str":"1187536098890678274","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr5ykRVAAIshTr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr5ykRVAAIshTr.jpg","url":"https:\/\/t.co\/FDRKTlv711","display_url":"pic.twitter.com\/FDRKTlv711","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1098051352645623808,"id_str":"1098051352645623808","name":"Fan + XU \u8bb8\u5e06","screen_name":"FanXU92073425","location":"Columbus, Ohio","description":"Ph.D. + candidate of Learning Technologies @OhioState @OSUehe Graduate Research Assistant + @OSUcete Member of Research Group @LEDresearch","url":"https:\/\/t.co\/wYY2xiYHsc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wYY2xiYHsc","expanded_url":"https:\/\/fanxuspace.webnode.page","display_url":"fanxuspace.webnode.page","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":158,"friends_count":302,"listed_count":0,"created_at":"Wed + Feb 20 02:46:58 +0000 2019","favourites_count":391,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":109,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1098051352645623808\/1646758591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:46:08 +0000 2019","id":1187560947000336384,"id_str":"1187560947000336384","full_text":"#aect19 + Tip #06 - When developing instructional materials, do usability testing to + ensure that they require maximum cognitive load to the learner","truncated":false,"display_text_range":[0,145],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:34:37 +0000 2019","id":1187558049021644800,"id_str":"1187558049021644800","full_text":"RT + @TAmankwatia: #aect19 Prez candidate speeches \u2705 Kerala, Kochi research + symposium invite \u2705 https:\/\/t.co\/iY0g48405I","truncated":false,"display_text_range":[0,116],"entities":{"hashtags":[{"text":"aect19","indices":[17,24]}],"symbols":[],"user_mentions":[{"screen_name":"TAmankwatia","name":"Tonya + Amankwatia","id":25068789,"id_str":"25068789","indices":[3,15]}],"urls":[],"media":[{"id":1187527249706143744,"id_str":"1187527249706143744","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrxvefU0AAQ85w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrxvefU0AAQ85w.jpg","url":"https:\/\/t.co\/iY0g48405I","display_url":"pic.twitter.com\/iY0g48405I","expanded_url":"https:\/\/twitter.com\/TAmankwatia\/status\/1187527257998295041\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1187527257998295041,"source_status_id_str":"1187527257998295041","source_user_id":25068789,"source_user_id_str":"25068789"}]},"extended_entities":{"media":[{"id":1187527249706143744,"id_str":"1187527249706143744","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrxvefU0AAQ85w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrxvefU0AAQ85w.jpg","url":"https:\/\/t.co\/iY0g48405I","display_url":"pic.twitter.com\/iY0g48405I","expanded_url":"https:\/\/twitter.com\/TAmankwatia\/status\/1187527257998295041\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1187527257998295041,"source_status_id_str":"1187527257998295041","source_user_id":25068789,"source_user_id_str":"25068789","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 00:32:16 +0000 2019","id":1187527257998295041,"id_str":"1187527257998295041","full_text":"#aect19 + Prez candidate speeches \u2705 Kerala, Kochi research symposium invite \u2705 + https:\/\/t.co\/iY0g48405I","truncated":false,"display_text_range":[0,75],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187527249706143744,"id_str":"1187527249706143744","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrxvefU0AAQ85w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrxvefU0AAQ85w.jpg","url":"https:\/\/t.co\/iY0g48405I","display_url":"pic.twitter.com\/iY0g48405I","expanded_url":"https:\/\/twitter.com\/TAmankwatia\/status\/1187527257998295041\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187527249706143744,"id_str":"1187527249706143744","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrxvefU0AAQ85w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrxvefU0AAQ85w.jpg","url":"https:\/\/t.co\/iY0g48405I","display_url":"pic.twitter.com\/iY0g48405I","expanded_url":"https:\/\/twitter.com\/TAmankwatia\/status\/1187527257998295041\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187521400749191168,"in_reply_to_status_id_str":"1187521400749191168","in_reply_to_user_id":25068789,"in_reply_to_user_id_str":"25068789","in_reply_to_screen_name":"TAmankwatia","user":{"id":25068789,"id_str":"25068789","name":"Tonya + Amankwatia","screen_name":"TAmankwatia","location":"Greensboro, NC","description":"North + Carolina A&T Assistant Vice Provost-Extended Campus. I evaluate programs, + design models for accessible, supportive online instruction & lifelong learning.","url":"https:\/\/t.co\/JWw4AAXsRF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JWw4AAXsRF","expanded_url":"https:\/\/www.linkedin.com\/in\/tonyalehigh\/","display_url":"linkedin.com\/in\/tonyalehigh\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":339,"friends_count":346,"listed_count":33,"created_at":"Wed + Mar 18 13:10:23 +0000 2009","favourites_count":1300,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1840,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E8CFA9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1185683022684790785\/fBnwhav1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1185683022684790785\/fBnwhav1_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"CC3366","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Fri + Oct 25 02:28:27 +0000 2019","id":1187556497615659008,"id_str":"1187556497615659008","full_text":"RT + @Chiffonbest: My first AECT presentation! Nailed it! So thankful for my Morehead + State professors who inspired me to write and complete\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Chiffonbest","name":"Cassandra + Best, Ed.D","id":110001691,"id_str":"110001691","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 00:43:55 +0000 2019","id":1187530189967749121,"id_str":"1187530189967749121","full_text":"My + first AECT presentation! Nailed it! So thankful for my Morehead State professors + who inspired me to write and complete the proposal! #aect19inspired https:\/\/t.co\/4T0sbNcFHH","truncated":false,"display_text_range":[0,151],"entities":{"hashtags":[{"text":"aect19inspired","indices":[136,151]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187530113128091648,"id_str":"1187530113128091648","indices":[152,175],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr0WJkUUAA5nn1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr0WJkUUAA5nn1.jpg","url":"https:\/\/t.co\/4T0sbNcFHH","display_url":"pic.twitter.com\/4T0sbNcFHH","expanded_url":"https:\/\/twitter.com\/Chiffonbest\/status\/1187530189967749121\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187530113128091648,"id_str":"1187530113128091648","indices":[152,175],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr0WJkUUAA5nn1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr0WJkUUAA5nn1.jpg","url":"https:\/\/t.co\/4T0sbNcFHH","display_url":"pic.twitter.com\/4T0sbNcFHH","expanded_url":"https:\/\/twitter.com\/Chiffonbest\/status\/1187530189967749121\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110001691,"id_str":"110001691","name":"Cassandra + Best, Ed.D","screen_name":"Chiffonbest","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":106,"listed_count":0,"created_at":"Sun + Jan 31 00:51:44 +0000 2010","favourites_count":18,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1186432682307158016\/GcigpEuF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186432682307158016\/GcigpEuF_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 04:32:47 +0000 2019","id":1187587786762682369,"id_str":"1187587786762682369","full_text":"RT + @KuiXieOSU: For folks attending #aect19 this week, check out our panel on + #CollaborativeResearch on Tuesday morning. I will join @ge_xun\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[35,42]},{"text":"CollaborativeResearch","indices":[77,99]}],"symbols":[],"user_mentions":[{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[132,139]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214249174,"id_str":"214249174","name":"Amy + C Bradshaw","screen_name":"amy_c_bradshaw","location":"","description":"learning + design & technology professor, focused on equity&inclusion in culture-learning-technology, + critical pedagogy, visuals for: lrning, instructn, thinking.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":100,"friends_count":91,"listed_count":2,"created_at":"Wed + Nov 10 23:14:58 +0000 2010","favourites_count":73,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/929513283597484032\/L83UeUO0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/929513283597484032\/L83UeUO0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"0E4B70","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 20 22:39:22 +0000 2019","id":1186049296304693250,"id_str":"1186049296304693250","full_text":"For + folks attending #aect19 this week, check out our panel on #CollaborativeResearch + on Tuesday morning. I will join @ge_xun @amy_c_bradshaw @fake_reeves @christieliuidtr + and others to share our experience in collaborative research from proposal + to implementation. #aect19inspired https:\/\/t.co\/mYhbxXJGFj","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"aect19","indices":[20,27]},{"text":"CollaborativeResearch","indices":[62,84]},{"text":"aect19inspired","indices":[265,280]}],"symbols":[],"user_mentions":[{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[117,124]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[125,140]}],"urls":[],"media":[{"id":1186049289006538753,"id_str":"1186049289006538753","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","url":"https:\/\/t.co\/mYhbxXJGFj","display_url":"pic.twitter.com\/mYhbxXJGFj","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186049296304693250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186049289006538753,"id_str":"1186049289006538753","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","url":"https:\/\/t.co\/mYhbxXJGFj","display_url":"pic.twitter.com\/mYhbxXJGFj","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186049296304693250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter + for Mac\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 11:10:55 +0000 2019","id":1187687981664165889,"id_str":"1187687981664165889","full_text":"RT + @tadousay: #AECT19 is winding down. We''ve, got a half day left to go, but + seeing this #inspiredme message tonight really puts the \ud83c\udf52 on t\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]},{"text":"inspiredme","indices":[89,100]}],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 05:14:22 +0000 2019","id":1187598253484695552,"id_str":"1187598253484695552","full_text":"#AECT19 + is winding down. We''ve, got a half day left to go, but seeing this #inspiredme + message tonight really puts the \ud83c\udf52 on top of the awesomesauce sundae. + \u2764\ufe0f #proudbabysister https:\/\/t.co\/X7Lpv7MsWl https:\/\/t.co\/qeZ2xlJtPj","truncated":false,"display_text_range":[0,199],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"inspiredme","indices":[75,86]},{"text":"proudbabysister","indices":[159,175]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/X7Lpv7MsWl","expanded_url":"http:\/\/bit.ly\/2BKDBjm","display_url":"bit.ly\/2BKDBjm","indices":[176,199]}],"media":[{"id":1187598252239048704,"id_str":"1187598252239048704","indices":[200,223],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsyUXiVUAATKcu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsyUXiVUAATKcu.jpg","url":"https:\/\/t.co\/qeZ2xlJtPj","display_url":"pic.twitter.com\/qeZ2xlJtPj","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1187598253484695552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187598252239048704,"id_str":"1187598252239048704","indices":[200,223],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsyUXiVUAATKcu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsyUXiVUAATKcu.jpg","url":"https:\/\/t.co\/qeZ2xlJtPj","display_url":"pic.twitter.com\/qeZ2xlJtPj","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1187598253484695552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:27:58 +0000 2019","id":1187556376744202240,"id_str":"1187556376744202240","full_text":"RT + @onmyway2here: Hokie table at #AECT2019 #vt_idt https:\/\/t.co\/SQpou1H53B","truncated":false,"display_text_range":[0,74],"entities":{"hashtags":[{"text":"AECT2019","indices":[33,42]},{"text":"vt_idt","indices":[43,50]}],"symbols":[],"user_mentions":[{"screen_name":"onmyway2here","name":"Alicia + Johnson","id":1003232844,"id_str":"1003232844","indices":[3,16]}],"urls":[],"media":[{"id":1187540085866037248,"id_str":"1187540085866037248","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9ao6VAAAiXa_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9ao6VAAAiXa_.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"source_status_id":1187540094233636865,"source_status_id_str":"1187540094233636865","source_user_id":1003232844,"source_user_id_str":"1003232844"}]},"extended_entities":{"media":[{"id":1187540085866037248,"id_str":"1187540085866037248","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9ao6VAAAiXa_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9ao6VAAAiXa_.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"source_status_id":1187540094233636865,"source_status_id_str":"1187540094233636865","source_user_id":1003232844,"source_user_id_str":"1003232844","ext_alt_text":null},{"id":1187540085865996289,"id_str":"1187540085865996289","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9ao6UYAEXNQz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9ao6UYAEXNQz.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"source_status_id":1187540094233636865,"source_status_id_str":"1187540094233636865","source_user_id":1003232844,"source_user_id_str":"1003232844","ext_alt_text":null},{"id":1187540085861826560,"id_str":"1187540085861826560","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9ao5UwAA68Tk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9ao5UwAA68Tk.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1187540094233636865,"source_status_id_str":"1187540094233636865","source_user_id":1003232844,"source_user_id_str":"1003232844","ext_alt_text":null},{"id":1187540086319009793,"id_str":"1187540086319009793","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9aqmU0AEvLe_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9aqmU0AEvLe_.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"source_status_id":1187540094233636865,"source_status_id_str":"1187540094233636865","source_user_id":1003232844,"source_user_id_str":"1003232844","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 01:23:16 +0000 2019","id":1187540094233636865,"id_str":"1187540094233636865","full_text":"Hokie + table at #AECT2019 #vt_idt https:\/\/t.co\/SQpou1H53B","truncated":false,"display_text_range":[0,32],"entities":{"hashtags":[{"text":"AECT2019","indices":[15,24]},{"text":"vt_idt","indices":[25,32]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187540085866037248,"id_str":"1187540085866037248","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9ao6VAAAiXa_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9ao6VAAAiXa_.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187540085866037248,"id_str":"1187540085866037248","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9ao6VAAAiXa_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9ao6VAAAiXa_.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1187540085865996289,"id_str":"1187540085865996289","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9ao6UYAEXNQz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9ao6UYAEXNQz.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1187540085861826560,"id_str":"1187540085861826560","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9ao5UwAA68Tk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9ao5UwAA68Tk.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187540086319009793,"id_str":"1187540086319009793","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9aqmU0AEvLe_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9aqmU0AEvLe_.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1003232844,"id_str":"1003232844","name":"Alicia + Johnson","screen_name":"onmyway2here","location":"Christiansburg, VA","description":"Instructional + Designer of Instructional Design (ID) Instruction PhD@virginiatechIDT. Good + days = Students, ID, Instruction, Research, Edtech, & Learning.","url":"https:\/\/t.co\/cCcuGeqoTV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cCcuGeqoTV","expanded_url":"https:\/\/liberalarts.vt.edu\/departments-and-schools\/school-of-education\/faculty\/alicia-johnson.html","display_url":"liberalarts.vt.edu\/departments-an\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":199,"friends_count":382,"listed_count":2,"created_at":"Tue + Dec 11 03:55:07 +0000 2012","favourites_count":4008,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":808,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3195564046\/04c6c148cecd8aeabb563780bedea34b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3195564046\/04c6c148cecd8aeabb563780bedea34b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1003232844\/1355198723","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 12:31:34 +0000 2019","id":1187708278047834112,"id_str":"1187708278047834112","full_text":"RT + @dtpthanh: Thanks for coming with us!\n @PaulineMuljana #aect19 #aect19inspired + https:\/\/t.co\/FLYTwCXyIZ","truncated":false,"display_text_range":[0,105],"entities":{"hashtags":[{"text":"aect19","indices":[58,65]},{"text":"aect19inspired","indices":[66,81]}],"symbols":[],"user_mentions":[{"screen_name":"dtpthanh","name":"\u0110inh + Th\u1ecb Ph\u01b0\u01a1ng Thanh","id":1531907057473187841,"id_str":"1531907057473187841","indices":[3,12]},{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[42,57]}],"urls":[{"url":"https:\/\/t.co\/FLYTwCXyIZ","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187399618918699008","display_url":"twitter.com\/PaulineMuljana\u2026","indices":[82,105]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2950104673,"id_str":"2950104673","name":"Ayodeji + Ibukun","screen_name":"lbukunAA","location":"Oklahoma, USA","description":"B.Engrg + MS MNSE","url":"https:\/\/t.co\/kVfuPQQfYs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kVfuPQQfYs","expanded_url":"http:\/\/www.ayoibukun.com","display_url":"ayoibukun.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":489,"listed_count":0,"created_at":"Mon + Dec 29 12:06:33 +0000 2014","favourites_count":665,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":154,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2950104673\/1574622610","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:44:57 +0000 2019","id":1187485152424841218,"id_str":"1187485152424841218","full_text":"Thanks + for coming with us!\n @PaulineMuljana #aect19 #aect19inspired https:\/\/t.co\/FLYTwCXyIZ","truncated":false,"display_text_range":[0,67],"entities":{"hashtags":[{"text":"aect19","indices":[44,51]},{"text":"aect19inspired","indices":[52,67]}],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[28,43]}],"urls":[{"url":"https:\/\/t.co\/FLYTwCXyIZ","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187399618918699008","display_url":"twitter.com\/PaulineMuljana\u2026","indices":[68,91]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":991017763824025600,"id_str":"991017763824025600","name":"Thanh + Do","screen_name":"_ThanhDo","location":"Oklahoma, USA","description":"\u2618\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":50,"listed_count":0,"created_at":"Mon + Apr 30 18:13:41 +0000 2018","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1461175168152195079\/c3x7Df6b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1461175168152195079\/c3x7Df6b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/991017763824025600\/1554832273","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"F58EA8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187399618918699008,"quoted_status_id_str":"1187399618918699008","quoted_status_permalink":{"url":"https:\/\/t.co\/FLYTwCXyIZ","expanded":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187399618918699008","display":"twitter.com\/PaulineMuljana\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 16:05:04 +0000 2019","id":1187399618918699008,"id_str":"1187399618918699008","full_text":"This + \"I Zap, U Zap, We All Zap\" workshop is totally inspiring. If you are in + the job market, this is a great idea to present your resume. Shout out to + the Oklahoma State Univ team who are facilitating the workshop! #aect19 #aect19inspired + https:\/\/t.co\/WIt9namhFl","truncated":false,"display_text_range":[0,238],"entities":{"hashtags":[{"text":"aect19","indices":[215,222]},{"text":"aect19inspired","indices":[223,238]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187399594914639872,"id_str":"1187399594914639872","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHp9o_VUcAAHsvp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHp9o_VUcAAHsvp.jpg","url":"https:\/\/t.co\/WIt9namhFl","display_url":"pic.twitter.com\/WIt9namhFl","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187399618918699008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":240,"h":320,"resize":"fit"},"small":{"w":240,"h":320,"resize":"fit"},"medium":{"w":240,"h":320,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187399594914639872,"id_str":"1187399594914639872","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHp9o_VUcAAHsvp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHp9o_VUcAAHsvp.jpg","url":"https:\/\/t.co\/WIt9namhFl","display_url":"pic.twitter.com\/WIt9namhFl","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187399618918699008\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":240,"h":320,"resize":"fit"},"small":{"w":240,"h":320,"resize":"fit"},"medium":{"w":240,"h":320,"resize":"fit"}},"video_info":{"aspect_ratio":[3,4],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHp9o_VUcAAHsvp.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1187399618918699008,"quoted_status_id_str":"1187399618918699008","quoted_status_permalink":{"url":"https:\/\/t.co\/FLYTwCXyIZ","expanded":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187399618918699008","display":"twitter.com\/PaulineMuljana\u2026"},"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1187554746095280129%2C1187554660376334336%2C1187554601039478785%2C1187554520101982208%2C1187554413222731777%2C1187554342536187905%2C1187554243772850176%2C1187554208242946048%2C1187554163858792448%2C1187554128748318721%2C1187554004147949568%2C1187553878553890816%2C1187553840704507904%2C1187553754452811777%2C1187553704486100993%2C1187553662777860097%2C1187553614824460288%2C1187553489456685062%2C1187553251924893697%2C1187553124317388801%2C1187552159832756224%2C1187551943243132928%2C1187551920786792450%2C1187548676433928192%2C1187548650785800192%2C1187548650785800192%2C1187547037698445312%2C1187543656590270464%2C1187543047296425991%2C1187540176265834497%2C1187540094233636865%2C1187539819393511424%2C1187539467680137216%2C1187538357796114432%2C1187536126183034880%2C1187535208318287872%2C1187535208318287872%2C1187532151794720769%2C1187531541557194754%2C1187530189967749121%2C1187529501510496256%2C1187529122987180032%2C1187527693077643264%2C1187527476366299137%2C1187527257998295041%2C1187526111489474561%2C1187525208388689920%2C1187522725570478080%2C1187520808454742016%2C1187519021815517186%2C1187519021815517186%2C1187517079748071424%2C1187516446865313793%2C1187515169347379200%2C1187514929554833409%2C1187514663673700352%2C1187514569159258113%2C1187514339600850946%2C1187513996783472641%2C1187513788486115328%2C1187513142458437635%2C1187512917140398080%2C1187511910780026881%2C1187511755745792000%2C1187511598769815552%2C1187511331370557440%2C1187510930956898304%2C1187510757266583552%2C1187509458768842752%2C1187509223589986304%2C1187508606742122496%2C1187508461078102017%2C1187507696985092096%2C1187507685014544384%2C1187507557838884865%2C1187505163080257542%2C1187504550908854272%2C1187503123729747968%2C1187502994289332231%2C1187502994289332231%2C1187501251224842240%2C1187501160506118144%2C1187500163645853697%2C1187499840483164160%2C1187499410868989953%2C1187499066701144064%2C1187498871435382784%2C1187497767033139200%2C1187497555392753665%2C1187497428313767937%2C1187497160209620992%2C1187496489230176257%2C1187495234759839744%2C1187494188998201344%2C1187493910626463744%2C1187492048313536512%2C1187490870586560512%2C1187490282209570816%2C1187490282209570816%2C1187487146019418113&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:44 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:44 GMT + x-transaction: 2890a692b18256cb + content-length: '68926' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '288' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '435' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Thu Oct 24 23:04:28 +0000 2019","id":1187505163080257542,"id_str":"1187505163080257542","full_text":"@DrVirtuality + @AECT I heard at one point there are about 900 (mentioned in a tweet), but + I don''t get a sense of that number in the sessions and pavillions #aect19inspired + #aect2019","truncated":false,"display_text_range":[20,180],"entities":{"hashtags":[{"text":"aect19inspired","indices":[155,170]},{"text":"aect2019","indices":[171,180]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[0,13]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[14,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1187485720824303616,"in_reply_to_status_id_str":"1187485720824303616","in_reply_to_user_id":15667548,"in_reply_to_user_id_str":"15667548","in_reply_to_screen_name":"DrVirtuality","user":{"id":459903,"id_str":"459903","name":"\ud83c\uddfa\ud83c\uddf8 + Yin Kreher, PhD","screen_name":"yinbk","location":"","description":"Instructional + Designer | Lead LXD @FourthRev | Boundary-Crosser. Looks for the exquisite + at intersections. All tweets are mine. \ud83d\udc9c #XR #DesignLeadership + \ud83e\udef0","url":"https:\/\/t.co\/nJBVP9cpz7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nJBVP9cpz7","expanded_url":"http:\/\/yinwahkreher.com","display_url":"yinwahkreher.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1043,"friends_count":1124,"listed_count":79,"created_at":"Tue + Jan 02 17:04:05 +0000 2007","favourites_count":7349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"363738","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459903\/1611022238","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"E81C4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:19:30 +0000 2019","id":1187554243772850176,"id_str":"1187554243772850176","full_text":"RT + @christieliuidtr: At AECT International Division Membership meeting, open + positions inviting volunteering, taking leadership, and sharin\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:45:50 +0000 2019","id":1187485376375427072,"id_str":"1187485376375427072","full_text":"At + AECT International Division Membership meeting, open positions inviting volunteering, + taking leadership, and sharing passion and expertise @AECT #aect19 #aect19inspired + https:\/\/t.co\/Thsmmjyal9","truncated":false,"display_text_range":[0,171],"entities":{"hashtags":[{"text":"aect19","indices":[148,155]},{"text":"aect19inspired","indices":[156,171]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[142,147]}],"urls":[],"media":[{"id":1187485369807167488,"id_str":"1187485369807167488","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrLpvtUYAA_Y5-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrLpvtUYAA_Y5-.jpg","url":"https:\/\/t.co\/Thsmmjyal9","display_url":"pic.twitter.com\/Thsmmjyal9","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187485376375427072\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1752,"resize":"fit"},"medium":{"w":1200,"h":1027,"resize":"fit"},"small":{"w":680,"h":582,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187485369807167488,"id_str":"1187485369807167488","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrLpvtUYAA_Y5-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrLpvtUYAA_Y5-.jpg","url":"https:\/\/t.co\/Thsmmjyal9","display_url":"pic.twitter.com\/Thsmmjyal9","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187485376375427072\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1752,"resize":"fit"},"medium":{"w":1200,"h":1027,"resize":"fit"},"small":{"w":680,"h":582,"resize":"fit"}},"ext_alt_text":null},{"id":1187485369802997760,"id_str":"1187485369802997760","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrLpvsUwAAd0Og.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrLpvsUwAAd0Og.jpg","url":"https:\/\/t.co\/Thsmmjyal9","display_url":"pic.twitter.com\/Thsmmjyal9","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187485376375427072\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:30:40 +0000 2019","id":1187511755745792000,"id_str":"1187511755745792000","full_text":"Good + job presenting @X1Tab on The Rural vs Urban Divide in Educational Technology. + #aect19inspired @EdTechOkstate https:\/\/t.co\/B6WCx9zrfG","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect19inspired","indices":[84,99]}],"symbols":[],"user_mentions":[{"screen_name":"EdTechOkstate","name":"Okstate + Ed Tech","id":4141659852,"id_str":"4141659852","indices":[101,115]}],"urls":[],"media":[{"id":1187511750914007040,"id_str":"1187511750914007040","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrjpU_U4AAUwx7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrjpU_U4AAUwx7.jpg","url":"https:\/\/t.co\/B6WCx9zrfG","display_url":"pic.twitter.com\/B6WCx9zrfG","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187511755745792000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":314,"resize":"fit"},"large":{"w":2048,"h":946,"resize":"fit"},"medium":{"w":1200,"h":554,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187511750914007040,"id_str":"1187511750914007040","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrjpU_U4AAUwx7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrjpU_U4AAUwx7.jpg","url":"https:\/\/t.co\/B6WCx9zrfG","display_url":"pic.twitter.com\/B6WCx9zrfG","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187511755745792000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":314,"resize":"fit"},"large":{"w":2048,"h":946,"resize":"fit"},"medium":{"w":1200,"h":554,"resize":"fit"}},"ext_alt_text":null},{"id":1187511750918164480,"id_str":"1187511750918164480","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrjpVAUUAA3XPB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrjpVAUUAA3XPB.jpg","url":"https:\/\/t.co\/B6WCx9zrfG","display_url":"pic.twitter.com\/B6WCx9zrfG","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187511755745792000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:44:13 +0000 2019","id":1187515169347379200,"id_str":"1187515169347379200","full_text":"RT + @ISLT_FSU: 2:00 pm - 2:50 pm Emerging Technology Showcase\nT04-Designing Function + Fighters: A digital game-based learning experience for\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/twitter.com\/MarkJ_ohnson\" rel=\"nofollow\"\u003eMark Johnson1\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1039965688000126977,"id_str":"1039965688000126977","name":"Mark + Johnson","screen_name":"MarkJ_ohnson","location":"United States of America","description":"Assistant + Manager at @K12Prospects. K-12 educational sales and marketing. Connecting + with educators. Business opportunities.\n#edtech #education #data","url":"https:\/\/t.co\/9DDpfIA8Ge","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9DDpfIA8Ge","expanded_url":"https:\/\/www.k12prospects.com\/","display_url":"k12prospects.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7370,"friends_count":6387,"listed_count":77,"created_at":"Wed + Sep 12 19:55:16 +0000 2018","favourites_count":19645,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":146990,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1039966314960437248\/yKL_4LvX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1039966314960437248\/yKL_4LvX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1039965688000126977\/1643812421","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 20:01:08 +0000 2019","id":1187459027711778816,"id_str":"1187459027711778816","full_text":"2:00 + pm - 2:50 pm Emerging Technology Showcase\nT04-Designing Function Fighters: + A digital game-based learning experience for algebraic thinking \u2013 Ginny + L. Smith #AECT19 #Math #Games #EdTech #education #Learning #Algebra #FSU #FSUCOE + #ISLT https:\/\/t.co\/rQxKittCgE","truncated":false,"display_text_range":[0,238],"entities":{"hashtags":[{"text":"AECT19","indices":[161,168]},{"text":"Math","indices":[169,174]},{"text":"Games","indices":[175,181]},{"text":"EdTech","indices":[182,189]},{"text":"education","indices":[190,200]},{"text":"Learning","indices":[201,210]},{"text":"Algebra","indices":[211,219]},{"text":"FSU","indices":[220,224]},{"text":"FSUCOE","indices":[225,232]},{"text":"ISLT","indices":[233,238]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187459025950138373,"id_str":"1187459025950138373","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqzsVMW4AUypcg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqzsVMW4AUypcg.jpg","url":"https:\/\/t.co\/rQxKittCgE","display_url":"pic.twitter.com\/rQxKittCgE","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187459027711778816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187459025950138373,"id_str":"1187459025950138373","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqzsVMW4AUypcg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqzsVMW4AUypcg.jpg","url":"https:\/\/t.co\/rQxKittCgE","display_url":"pic.twitter.com\/rQxKittCgE","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187459027711778816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:28:58 +0000 2019","id":1187511331370557440,"id_str":"1187511331370557440","full_text":"RT + @SBarksway: Just attended my 1st ever round table session @ #aect19 and it + was FANTASTIC! Thank you for leading such a wonderful, engagi\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[63,70]}],"symbols":[],"user_mentions":[{"screen_name":"SBarksway","name":"Sarah + Barksdale","id":908737706699710464,"id_str":"908737706699710464","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1879779362,"id_str":"1879779362","name":"Corina + Pastrana","screen_name":"CorinaPastrana","location":"","description":"Latina, + world citizen.Tweets are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":281,"friends_count":200,"listed_count":13,"created_at":"Wed + Sep 18 14:59:25 +0000 2013","favourites_count":1313,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1846,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1126003547160621057\/6lP_zw02_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1126003547160621057\/6lP_zw02_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1879779362\/1557073351","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 18:57:54 +0000 2019","id":1187443113922445312,"id_str":"1187443113922445312","full_text":"Just + attended my 1st ever round table session @ #aect19 and it was FANTASTIC! Thank + you for leading such a wonderful, engaging discussion around phenomenology + @JolieKennedy @pazureka #aect19inspired @LTMediaLab @UMN_CI https:\/\/t.co\/KD1sxKUERh","truncated":false,"display_text_range":[0,218],"entities":{"hashtags":[{"text":"aect19","indices":[48,55]},{"text":"aect19inspired","indices":[183,198]}],"symbols":[],"user_mentions":[{"screen_name":"JolieKennedy","name":"Jolie + Kennedy","id":202011104,"id_str":"202011104","indices":[159,172]},{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[173,182]},{"screen_name":"LTMediaLab","name":"Learning + Technologies","id":1260285405787652101,"id_str":"1260285405787652101","indices":[199,210]},{"screen_name":"UMN_CI","name":"U + of MN CEHD C&I","id":759684692,"id_str":"759684692","indices":[211,218]}],"urls":[],"media":[{"id":1187442309144563712,"id_str":"1187442309144563712","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":770,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1314,"resize":"fit"},"small":{"w":680,"h":436,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187442309144563712,"id_str":"1187442309144563712","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":770,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1314,"resize":"fit"},"small":{"w":680,"h":436,"resize":"fit"}},"ext_alt_text":null},{"id":1187442309148762112,"id_str":"1187442309148762112","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkfSQU4AA6UVk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkfSQU4AA6UVk.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187442394054004738,"id_str":"1187442394054004738","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkkOjUEAIwLPB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkkOjUEAIwLPB.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":908737706699710464,"id_str":"908737706699710464","name":"Sarah + Barksdale","screen_name":"SBarksway","location":"","description":"Educator + \ud83d\udcda Researcher \u270d\ud83c\udffb Instructional Design \ud83d\udc69\u200d\ud83c\udfa8 + PhD Cand.\u2615\ufe0f Learning Technologies \ud83d\udcbb Adventurer & Travelholic + \ud83c\udfd4\ufe0f \ud83d\udc99: #edtech #CSforALL #teachered #pd","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":329,"friends_count":480,"listed_count":5,"created_at":"Fri + Sep 15 17:02:07 +0000 2017","favourites_count":2160,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":428,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/908737706699710464\/1506899531","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:17:53 +0000 2019","id":1187553840704507904,"id_str":"1187553840704507904","full_text":"RT + @hodgesc: Not too many years ago, the thought of walking by the @SpringerEdu + table and seeing these would have seemed like an impossibil\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"SpringerEdu","name":"Springer + Education","id":347188522,"id_str":"347188522","indices":[67,79]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 22:30:00 +0000 2019","id":1187496489230176257,"id_str":"1187496489230176257","full_text":"Not + too many years ago, the thought of walking by the @SpringerEdu table and seeing + these would have seemed like an impossibility. @AECT helped make them and + so many other things possible for me. What''s your next project? #aect19inspired + https:\/\/t.co\/tyIkFJAINL","truncated":false,"display_text_range":[0,239],"entities":{"hashtags":[{"text":"aect19inspired","indices":[224,239]}],"symbols":[],"user_mentions":[{"screen_name":"SpringerEdu","name":"Springer + Education","id":347188522,"id_str":"347188522","indices":[54,66]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[132,137]}],"urls":[],"media":[{"id":1187486977341263872,"id_str":"1187486977341263872","indices":[240,263],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","url":"https:\/\/t.co\/tyIkFJAINL","display_url":"pic.twitter.com\/tyIkFJAINL","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187496489230176257\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":466,"resize":"fit"},"large":{"w":2048,"h":1402,"resize":"fit"},"medium":{"w":1200,"h":822,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187486977341263872,"id_str":"1187486977341263872","indices":[240,263],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","url":"https:\/\/t.co\/tyIkFJAINL","display_url":"pic.twitter.com\/tyIkFJAINL","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187496489230176257\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":466,"resize":"fit"},"large":{"w":2048,"h":1402,"resize":"fit"},"medium":{"w":1200,"h":822,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":36,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 01:35:00 +0000 2019","id":1187543047296425991,"id_str":"1187543047296425991","full_text":"RT + @edtechdoc: Who inspires us? Fantastic alumni, students, and faculty of the + BSU EdD program! It\u2019s so great to connect or reconnect while\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":757930304438931456,"id_str":"757930304438931456","name":"Dr. + Chris Prokes","screen_name":"edtech_prokes","location":"Dayton, OH","description":"Accessibility\/Intersection + of digitization\/DEI\/CBE. Mgr of Strategy & Innovation at @sinclaircc. IBSTPI + Board; Alum of @edhdbgsu & @edtechbsu. Views are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":270,"friends_count":679,"listed_count":2,"created_at":"Tue + Jul 26 13:27:21 +0000 2016","favourites_count":1186,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":867,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1459329957361065986\/ty8o9UNM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1459329957361065986\/ty8o9UNM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/757930304438931456\/1641047643","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 04:58:36 +0000 2019","id":1187231897761415168,"id_str":"1187231897761415168","full_text":"Who + inspires us? Fantastic alumni, students, and faculty of the BSU EdD program! + It\u2019s so great to connect or reconnect while at #aect19 (and this is only + part of the group who were attending!) @AECT https:\/\/t.co\/RR4RwMUG5j","truncated":false,"display_text_range":[0,198],"entities":{"hashtags":[{"text":"aect19","indices":[128,135]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[193,198]}],"urls":[],"media":[{"id":1187231890312331264,"id_str":"1187231890312331264","indices":[199,222],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnlHTAVAAAbg5S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnlHTAVAAAbg5S.jpg","url":"https:\/\/t.co\/RR4RwMUG5j","display_url":"pic.twitter.com\/RR4RwMUG5j","expanded_url":"https:\/\/twitter.com\/edtechdoc\/status\/1187231897761415168\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187231890312331264,"id_str":"1187231890312331264","indices":[199,222],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnlHTAVAAAbg5S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnlHTAVAAAbg5S.jpg","url":"https:\/\/t.co\/RR4RwMUG5j","display_url":"pic.twitter.com\/RR4RwMUG5j","expanded_url":"https:\/\/twitter.com\/edtechdoc\/status\/1187231897761415168\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1101331518692184065,"id_str":"1101331518692184065","name":"BSU + EdTech AGP","screen_name":"EdTechAGP","location":"Boise, ID","description":"Advanced + Grad Programs. 100% online Ed Specialist & Doctoral programs in educational + technology at Boise State University. EdD founded 2012. EdS founded 2016.","url":"https:\/\/t.co\/27jpLvNAsW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/27jpLvNAsW","expanded_url":"https:\/\/sites.google.com\/boisestate.edu\/edtech-advanced-grad-programs\/home","display_url":"sites.google.com\/boisestate.edu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":147,"friends_count":89,"listed_count":3,"created_at":"Fri + Mar 01 04:01:10 +0000 2019","favourites_count":201,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":142,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1101332437634826241\/bPwzWhxZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1101332437634826241\/bPwzWhxZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1101331518692184065\/1551413241","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 22:05:20 +0000 2019","id":1187490282209570816,"id_str":"1187490282209570816","full_text":"Moving + into my new position as president of @aectddl I''m excited to work with the + amazing folks on the board and look forward to growing with you all. Thank + you for your support. #aect19inspired https:\/\/t.co\/TXFt5nvaSs","truncated":false,"display_text_range":[0,194],"entities":{"hashtags":[{"text":"aect19inspired","indices":[179,194]}],"symbols":[],"user_mentions":[{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[44,52]}],"urls":[],"media":[{"id":1187490275234480128,"id_str":"1187490275234480128","indices":[195,218],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrQHR2VAAA6D5c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrQHR2VAAA6D5c.jpg","url":"https:\/\/t.co\/TXFt5nvaSs","display_url":"pic.twitter.com\/TXFt5nvaSs","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1187490282209570816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1921,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187490275234480128,"id_str":"1187490275234480128","indices":[195,218],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrQHR2VAAA6D5c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrQHR2VAAA6D5c.jpg","url":"https:\/\/t.co\/TXFt5nvaSs","display_url":"pic.twitter.com\/TXFt5nvaSs","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1187490282209570816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1921,"h":1080,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":8005732,"id_str":"8005732","name":"rmreese","screen_name":"rmreese1","location":"Denver, + CO","description":"ID, edtech, all around gerd (geek+nerd). Opinions are my + own and RTs are not endorsements. Pronouns: she\/they","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":564,"friends_count":293,"listed_count":271,"created_at":"Mon + Aug 06 23:59:29 +0000 2007","favourites_count":960,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9941,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2A2828","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8005732\/1573836551","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"091378","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 01:57:22 +0000 2019","id":1187548676433928192,"id_str":"1187548676433928192","full_text":"RT + @SBarksway: Just attended my 1st ever round table session @ #aect19 and it + was FANTASTIC! Thank you for leading such a wonderful, engagi\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[63,70]}],"symbols":[],"user_mentions":[{"screen_name":"SBarksway","name":"Sarah + Barksdale","id":908737706699710464,"id_str":"908737706699710464","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 18:57:54 +0000 2019","id":1187443113922445312,"id_str":"1187443113922445312","full_text":"Just + attended my 1st ever round table session @ #aect19 and it was FANTASTIC! Thank + you for leading such a wonderful, engaging discussion around phenomenology + @JolieKennedy @pazureka #aect19inspired @LTMediaLab @UMN_CI https:\/\/t.co\/KD1sxKUERh","truncated":false,"display_text_range":[0,218],"entities":{"hashtags":[{"text":"aect19","indices":[48,55]},{"text":"aect19inspired","indices":[183,198]}],"symbols":[],"user_mentions":[{"screen_name":"JolieKennedy","name":"Jolie + Kennedy","id":202011104,"id_str":"202011104","indices":[159,172]},{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[173,182]},{"screen_name":"LTMediaLab","name":"Learning + Technologies","id":1260285405787652101,"id_str":"1260285405787652101","indices":[199,210]},{"screen_name":"UMN_CI","name":"U + of MN CEHD C&I","id":759684692,"id_str":"759684692","indices":[211,218]}],"urls":[],"media":[{"id":1187442309144563712,"id_str":"1187442309144563712","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":770,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1314,"resize":"fit"},"small":{"w":680,"h":436,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187442309144563712,"id_str":"1187442309144563712","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":770,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1314,"resize":"fit"},"small":{"w":680,"h":436,"resize":"fit"}},"ext_alt_text":null},{"id":1187442309148762112,"id_str":"1187442309148762112","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkfSQU4AA6UVk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkfSQU4AA6UVk.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187442394054004738,"id_str":"1187442394054004738","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkkOjUEAIwLPB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkkOjUEAIwLPB.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":908737706699710464,"id_str":"908737706699710464","name":"Sarah + Barksdale","screen_name":"SBarksway","location":"","description":"Educator + \ud83d\udcda Researcher \u270d\ud83c\udffb Instructional Design \ud83d\udc69\u200d\ud83c\udfa8 + PhD Cand.\u2615\ufe0f Learning Technologies \ud83d\udcbb Adventurer & Travelholic + \ud83c\udfd4\ufe0f \ud83d\udc99: #edtech #CSforALL #teachered #pd","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":329,"friends_count":480,"listed_count":5,"created_at":"Fri + Sep 15 17:02:07 +0000 2017","favourites_count":2160,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":428,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/908737706699710464\/1506899531","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:15:33 +0000 2019","id":1187553251924893697,"id_str":"1187553251924893697","full_text":"RT + @lpemusicguru: It\u2019s been a great @AECT conference!! Sad it\u2019s almost + over. Thanks @AECTTIL for welcoming me in to your division!! #aect20\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[36,41]},{"screen_name":"AECTTIL","name":"AECT + TIL","id":4921781685,"id_str":"4921781685","indices":[84,92]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 00:24:07 +0000 2019","id":1187525208388689920,"id_str":"1187525208388689920","full_text":"It\u2019s + been a great @AECT conference!! Sad it\u2019s almost over. Thanks @AECTTIL + for welcoming me in to your division!! #aect2019 #aect19inspired https:\/\/t.co\/LiCbsRLGGs","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"aect2019","indices":[114,123]},{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[18,23]},{"screen_name":"AECTTIL","name":"AECT + TIL","id":4921781685,"id_str":"4921781685","indices":[66,74]}],"urls":[],"media":[{"id":1187525173018128384,"id_str":"1187525173018128384","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187525173018128384\/pu\/img\/_mwqkei2HwXrP70a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187525173018128384\/pu\/img\/_mwqkei2HwXrP70a.jpg","url":"https:\/\/t.co\/LiCbsRLGGs","display_url":"pic.twitter.com\/LiCbsRLGGs","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1187525208388689920\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187525173018128384,"id_str":"1187525173018128384","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187525173018128384\/pu\/img\/_mwqkei2HwXrP70a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187525173018128384\/pu\/img\/_mwqkei2HwXrP70a.jpg","url":"https:\/\/t.co\/LiCbsRLGGs","display_url":"pic.twitter.com\/LiCbsRLGGs","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1187525208388689920\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":3550,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187525173018128384\/pu\/vid\/720x1280\/eOJA-MHtgxqnCbK3.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187525173018128384\/pu\/vid\/360x640\/qGwpy8YakBz9sGhP.mp4?tag=10"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187525173018128384\/pu\/vid\/320x568\/zDp-6QhcsyzfsMQM.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187525173018128384\/pu\/pl\/F7EGM6RW7vDqdd5g.m3u8?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":763378325712674818,"id_str":"763378325712674818","name":"Tay + Fess, M.Ed.","screen_name":"Captain_Fess","location":"Naples, FL","description":"Music + Educator l \ud83c\udff3\ufe0f\u200d\ud83c\udf08 l Presenter l UDL l FGCU l + Doctoral Student Ed.D. l EdTech l Disney Geek","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":576,"listed_count":3,"created_at":"Wed + Aug 10 14:15:50 +0000 2016","favourites_count":1730,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":665,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/763378325712674818\/1595378873","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:26:42 +0000 2019","id":1187510757266583552,"id_str":"1187510757266583552","full_text":"Really + enjoying the interactions and conversations at #AECT19 .. I feel as though + @michaelmgrant and @dctrcurry ''s hard work is paying off for all attendees. + #aect19inspired See you at the membership meeting at 5!","truncated":false,"display_text_range":[0,214],"entities":{"hashtags":[{"text":"AECT19","indices":[54,61]},{"text":"aect19inspired","indices":[158,173]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[82,96]},{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[101,111]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 22:56:22 +0000 2019","id":1187503123729747968,"id_str":"1187503123729747968","full_text":"RT + @richardewest: Struggling to know how to teach various qualitative paradigms + to new qualitative research students? We have some ideas us\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"richardewest","name":"Rick + West","id":17639668,"id_str":"17639668","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 20:07:09 +0000 2019","id":1187460540043448321,"id_str":"1187460540043448321","full_text":"Struggling + to know how to teach various qualitative paradigms to new qualitative research + students? We have some ideas using a new method called Decision-based Learning + that we''ll be teaching at 2 p.m. today at #AECT19. Come be #aectinspired! + https:\/\/t.co\/1pCQSrE8vl","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"AECT19","indices":[211,218]},{"text":"aectinspired","indices":[228,241]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187460492937199616,"id_str":"1187460492937199616","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","url":"https:\/\/t.co\/1pCQSrE8vl","display_url":"pic.twitter.com\/1pCQSrE8vl","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187460540043448321\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":711,"resize":"fit"},"large":{"w":1462,"h":866,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":403,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187460492937199616,"id_str":"1187460492937199616","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","url":"https:\/\/t.co\/1pCQSrE8vl","display_url":"pic.twitter.com\/1pCQSrE8vl","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187460540043448321\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":711,"resize":"fit"},"large":{"w":1462,"h":866,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":403,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17639668,"id_str":"17639668","name":"Rick + West","screen_name":"richardewest","location":"Provo, ut","description":"Instructional + Designer, Researcher, & Evaluator at Brigham Young University","url":"http:\/\/t.co\/Nc39wWEhGM","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Nc39wWEhGM","expanded_url":"http:\/\/richardewest.com","display_url":"richardewest.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":223,"listed_count":39,"created_at":"Wed + Nov 26 02:26:26 +0000 2008","favourites_count":799,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3339,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17639668\/1446650027","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 22:20:51 +0000 2019","id":1187494188998201344,"id_str":"1187494188998201344","full_text":"RT + @nicolapallitt: My favourite panel so far... Educational Technology, Social + Justice & Critical Whiteness with @camille_dd Amy Bradshaw &\u2026","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"camille_dd","name":"Camille + Dickson-Deane","id":398945750,"id_str":"398945750","indices":[117,128]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214249174,"id_str":"214249174","name":"Amy + C Bradshaw","screen_name":"amy_c_bradshaw","location":"","description":"learning + design & technology professor, focused on equity&inclusion in culture-learning-technology, + critical pedagogy, visuals for: lrning, instructn, thinking.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":100,"friends_count":91,"listed_count":2,"created_at":"Wed + Nov 10 23:14:58 +0000 2010","favourites_count":73,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":17,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/929513283597484032\/L83UeUO0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/929513283597484032\/L83UeUO0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"0E4B70","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:26:34 +0000 2019","id":1187480525365104645,"id_str":"1187480525365104645","full_text":"My + favourite panel so far... Educational Technology, Social Justice & Critical + Whiteness with @camille_dd Amy Bradshaw & Deepak Subramony @aectclt @AECT + #aect19inspired Thanks for the great reading list:) Will definitely be sharing + in my @emergeAfrica report back webinar https:\/\/t.co\/UEuaa3EjP5","truncated":false,"display_text_range":[0,279],"entities":{"hashtags":[{"text":"aect19inspired","indices":[161,176]}],"symbols":[],"user_mentions":[{"screen_name":"camille_dd","name":"Camille + Dickson-Deane","id":398945750,"id_str":"398945750","indices":[98,109]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[146,154]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[155,160]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[246,259]}],"urls":[],"media":[{"id":1187480521418264577,"id_str":"1187480521418264577","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrHPiDU0AEBRU4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrHPiDU0AEBRU4.jpg","url":"https:\/\/t.co\/UEuaa3EjP5","display_url":"pic.twitter.com\/UEuaa3EjP5","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187480525365104645\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":455,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":302,"resize":"fit"},"large":{"w":1024,"h":455,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187480521418264577,"id_str":"1187480521418264577","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrHPiDU0AEBRU4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrHPiDU0AEBRU4.jpg","url":"https:\/\/t.co\/UEuaa3EjP5","display_url":"pic.twitter.com\/UEuaa3EjP5","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187480525365104645\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":455,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":302,"resize":"fit"},"large":{"w":1024,"h":455,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:59:32 +0000 2019","id":1187519021815517186,"id_str":"1187519021815517186","full_text":"University + reception coming soon #aect19 https:\/\/t.co\/x0OD3crEpA","truncated":false,"display_text_range":[0,40],"entities":{"hashtags":[{"text":"aect19","indices":[33,40]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187519013124898816,"id_str":"1187519013124898816","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHrqQC1VAAAGlvw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHrqQC1VAAAGlvw.jpg","url":"https:\/\/t.co\/x0OD3crEpA","display_url":"pic.twitter.com\/x0OD3crEpA","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1187519021815517186\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":200,"h":270,"resize":"fit"},"small":{"w":200,"h":270,"resize":"fit"},"large":{"w":200,"h":270,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187519013124898816,"id_str":"1187519013124898816","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHrqQC1VAAAGlvw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHrqQC1VAAAGlvw.jpg","url":"https:\/\/t.co\/x0OD3crEpA","display_url":"pic.twitter.com\/x0OD3crEpA","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1187519021815517186\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":200,"h":270,"resize":"fit"},"small":{"w":200,"h":270,"resize":"fit"},"large":{"w":200,"h":270,"resize":"fit"}},"video_info":{"aspect_ratio":[20,27],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHrqQC1VAAAGlvw.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:21:29 +0000 2019","id":1187554746095280129,"id_str":"1187554746095280129","full_text":"RT + @idtesu: Round table session at #AECT2019: Dr. Hillary Kaplowitz (Instructional + Designer) shared her insight on acknowledging students''\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"AECT2019","indices":[35,44]}],"symbols":[],"user_mentions":[{"screen_name":"idtesu","name":"ESU + Instructional Design & Technology Program","id":107144043,"id_str":"107144043","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 22:25:01 +0000 2019","id":1187495234759839744,"id_str":"1187495234759839744","full_text":"Round + table session at #AECT2019: Dr. Hillary Kaplowitz (Instructional Designer) + shared her insight on acknowledging students'' names in order to build more + inclusive classrooms, and shared icebreaker strategies where students create + profiles by using platforms such as \"Padlet.\" https:\/\/t.co\/oeWaQVtsTt","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"AECT2019","indices":[23,32]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187495227239481344,"id_str":"1187495227239481344","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrUnhgUwAAEMsr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrUnhgUwAAEMsr.jpg","url":"https:\/\/t.co\/oeWaQVtsTt","display_url":"pic.twitter.com\/oeWaQVtsTt","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1187495234759839744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187495227239481344,"id_str":"1187495227239481344","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrUnhgUwAAEMsr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrUnhgUwAAEMsr.jpg","url":"https:\/\/t.co\/oeWaQVtsTt","display_url":"pic.twitter.com\/oeWaQVtsTt","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1187495234759839744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:18:02 +0000 2019","id":1187553878553890816,"id_str":"1187553878553890816","full_text":"RT + @tutaleni: We had a lot of fun, asked many questions, learned about new tools, + talked through ideas and made new connections at the #Eme\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 23:17:34 +0000 2019","id":1187508461078102017,"id_str":"1187508461078102017","full_text":"We + had a lot of fun, asked many questions, learned about new tools, talked through + ideas and made new connections at the #EmergingTechShowcase. Thank you \ud83d\udc4f\ud83c\udfff\ud83d\udc4f\ud83c\udfff + to those who presented and who took part. #aect19inspired #EmergingTechShowcase + #aect19 https:\/\/t.co\/z1P3YuG8CY","truncated":false,"display_text_range":[0,246],"entities":{"hashtags":[{"text":"EmergingTechShowcase","indices":[121,142]},{"text":"aect19inspired","indices":[201,216]},{"text":"EmergingTechShowcase","indices":[217,238]},{"text":"aect19","indices":[239,246]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187508456443396096,"id_str":"1187508456443396096","indices":[247,270],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","url":"https:\/\/t.co\/z1P3YuG8CY","display_url":"pic.twitter.com\/z1P3YuG8CY","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187508461078102017\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1195,"h":1499,"resize":"fit"},"small":{"w":542,"h":680,"resize":"fit"},"medium":{"w":957,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187508456443396096,"id_str":"1187508456443396096","indices":[247,270],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","url":"https:\/\/t.co\/z1P3YuG8CY","display_url":"pic.twitter.com\/z1P3YuG8CY","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187508461078102017\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1195,"h":1499,"resize":"fit"},"small":{"w":542,"h":680,"resize":"fit"},"medium":{"w":957,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:19:53 +0000 2019","id":1187554342536187905,"id_str":"1187554342536187905","full_text":"RT + @robmoore3: Congrats to @epsODU IDT Doctoral Student, @PaulineMuljana, on + her AECT DDL Crystal Award win! #aect19inspired #aect19 https:\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[109,124]},{"text":"aect19","indices":[125,132]}],"symbols":[],"user_mentions":[{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[3,13]},{"screen_name":"epsODU","name":"ODU + Darden College of Educ & Professional Studies","id":124254976,"id_str":"124254976","indices":[27,34]},{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[57,72]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 22:33:44 +0000 2019","id":1187497428313767937,"id_str":"1187497428313767937","full_text":"Congrats + to @epsODU IDT Doctoral Student, @PaulineMuljana, on her AECT DDL Crystal + Award win! #aect19inspired #aect19 https:\/\/t.co\/rtH57GJQy6","truncated":false,"display_text_range":[0,117],"entities":{"hashtags":[{"text":"aect19inspired","indices":[94,109]},{"text":"aect19","indices":[110,117]}],"symbols":[],"user_mentions":[{"screen_name":"epsODU","name":"ODU + Darden College of Educ & Professional Studies","id":124254976,"id_str":"124254976","indices":[12,19]},{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[42,57]}],"urls":[],"media":[{"id":1187497423070875648,"id_str":"1187497423070875648","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrWnVnU0AAPnT3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrWnVnU0AAPnT3.jpg","url":"https:\/\/t.co\/rtH57GJQy6","display_url":"pic.twitter.com\/rtH57GJQy6","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187497428313767937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187497423070875648,"id_str":"1187497423070875648","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrWnVnU0AAPnT3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrWnVnU0AAPnT3.jpg","url":"https:\/\/t.co\/rtH57GJQy6","display_url":"pic.twitter.com\/rtH57GJQy6","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187497428313767937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187497423066652672,"id_str":"1187497423066652672","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrWnVmUYAA0czs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrWnVmUYAA0czs.jpg","url":"https:\/\/t.co\/rtH57GJQy6","display_url":"pic.twitter.com\/rtH57GJQy6","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187497428313767937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:20:10 +0000 2019","id":1187554413222731777,"id_str":"1187554413222731777","full_text":"RT + @nicolapallitt: Meeting up with fellow Africans at @AECT #aect19inspired Liberia, + Tanzania, Nigeria, SA & Namibia https:\/\/t.co\/0Zp0eUlGJ1","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19inspired","indices":[60,75]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[54,59]}],"urls":[],"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}},"source_status_id":1187529122987180032,"source_status_id_str":"1187529122987180032","source_user_id":118368334,"source_user_id_str":"118368334"}]},"extended_entities":{"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}},"source_status_id":1187529122987180032,"source_status_id_str":"1187529122987180032","source_user_id":118368334,"source_user_id_str":"118368334","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 00:39:40 +0000 2019","id":1187529122987180032,"id_str":"1187529122987180032","full_text":"Meeting + up with fellow Africans at @AECT #aect19inspired Liberia, Tanzania, Nigeria, + SA & Namibia https:\/\/t.co\/0Zp0eUlGJ1","truncated":false,"display_text_range":[0,101],"entities":{"hashtags":[{"text":"aect19inspired","indices":[41,56]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[35,40]}],"urls":[],"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 22:19:45 +0000 2019","id":1187493910626463744,"id_str":"1187493910626463744","full_text":"Cultural + Responsive Instructional Design in online learning environments. Such an important + topic for inclusivity! #AECT19 #AECT19inspired https:\/\/t.co\/vqyOMaSNyt","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"AECT19","indices":[116,123]},{"text":"AECT19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187493903919808512,"id_str":"1187493903919808512","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187493903919808512,"id_str":"1187493903919808512","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187493903911358464,"id_str":"1187493903911358464","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafuUEAACDy5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafuUEAACDy5.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187493903915577346,"id_str":"1187493903915577346","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafvUcAIGLBq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafvUcAIGLBq.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:27:23 +0000 2019","id":1187510930956898304,"id_str":"1187510930956898304","full_text":"RT + @tutaleni: We had a lot of fun, asked many questions, learned about new tools, + talked through ideas and made new connections at the #Eme\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 23:17:34 +0000 2019","id":1187508461078102017,"id_str":"1187508461078102017","full_text":"We + had a lot of fun, asked many questions, learned about new tools, talked through + ideas and made new connections at the #EmergingTechShowcase. Thank you \ud83d\udc4f\ud83c\udfff\ud83d\udc4f\ud83c\udfff + to those who presented and who took part. #aect19inspired #EmergingTechShowcase + #aect19 https:\/\/t.co\/z1P3YuG8CY","truncated":false,"display_text_range":[0,246],"entities":{"hashtags":[{"text":"EmergingTechShowcase","indices":[121,142]},{"text":"aect19inspired","indices":[201,216]},{"text":"EmergingTechShowcase","indices":[217,238]},{"text":"aect19","indices":[239,246]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187508456443396096,"id_str":"1187508456443396096","indices":[247,270],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","url":"https:\/\/t.co\/z1P3YuG8CY","display_url":"pic.twitter.com\/z1P3YuG8CY","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187508461078102017\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1195,"h":1499,"resize":"fit"},"small":{"w":542,"h":680,"resize":"fit"},"medium":{"w":957,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187508456443396096,"id_str":"1187508456443396096","indices":[247,270],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","url":"https:\/\/t.co\/z1P3YuG8CY","display_url":"pic.twitter.com\/z1P3YuG8CY","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187508461078102017\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1195,"h":1499,"resize":"fit"},"small":{"w":542,"h":680,"resize":"fit"},"medium":{"w":957,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 01:23:36 +0000 2019","id":1187540176265834497,"id_str":"1187540176265834497","full_text":"RT + @richardewest: Struggling to know how to teach various qualitative paradigms + to new qualitative research students? We have some ideas us\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"richardewest","name":"Rick + West","id":17639668,"id_str":"17639668","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15636128,"id_str":"15636128","name":"stephanie + moore","screen_name":"steph_moore","location":"New Mexico Baby!","description":"Online + learning. Ethics & design. Tea. Bourbon. Chocolate. Leaning into metamodern. + Editor in Chief of @JCHEResearch she\/her, Author: SEL at a Distance","url":"https:\/\/t.co\/zwm2yMkODU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zwm2yMkODU","expanded_url":"https:\/\/wwnorton.com\/books\/9781324016571","display_url":"wwnorton.com\/books\/97813240\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3098,"friends_count":1316,"listed_count":54,"created_at":"Mon + Jul 28 19:10:00 +0000 2008","favourites_count":18809,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13765,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15636128\/1656742799","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 20:07:09 +0000 2019","id":1187460540043448321,"id_str":"1187460540043448321","full_text":"Struggling + to know how to teach various qualitative paradigms to new qualitative research + students? We have some ideas using a new method called Decision-based Learning + that we''ll be teaching at 2 p.m. today at #AECT19. Come be #aectinspired! + https:\/\/t.co\/1pCQSrE8vl","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"AECT19","indices":[211,218]},{"text":"aectinspired","indices":[228,241]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187460492937199616,"id_str":"1187460492937199616","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","url":"https:\/\/t.co\/1pCQSrE8vl","display_url":"pic.twitter.com\/1pCQSrE8vl","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187460540043448321\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":711,"resize":"fit"},"large":{"w":1462,"h":866,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":403,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187460492937199616,"id_str":"1187460492937199616","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","url":"https:\/\/t.co\/1pCQSrE8vl","display_url":"pic.twitter.com\/1pCQSrE8vl","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187460540043448321\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":711,"resize":"fit"},"large":{"w":1462,"h":866,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":403,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17639668,"id_str":"17639668","name":"Rick + West","screen_name":"richardewest","location":"Provo, ut","description":"Instructional + Designer, Researcher, & Evaluator at Brigham Young University","url":"http:\/\/t.co\/Nc39wWEhGM","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Nc39wWEhGM","expanded_url":"http:\/\/richardewest.com","display_url":"richardewest.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":223,"listed_count":39,"created_at":"Wed + Nov 26 02:26:26 +0000 2008","favourites_count":799,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3339,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17639668\/1446650027","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:02:02 +0000 2019","id":1187504550908854272,"id_str":"1187504550908854272","full_text":"For + those who have not published or who have been rejected, this session \u201cGSA: + Tips and Tricks for Journal Publishing: Advice from the Editors\u201d was + really helpful. Thanks to @AlbertRitzhaupt and Dr. Sharon Stidham #aect19 + #aect19inspired @UF_COE https:\/\/t.co\/Lw1EhfcugX","truncated":false,"display_text_range":[0,245],"entities":{"hashtags":[{"text":"aect19","indices":[214,221]},{"text":"aect19inspired","indices":[222,237]}],"symbols":[],"user_mentions":[{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[174,190]},{"screen_name":"UF_COE","name":"UF + College of Education","id":38508931,"id_str":"38508931","indices":[238,245]}],"urls":[],"media":[{"id":1187504544634114048,"id_str":"1187504544634114048","indices":[246,269],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrdF3gUEAAtGEj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrdF3gUEAAtGEj.jpg","url":"https:\/\/t.co\/Lw1EhfcugX","display_url":"pic.twitter.com\/Lw1EhfcugX","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187504550908854272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1530,"resize":"fit"},"small":{"w":680,"h":508,"resize":"fit"},"medium":{"w":1200,"h":896,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187504544634114048,"id_str":"1187504544634114048","indices":[246,269],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrdF3gUEAAtGEj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrdF3gUEAAtGEj.jpg","url":"https:\/\/t.co\/Lw1EhfcugX","display_url":"pic.twitter.com\/Lw1EhfcugX","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187504550908854272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1530,"resize":"fit"},"small":{"w":680,"h":508,"resize":"fit"},"medium":{"w":1200,"h":896,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988637594,"id_str":"2988637594","name":"Rui + \"Tammy\" Huang","screen_name":"ruitammyhuang","location":"FL","description":"PhD, + fellow in Ed Tech @UF_COE, game-based learning and immersive technology researcher, + designer & developer. Learning experience design researcher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":185,"listed_count":6,"created_at":"Wed + Jan 21 02:08:50 +0000 2015","favourites_count":399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988637594\/1621697544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:10:16 +0000 2019","id":1187551920786792450,"id_str":"1187551920786792450","full_text":"RT + @lpemusicguru: It\u2019s been a great @AECT conference!! Sad it\u2019s almost + over. Thanks @AECTTIL for welcoming me in to your division!! #aect20\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[36,41]},{"screen_name":"AECTTIL","name":"AECT + TIL","id":4921781685,"id_str":"4921781685","indices":[84,92]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4921781685,"id_str":"4921781685","name":"AECT + TIL","screen_name":"AECTTIL","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":11,"listed_count":1,"created_at":"Wed + Feb 17 01:21:42 +0000 2016","favourites_count":54,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":83,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1176928861319258114\/oGHSP4gc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1176928861319258114\/oGHSP4gc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4921781685\/1569436683","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 00:24:07 +0000 2019","id":1187525208388689920,"id_str":"1187525208388689920","full_text":"It\u2019s + been a great @AECT conference!! Sad it\u2019s almost over. Thanks @AECTTIL + for welcoming me in to your division!! #aect2019 #aect19inspired https:\/\/t.co\/LiCbsRLGGs","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"aect2019","indices":[114,123]},{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[18,23]},{"screen_name":"AECTTIL","name":"AECT + TIL","id":4921781685,"id_str":"4921781685","indices":[66,74]}],"urls":[],"media":[{"id":1187525173018128384,"id_str":"1187525173018128384","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187525173018128384\/pu\/img\/_mwqkei2HwXrP70a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187525173018128384\/pu\/img\/_mwqkei2HwXrP70a.jpg","url":"https:\/\/t.co\/LiCbsRLGGs","display_url":"pic.twitter.com\/LiCbsRLGGs","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1187525208388689920\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187525173018128384,"id_str":"1187525173018128384","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187525173018128384\/pu\/img\/_mwqkei2HwXrP70a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187525173018128384\/pu\/img\/_mwqkei2HwXrP70a.jpg","url":"https:\/\/t.co\/LiCbsRLGGs","display_url":"pic.twitter.com\/LiCbsRLGGs","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1187525208388689920\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":3550,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187525173018128384\/pu\/vid\/720x1280\/eOJA-MHtgxqnCbK3.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187525173018128384\/pu\/vid\/360x640\/qGwpy8YakBz9sGhP.mp4?tag=10"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187525173018128384\/pu\/vid\/320x568\/zDp-6QhcsyzfsMQM.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187525173018128384\/pu\/pl\/F7EGM6RW7vDqdd5g.m3u8?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":763378325712674818,"id_str":"763378325712674818","name":"Tay + Fess, M.Ed.","screen_name":"Captain_Fess","location":"Naples, FL","description":"Music + Educator l \ud83c\udff3\ufe0f\u200d\ud83c\udf08 l Presenter l UDL l FGCU l + Doctoral Student Ed.D. l EdTech l Disney Geek","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":576,"listed_count":3,"created_at":"Wed + Aug 10 14:15:50 +0000 2016","favourites_count":1730,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":665,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/763378325712674818\/1595378873","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:17:00 +0000 2019","id":1187553614824460288,"id_str":"1187553614824460288","full_text":"RT + @rmreese1: Moving into my new position as president of @aectddl I''m excited + to work with the amazing folks on the board and look forward\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rmreese1","name":"rmreese","id":8005732,"id_str":"8005732","indices":[3,12]},{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[58,66]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 22:05:20 +0000 2019","id":1187490282209570816,"id_str":"1187490282209570816","full_text":"Moving + into my new position as president of @aectddl I''m excited to work with the + amazing folks on the board and look forward to growing with you all. Thank + you for your support. #aect19inspired https:\/\/t.co\/TXFt5nvaSs","truncated":false,"display_text_range":[0,194],"entities":{"hashtags":[{"text":"aect19inspired","indices":[179,194]}],"symbols":[],"user_mentions":[{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[44,52]}],"urls":[],"media":[{"id":1187490275234480128,"id_str":"1187490275234480128","indices":[195,218],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrQHR2VAAA6D5c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrQHR2VAAA6D5c.jpg","url":"https:\/\/t.co\/TXFt5nvaSs","display_url":"pic.twitter.com\/TXFt5nvaSs","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1187490282209570816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1921,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187490275234480128,"id_str":"1187490275234480128","indices":[195,218],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrQHR2VAAA6D5c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrQHR2VAAA6D5c.jpg","url":"https:\/\/t.co\/TXFt5nvaSs","display_url":"pic.twitter.com\/TXFt5nvaSs","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1187490282209570816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1921,"h":1080,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":8005732,"id_str":"8005732","name":"rmreese","screen_name":"rmreese1","location":"Denver, + CO","description":"ID, edtech, all around gerd (geek+nerd). Opinions are my + own and RTs are not endorsements. Pronouns: she\/they","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":564,"friends_count":293,"listed_count":271,"created_at":"Mon + Aug 06 23:59:29 +0000 2007","favourites_count":960,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9941,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2A2828","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8005732\/1573836551","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"091378","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 00:43:55 +0000 2019","id":1187530189967749121,"id_str":"1187530189967749121","full_text":"My + first AECT presentation! Nailed it! So thankful for my Morehead State professors + who inspired me to write and complete the proposal! #aect19inspired https:\/\/t.co\/4T0sbNcFHH","truncated":false,"display_text_range":[0,151],"entities":{"hashtags":[{"text":"aect19inspired","indices":[136,151]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187530113128091648,"id_str":"1187530113128091648","indices":[152,175],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr0WJkUUAA5nn1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr0WJkUUAA5nn1.jpg","url":"https:\/\/t.co\/4T0sbNcFHH","display_url":"pic.twitter.com\/4T0sbNcFHH","expanded_url":"https:\/\/twitter.com\/Chiffonbest\/status\/1187530189967749121\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187530113128091648,"id_str":"1187530113128091648","indices":[152,175],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr0WJkUUAA5nn1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr0WJkUUAA5nn1.jpg","url":"https:\/\/t.co\/4T0sbNcFHH","display_url":"pic.twitter.com\/4T0sbNcFHH","expanded_url":"https:\/\/twitter.com\/Chiffonbest\/status\/1187530189967749121\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110001691,"id_str":"110001691","name":"Cassandra + Best, Ed.D","screen_name":"Chiffonbest","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":106,"listed_count":0,"created_at":"Sun + Jan 31 00:51:44 +0000 2010","favourites_count":18,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1186432682307158016\/GcigpEuF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186432682307158016\/GcigpEuF_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:19:02 +0000 2019","id":1187554128748318721,"id_str":"1187554128748318721","full_text":"RT + @hodgesc: Two gentle who inspire me! @michaelmgrant and Dr. Phil Harris. Many + thanks for the hours they\u2019ve spent creating #aect19inspire\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[40,54]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:45:50 +0000 2019","id":1187485376643944448,"id_str":"1187485376643944448","full_text":"Two + gentle who inspire me! @michaelmgrant and Dr. Phil Harris. Many thanks for + the hours they\u2019ve spent creating #aect19inspired for us! #rockinthebowtie + #rockinnotie https:\/\/t.co\/yyhnoLSa14","truncated":false,"display_text_range":[0,165],"entities":{"hashtags":[{"text":"aect19inspired","indices":[112,127]},{"text":"rockinthebowtie","indices":[136,152]},{"text":"rockinnotie","indices":[153,165]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[27,41]}],"urls":[],"media":[{"id":1187485372168593408,"id_str":"1187485372168593408","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrLp4gU4AAY6oO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrLp4gU4AAY6oO.jpg","url":"https:\/\/t.co\/yyhnoLSa14","display_url":"pic.twitter.com\/yyhnoLSa14","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187485376643944448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187485372168593408,"id_str":"1187485372168593408","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrLp4gU4AAY6oO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrLp4gU4AAY6oO.jpg","url":"https:\/\/t.co\/yyhnoLSa14","display_url":"pic.twitter.com\/yyhnoLSa14","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187485376643944448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 01:23:16 +0000 2019","id":1187540094233636865,"id_str":"1187540094233636865","full_text":"Hokie + table at #AECT2019 #vt_idt https:\/\/t.co\/SQpou1H53B","truncated":false,"display_text_range":[0,32],"entities":{"hashtags":[{"text":"AECT2019","indices":[15,24]},{"text":"vt_idt","indices":[25,32]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187540085866037248,"id_str":"1187540085866037248","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9ao6VAAAiXa_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9ao6VAAAiXa_.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187540085866037248,"id_str":"1187540085866037248","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9ao6VAAAiXa_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9ao6VAAAiXa_.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1187540085865996289,"id_str":"1187540085865996289","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9ao6UYAEXNQz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9ao6UYAEXNQz.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1187540085861826560,"id_str":"1187540085861826560","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9ao5UwAA68Tk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9ao5UwAA68Tk.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187540086319009793,"id_str":"1187540086319009793","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr9aqmU0AEvLe_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr9aqmU0AEvLe_.jpg","url":"https:\/\/t.co\/SQpou1H53B","display_url":"pic.twitter.com\/SQpou1H53B","expanded_url":"https:\/\/twitter.com\/onmyway2here\/status\/1187540094233636865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1003232844,"id_str":"1003232844","name":"Alicia + Johnson","screen_name":"onmyway2here","location":"Christiansburg, VA","description":"Instructional + Designer of Instructional Design (ID) Instruction PhD@virginiatechIDT. Good + days = Students, ID, Instruction, Research, Edtech, & Learning.","url":"https:\/\/t.co\/cCcuGeqoTV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cCcuGeqoTV","expanded_url":"https:\/\/liberalarts.vt.edu\/departments-and-schools\/school-of-education\/faculty\/alicia-johnson.html","display_url":"liberalarts.vt.edu\/departments-an\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":199,"friends_count":382,"listed_count":2,"created_at":"Tue + Dec 11 03:55:07 +0000 2012","favourites_count":4008,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":808,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3195564046\/04c6c148cecd8aeabb563780bedea34b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3195564046\/04c6c148cecd8aeabb563780bedea34b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1003232844\/1355198723","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:49:18 +0000 2019","id":1187516446865313793,"id_str":"1187516446865313793","full_text":"RT + @LearnEngage: Ever wonder how to #sketchnote a presentation? Pros from @UNTsocial + and @ECNUER hope to show you how at the Inspire! Sketc\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"sketchnote","indices":[36,47]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]},{"screen_name":"UNTsocial","name":"University + of North Texas","id":18462994,"id_str":"18462994","indices":[74,84]},{"screen_name":"ECNUER","name":"East + China Normal University","id":1732892550,"id_str":"1732892550","indices":[89,96]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1551131372,"id_str":"1551131372","name":"Moni + IDD","screen_name":"MoniIDD","location":"","description":"Sr. Instructional + Designer, FSU Grad - M.S. ISLT, PhD in Learning Technologies from @ UNT | + QM course certified | \u2764\ufe0f hiking, waterfalls, & living in the PNW","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":485,"friends_count":1614,"listed_count":70,"created_at":"Thu + Jun 27 17:35:30 +0000 2013","favourites_count":6961,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4853,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471619480014888966\/UtL-Oh9p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471619480014888966\/UtL-Oh9p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1551131372\/1623973489","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:00:00 +0000 2019","id":1187398342889754625,"id_str":"1187398342889754625","full_text":"Ever + wonder how to #sketchnote a presentation? Pros from @UNTsocial and @ECNUER + hope to show you how at the Inspire! Sketchnoting session at 3pm! Come learn + with us! #AECT19 #aect19inspired @AECT https:\/\/t.co\/25zZOVkv2N","truncated":false,"display_text_range":[0,195],"entities":{"hashtags":[{"text":"sketchnote","indices":[19,30]},{"text":"AECT19","indices":[166,173]},{"text":"aect19inspired","indices":[174,189]}],"symbols":[],"user_mentions":[{"screen_name":"UNTsocial","name":"University + of North Texas","id":18462994,"id_str":"18462994","indices":[57,67]},{"screen_name":"ECNUER","name":"East + China Normal University","id":1732892550,"id_str":"1732892550","indices":[72,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[190,195]}],"urls":[],"media":[{"id":1187122528189407235,"id_str":"1187122528189407235","indices":[196,219],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","url":"https:\/\/t.co\/25zZOVkv2N","display_url":"pic.twitter.com\/25zZOVkv2N","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187398342889754625\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187122528189407235,"id_str":"1187122528189407235","indices":[196,219],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","url":"https:\/\/t.co\/25zZOVkv2N","display_url":"pic.twitter.com\/25zZOVkv2N","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187398342889754625\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 00:06:38 +0000 2019","id":1187520808454742016,"id_str":"1187520808454742016","full_text":"The + Play Impossible Gameball was well received at #aect19! I love presenting at + the Emerging Tech Showcase. It''s such a great event! @tutaleni https:\/\/t.co\/KKANHkqtq3","truncated":false,"display_text_range":[0,142],"entities":{"hashtags":[{"text":"aect19","indices":[50,57]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[133,142]}],"urls":[{"url":"https:\/\/t.co\/KKANHkqtq3","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187482052481843200","display_url":"twitter.com\/tutaleni\/statu\u2026","indices":[143,166]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15299255,"id_str":"15299255","name":"Dr. + Tiffany Roman","screen_name":"troman","location":"Kennesaw, GA","description":"Assistant + Professor of Instructional Technology. Entrepreneur. Designer. Teacher. Mother. + Researcher of Design Ed, Innovation & Tech Integration in K-20.","url":"https:\/\/t.co\/vWr6F7hZ75","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vWr6F7hZ75","expanded_url":"http:\/\/www.round3.io","display_url":"round3.io","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":546,"friends_count":865,"listed_count":10,"created_at":"Wed + Jul 02 16:06:37 +0000 2008","favourites_count":1076,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":363,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1468308563403714566\/zZzeCmpz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1468308563403714566\/zZzeCmpz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15299255\/1537500662","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187482052481843200,"quoted_status_id_str":"1187482052481843200","quoted_status_permalink":{"url":"https:\/\/t.co\/KKANHkqtq3","expanded":"https:\/\/twitter.com\/tutaleni\/status\/1187482052481843200","display":"twitter.com\/tutaleni\/statu\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 21:32:38 +0000 2019","id":1187482052481843200,"id_str":"1187482052481843200","full_text":"Who + knew Newton\u2019s law could be this fun? #AECT19inspired #EmergingTechShowcase + https:\/\/t.co\/r8wJlakPFI","truncated":false,"display_text_range":[0,78],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[41,56]},{"text":"EmergingTechShowcase","indices":[57,78]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187482047473782784,"id_str":"1187482047473782784","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","url":"https:\/\/t.co\/r8wJlakPFI","display_url":"pic.twitter.com\/r8wJlakPFI","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187482052481843200\/photo\/1","type":"photo","sizes":{"large":{"w":1152,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187482047473782784,"id_str":"1187482047473782784","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","url":"https:\/\/t.co\/r8wJlakPFI","display_url":"pic.twitter.com\/r8wJlakPFI","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187482052481843200\/photo\/1","type":"photo","sizes":{"large":{"w":1152,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 01:37:25 +0000 2019","id":1187543656590270464,"id_str":"1187543656590270464","full_text":"Along + with @troman at #aect2019 #aect19inspired from @KSUITEC @KSUBCOE @kennesawstate + #KSUITEC https:\/\/t.co\/MXJPPRJZjK","truncated":false,"display_text_range":[0,94],"entities":{"hashtags":[{"text":"aect2019","indices":[22,31]},{"text":"aect19inspired","indices":[32,47]},{"text":"KSUITEC","indices":[86,94]}],"symbols":[],"user_mentions":[{"screen_name":"troman","name":"Dr. + Tiffany Roman","id":15299255,"id_str":"15299255","indices":[11,18]},{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[53,61]},{"screen_name":"kennesawstate","name":"Kennesaw + State","id":54637018,"id_str":"54637018","indices":[71,85]}],"urls":[],"media":[{"id":1187543650013573121,"id_str":"1187543650013573121","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsAqGZUcAE8WlC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsAqGZUcAE8WlC.jpg","url":"https:\/\/t.co\/MXJPPRJZjK","display_url":"pic.twitter.com\/MXJPPRJZjK","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1187543656590270464\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1179,"resize":"fit"},"small":{"w":680,"h":668,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1941,"h":1907,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187543650013573121,"id_str":"1187543650013573121","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/EHsAqGZUcAE8WlC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHsAqGZUcAE8WlC.jpg","url":"https:\/\/t.co\/MXJPPRJZjK","display_url":"pic.twitter.com\/MXJPPRJZjK","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1187543656590270464\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1179,"resize":"fit"},"small":{"w":680,"h":668,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1941,"h":1907,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:14:32 +0000 2019","id":1187507696985092096,"id_str":"1187507696985092096","full_text":"RT + @SultanMutlaq: Fourth day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 + @khebrat_edu @S_Meemar @onaizahedu Tips and Tricks fo\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[29,44]},{"text":"AECTech2019","indices":[45,57]},{"text":"aect19inspired","indices":[58,73]}],"symbols":[],"user_mentions":[{"screen_name":"SultanMutlaq","name":"SultanMutlaq","id":370132373,"id_str":"370132373","indices":[3,16]},{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[74,85]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[86,98]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[99,108]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[109,120]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":323342808,"id_str":"323342808","name":"Abdulkareem + Omair","screen_name":"Abdulkareem0566","location":"United States","description":"English + Teacher. BA in English and Translation. MA in translation.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":85,"listed_count":3,"created_at":"Fri + Jun 24 17:26:16 +0000 2011","favourites_count":4583,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":47110,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1266065187339145216\/VT1Ue55y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1266065187339145216\/VT1Ue55y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/323342808\/1574650275","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 20:13:26 +0000 2019","id":1187462120612364293,"id_str":"1187462120612364293","full_text":"Fourth + day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 @khebrat_edu + @S_Meemar @onaizahedu Tips and Tricks for Journal Publishing: Advice from + the Editors https:\/\/t.co\/7KvmCFuKDS","truncated":false,"display_text_range":[0,166],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]},{"text":"AECTech2019","indices":[27,39]},{"text":"aect19inspired","indices":[40,55]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[56,67]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[68,80]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[81,90]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[91,102]}],"urls":[],"media":[{"id":1187462115306561537,"id_str":"1187462115306561537","indices":[167,190],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq2gJ8U4AE5QDk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq2gJ8U4AE5QDk.jpg","url":"https:\/\/t.co\/7KvmCFuKDS","display_url":"pic.twitter.com\/7KvmCFuKDS","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187462120612364293\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187462115306561537,"id_str":"1187462115306561537","indices":[167,190],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq2gJ8U4AE5QDk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq2gJ8U4AE5QDk.jpg","url":"https:\/\/t.co\/7KvmCFuKDS","display_url":"pic.twitter.com\/7KvmCFuKDS","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187462120612364293\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187445385603637249,"in_reply_to_status_id_str":"1187445385603637249","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:18:09 +0000 2019","id":1187508606742122496,"id_str":"1187508606742122496","full_text":"@robmoore3 + @epsODU Thank you, Dr. Moore. Congratulations also for receiving the best + proposal award. FYI, an alumnus of our program, Dr. Tom Wilson, received the + second place. ODU IDT rocks! #aect19 #aect19inspired #GoMonarchs https:\/\/t.co\/ezJfTtT553","truncated":false,"display_text_range":[19,226],"entities":{"hashtags":[{"text":"aect19","indices":[191,198]},{"text":"aect19inspired","indices":[199,214]},{"text":"GoMonarchs","indices":[215,226]}],"symbols":[],"user_mentions":[{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[0,10]},{"screen_name":"epsODU","name":"ODU + Darden College of Educ & Professional Studies","id":124254976,"id_str":"124254976","indices":[11,18]}],"urls":[],"media":[{"id":1187508601037840386,"id_str":"1187508601037840386","indices":[227,250],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrgx-yU4AIzeoj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrgx-yU4AIzeoj.jpg","url":"https:\/\/t.co\/ezJfTtT553","display_url":"pic.twitter.com\/ezJfTtT553","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187508606742122496\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":640,"resize":"fit"},"large":{"w":1077,"h":1013,"resize":"fit"},"medium":{"w":1077,"h":1013,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187508601037840386,"id_str":"1187508601037840386","indices":[227,250],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrgx-yU4AIzeoj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrgx-yU4AIzeoj.jpg","url":"https:\/\/t.co\/ezJfTtT553","display_url":"pic.twitter.com\/ezJfTtT553","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187508606742122496\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":640,"resize":"fit"},"large":{"w":1077,"h":1013,"resize":"fit"},"medium":{"w":1077,"h":1013,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1187497428313767937,"in_reply_to_status_id_str":"1187497428313767937","in_reply_to_user_id":45256556,"in_reply_to_user_id_str":"45256556","in_reply_to_screen_name":"robmoore3","user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:18:32 +0000 2019","id":1187554004147949568,"id_str":"1187554004147949568","full_text":"As + you get ready to leave Vegas, keep in mind that (in this one instance) you\u2019re + excused from the rules. In other words, what happened at #aect19 - #aect19inspired + in Vegas does not have to stay in Vegas.","truncated":false,"display_text_range":[0,204],"entities":{"hashtags":[{"text":"aect19","indices":[138,145]},{"text":"aect19inspired","indices":[148,163]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:13:59 +0000 2019","id":1187507557838884865,"id_str":"1187507557838884865","full_text":"\u201cThe + proper question is not, \u2018how can people motivate others?\u2019 But rather, + \u2018how can people create the conditions within which others will motivate + themselves?\u2019\u201d Deci Love this quote! Thanks, @valarywithawhy #aect19inspired + https:\/\/t.co\/NDVIH7ByK7","truncated":false,"display_text_range":[0,223],"entities":{"hashtags":[{"text":"aect19inspired","indices":[208,223]}],"symbols":[],"user_mentions":[{"screen_name":"valarywithawhy","name":"Valary + Oleinik","id":111391715,"id_str":"111391715","indices":[192,207]}],"urls":[],"media":[{"id":1187507542621995008,"id_str":"1187507542621995008","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrf0X4UwAAhUvl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrf0X4UwAAhUvl.jpg","url":"https:\/\/t.co\/NDVIH7ByK7","display_url":"pic.twitter.com\/NDVIH7ByK7","expanded_url":"https:\/\/twitter.com\/AllisonHallAZ\/status\/1187507557838884865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187507542621995008,"id_str":"1187507542621995008","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrf0X4UwAAhUvl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrf0X4UwAAhUvl.jpg","url":"https:\/\/t.co\/NDVIH7ByK7","display_url":"pic.twitter.com\/NDVIH7ByK7","expanded_url":"https:\/\/twitter.com\/AllisonHallAZ\/status\/1187507557838884865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":720930385,"id_str":"720930385","name":"Dr. + Allison Barsnica Hall","screen_name":"AllisonHallAZ","location":"Tempe, AZ","description":"Director + of Learning Experience Design @ ASU. Lifelong Learner. Interested in how to + help ALL learners. she\/her\/hers","url":"https:\/\/t.co\/Pi5aZFLirT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Pi5aZFLirT","expanded_url":"https:\/\/www.linkedin.com\/in\/allisonbhall\/","display_url":"linkedin.com\/in\/allisonbhal\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":417,"friends_count":563,"listed_count":30,"created_at":"Fri + Jul 27 21:42:06 +0000 2012","favourites_count":3118,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1022,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/981993480833515520\/S96xaBm1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/981993480833515520\/S96xaBm1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/720930385\/1581027324","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:52:52 +0000 2019","id":1187487146019418113,"id_str":"1187487146019418113","full_text":"Great + challenge for #AcWriMo shared by Kae Novak at @AECT @aectclt #aect19inspired + https:\/\/t.co\/pWbd57bkTd","truncated":false,"display_text_range":[0,82],"entities":{"hashtags":[{"text":"AcWriMo","indices":[20,28]},{"text":"aect19inspired","indices":[67,82]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[52,57]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[58,66]}],"urls":[],"media":[{"id":1187487138217988096,"id_str":"1187487138217988096","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrNQrjUEAAG1Ac.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrNQrjUEAAG1Ac.jpg","url":"https:\/\/t.co\/pWbd57bkTd","display_url":"pic.twitter.com\/pWbd57bkTd","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187487146019418113\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187487138217988096,"id_str":"1187487138217988096","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrNQrjUEAAG1Ac.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrNQrjUEAAG1Ac.jpg","url":"https:\/\/t.co\/pWbd57bkTd","display_url":"pic.twitter.com\/pWbd57bkTd","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187487146019418113\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:10:21 +0000 2019","id":1187551943243132928,"id_str":"1187551943243132928","full_text":"RT + @lpemusicguru: We had a blast in my session!!!! @SpheroEdu was a hot topic + using @specdrums_rings to enhance music education. @AECT @AEC\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpheroEdu","name":"Sphero + Education","id":1335870978,"id_str":"1335870978","indices":[51,61]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4921781685,"id_str":"4921781685","name":"AECT + TIL","screen_name":"AECTTIL","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":11,"listed_count":1,"created_at":"Wed + Feb 17 01:21:42 +0000 2016","favourites_count":54,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":83,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1176928861319258114\/oGHSP4gc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1176928861319258114\/oGHSP4gc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4921781685\/1569436683","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 00:27:58 +0000 2019","id":1187163790598537216,"id_str":"1187163790598537216","full_text":"We + had a blast in my session!!!! @SpheroEdu was a hot topic using @specdrums_rings + to enhance music education. @AECT @AECTTIL #aect19inspired https:\/\/t.co\/PkdCGOmdUj","truncated":false,"display_text_range":[0,141],"entities":{"hashtags":[{"text":"aect19inspired","indices":[126,141]}],"symbols":[],"user_mentions":[{"screen_name":"SpheroEdu","name":"Sphero + Education","id":1335870978,"id_str":"1335870978","indices":[33,43]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[111,116]},{"screen_name":"AECTTIL","name":"AECT + TIL","id":4921781685,"id_str":"4921781685","indices":[117,125]}],"urls":[],"media":[{"id":1187163783296253952,"id_str":"1187163783296253952","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmnK8mVAAAqbsR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmnK8mVAAAqbsR.jpg","url":"https:\/\/t.co\/PkdCGOmdUj","display_url":"pic.twitter.com\/PkdCGOmdUj","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1187163790598537216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187163783296253952,"id_str":"1187163783296253952","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmnK8mVAAAqbsR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmnK8mVAAAqbsR.jpg","url":"https:\/\/t.co\/PkdCGOmdUj","display_url":"pic.twitter.com\/PkdCGOmdUj","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1187163790598537216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187163783296237568,"id_str":"1187163783296237568","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmnK8mUwAAC8b9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmnK8mUwAAC8b9.jpg","url":"https:\/\/t.co\/PkdCGOmdUj","display_url":"pic.twitter.com\/PkdCGOmdUj","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1187163790598537216\/photo\/1","type":"photo","sizes":{"medium":{"w":890,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1519,"h":2048,"resize":"fit"},"small":{"w":504,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":763378325712674818,"id_str":"763378325712674818","name":"Tay + Fess, M.Ed.","screen_name":"Captain_Fess","location":"Naples, FL","description":"Music + Educator l \ud83c\udff3\ufe0f\u200d\ud83c\udf08 l Presenter l UDL l FGCU l + Doctoral Student Ed.D. l EdTech l Disney Geek","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":576,"listed_count":3,"created_at":"Wed + Aug 10 14:15:50 +0000 2016","favourites_count":1730,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":665,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/763378325712674818\/1595378873","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 22:44:36 +0000 2019","id":1187500163645853697,"id_str":"1187500163645853697","full_text":"Sketch + note taking. Awesome presentation. #aect19inspired https:\/\/t.co\/vcfG4my61z","truncated":false,"display_text_range":[0,57],"entities":{"hashtags":[{"text":"aect19inspired","indices":[42,57]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187500157476061187,"id_str":"1187500157476061187","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrZGgEUwAMJc-d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrZGgEUwAMJc-d.jpg","url":"https:\/\/t.co\/vcfG4my61z","display_url":"pic.twitter.com\/vcfG4my61z","expanded_url":"https:\/\/twitter.com\/marshallgjones\/status\/1187500163645853697\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187500157476061187,"id_str":"1187500157476061187","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrZGgEUwAMJc-d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrZGgEUwAMJc-d.jpg","url":"https:\/\/t.co\/vcfG4my61z","display_url":"pic.twitter.com\/vcfG4my61z","expanded_url":"https:\/\/twitter.com\/marshallgjones\/status\/1187500163645853697\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17467478,"id_str":"17467478","name":"Marshall + G. Jones","screen_name":"marshallgjones","location":"Rock Hill, SC USA","description":"Professor + of Learning Design & Technology. Musician. Photographer. Tweeting about learning, + technology & whatever else strikes me. Tweets are my own.","url":"https:\/\/t.co\/HGRry3tHo4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HGRry3tHo4","expanded_url":"http:\/\/marshallgjones.com","display_url":"marshallgjones.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1022,"friends_count":889,"listed_count":71,"created_at":"Tue + Nov 18 18:26:51 +0000 2008","favourites_count":7553,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8342,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17467478\/1570054414","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:15:03 +0000 2019","id":1187553124317388801,"id_str":"1187553124317388801","full_text":"RT + @koubenec: The @EdTech_UofSC table at @AECT #aect19inspired already has a + line for the swag wheel! https:\/\/t.co\/gK807x6LUW","truncated":false,"display_text_range":[0,125],"entities":{"hashtags":[{"text":"aect19inspired","indices":[47,62]}],"symbols":[],"user_mentions":[{"screen_name":"koubenec","name":"Noah + Koubenec","id":153965652,"id_str":"153965652","indices":[3,12]},{"screen_name":"EdTech_UofSC","name":"LD&T + and EdTech at UofSC","id":2835369671,"id_str":"2835369671","indices":[18,31]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[41,46]}],"urls":[],"media":[{"id":1187539460331753474,"id_str":"1187539460331753474","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr82OnVUAIozMe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr82OnVUAIozMe.jpg","url":"https:\/\/t.co\/gK807x6LUW","display_url":"pic.twitter.com\/gK807x6LUW","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1187539467680137216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1187539467680137216,"source_status_id_str":"1187539467680137216","source_user_id":153965652,"source_user_id_str":"153965652"}]},"extended_entities":{"media":[{"id":1187539460331753474,"id_str":"1187539460331753474","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr82OnVUAIozMe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr82OnVUAIozMe.jpg","url":"https:\/\/t.co\/gK807x6LUW","display_url":"pic.twitter.com\/gK807x6LUW","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1187539467680137216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1187539467680137216,"source_status_id_str":"1187539467680137216","source_user_id":153965652,"source_user_id_str":"153965652","ext_alt_text":"Conference + attendees spinning a virtual prize wheel to win University of South Carolina + branded souvenirs"}]},"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" + rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 01:20:47 +0000 2019","id":1187539467680137216,"id_str":"1187539467680137216","full_text":"The + @EdTech_UofSC table at @AECT #aect19inspired already has a line for the swag + wheel! https:\/\/t.co\/gK807x6LUW","truncated":false,"display_text_range":[0,87],"entities":{"hashtags":[{"text":"aect19inspired","indices":[33,48]}],"symbols":[],"user_mentions":[{"screen_name":"EdTech_UofSC","name":"LD&T + and EdTech at UofSC","id":2835369671,"id_str":"2835369671","indices":[4,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]}],"urls":[],"media":[{"id":1187539460331753474,"id_str":"1187539460331753474","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr82OnVUAIozMe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr82OnVUAIozMe.jpg","url":"https:\/\/t.co\/gK807x6LUW","display_url":"pic.twitter.com\/gK807x6LUW","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1187539467680137216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187539460331753474,"id_str":"1187539460331753474","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr82OnVUAIozMe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr82OnVUAIozMe.jpg","url":"https:\/\/t.co\/gK807x6LUW","display_url":"pic.twitter.com\/gK807x6LUW","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1187539467680137216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":"Conference + attendees spinning a virtual prize wheel to win University of South Carolina + branded souvenirs"}]},"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" + rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 22:34:14 +0000 2019","id":1187497555392753665,"id_str":"1187497555392753665","full_text":"Weiwei + Ji, former IDT student, is taking part of professional development sessions + at the #AECT2019 Convention.\n\nHe is currently serving as an instructional + designer at Arkansas Tech University.\n\nCongratulations! \ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\n\n#HornetPride + #IDT #ESU https:\/\/t.co\/2ro6XQHiUO","truncated":false,"display_text_range":[0,240],"entities":{"hashtags":[{"text":"AECT2019","indices":[90,99]},{"text":"HornetPride","indices":[218,230]},{"text":"IDT","indices":[231,235]},{"text":"ESU","indices":[236,240]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187497550686744577,"id_str":"1187497550686744577","indices":[241,264],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrWuxBUcAEoROy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrWuxBUcAEoROy.jpg","url":"https:\/\/t.co\/2ro6XQHiUO","display_url":"pic.twitter.com\/2ro6XQHiUO","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1187497555392753665\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187497550686744577,"id_str":"1187497550686744577","indices":[241,264],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrWuxBUcAEoROy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrWuxBUcAEoROy.jpg","url":"https:\/\/t.co\/2ro6XQHiUO","display_url":"pic.twitter.com\/2ro6XQHiUO","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1187497555392753665\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:39:34 +0000 2019","id":1187513996783472641,"id_str":"1187513996783472641","full_text":"RT + @DrTerriC: Really enjoying the interactions and conversations at #AECT19 .. + I feel as though @michaelmgrant and @dctrcurry ''s hard work\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"AECT19","indices":[68,75]}],"symbols":[],"user_mentions":[{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[3,12]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[96,110]},{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[115,125]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 23:26:42 +0000 2019","id":1187510757266583552,"id_str":"1187510757266583552","full_text":"Really + enjoying the interactions and conversations at #AECT19 .. I feel as though + @michaelmgrant and @dctrcurry ''s hard work is paying off for all attendees. + #aect19inspired See you at the membership meeting at 5!","truncated":false,"display_text_range":[0,214],"entities":{"hashtags":[{"text":"AECT19","indices":[54,61]},{"text":"aect19inspired","indices":[158,173]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[82,96]},{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[101,111]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 00:49:17 +0000 2019","id":1187531541557194754,"id_str":"1187531541557194754","full_text":"love + this! so import to stay inspired, that\u2019s what this is all about! #aect19 + #aect19inspired #eme2040 #fsu2020 https:\/\/t.co\/7VtnfWr40w","truncated":false,"display_text_range":[0,111],"entities":{"hashtags":[{"text":"aect19","indices":[70,77]},{"text":"aect19inspired","indices":[78,93]},{"text":"eme2040","indices":[94,102]},{"text":"fsu2020","indices":[103,111]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7VtnfWr40w","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410","display_url":"twitter.com\/SultanMutlaq\/s\u2026","indices":[112,135]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1168888326880931842,"id_str":"1168888326880931842","name":"Casey + Higgins","screen_name":"CaseyHi29640551","location":"","description":"eme2040","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12,"friends_count":17,"listed_count":0,"created_at":"Tue + Sep 03 14:07:57 +0000 2019","favourites_count":23,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1169610264288944128\/IyVyu3w5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169610264288944128\/IyVyu3w5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168888326880931842\/1567691349","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187068404655505410,"quoted_status_id_str":"1187068404655505410","quoted_status_permalink":{"url":"https:\/\/t.co\/7VtnfWr40w","expanded":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410","display":"twitter.com\/SultanMutlaq\/s\u2026"},"quoted_status":{"created_at":"Wed + Oct 23 18:08:56 +0000 2019","id":1187068404655505410,"id_str":"1187068404655505410","full_text":"Third + day #aect19inspired #AECTech2019 #aect19inspired Be inspired https:\/\/t.co\/OdpkOCJKOG","truncated":false,"display_text_range":[0,66],"entities":{"hashtags":[{"text":"aect19inspired","indices":[10,25]},{"text":"AECTech2019","indices":[26,38]},{"text":"aect19inspired","indices":[39,54]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187068399836266496,"id_str":"1187068399836266496","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","url":"https:\/\/t.co\/OdpkOCJKOG","display_url":"pic.twitter.com\/OdpkOCJKOG","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187068399836266496,"id_str":"1187068399836266496","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","url":"https:\/\/t.co\/OdpkOCJKOG","display_url":"pic.twitter.com\/OdpkOCJKOG","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187052419324055552,"in_reply_to_status_id_str":"1187052419324055552","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 22:48:55 +0000 2019","id":1187501251224842240,"id_str":"1187501251224842240","full_text":"About + to present on this study about #accessibility of K-12 websites in the US at + #aect19 https:\/\/t.co\/qVf5N8oObZ","truncated":false,"display_text_range":[0,113],"entities":{"hashtags":[{"text":"accessibility","indices":[37,51]},{"text":"aect19","indices":[82,89]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qVf5N8oObZ","expanded_url":"https:\/\/firstmonday.org\/ojs\/index.php\/fm\/article\/view\/9183\/7722","display_url":"firstmonday.org\/ojs\/index.php\/\u2026","indices":[90,113]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":104967963,"id_str":"104967963","name":"Royce + Kimmons","screen_name":"roycekimmons","location":"Provo, UT","description":"Associate + professor, BYU-IPT: openness, OER, tech in education, social media. https:\/\/t.co\/iktkhjAzCw + https:\/\/t.co\/vhHYSEYZSN https:\/\/t.co\/9E4HWYRF9R","url":"https:\/\/t.co\/KsbltQYZa0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KsbltQYZa0","expanded_url":"http:\/\/roycekimmons.com","display_url":"roycekimmons.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/iktkhjAzCw","expanded_url":"http:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[78,101]},{"url":"https:\/\/t.co\/vhHYSEYZSN","expanded_url":"http:\/\/equitypress.org","display_url":"equitypress.org","indices":[102,125]},{"url":"https:\/\/t.co\/9E4HWYRF9R","expanded_url":"http:\/\/edtechnica.org","display_url":"edtechnica.org","indices":[126,149]}]}},"protected":false,"followers_count":1430,"friends_count":2250,"listed_count":57,"created_at":"Thu + Jan 14 23:25:41 +0000 2010","favourites_count":930,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1841,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104967963\/1585782658","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"354770","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EDF0FF","profile_text_color":"1A1A1A","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 22:40:14 +0000 2019","id":1187499066701144064,"id_str":"1187499066701144064","full_text":"What''s + your favorite visualization of Gagne''s 9 events of instruction? #aect2019 + #aect19 #aect19inspired https:\/\/t.co\/eNq1hOKQ2b","truncated":false,"display_text_range":[0,104],"entities":{"hashtags":[{"text":"aect2019","indices":[71,80]},{"text":"aect19","indices":[81,88]},{"text":"aect19inspired","indices":[89,104]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187499064973090817,"id_str":"1187499064973090817","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrYG6LUYAE52jD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrYG6LUYAE52jD.png","url":"https:\/\/t.co\/eNq1hOKQ2b","display_url":"pic.twitter.com\/eNq1hOKQ2b","expanded_url":"https:\/\/twitter.com\/ericpaulrogers\/status\/1187499066701144064\/photo\/1","type":"photo","sizes":{"large":{"w":192,"h":144,"resize":"fit"},"thumb":{"w":144,"h":144,"resize":"crop"},"medium":{"w":192,"h":144,"resize":"fit"},"small":{"w":192,"h":144,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187499064973090817,"id_str":"1187499064973090817","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrYG6LUYAE52jD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrYG6LUYAE52jD.png","url":"https:\/\/t.co\/eNq1hOKQ2b","display_url":"pic.twitter.com\/eNq1hOKQ2b","expanded_url":"https:\/\/twitter.com\/ericpaulrogers\/status\/1187499066701144064\/photo\/1","type":"photo","sizes":{"large":{"w":192,"h":144,"resize":"fit"},"thumb":{"w":144,"h":144,"resize":"crop"},"medium":{"w":192,"h":144,"resize":"fit"},"small":{"w":192,"h":144,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":51775264,"id_str":"51775264","name":"Eric + Paul Rogers","screen_name":"ericpaulrogers","location":"Salt Lake City, UT","description":"(he, + him) aspiring stone catcher | ally\ud83c\udf08","url":"https:\/\/t.co\/xhUZs9RX55","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xhUZs9RX55","expanded_url":"https:\/\/ericpaulrogers.com","display_url":"ericpaulrogers.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":361,"friends_count":1232,"listed_count":2,"created_at":"Sun + Jun 28 16:49:05 +0000 2009","favourites_count":27579,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3148,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1478471925911339008\/2wRBAyhT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1478471925911339008\/2wRBAyhT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/51775264\/1648702096","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 00:51:42 +0000 2019","id":1187532151794720769,"id_str":"1187532151794720769","full_text":"Help + a Hokie by answering a survey, get a stylus. University reception Virginia + Tech table. #aect19inspired https:\/\/t.co\/715nFvPUf5","truncated":false,"display_text_range":[0,107],"entities":{"hashtags":[{"text":"aect19inspired","indices":[92,107]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187531379531120640,"id_str":"1187531379531120640","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr1f3SVAAAxs4v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr1f3SVAAAxs4v.jpg","url":"https:\/\/t.co\/715nFvPUf5","display_url":"pic.twitter.com\/715nFvPUf5","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187532151794720769\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187531379531120640,"id_str":"1187531379531120640","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr1f3SVAAAxs4v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr1f3SVAAAxs4v.jpg","url":"https:\/\/t.co\/715nFvPUf5","display_url":"pic.twitter.com\/715nFvPUf5","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187532151794720769\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 00:33:59 +0000 2019","id":1187527693077643264,"id_str":"1187527693077643264","full_text":"#aect2019 + https:\/\/t.co\/qov176MK65","truncated":false,"display_text_range":[0,9],"entities":{"hashtags":[{"text":"aect2019","indices":[0,9]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187527687352401920,"id_str":"1187527687352401920","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/EHryI82UwAAwewO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHryI82UwAAwewO.jpg","url":"https:\/\/t.co\/qov176MK65","display_url":"pic.twitter.com\/qov176MK65","expanded_url":"https:\/\/twitter.com\/Chiffonbest\/status\/1187527693077643264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187527687352401920,"id_str":"1187527687352401920","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/EHryI82UwAAwewO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHryI82UwAAwewO.jpg","url":"https:\/\/t.co\/qov176MK65","display_url":"pic.twitter.com\/qov176MK65","expanded_url":"https:\/\/twitter.com\/Chiffonbest\/status\/1187527693077643264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110001691,"id_str":"110001691","name":"Cassandra + Best, Ed.D","screen_name":"Chiffonbest","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":21,"friends_count":106,"listed_count":0,"created_at":"Sun + Jan 31 00:51:44 +0000 2010","favourites_count":18,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1186432682307158016\/GcigpEuF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186432682307158016\/GcigpEuF_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Fri + Oct 25 00:33:08 +0000 2019","id":1187527476366299137,"id_str":"1187527476366299137","full_text":"RT + @PaulineMuljana: Congrats to Dr. Selco and the @cppelearning at @calpolypomona + . This is truly a team effort. I miss working with you al\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]},{"screen_name":"cppelearning","name":"CAFE: + Center for Advancement of Faculty Excellence","id":61020552,"id_str":"61020552","indices":[50,63]},{"screen_name":"calpolypomona","name":"Cal + Poly Pomona","id":23019297,"id_str":"23019297","indices":[67,81]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 00:14:15 +0000 2019","id":1187522725570478080,"id_str":"1187522725570478080","full_text":"Congrats + to Dr. Selco and the @cppelearning at @calpolypomona . This is truly a team + effort. I miss working with you all!\n#aect19 #aect19inspired https:\/\/t.co\/WMTCL9wRTP","truncated":false,"display_text_range":[0,145],"entities":{"hashtags":[{"text":"aect19","indices":[122,129]},{"text":"aect19inspired","indices":[130,145]}],"symbols":[],"user_mentions":[{"screen_name":"cppelearning","name":"CAFE: + Center for Advancement of Faculty Excellence","id":61020552,"id_str":"61020552","indices":[30,43]},{"screen_name":"calpolypomona","name":"Cal + Poly Pomona","id":23019297,"id_str":"23019297","indices":[47,61]}],"urls":[{"url":"https:\/\/t.co\/WMTCL9wRTP","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187497428313767937","display_url":"twitter.com\/robmoore3\/stat\u2026","indices":[146,169]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1187497428313767937,"quoted_status_id_str":"1187497428313767937","quoted_status_permalink":{"url":"https:\/\/t.co\/WMTCL9wRTP","expanded":"https:\/\/twitter.com\/robmoore3\/status\/1187497428313767937","display":"twitter.com\/robmoore3\/stat\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 22:33:44 +0000 2019","id":1187497428313767937,"id_str":"1187497428313767937","full_text":"Congrats + to @epsODU IDT Doctoral Student, @PaulineMuljana, on her AECT DDL Crystal + Award win! #aect19inspired #aect19 https:\/\/t.co\/rtH57GJQy6","truncated":false,"display_text_range":[0,117],"entities":{"hashtags":[{"text":"aect19inspired","indices":[94,109]},{"text":"aect19","indices":[110,117]}],"symbols":[],"user_mentions":[{"screen_name":"epsODU","name":"ODU + Darden College of Educ & Professional Studies","id":124254976,"id_str":"124254976","indices":[12,19]},{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[42,57]}],"urls":[],"media":[{"id":1187497423070875648,"id_str":"1187497423070875648","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrWnVnU0AAPnT3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrWnVnU0AAPnT3.jpg","url":"https:\/\/t.co\/rtH57GJQy6","display_url":"pic.twitter.com\/rtH57GJQy6","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187497428313767937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187497423070875648,"id_str":"1187497423070875648","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrWnVnU0AAPnT3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrWnVnU0AAPnT3.jpg","url":"https:\/\/t.co\/rtH57GJQy6","display_url":"pic.twitter.com\/rtH57GJQy6","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187497428313767937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187497423066652672,"id_str":"1187497423066652672","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrWnVmUYAA0czs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrWnVmUYAA0czs.jpg","url":"https:\/\/t.co\/rtH57GJQy6","display_url":"pic.twitter.com\/rtH57GJQy6","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187497428313767937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1187497428313767937,"quoted_status_id_str":"1187497428313767937","quoted_status_permalink":{"url":"https:\/\/t.co\/WMTCL9wRTP","expanded":"https:\/\/twitter.com\/robmoore3\/status\/1187497428313767937","display":"twitter.com\/robmoore3\/stat\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:51:49 +0000 2019","id":1187517079748071424,"id_str":"1187517079748071424","full_text":"RT + @LearnEngage: You''re in a presentation and they mention using learning styles + to plan\/design instruction. What do you do? #AECT19 #devle\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[125,132]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1551131372,"id_str":"1551131372","name":"Moni + IDD","screen_name":"MoniIDD","location":"","description":"Sr. Instructional + Designer, FSU Grad - M.S. ISLT, PhD in Learning Technologies from @ UNT | + QM course certified | \u2764\ufe0f hiking, waterfalls, & living in the PNW","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":485,"friends_count":1614,"listed_count":70,"created_at":"Thu + Jun 27 17:35:30 +0000 2013","favourites_count":6961,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4853,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471619480014888966\/UtL-Oh9p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471619480014888966\/UtL-Oh9p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1551131372\/1623973489","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 13:19:51 +0000 2019","id":1187358040862806018,"id_str":"1187358040862806018","full_text":"You''re + in a presentation and they mention using learning styles to plan\/design instruction. + What do you do? #AECT19 #devlearn #mythbusting","truncated":false,"display_text_range":[0,138],"entities":{"hashtags":[{"text":"AECT19","indices":[108,115]},{"text":"devlearn","indices":[116,125]},{"text":"mythbusting","indices":[126,138]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 22:07:40 +0000 2019","id":1187490870586560512,"id_str":"1187490870586560512","full_text":"Can + you see the special guest in the History & Archives presentation? #AECT19 + https:\/\/t.co\/tVT0VG4Hlv","truncated":false,"display_text_range":[0,81],"entities":{"hashtags":[{"text":"AECT19","indices":[74,81]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187490863330447360,"id_str":"1187490863330447360","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrQpgrVUAAFw5Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrQpgrVUAAFw5Q.jpg","url":"https:\/\/t.co\/tVT0VG4Hlv","display_url":"pic.twitter.com\/tVT0VG4Hlv","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1187490870586560512\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187490863330447360,"id_str":"1187490863330447360","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrQpgrVUAAFw5Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrQpgrVUAAFw5Q.jpg","url":"https:\/\/t.co\/tVT0VG4Hlv","display_url":"pic.twitter.com\/tVT0VG4Hlv","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1187490870586560512\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 22:41:36 +0000 2019","id":1187499410868989953,"id_str":"1187499410868989953","full_text":"RT + @rmreese1: Moving into my new position as president of @aectddl I''m excited + to work with the amazing folks on the board and look forward\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rmreese1","name":"rmreese","id":8005732,"id_str":"8005732","indices":[3,12]},{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[58,66]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 22:05:20 +0000 2019","id":1187490282209570816,"id_str":"1187490282209570816","full_text":"Moving + into my new position as president of @aectddl I''m excited to work with the + amazing folks on the board and look forward to growing with you all. Thank + you for your support. #aect19inspired https:\/\/t.co\/TXFt5nvaSs","truncated":false,"display_text_range":[0,194],"entities":{"hashtags":[{"text":"aect19inspired","indices":[179,194]}],"symbols":[],"user_mentions":[{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[44,52]}],"urls":[],"media":[{"id":1187490275234480128,"id_str":"1187490275234480128","indices":[195,218],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrQHR2VAAA6D5c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrQHR2VAAA6D5c.jpg","url":"https:\/\/t.co\/TXFt5nvaSs","display_url":"pic.twitter.com\/TXFt5nvaSs","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1187490282209570816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1921,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187490275234480128,"id_str":"1187490275234480128","indices":[195,218],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrQHR2VAAA6D5c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrQHR2VAAA6D5c.jpg","url":"https:\/\/t.co\/TXFt5nvaSs","display_url":"pic.twitter.com\/TXFt5nvaSs","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1187490282209570816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1921,"h":1080,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":8005732,"id_str":"8005732","name":"rmreese","screen_name":"rmreese1","location":"Denver, + CO","description":"ID, edtech, all around gerd (geek+nerd). Opinions are my + own and RTs are not endorsements. Pronouns: she\/they","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":564,"friends_count":293,"listed_count":271,"created_at":"Mon + Aug 06 23:59:29 +0000 2007","favourites_count":960,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9941,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2A2828","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8005732\/1573836551","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"091378","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 00:27:42 +0000 2019","id":1187526111489474561,"id_str":"1187526111489474561","full_text":"Look + like sisters? @YamChaivisit #aect19 https:\/\/t.co\/Kr50LjJ0vI","truncated":false,"display_text_range":[0,40],"entities":{"hashtags":[{"text":"aect19","indices":[33,40]}],"symbols":[],"user_mentions":[{"screen_name":"YamChaivisit","name":"Yam + Chaivisit","id":2896012002,"id_str":"2896012002","indices":[19,32]}],"urls":[],"media":[{"id":1187526100240355328,"id_str":"1187526100240355328","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrwskZU0AA2xdG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrwskZU0AA2xdG.jpg","url":"https:\/\/t.co\/Kr50LjJ0vI","display_url":"pic.twitter.com\/Kr50LjJ0vI","expanded_url":"https:\/\/twitter.com\/dtpthanh\/status\/1187526111489474561\/photo\/1","type":"photo","sizes":{"large":{"w":1740,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":578,"h":680,"resize":"fit"},"medium":{"w":1020,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187526100240355328,"id_str":"1187526100240355328","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrwskZU0AA2xdG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrwskZU0AA2xdG.jpg","url":"https:\/\/t.co\/Kr50LjJ0vI","display_url":"pic.twitter.com\/Kr50LjJ0vI","expanded_url":"https:\/\/twitter.com\/dtpthanh\/status\/1187526111489474561\/photo\/1","type":"photo","sizes":{"large":{"w":1740,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":578,"h":680,"resize":"fit"},"medium":{"w":1020,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":991017763824025600,"id_str":"991017763824025600","name":"Thanh + Do","screen_name":"_ThanhDo","location":"Oklahoma, USA","description":"\u2618\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":50,"listed_count":0,"created_at":"Mon + Apr 30 18:13:41 +0000 2018","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1461175168152195079\/c3x7Df6b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1461175168152195079\/c3x7Df6b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/991017763824025600\/1554832273","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"F58EA8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 22:12:21 +0000 2019","id":1187492048313536512,"id_str":"1187492048313536512","full_text":"#Sketchnoting + session now at @AECT. @aect19 #aect19inspired https:\/\/t.co\/GNjzJsf3Sy","truncated":false,"display_text_range":[0,59],"entities":{"hashtags":[{"text":"Sketchnoting","indices":[0,13]},{"text":"aect19inspired","indices":[44,59]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[29,34]},{"screen_name":"aect19","name":"Windy + Trinidad","id":918458306619891712,"id_str":"918458306619891712","indices":[36,43]}],"urls":[],"media":[{"id":1187492041011298304,"id_str":"1187492041011298304","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrRuD4VAAA1N1n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrRuD4VAAA1N1n.jpg","url":"https:\/\/t.co\/GNjzJsf3Sy","display_url":"pic.twitter.com\/GNjzJsf3Sy","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187492048313536512\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":899,"h":1200,"resize":"fit"},"large":{"w":1534,"h":2048,"resize":"fit"},"small":{"w":509,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187492041011298304,"id_str":"1187492041011298304","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrRuD4VAAA1N1n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrRuD4VAAA1N1n.jpg","url":"https:\/\/t.co\/GNjzJsf3Sy","display_url":"pic.twitter.com\/GNjzJsf3Sy","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187492048313536512\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":899,"h":1200,"resize":"fit"},"large":{"w":1534,"h":2048,"resize":"fit"},"small":{"w":509,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187492041011281920,"id_str":"1187492041011281920","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrRuD4UwAA1l4T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrRuD4UwAA1l4T.jpg","url":"https:\/\/t.co\/GNjzJsf3Sy","display_url":"pic.twitter.com\/GNjzJsf3Sy","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187492048313536512\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187492041036419072,"id_str":"1187492041036419072","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrRuD-UUAAjGf4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrRuD-UUAAjGf4.jpg","url":"https:\/\/t.co\/GNjzJsf3Sy","display_url":"pic.twitter.com\/GNjzJsf3Sy","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187492048313536512\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 01:22:11 +0000 2019","id":1187539819393511424,"id_str":"1187539819393511424","full_text":"RT + @arasbozkurt: @eromerohall @tugcealdemirpsu @vdennen @veletsianos I really + liked the way Thomas Revees compared medical field and educat\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"arasbozkurt","name":"Aras + Bozkurt","id":83447547,"id_str":"83447547","indices":[3,15]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[17,29]},{"screen_name":"tugcealdemirpsu","name":"Tugce + Aldemir","id":702658623621586944,"id_str":"702658623621586944","indices":[30,46]},{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[47,55]},{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[56,68]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15636128,"id_str":"15636128","name":"stephanie + moore","screen_name":"steph_moore","location":"New Mexico Baby!","description":"Online + learning. Ethics & design. Tea. Bourbon. Chocolate. Leaning into metamodern. + Editor in Chief of @JCHEResearch she\/her, Author: SEL at a Distance","url":"https:\/\/t.co\/zwm2yMkODU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zwm2yMkODU","expanded_url":"https:\/\/wwnorton.com\/books\/9781324016571","display_url":"wwnorton.com\/books\/97813240\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3098,"friends_count":1316,"listed_count":54,"created_at":"Mon + Jul 28 19:10:00 +0000 2008","favourites_count":18809,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13765,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15636128\/1656742799","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 22:32:40 +0000 2019","id":1187497160209620992,"id_str":"1187497160209620992","full_text":"@eromerohall + @tugcealdemirpsu @vdennen @veletsianos I really liked the way Thomas Revees + compared medical field and education. In contrast to educational field, those + in the medicine focus on real problems, collobrate, and adopt the ''right'' + technology... They, therefore, come up with innovative solutions #aect19","truncated":false,"display_text_range":[52,313],"entities":{"hashtags":[{"text":"aect19","indices":[306,313]}],"symbols":[],"user_mentions":[{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[0,12]},{"screen_name":"tugcealdemirpsu","name":"Tugce + Aldemir","id":702658623621586944,"id_str":"702658623621586944","indices":[13,29]},{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[30,38]},{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[39,51]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1184136233179648008,"in_reply_to_status_id_str":"1184136233179648008","in_reply_to_user_id":918747876,"in_reply_to_user_id_str":"918747876","in_reply_to_screen_name":"eromerohall","user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:19:11 +0000 2019","id":1187554163858792448,"id_str":"1187554163858792448","full_text":"RT + @christieliuidtr: Emerging tech showcase @AECT #aect19 #aect19inspired https:\/\/t.co\/rQcBIOKx4n","truncated":false,"display_text_range":[0,97],"entities":{"hashtags":[{"text":"aect19","indices":[50,57]},{"text":"aect19inspired","indices":[58,73]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[44,49]}],"urls":[],"media":[{"id":1187484195045564417,"id_str":"1187484195045564417","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrKlXYU4AElhWs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrKlXYU4AElhWs.jpg","url":"https:\/\/t.co\/rQcBIOKx4n","display_url":"pic.twitter.com\/rQcBIOKx4n","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187484200590426112\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":934,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":529,"resize":"fit"},"large":{"w":2048,"h":1594,"resize":"fit"}},"source_status_id":1187484200590426112,"source_status_id_str":"1187484200590426112","source_user_id":321423678,"source_user_id_str":"321423678"}]},"extended_entities":{"media":[{"id":1187484195045564417,"id_str":"1187484195045564417","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrKlXYU4AElhWs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrKlXYU4AElhWs.jpg","url":"https:\/\/t.co\/rQcBIOKx4n","display_url":"pic.twitter.com\/rQcBIOKx4n","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187484200590426112\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":934,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":529,"resize":"fit"},"large":{"w":2048,"h":1594,"resize":"fit"}},"source_status_id":1187484200590426112,"source_status_id_str":"1187484200590426112","source_user_id":321423678,"source_user_id_str":"321423678","ext_alt_text":null},{"id":1187484195049730048,"id_str":"1187484195049730048","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrKlXZUcAAuZq0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrKlXZUcAAuZq0.jpg","url":"https:\/\/t.co\/rQcBIOKx4n","display_url":"pic.twitter.com\/rQcBIOKx4n","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187484200590426112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":903,"h":1200,"resize":"fit"},"large":{"w":1150,"h":1529,"resize":"fit"},"small":{"w":511,"h":680,"resize":"fit"}},"source_status_id":1187484200590426112,"source_status_id_str":"1187484200590426112","source_user_id":321423678,"source_user_id_str":"321423678","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:41:10 +0000 2019","id":1187484200590426112,"id_str":"1187484200590426112","full_text":"Emerging + tech showcase @AECT #aect19 #aect19inspired https:\/\/t.co\/rQcBIOKx4n","truncated":false,"display_text_range":[0,52],"entities":{"hashtags":[{"text":"aect19","indices":[29,36]},{"text":"aect19inspired","indices":[37,52]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[23,28]}],"urls":[],"media":[{"id":1187484195045564417,"id_str":"1187484195045564417","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrKlXYU4AElhWs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrKlXYU4AElhWs.jpg","url":"https:\/\/t.co\/rQcBIOKx4n","display_url":"pic.twitter.com\/rQcBIOKx4n","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187484200590426112\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":934,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":529,"resize":"fit"},"large":{"w":2048,"h":1594,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187484195045564417,"id_str":"1187484195045564417","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrKlXYU4AElhWs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrKlXYU4AElhWs.jpg","url":"https:\/\/t.co\/rQcBIOKx4n","display_url":"pic.twitter.com\/rQcBIOKx4n","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187484200590426112\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":934,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":529,"resize":"fit"},"large":{"w":2048,"h":1594,"resize":"fit"}},"ext_alt_text":null},{"id":1187484195049730048,"id_str":"1187484195049730048","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrKlXZUcAAuZq0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrKlXZUcAAuZq0.jpg","url":"https:\/\/t.co\/rQcBIOKx4n","display_url":"pic.twitter.com\/rQcBIOKx4n","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187484200590426112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":903,"h":1200,"resize":"fit"},"large":{"w":1150,"h":1529,"resize":"fit"},"small":{"w":511,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:17:11 +0000 2019","id":1187553662777860097,"id_str":"1187553662777860097","full_text":"RT + @AllisonHallAZ: \u201cThe proper question is not, \u2018how can people motivate + others?\u2019 But rather, \u2018how can people create the conditions within\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AllisonHallAZ","name":"Dr. + Allison Barsnica Hall","id":720930385,"id_str":"720930385","indices":[3,17]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 23:13:59 +0000 2019","id":1187507557838884865,"id_str":"1187507557838884865","full_text":"\u201cThe + proper question is not, \u2018how can people motivate others?\u2019 But rather, + \u2018how can people create the conditions within which others will motivate + themselves?\u2019\u201d Deci Love this quote! Thanks, @valarywithawhy #aect19inspired + https:\/\/t.co\/NDVIH7ByK7","truncated":false,"display_text_range":[0,223],"entities":{"hashtags":[{"text":"aect19inspired","indices":[208,223]}],"symbols":[],"user_mentions":[{"screen_name":"valarywithawhy","name":"Valary + Oleinik","id":111391715,"id_str":"111391715","indices":[192,207]}],"urls":[],"media":[{"id":1187507542621995008,"id_str":"1187507542621995008","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrf0X4UwAAhUvl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrf0X4UwAAhUvl.jpg","url":"https:\/\/t.co\/NDVIH7ByK7","display_url":"pic.twitter.com\/NDVIH7ByK7","expanded_url":"https:\/\/twitter.com\/AllisonHallAZ\/status\/1187507557838884865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187507542621995008,"id_str":"1187507542621995008","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrf0X4UwAAhUvl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrf0X4UwAAhUvl.jpg","url":"https:\/\/t.co\/NDVIH7ByK7","display_url":"pic.twitter.com\/NDVIH7ByK7","expanded_url":"https:\/\/twitter.com\/AllisonHallAZ\/status\/1187507557838884865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":720930385,"id_str":"720930385","name":"Dr. + Allison Barsnica Hall","screen_name":"AllisonHallAZ","location":"Tempe, AZ","description":"Director + of Learning Experience Design @ ASU. Lifelong Learner. Interested in how to + help ALL learners. she\/her\/hers","url":"https:\/\/t.co\/Pi5aZFLirT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Pi5aZFLirT","expanded_url":"https:\/\/www.linkedin.com\/in\/allisonbhall\/","display_url":"linkedin.com\/in\/allisonbhal\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":417,"friends_count":563,"listed_count":30,"created_at":"Fri + Jul 27 21:42:06 +0000 2012","favourites_count":3118,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1022,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/981993480833515520\/S96xaBm1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/981993480833515520\/S96xaBm1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/720930385\/1581027324","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:21:09 +0000 2019","id":1187554660376334336,"id_str":"1187554660376334336","full_text":"RT + @nicolapallitt: Great challenge for #AcWriMo shared by Kae Novak at @AECT + @aectclt #aect19inspired https:\/\/t.co\/pWbd57bkTd","truncated":false,"display_text_range":[0,125],"entities":{"hashtags":[{"text":"AcWriMo","indices":[39,47]},{"text":"aect19inspired","indices":[86,101]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[71,76]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[77,85]}],"urls":[],"media":[{"id":1187487138217988096,"id_str":"1187487138217988096","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrNQrjUEAAG1Ac.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrNQrjUEAAG1Ac.jpg","url":"https:\/\/t.co\/pWbd57bkTd","display_url":"pic.twitter.com\/pWbd57bkTd","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187487146019418113\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1187487146019418113,"source_status_id_str":"1187487146019418113","source_user_id":118368334,"source_user_id_str":"118368334"}]},"extended_entities":{"media":[{"id":1187487138217988096,"id_str":"1187487138217988096","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrNQrjUEAAG1Ac.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrNQrjUEAAG1Ac.jpg","url":"https:\/\/t.co\/pWbd57bkTd","display_url":"pic.twitter.com\/pWbd57bkTd","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187487146019418113\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1187487146019418113,"source_status_id_str":"1187487146019418113","source_user_id":118368334,"source_user_id_str":"118368334","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:52:52 +0000 2019","id":1187487146019418113,"id_str":"1187487146019418113","full_text":"Great + challenge for #AcWriMo shared by Kae Novak at @AECT @aectclt #aect19inspired + https:\/\/t.co\/pWbd57bkTd","truncated":false,"display_text_range":[0,82],"entities":{"hashtags":[{"text":"AcWriMo","indices":[20,28]},{"text":"aect19inspired","indices":[67,82]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[52,57]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[58,66]}],"urls":[],"media":[{"id":1187487138217988096,"id_str":"1187487138217988096","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrNQrjUEAAG1Ac.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrNQrjUEAAG1Ac.jpg","url":"https:\/\/t.co\/pWbd57bkTd","display_url":"pic.twitter.com\/pWbd57bkTd","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187487146019418113\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187487138217988096,"id_str":"1187487138217988096","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrNQrjUEAAG1Ac.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrNQrjUEAAG1Ac.jpg","url":"https:\/\/t.co\/pWbd57bkTd","display_url":"pic.twitter.com\/pWbd57bkTd","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187487146019418113\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:40:56 +0000 2019","id":1187514339600850946,"id_str":"1187514339600850946","full_text":"RT + @ericpaulrogers: What''s your favorite visualization of Gagne''s 9 events + of instruction? #aect2019 #aect19 #aect19inspired https:\/\/t.co\/e\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect2019","indices":[91,100]},{"text":"aect19","indices":[101,108]},{"text":"aect19inspired","indices":[109,124]}],"symbols":[],"user_mentions":[{"screen_name":"ericpaulrogers","name":"Eric + Paul Rogers","id":51775264,"id_str":"51775264","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1551131372,"id_str":"1551131372","name":"Moni + IDD","screen_name":"MoniIDD","location":"","description":"Sr. Instructional + Designer, FSU Grad - M.S. ISLT, PhD in Learning Technologies from @ UNT | + QM course certified | \u2764\ufe0f hiking, waterfalls, & living in the PNW","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":485,"friends_count":1614,"listed_count":70,"created_at":"Thu + Jun 27 17:35:30 +0000 2013","favourites_count":6961,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4853,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471619480014888966\/UtL-Oh9p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471619480014888966\/UtL-Oh9p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1551131372\/1623973489","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 22:40:14 +0000 2019","id":1187499066701144064,"id_str":"1187499066701144064","full_text":"What''s + your favorite visualization of Gagne''s 9 events of instruction? #aect2019 + #aect19 #aect19inspired https:\/\/t.co\/eNq1hOKQ2b","truncated":false,"display_text_range":[0,104],"entities":{"hashtags":[{"text":"aect2019","indices":[71,80]},{"text":"aect19","indices":[81,88]},{"text":"aect19inspired","indices":[89,104]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187499064973090817,"id_str":"1187499064973090817","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrYG6LUYAE52jD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrYG6LUYAE52jD.png","url":"https:\/\/t.co\/eNq1hOKQ2b","display_url":"pic.twitter.com\/eNq1hOKQ2b","expanded_url":"https:\/\/twitter.com\/ericpaulrogers\/status\/1187499066701144064\/photo\/1","type":"photo","sizes":{"large":{"w":192,"h":144,"resize":"fit"},"thumb":{"w":144,"h":144,"resize":"crop"},"medium":{"w":192,"h":144,"resize":"fit"},"small":{"w":192,"h":144,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187499064973090817,"id_str":"1187499064973090817","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrYG6LUYAE52jD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrYG6LUYAE52jD.png","url":"https:\/\/t.co\/eNq1hOKQ2b","display_url":"pic.twitter.com\/eNq1hOKQ2b","expanded_url":"https:\/\/twitter.com\/ericpaulrogers\/status\/1187499066701144064\/photo\/1","type":"photo","sizes":{"large":{"w":192,"h":144,"resize":"fit"},"thumb":{"w":144,"h":144,"resize":"crop"},"medium":{"w":192,"h":144,"resize":"fit"},"small":{"w":192,"h":144,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":51775264,"id_str":"51775264","name":"Eric + Paul Rogers","screen_name":"ericpaulrogers","location":"Salt Lake City, UT","description":"(he, + him) aspiring stone catcher | ally\ud83c\udf08","url":"https:\/\/t.co\/xhUZs9RX55","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xhUZs9RX55","expanded_url":"https:\/\/ericpaulrogers.com","display_url":"ericpaulrogers.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":361,"friends_count":1232,"listed_count":2,"created_at":"Sun + Jun 28 16:49:05 +0000 2009","favourites_count":27579,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3148,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1478471925911339008\/2wRBAyhT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1478471925911339008\/2wRBAyhT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/51775264\/1648702096","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:14:29 +0000 2019","id":1187507685014544384,"id_str":"1187507685014544384","full_text":"RT + @SultanMutlaq: Fourth day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 + @khebrat_edu @S_Meemar @onaizahedu. Exploring How Peo\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[29,44]},{"text":"AECTech2019","indices":[45,57]},{"text":"aect19inspired","indices":[58,73]}],"symbols":[],"user_mentions":[{"screen_name":"SultanMutlaq","name":"SultanMutlaq","id":370132373,"id_str":"370132373","indices":[3,16]},{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[74,85]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[86,98]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[99,108]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[109,120]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":323342808,"id_str":"323342808","name":"Abdulkareem + Omair","screen_name":"Abdulkareem0566","location":"United States","description":"English + Teacher. BA in English and Translation. MA in translation.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":85,"listed_count":3,"created_at":"Fri + Jun 24 17:26:16 +0000 2011","favourites_count":4583,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":47110,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1266065187339145216\/VT1Ue55y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1266065187339145216\/VT1Ue55y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/323342808\/1574650275","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:11:53 +0000 2019","id":1187476829327650816,"id_str":"1187476829327650816","full_text":"Fourth + day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 @khebrat_edu + @S_Meemar @onaizahedu. Exploring How People Solve Problems https:\/\/t.co\/WgDo5RcHJU","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]},{"text":"AECTech2019","indices":[27,39]},{"text":"aect19inspired","indices":[40,55]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[56,67]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[68,80]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[81,90]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[91,102]}],"urls":[],"media":[{"id":1187476823984099328,"id_str":"1187476823984099328","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrD4UCU0AAK-0D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrD4UCU0AAK-0D.jpg","url":"https:\/\/t.co\/WgDo5RcHJU","display_url":"pic.twitter.com\/WgDo5RcHJU","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187476829327650816\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187476823984099328,"id_str":"1187476823984099328","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrD4UCU0AAK-0D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrD4UCU0AAK-0D.jpg","url":"https:\/\/t.co\/WgDo5RcHJU","display_url":"pic.twitter.com\/WgDo5RcHJU","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187476829327650816\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187476824009261057,"id_str":"1187476824009261057","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrD4UIUwAEjOIb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrD4UIUwAEjOIb.jpg","url":"https:\/\/t.co\/WgDo5RcHJU","display_url":"pic.twitter.com\/WgDo5RcHJU","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187476829327650816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187462120612364293,"in_reply_to_status_id_str":"1187462120612364293","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 01:16:22 +0000 2019","id":1187538357796114432,"id_str":"1187538357796114432","full_text":"RT + @SultanMutlaq: Fourth day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 + @khebrat_edu @S_Meemar @onaizahedu Tips and Tricks fo\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[29,44]},{"text":"AECTech2019","indices":[45,57]},{"text":"aect19inspired","indices":[58,73]}],"symbols":[],"user_mentions":[{"screen_name":"SultanMutlaq","name":"SultanMutlaq","id":370132373,"id_str":"370132373","indices":[3,16]},{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[74,85]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[86,98]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[99,108]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[109,120]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15636128,"id_str":"15636128","name":"stephanie + moore","screen_name":"steph_moore","location":"New Mexico Baby!","description":"Online + learning. Ethics & design. Tea. Bourbon. Chocolate. Leaning into metamodern. + Editor in Chief of @JCHEResearch she\/her, Author: SEL at a Distance","url":"https:\/\/t.co\/zwm2yMkODU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zwm2yMkODU","expanded_url":"https:\/\/wwnorton.com\/books\/9781324016571","display_url":"wwnorton.com\/books\/97813240\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3098,"friends_count":1316,"listed_count":54,"created_at":"Mon + Jul 28 19:10:00 +0000 2008","favourites_count":18809,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13765,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15636128\/1656742799","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 20:13:26 +0000 2019","id":1187462120612364293,"id_str":"1187462120612364293","full_text":"Fourth + day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 @khebrat_edu + @S_Meemar @onaizahedu Tips and Tricks for Journal Publishing: Advice from + the Editors https:\/\/t.co\/7KvmCFuKDS","truncated":false,"display_text_range":[0,166],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]},{"text":"AECTech2019","indices":[27,39]},{"text":"aect19inspired","indices":[40,55]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[56,67]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[68,80]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[81,90]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[91,102]}],"urls":[],"media":[{"id":1187462115306561537,"id_str":"1187462115306561537","indices":[167,190],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq2gJ8U4AE5QDk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq2gJ8U4AE5QDk.jpg","url":"https:\/\/t.co\/7KvmCFuKDS","display_url":"pic.twitter.com\/7KvmCFuKDS","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187462120612364293\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187462115306561537,"id_str":"1187462115306561537","indices":[167,190],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq2gJ8U4AE5QDk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq2gJ8U4AE5QDk.jpg","url":"https:\/\/t.co\/7KvmCFuKDS","display_url":"pic.twitter.com\/7KvmCFuKDS","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187462120612364293\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187445385603637249,"in_reply_to_status_id_str":"1187445385603637249","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 22:35:04 +0000 2019","id":1187497767033139200,"id_str":"1187497767033139200","full_text":"@eromerohall + @tugcealdemirpsu @vdennen @veletsianos Interestingly, whenever I research + the impact of technology on education, I see some strong connections with + medical field than the education itself... #aect19","truncated":false,"display_text_range":[52,211],"entities":{"hashtags":[{"text":"aect19","indices":[204,211]}],"symbols":[],"user_mentions":[{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[0,12]},{"screen_name":"tugcealdemirpsu","name":"Tugce + Aldemir","id":702658623621586944,"id_str":"702658623621586944","indices":[13,29]},{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[30,38]},{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[39,51]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1187497160209620992,"in_reply_to_status_id_str":"1187497160209620992","in_reply_to_user_id":83447547,"in_reply_to_user_id_str":"83447547","in_reply_to_screen_name":"arasbozkurt","user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:41:50 +0000 2019","id":1187514569159258113,"id_str":"1187514569159258113","full_text":"RT + @nangur1: Cultural Responsive Instructional Design in online learning environments. + Such an important topic for inclusivity! #AECT19 #A\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[129,136]}],"symbols":[],"user_mentions":[{"screen_name":"nangur1","name":"Dr. + Nandita Gurjar","id":2743313304,"id_str":"2743313304","indices":[3,11]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1551131372,"id_str":"1551131372","name":"Moni + IDD","screen_name":"MoniIDD","location":"","description":"Sr. Instructional + Designer, FSU Grad - M.S. ISLT, PhD in Learning Technologies from @ UNT | + QM course certified | \u2764\ufe0f hiking, waterfalls, & living in the PNW","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":485,"friends_count":1614,"listed_count":70,"created_at":"Thu + Jun 27 17:35:30 +0000 2013","favourites_count":6961,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4853,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471619480014888966\/UtL-Oh9p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471619480014888966\/UtL-Oh9p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1551131372\/1623973489","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 22:19:45 +0000 2019","id":1187493910626463744,"id_str":"1187493910626463744","full_text":"Cultural + Responsive Instructional Design in online learning environments. Such an important + topic for inclusivity! #AECT19 #AECT19inspired https:\/\/t.co\/vqyOMaSNyt","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"AECT19","indices":[116,123]},{"text":"AECT19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187493903919808512,"id_str":"1187493903919808512","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187493903919808512,"id_str":"1187493903919808512","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187493903911358464,"id_str":"1187493903911358464","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafuUEAACDy5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafuUEAACDy5.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187493903915577346,"id_str":"1187493903915577346","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafvUcAIGLBq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafvUcAIGLBq.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:38:44 +0000 2019","id":1187513788486115328,"id_str":"1187513788486115328","full_text":"RT + @arasbozkurt: Rise and shine #AECT19 - Social network Analysis for #AECT with + NodeXL https:\/\/t.co\/MIQz1GdWlT\n@aect\n@michaelmgrant\n@drter\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[32,39]},{"text":"AECT","indices":[70,75]}],"symbols":[],"user_mentions":[{"screen_name":"arasbozkurt","name":"Aras + Bozkurt","id":83447547,"id_str":"83447547","indices":[3,15]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[112,117]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[118,132]}],"urls":[{"url":"https:\/\/t.co\/MIQz1GdWlT","expanded_url":"http:\/\/bit.ly\/2N9hUPr","display_url":"bit.ly\/2N9hUPr","indices":[88,111]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1551131372,"id_str":"1551131372","name":"Moni + IDD","screen_name":"MoniIDD","location":"","description":"Sr. Instructional + Designer, FSU Grad - M.S. ISLT, PhD in Learning Technologies from @ UNT | + QM course certified | \u2764\ufe0f hiking, waterfalls, & living in the PNW","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":485,"friends_count":1614,"listed_count":70,"created_at":"Thu + Jun 27 17:35:30 +0000 2013","favourites_count":6961,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4853,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471619480014888966\/UtL-Oh9p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471619480014888966\/UtL-Oh9p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1551131372\/1623973489","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 13:54:27 +0000 2019","id":1187366745977348102,"id_str":"1187366745977348102","full_text":"Rise + and shine #AECT19 - Social network Analysis for #AECT with NodeXL https:\/\/t.co\/MIQz1GdWlT\n@aect\n@michaelmgrant\n@drterric\n@caranorth11\n@islt_fsu\n@dksch\n@wilsoninedu\n@drvirtuality\n@eromerohall\n@robmoore3\n\nTop + hashtags:\n#aect19\n#aect19inspired\n#aect2019\n#aect\n#fsu\n#fsucoe\n#islt + https:\/\/t.co\/zTCol3vWgv","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[15,22]},{"text":"AECT","indices":[53,58]},{"text":"aect19","indices":[222,229]},{"text":"aect19inspired","indices":[230,245]},{"text":"aect2019","indices":[246,255]},{"text":"aect","indices":[256,261]},{"text":"fsu","indices":[262,266]},{"text":"fsucoe","indices":[267,274]},{"text":"islt","indices":[275,280]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[95,100]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[101,115]},{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[116,125]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[126,138]},{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[139,148]},{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[149,155]},{"screen_name":"WilsonInEdu","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","id":489118534,"id_str":"489118534","indices":[156,168]},{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[169,182]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[183,195]},{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[196,206]}],"urls":[{"url":"https:\/\/t.co\/MIQz1GdWlT","expanded_url":"http:\/\/bit.ly\/2N9hUPr","display_url":"bit.ly\/2N9hUPr","indices":[71,94]}],"media":[{"id":1187366622094331905,"id_str":"1187366622094331905","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","url":"https:\/\/t.co\/zTCol3vWgv","display_url":"pic.twitter.com\/zTCol3vWgv","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187366745977348102\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1578,"resize":"fit"},"medium":{"w":1200,"h":925,"resize":"fit"},"small":{"w":680,"h":524,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187366622094331905,"id_str":"1187366622094331905","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","url":"https:\/\/t.co\/zTCol3vWgv","display_url":"pic.twitter.com\/zTCol3vWgv","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187366745977348102\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1578,"resize":"fit"},"medium":{"w":1200,"h":925,"resize":"fit"},"small":{"w":680,"h":524,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 22:32:40 +0000 2019","id":1187497160209620992,"id_str":"1187497160209620992","full_text":"@eromerohall + @tugcealdemirpsu @vdennen @veletsianos I really liked the way Thomas Revees + compared medical field and education. In contrast to educational field, those + in the medicine focus on real problems, collobrate, and adopt the ''right'' + technology... They, therefore, come up with innovative solutions #aect19","truncated":false,"display_text_range":[52,313],"entities":{"hashtags":[{"text":"aect19","indices":[306,313]}],"symbols":[],"user_mentions":[{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[0,12]},{"screen_name":"tugcealdemirpsu","name":"Tugce + Aldemir","id":702658623621586944,"id_str":"702658623621586944","indices":[13,29]},{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[30,38]},{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[39,51]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1184136233179648008,"in_reply_to_status_id_str":"1184136233179648008","in_reply_to_user_id":918747876,"in_reply_to_user_id_str":"918747876","in_reply_to_screen_name":"eromerohall","user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:20:36 +0000 2019","id":1187509223589986304,"id_str":"1187509223589986304","full_text":"Had + a fantastic (early) morning, workshopping with an incredible group of university + faculty, K-12 educators, and instructional designers at #aect19! https:\/\/t.co\/fW7cdW5BOH","truncated":false,"display_text_range":[0,149],"entities":{"hashtags":[{"text":"aect19","indices":[141,148]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fW7cdW5BOH","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187405218121535490","display_url":"twitter.com\/DrVirtuality\/s\u2026","indices":[150,173]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":175808323,"id_str":"175808323","name":"Nancye + Blair Black","screen_name":"NancyeBlackEdu","location":"Central Florida","description":"Maximizer + of Potential, Defender of Dignity, #Edtech Consultant\/Speaker\/Author, #ISTECert, + @ISTE AI Explorations ProjectLead, ProjectSTEM, @tcgameslab, @MASClab","url":"https:\/\/t.co\/MVxzTa595W","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MVxzTa595W","expanded_url":"http:\/\/engagingeducation.net","display_url":"engagingeducation.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3005,"friends_count":2358,"listed_count":173,"created_at":"Sat + Aug 07 17:38:59 +0000 2010","favourites_count":5091,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3972,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1083931148475080704\/fhxis1fO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1083931148475080704\/fhxis1fO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175808323\/1547264959","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187405218121535490,"quoted_status_id_str":"1187405218121535490","quoted_status_permalink":{"url":"https:\/\/t.co\/fW7cdW5BOH","expanded":"https:\/\/twitter.com\/DrVirtuality\/status\/1187405218121535490","display":"twitter.com\/DrVirtuality\/s\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 16:27:19 +0000 2019","id":1187405218121535490,"id_str":"1187405218121535490","full_text":"@NancyeBlackEdu + presenting on \"Flip Your PD: Top Tips and Tools for Creating PD Videos\" + right now in Ballroom G @ @aect #aect19 #aect19inspired #flippedclasroom https:\/\/t.co\/19CV3S7apd","truncated":false,"display_text_range":[0,160],"entities":{"hashtags":[{"text":"aect19","indices":[120,127]},{"text":"aect19inspired","indices":[128,143]},{"text":"flippedclasroom","indices":[144,160]}],"symbols":[],"user_mentions":[{"screen_name":"NancyeBlackEdu","name":"Nancye + Blair Black","id":175808323,"id_str":"175808323","indices":[0,15]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[114,119]}],"urls":[],"media":[{"id":1187405205790265344,"id_str":"1187405205790265344","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqCvleUEAAgeRJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqCvleUEAAgeRJ.jpg","url":"https:\/\/t.co\/19CV3S7apd","display_url":"pic.twitter.com\/19CV3S7apd","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187405218121535490\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":960,"h":1280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187405205790265344,"id_str":"1187405205790265344","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqCvleUEAAgeRJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqCvleUEAAgeRJ.jpg","url":"https:\/\/t.co\/19CV3S7apd","display_url":"pic.twitter.com\/19CV3S7apd","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187405218121535490\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":960,"h":1280,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":175808323,"in_reply_to_user_id_str":"175808323","in_reply_to_screen_name":"NancyeBlackEdu","user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 01:07:30 +0000 2019","id":1187536126183034880,"id_str":"1187536126183034880","full_text":"Today + we had an amazing panel discussion in Organizational Training & Performance + session. thanks for @correia65 @caranorth11 @AnnaRoseLeach @dr_tracy_s reviewing + the current needs of instructional designers from different perspectives. + Really inspired! #aect19inspired #aect19 https:\/\/t.co\/FDRKTlv711","truncated":false,"display_text_range":[0,281],"entities":{"hashtags":[{"text":"aect19inspired","indices":[258,273]},{"text":"aect19","indices":[274,281]}],"symbols":[],"user_mentions":[{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[106,116]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[117,129]},{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[130,144]}],"urls":[],"media":[{"id":1187536098794164225,"id_str":"1187536098794164225","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr5yj6UUAEJaKg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr5yj6UUAEJaKg.jpg","url":"https:\/\/t.co\/FDRKTlv711","display_url":"pic.twitter.com\/FDRKTlv711","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187536098794164225,"id_str":"1187536098794164225","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr5yj6UUAEJaKg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr5yj6UUAEJaKg.jpg","url":"https:\/\/t.co\/FDRKTlv711","display_url":"pic.twitter.com\/FDRKTlv711","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187536098798366720,"id_str":"1187536098798366720","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr5yj7UcAAq-Yt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr5yj7UcAAq-Yt.jpg","url":"https:\/\/t.co\/FDRKTlv711","display_url":"pic.twitter.com\/FDRKTlv711","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187536098802561026,"id_str":"1187536098802561026","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr5yj8UcAIV63L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr5yj8UcAIV63L.jpg","url":"https:\/\/t.co\/FDRKTlv711","display_url":"pic.twitter.com\/FDRKTlv711","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187536098890678274,"id_str":"1187536098890678274","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr5ykRVAAIshTr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr5ykRVAAIshTr.jpg","url":"https:\/\/t.co\/FDRKTlv711","display_url":"pic.twitter.com\/FDRKTlv711","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187536126183034880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1098051352645623808,"id_str":"1098051352645623808","name":"Fan + XU \u8bb8\u5e06","screen_name":"FanXU92073425","location":"Columbus, Ohio","description":"Ph.D. + candidate of Learning Technologies @OhioState @OSUehe Graduate Research Assistant + @OSUcete Member of Research Group @LEDresearch","url":"https:\/\/t.co\/wYY2xiYHsc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wYY2xiYHsc","expanded_url":"https:\/\/fanxuspace.webnode.page","display_url":"fanxuspace.webnode.page","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":158,"friends_count":302,"listed_count":0,"created_at":"Wed + Feb 20 02:46:58 +0000 2019","favourites_count":391,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":109,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1098051352645623808\/1646758591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 00:32:16 +0000 2019","id":1187527257998295041,"id_str":"1187527257998295041","full_text":"#aect19 + Prez candidate speeches \u2705 Kerala, Kochi research symposium invite \u2705 + https:\/\/t.co\/iY0g48405I","truncated":false,"display_text_range":[0,75],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187527249706143744,"id_str":"1187527249706143744","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrxvefU0AAQ85w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrxvefU0AAQ85w.jpg","url":"https:\/\/t.co\/iY0g48405I","display_url":"pic.twitter.com\/iY0g48405I","expanded_url":"https:\/\/twitter.com\/TAmankwatia\/status\/1187527257998295041\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187527249706143744,"id_str":"1187527249706143744","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrxvefU0AAQ85w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrxvefU0AAQ85w.jpg","url":"https:\/\/t.co\/iY0g48405I","display_url":"pic.twitter.com\/iY0g48405I","expanded_url":"https:\/\/twitter.com\/TAmankwatia\/status\/1187527257998295041\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187521400749191168,"in_reply_to_status_id_str":"1187521400749191168","in_reply_to_user_id":25068789,"in_reply_to_user_id_str":"25068789","in_reply_to_screen_name":"TAmankwatia","user":{"id":25068789,"id_str":"25068789","name":"Tonya + Amankwatia","screen_name":"TAmankwatia","location":"Greensboro, NC","description":"North + Carolina A&T Assistant Vice Provost-Extended Campus. I evaluate programs, + design models for accessible, supportive online instruction & lifelong learning.","url":"https:\/\/t.co\/JWw4AAXsRF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JWw4AAXsRF","expanded_url":"https:\/\/www.linkedin.com\/in\/tonyalehigh\/","display_url":"linkedin.com\/in\/tonyalehigh\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":339,"friends_count":346,"listed_count":33,"created_at":"Wed + Mar 18 13:10:23 +0000 2009","favourites_count":1300,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1840,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E8CFA9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1185683022684790785\/fBnwhav1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1185683022684790785\/fBnwhav1_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"CC3366","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"und"},{"created_at":"Thu + Oct 24 23:43:16 +0000 2019","id":1187514929554833409,"id_str":"1187514929554833409","full_text":"RT + @ISLT_FSU: 2:00 pm - 2:50 pm Emerging Technology Showcase\nT04-Designing Function + Fighters: A digital game-based learning experience for\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1551131372,"id_str":"1551131372","name":"Moni + IDD","screen_name":"MoniIDD","location":"","description":"Sr. Instructional + Designer, FSU Grad - M.S. ISLT, PhD in Learning Technologies from @ UNT | + QM course certified | \u2764\ufe0f hiking, waterfalls, & living in the PNW","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":485,"friends_count":1614,"listed_count":70,"created_at":"Thu + Jun 27 17:35:30 +0000 2013","favourites_count":6961,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4853,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471619480014888966\/UtL-Oh9p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471619480014888966\/UtL-Oh9p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1551131372\/1623973489","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 20:01:08 +0000 2019","id":1187459027711778816,"id_str":"1187459027711778816","full_text":"2:00 + pm - 2:50 pm Emerging Technology Showcase\nT04-Designing Function Fighters: + A digital game-based learning experience for algebraic thinking \u2013 Ginny + L. Smith #AECT19 #Math #Games #EdTech #education #Learning #Algebra #FSU #FSUCOE + #ISLT https:\/\/t.co\/rQxKittCgE","truncated":false,"display_text_range":[0,238],"entities":{"hashtags":[{"text":"AECT19","indices":[161,168]},{"text":"Math","indices":[169,174]},{"text":"Games","indices":[175,181]},{"text":"EdTech","indices":[182,189]},{"text":"education","indices":[190,200]},{"text":"Learning","indices":[201,210]},{"text":"Algebra","indices":[211,219]},{"text":"FSU","indices":[220,224]},{"text":"FSUCOE","indices":[225,232]},{"text":"ISLT","indices":[233,238]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187459025950138373,"id_str":"1187459025950138373","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqzsVMW4AUypcg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqzsVMW4AUypcg.jpg","url":"https:\/\/t.co\/rQxKittCgE","display_url":"pic.twitter.com\/rQxKittCgE","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187459027711778816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187459025950138373,"id_str":"1187459025950138373","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqzsVMW4AUypcg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqzsVMW4AUypcg.jpg","url":"https:\/\/t.co\/rQxKittCgE","display_url":"pic.twitter.com\/rQxKittCgE","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187459027711778816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 22:30:00 +0000 2019","id":1187496489230176257,"id_str":"1187496489230176257","full_text":"Not + too many years ago, the thought of walking by the @SpringerEdu table and seeing + these would have seemed like an impossibility. @AECT helped make them and + so many other things possible for me. What''s your next project? #aect19inspired + https:\/\/t.co\/tyIkFJAINL","truncated":false,"display_text_range":[0,239],"entities":{"hashtags":[{"text":"aect19inspired","indices":[224,239]}],"symbols":[],"user_mentions":[{"screen_name":"SpringerEdu","name":"Springer + Education","id":347188522,"id_str":"347188522","indices":[54,66]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[132,137]}],"urls":[],"media":[{"id":1187486977341263872,"id_str":"1187486977341263872","indices":[240,263],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","url":"https:\/\/t.co\/tyIkFJAINL","display_url":"pic.twitter.com\/tyIkFJAINL","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187496489230176257\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":466,"resize":"fit"},"large":{"w":2048,"h":1402,"resize":"fit"},"medium":{"w":1200,"h":822,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187486977341263872,"id_str":"1187486977341263872","indices":[240,263],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrNHUPUEAAfnWa.jpg","url":"https:\/\/t.co\/tyIkFJAINL","display_url":"pic.twitter.com\/tyIkFJAINL","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187496489230176257\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":466,"resize":"fit"},"large":{"w":2048,"h":1402,"resize":"fit"},"medium":{"w":1200,"h":822,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":36,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:20:35 +0000 2019","id":1187554520101982208,"id_str":"1187554520101982208","full_text":"RT + @ericpaulrogers: What''s your favorite visualization of Gagne''s 9 events + of instruction? #aect2019 #aect19 #aect19inspired https:\/\/t.co\/e\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect2019","indices":[91,100]},{"text":"aect19","indices":[101,108]},{"text":"aect19inspired","indices":[109,124]}],"symbols":[],"user_mentions":[{"screen_name":"ericpaulrogers","name":"Eric + Paul Rogers","id":51775264,"id_str":"51775264","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 22:40:14 +0000 2019","id":1187499066701144064,"id_str":"1187499066701144064","full_text":"What''s + your favorite visualization of Gagne''s 9 events of instruction? #aect2019 + #aect19 #aect19inspired https:\/\/t.co\/eNq1hOKQ2b","truncated":false,"display_text_range":[0,104],"entities":{"hashtags":[{"text":"aect2019","indices":[71,80]},{"text":"aect19","indices":[81,88]},{"text":"aect19inspired","indices":[89,104]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187499064973090817,"id_str":"1187499064973090817","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrYG6LUYAE52jD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrYG6LUYAE52jD.png","url":"https:\/\/t.co\/eNq1hOKQ2b","display_url":"pic.twitter.com\/eNq1hOKQ2b","expanded_url":"https:\/\/twitter.com\/ericpaulrogers\/status\/1187499066701144064\/photo\/1","type":"photo","sizes":{"large":{"w":192,"h":144,"resize":"fit"},"thumb":{"w":144,"h":144,"resize":"crop"},"medium":{"w":192,"h":144,"resize":"fit"},"small":{"w":192,"h":144,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187499064973090817,"id_str":"1187499064973090817","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrYG6LUYAE52jD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrYG6LUYAE52jD.png","url":"https:\/\/t.co\/eNq1hOKQ2b","display_url":"pic.twitter.com\/eNq1hOKQ2b","expanded_url":"https:\/\/twitter.com\/ericpaulrogers\/status\/1187499066701144064\/photo\/1","type":"photo","sizes":{"large":{"w":192,"h":144,"resize":"fit"},"thumb":{"w":144,"h":144,"resize":"crop"},"medium":{"w":192,"h":144,"resize":"fit"},"small":{"w":192,"h":144,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":51775264,"id_str":"51775264","name":"Eric + Paul Rogers","screen_name":"ericpaulrogers","location":"Salt Lake City, UT","description":"(he, + him) aspiring stone catcher | ally\ud83c\udf08","url":"https:\/\/t.co\/xhUZs9RX55","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xhUZs9RX55","expanded_url":"https:\/\/ericpaulrogers.com","display_url":"ericpaulrogers.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":361,"friends_count":1232,"listed_count":2,"created_at":"Sun + Jun 28 16:49:05 +0000 2009","favourites_count":27579,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3148,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1478471925911339008\/2wRBAyhT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1478471925911339008\/2wRBAyhT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/51775264\/1648702096","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 00:14:15 +0000 2019","id":1187522725570478080,"id_str":"1187522725570478080","full_text":"Congrats + to Dr. Selco and the @cppelearning at @calpolypomona . This is truly a team + effort. I miss working with you all!\n#aect19 #aect19inspired https:\/\/t.co\/WMTCL9wRTP","truncated":false,"display_text_range":[0,145],"entities":{"hashtags":[{"text":"aect19","indices":[122,129]},{"text":"aect19inspired","indices":[130,145]}],"symbols":[],"user_mentions":[{"screen_name":"cppelearning","name":"CAFE: + Center for Advancement of Faculty Excellence","id":61020552,"id_str":"61020552","indices":[30,43]},{"screen_name":"calpolypomona","name":"Cal + Poly Pomona","id":23019297,"id_str":"23019297","indices":[47,61]}],"urls":[{"url":"https:\/\/t.co\/WMTCL9wRTP","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187497428313767937","display_url":"twitter.com\/robmoore3\/stat\u2026","indices":[146,169]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1187497428313767937,"quoted_status_id_str":"1187497428313767937","quoted_status_permalink":{"url":"https:\/\/t.co\/WMTCL9wRTP","expanded":"https:\/\/twitter.com\/robmoore3\/status\/1187497428313767937","display":"twitter.com\/robmoore3\/stat\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 22:33:44 +0000 2019","id":1187497428313767937,"id_str":"1187497428313767937","full_text":"Congrats + to @epsODU IDT Doctoral Student, @PaulineMuljana, on her AECT DDL Crystal + Award win! #aect19inspired #aect19 https:\/\/t.co\/rtH57GJQy6","truncated":false,"display_text_range":[0,117],"entities":{"hashtags":[{"text":"aect19inspired","indices":[94,109]},{"text":"aect19","indices":[110,117]}],"symbols":[],"user_mentions":[{"screen_name":"epsODU","name":"ODU + Darden College of Educ & Professional Studies","id":124254976,"id_str":"124254976","indices":[12,19]},{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[42,57]}],"urls":[],"media":[{"id":1187497423070875648,"id_str":"1187497423070875648","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrWnVnU0AAPnT3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrWnVnU0AAPnT3.jpg","url":"https:\/\/t.co\/rtH57GJQy6","display_url":"pic.twitter.com\/rtH57GJQy6","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187497428313767937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187497423070875648,"id_str":"1187497423070875648","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrWnVnU0AAPnT3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrWnVnU0AAPnT3.jpg","url":"https:\/\/t.co\/rtH57GJQy6","display_url":"pic.twitter.com\/rtH57GJQy6","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187497428313767937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187497423066652672,"id_str":"1187497423066652672","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrWnVmUYAA0czs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrWnVmUYAA0czs.jpg","url":"https:\/\/t.co\/rtH57GJQy6","display_url":"pic.twitter.com\/rtH57GJQy6","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187497428313767937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:17:33 +0000 2019","id":1187553754452811777,"id_str":"1187553754452811777","full_text":"RT + @troman: The Play Impossible Gameball was well received at #aect19! I love + presenting at the Emerging Tech Showcase. It''s such a great e\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[62,69]}],"symbols":[],"user_mentions":[{"screen_name":"troman","name":"Dr. + Tiffany Roman","id":15299255,"id_str":"15299255","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 00:06:38 +0000 2019","id":1187520808454742016,"id_str":"1187520808454742016","full_text":"The + Play Impossible Gameball was well received at #aect19! I love presenting at + the Emerging Tech Showcase. It''s such a great event! @tutaleni https:\/\/t.co\/KKANHkqtq3","truncated":false,"display_text_range":[0,142],"entities":{"hashtags":[{"text":"aect19","indices":[50,57]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[133,142]}],"urls":[{"url":"https:\/\/t.co\/KKANHkqtq3","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187482052481843200","display_url":"twitter.com\/tutaleni\/statu\u2026","indices":[143,166]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15299255,"id_str":"15299255","name":"Dr. + Tiffany Roman","screen_name":"troman","location":"Kennesaw, GA","description":"Assistant + Professor of Instructional Technology. Entrepreneur. Designer. Teacher. Mother. + Researcher of Design Ed, Innovation & Tech Integration in K-20.","url":"https:\/\/t.co\/vWr6F7hZ75","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vWr6F7hZ75","expanded_url":"http:\/\/www.round3.io","display_url":"round3.io","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":546,"friends_count":865,"listed_count":10,"created_at":"Wed + Jul 02 16:06:37 +0000 2008","favourites_count":1076,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":363,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1468308563403714566\/zZzeCmpz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1468308563403714566\/zZzeCmpz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15299255\/1537500662","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187482052481843200,"quoted_status_id_str":"1187482052481843200","quoted_status_permalink":{"url":"https:\/\/t.co\/KKANHkqtq3","expanded":"https:\/\/twitter.com\/tutaleni\/status\/1187482052481843200","display":"twitter.com\/tutaleni\/statu\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 21:32:38 +0000 2019","id":1187482052481843200,"id_str":"1187482052481843200","full_text":"Who + knew Newton\u2019s law could be this fun? #AECT19inspired #EmergingTechShowcase + https:\/\/t.co\/r8wJlakPFI","truncated":false,"display_text_range":[0,78],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[41,56]},{"text":"EmergingTechShowcase","indices":[57,78]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187482047473782784,"id_str":"1187482047473782784","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","url":"https:\/\/t.co\/r8wJlakPFI","display_url":"pic.twitter.com\/r8wJlakPFI","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187482052481843200\/photo\/1","type":"photo","sizes":{"large":{"w":1152,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187482047473782784,"id_str":"1187482047473782784","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","url":"https:\/\/t.co\/r8wJlakPFI","display_url":"pic.twitter.com\/r8wJlakPFI","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187482052481843200\/photo\/1","type":"photo","sizes":{"large":{"w":1152,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1187482052481843200,"quoted_status_id_str":"1187482052481843200","quoted_status_permalink":{"url":"https:\/\/t.co\/KKANHkqtq3","expanded":"https:\/\/twitter.com\/tutaleni\/status\/1187482052481843200","display":"twitter.com\/tutaleni\/statu\u2026"},"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:31:17 +0000 2019","id":1187511910780026881,"id_str":"1187511910780026881","full_text":"RT + @arasbozkurt: Rise and shine #AECT19 - Social network Analysis for #AECT with + NodeXL https:\/\/t.co\/MIQz1GdWlT\n@aect\n@michaelmgrant\n@drter\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[32,39]},{"text":"AECT","indices":[70,75]}],"symbols":[],"user_mentions":[{"screen_name":"arasbozkurt","name":"Aras + Bozkurt","id":83447547,"id_str":"83447547","indices":[3,15]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[112,117]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[118,132]}],"urls":[{"url":"https:\/\/t.co\/MIQz1GdWlT","expanded_url":"http:\/\/bit.ly\/2N9hUPr","display_url":"bit.ly\/2N9hUPr","indices":[88,111]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1011445838873153536,"id_str":"1011445838873153536","name":"AsianJDE","screen_name":"AsianJde","location":"","description":"AsianJDE + disseminates scholarly works to researchers and practitioners in the growing + field of distance education.\nEds: @arasbozkurt @rc4u2nv","url":"https:\/\/t.co\/brw6oqkOrL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/brw6oqkOrL","expanded_url":"http:\/\/www.asianjde.com\/ojs\/index.php\/AsianJDE","display_url":"asianjde.com\/ojs\/index.php\/\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1140,"friends_count":1788,"listed_count":7,"created_at":"Tue + Jun 26 03:07:34 +0000 2018","favourites_count":1203,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":819,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1258095006675423235\/tyYOmcgO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1258095006675423235\/tyYOmcgO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1011445838873153536\/1564914654","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 13:54:27 +0000 2019","id":1187366745977348102,"id_str":"1187366745977348102","full_text":"Rise + and shine #AECT19 - Social network Analysis for #AECT with NodeXL https:\/\/t.co\/MIQz1GdWlT\n@aect\n@michaelmgrant\n@drterric\n@caranorth11\n@islt_fsu\n@dksch\n@wilsoninedu\n@drvirtuality\n@eromerohall\n@robmoore3\n\nTop + hashtags:\n#aect19\n#aect19inspired\n#aect2019\n#aect\n#fsu\n#fsucoe\n#islt + https:\/\/t.co\/zTCol3vWgv","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[15,22]},{"text":"AECT","indices":[53,58]},{"text":"aect19","indices":[222,229]},{"text":"aect19inspired","indices":[230,245]},{"text":"aect2019","indices":[246,255]},{"text":"aect","indices":[256,261]},{"text":"fsu","indices":[262,266]},{"text":"fsucoe","indices":[267,274]},{"text":"islt","indices":[275,280]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[95,100]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[101,115]},{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[116,125]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[126,138]},{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[139,148]},{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[149,155]},{"screen_name":"WilsonInEdu","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","id":489118534,"id_str":"489118534","indices":[156,168]},{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[169,182]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[183,195]},{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[196,206]}],"urls":[{"url":"https:\/\/t.co\/MIQz1GdWlT","expanded_url":"http:\/\/bit.ly\/2N9hUPr","display_url":"bit.ly\/2N9hUPr","indices":[71,94]}],"media":[{"id":1187366622094331905,"id_str":"1187366622094331905","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","url":"https:\/\/t.co\/zTCol3vWgv","display_url":"pic.twitter.com\/zTCol3vWgv","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187366745977348102\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1578,"resize":"fit"},"medium":{"w":1200,"h":925,"resize":"fit"},"small":{"w":680,"h":524,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187366622094331905,"id_str":"1187366622094331905","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","url":"https:\/\/t.co\/zTCol3vWgv","display_url":"pic.twitter.com\/zTCol3vWgv","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187366745977348102\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1578,"resize":"fit"},"medium":{"w":1200,"h":925,"resize":"fit"},"small":{"w":680,"h":524,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:19:21 +0000 2019","id":1187554208242946048,"id_str":"1187554208242946048","full_text":"RT + @tutaleni: Good job presenting @X1Tab on The Rural vs Urban Divide in Educational + Technology. #aect19inspired @EdTechOkstate https:\/\/t\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 23:30:40 +0000 2019","id":1187511755745792000,"id_str":"1187511755745792000","full_text":"Good + job presenting @X1Tab on The Rural vs Urban Divide in Educational Technology. + #aect19inspired @EdTechOkstate https:\/\/t.co\/B6WCx9zrfG","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect19inspired","indices":[84,99]}],"symbols":[],"user_mentions":[{"screen_name":"EdTechOkstate","name":"Okstate + Ed Tech","id":4141659852,"id_str":"4141659852","indices":[101,115]}],"urls":[],"media":[{"id":1187511750914007040,"id_str":"1187511750914007040","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrjpU_U4AAUwx7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrjpU_U4AAUwx7.jpg","url":"https:\/\/t.co\/B6WCx9zrfG","display_url":"pic.twitter.com\/B6WCx9zrfG","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187511755745792000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":314,"resize":"fit"},"large":{"w":2048,"h":946,"resize":"fit"},"medium":{"w":1200,"h":554,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187511750914007040,"id_str":"1187511750914007040","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrjpU_U4AAUwx7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrjpU_U4AAUwx7.jpg","url":"https:\/\/t.co\/B6WCx9zrfG","display_url":"pic.twitter.com\/B6WCx9zrfG","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187511755745792000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":314,"resize":"fit"},"large":{"w":2048,"h":946,"resize":"fit"},"medium":{"w":1200,"h":554,"resize":"fit"}},"ext_alt_text":null},{"id":1187511750918164480,"id_str":"1187511750918164480","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrjpVAUUAA3XPB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrjpVAUUAA3XPB.jpg","url":"https:\/\/t.co\/B6WCx9zrfG","display_url":"pic.twitter.com\/B6WCx9zrfG","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187511755745792000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:35:17 +0000 2019","id":1187512917140398080,"id_str":"1187512917140398080","full_text":"RT + @vdennen: I shared my truth about @ISLT_FSU on the #aect19 inspiration board. + Thanks all for keeping me on my toes and making my job so\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"aect19","indices":[54,61]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[3,11]},{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[37,46]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1551131372,"id_str":"1551131372","name":"Moni + IDD","screen_name":"MoniIDD","location":"","description":"Sr. Instructional + Designer, FSU Grad - M.S. ISLT, PhD in Learning Technologies from @ UNT | + QM course certified | \u2764\ufe0f hiking, waterfalls, & living in the PNW","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":485,"friends_count":1614,"listed_count":70,"created_at":"Thu + Jun 27 17:35:30 +0000 2013","favourites_count":6961,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4853,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471619480014888966\/UtL-Oh9p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471619480014888966\/UtL-Oh9p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1551131372\/1623973489","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 21:24:21 +0000 2019","id":1187117579598360577,"id_str":"1187117579598360577","full_text":"I + shared my truth about @ISLT_FSU on the #aect19 inspiration board. Thanks all + for keeping me on my toes and making my job so interesting and fun. https:\/\/t.co\/nIYVKzcoER","truncated":false,"display_text_range":[0,146],"entities":{"hashtags":[{"text":"aect19","indices":[41,48]}],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[24,33]}],"urls":[],"media":[{"id":1187117572308652032,"id_str":"1187117572308652032","indices":[147,170],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl9JHQU0AA1UDI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl9JHQU0AA1UDI.jpg","url":"https:\/\/t.co\/nIYVKzcoER","display_url":"pic.twitter.com\/nIYVKzcoER","expanded_url":"https:\/\/twitter.com\/vdennen\/status\/1187117579598360577\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":645,"h":680,"resize":"fit"},"large":{"w":1944,"h":2048,"resize":"fit"},"medium":{"w":1139,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187117572308652032,"id_str":"1187117572308652032","indices":[147,170],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl9JHQU0AA1UDI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl9JHQU0AA1UDI.jpg","url":"https:\/\/t.co\/nIYVKzcoER","display_url":"pic.twitter.com\/nIYVKzcoER","expanded_url":"https:\/\/twitter.com\/vdennen\/status\/1187117579598360577\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":645,"h":680,"resize":"fit"},"large":{"w":1944,"h":2048,"resize":"fit"},"medium":{"w":1139,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":142359679,"id_str":"142359679","name":"Vanessa + Dennen","screen_name":"vdennen","location":"Tallahassee, FL","description":"Professor + of Instructional Systems & Learning Technologies at FSU (views are my own), + avid traveler, amateur gardener, she\/her","url":"https:\/\/t.co\/2brlz0Rnzr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2brlz0Rnzr","expanded_url":"http:\/\/vanessadennen.com","display_url":"vanessadennen.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1151,"friends_count":759,"listed_count":40,"created_at":"Mon + May 10 17:39:35 +0000 2010","favourites_count":1097,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2102,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1137140666771918848\/ghs_iYhS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1137140666771918848\/ghs_iYhS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/142359679\/1584134048","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 22:25:01 +0000 2019","id":1187495234759839744,"id_str":"1187495234759839744","full_text":"Round + table session at #AECT2019: Dr. Hillary Kaplowitz (Instructional Designer) + shared her insight on acknowledging students'' names in order to build more + inclusive classrooms, and shared icebreaker strategies where students create + profiles by using platforms such as \"Padlet.\" https:\/\/t.co\/oeWaQVtsTt","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"AECT2019","indices":[23,32]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187495227239481344,"id_str":"1187495227239481344","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrUnhgUwAAEMsr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrUnhgUwAAEMsr.jpg","url":"https:\/\/t.co\/oeWaQVtsTt","display_url":"pic.twitter.com\/oeWaQVtsTt","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1187495234759839744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187495227239481344,"id_str":"1187495227239481344","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrUnhgUwAAEMsr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrUnhgUwAAEMsr.jpg","url":"https:\/\/t.co\/oeWaQVtsTt","display_url":"pic.twitter.com\/oeWaQVtsTt","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1187495234759839744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 22:55:51 +0000 2019","id":1187502994289332231,"id_str":"1187502994289332231","full_text":"RT + @LearnEngage: Who doesn''t want more empowered learners? Explore how you can + harness Self-Determination Theory to build curiosity and con\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 20:00:00 +0000 2019","id":1187458740267696135,"id_str":"1187458740267696135","full_text":"Who + doesn''t want more empowered learners? Explore how you can harness Self-Determination + Theory to build curiosity and confidence in your course! Do not miss the Inspire! + Self-Directed Learning session with @valarywithawhy at 4pm! #AECT19 #aect19inspired + @AECT https:\/\/t.co\/F49KFvdHxN","truncated":false,"display_text_range":[0,260],"entities":{"hashtags":[{"text":"AECT19","indices":[231,238]},{"text":"aect19inspired","indices":[239,254]}],"symbols":[],"user_mentions":[{"screen_name":"valarywithawhy","name":"Valary + Oleinik","id":111391715,"id_str":"111391715","indices":[207,222]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[255,260]}],"urls":[],"media":[{"id":1187125227488272389,"id_str":"1187125227488272389","indices":[261,284],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmEGtBX4AUACg6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmEGtBX4AUACg6.jpg","url":"https:\/\/t.co\/F49KFvdHxN","display_url":"pic.twitter.com\/F49KFvdHxN","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187458740267696135\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":1920,"h":1440,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187125227488272389,"id_str":"1187125227488272389","indices":[261,284],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmEGtBX4AUACg6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmEGtBX4AUACg6.jpg","url":"https:\/\/t.co\/F49KFvdHxN","display_url":"pic.twitter.com\/F49KFvdHxN","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187458740267696135\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":1920,"h":1440,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 22:48:34 +0000 2019","id":1187501160506118144,"id_str":"1187501160506118144","full_text":"#aect19 + Tip #21 - When at a presentation, do other work the whole time, then when + the presenter asks if there are any questions, ask them to please re-share + what was in the presentation.","truncated":false,"display_text_range":[0,186],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 01:20:47 +0000 2019","id":1187539467680137216,"id_str":"1187539467680137216","full_text":"The + @EdTech_UofSC table at @AECT #aect19inspired already has a line for the swag + wheel! https:\/\/t.co\/gK807x6LUW","truncated":false,"display_text_range":[0,87],"entities":{"hashtags":[{"text":"aect19inspired","indices":[33,48]}],"symbols":[],"user_mentions":[{"screen_name":"EdTech_UofSC","name":"LD&T + and EdTech at UofSC","id":2835369671,"id_str":"2835369671","indices":[4,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]}],"urls":[],"media":[{"id":1187539460331753474,"id_str":"1187539460331753474","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr82OnVUAIozMe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr82OnVUAIozMe.jpg","url":"https:\/\/t.co\/gK807x6LUW","display_url":"pic.twitter.com\/gK807x6LUW","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1187539467680137216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187539460331753474,"id_str":"1187539460331753474","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/EHr82OnVUAIozMe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHr82OnVUAIozMe.jpg","url":"https:\/\/t.co\/gK807x6LUW","display_url":"pic.twitter.com\/gK807x6LUW","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1187539467680137216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":"Conference + attendees spinning a virtual prize wheel to win University of South Carolina + branded souvenirs"}]},"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" + rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 22:33:44 +0000 2019","id":1187497428313767937,"id_str":"1187497428313767937","full_text":"Congrats + to @epsODU IDT Doctoral Student, @PaulineMuljana, on her AECT DDL Crystal + Award win! #aect19inspired #aect19 https:\/\/t.co\/rtH57GJQy6","truncated":false,"display_text_range":[0,117],"entities":{"hashtags":[{"text":"aect19inspired","indices":[94,109]},{"text":"aect19","indices":[110,117]}],"symbols":[],"user_mentions":[{"screen_name":"epsODU","name":"ODU + Darden College of Educ & Professional Studies","id":124254976,"id_str":"124254976","indices":[12,19]},{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[42,57]}],"urls":[],"media":[{"id":1187497423070875648,"id_str":"1187497423070875648","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrWnVnU0AAPnT3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrWnVnU0AAPnT3.jpg","url":"https:\/\/t.co\/rtH57GJQy6","display_url":"pic.twitter.com\/rtH57GJQy6","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187497428313767937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187497423070875648,"id_str":"1187497423070875648","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrWnVnU0AAPnT3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrWnVnU0AAPnT3.jpg","url":"https:\/\/t.co\/rtH57GJQy6","display_url":"pic.twitter.com\/rtH57GJQy6","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187497428313767937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187497423066652672,"id_str":"1187497423066652672","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrWnVmUYAA0czs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrWnVmUYAA0czs.jpg","url":"https:\/\/t.co\/rtH57GJQy6","display_url":"pic.twitter.com\/rtH57GJQy6","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187497428313767937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:11:13 +0000 2019","id":1187552159832756224,"id_str":"1187552159832756224","full_text":"RT + @AmyLomellini_ID: Great day with inspiring people at #AECT19! Looking forward + to tomorrow!\n\n@nicolapallitt @christieliuidtr @jesustrespa\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[56,63]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[3,19]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[95,109]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4921781685,"id_str":"4921781685","name":"AECT + TIL","screen_name":"AECTTIL","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":11,"listed_count":1,"created_at":"Wed + Feb 17 01:21:42 +0000 2016","favourites_count":54,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":83,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1176928861319258114\/oGHSP4gc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1176928861319258114\/oGHSP4gc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4921781685\/1569436683","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 04:43:28 +0000 2019","id":1187228088616177664,"id_str":"1187228088616177664","full_text":"Great + day with inspiring people at #AECT19! Looking forward to tomorrow!\n\n@nicolapallitt + @christieliuidtr @jesustrespalac1 @AllisonHallAZ @d_mulder \n\n(not pictured: + @DrRossPerkins @plowenthal @JenM @PaulineMuljana and many more...) \n\n@edtechdoc + @AECT #aect19inspired @gsa_aect https:\/\/t.co\/KORrK9Pu86","truncated":false,"display_text_range":[0,276],"entities":{"hashtags":[{"text":"AECT19","indices":[35,42]},{"text":"aect19inspired","indices":[251,266]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[74,88]},{"screen_name":"JesusTrespalac1","name":"Jesus + Trespalacios","id":1554537673771126785,"id_str":"1554537673771126785","indices":[106,122]},{"screen_name":"AllisonHallAZ","name":"Dr. + Allison Barsnica Hall","id":720930385,"id_str":"720930385","indices":[123,137]},{"screen_name":"d_mulder","name":"Dr. + Dave Mulder","id":30278154,"id_str":"30278154","indices":[138,147]},{"screen_name":"DrRossPerkins","name":"Ross + Perkins, PhD","id":2905458781,"id_str":"2905458781","indices":[165,179]},{"screen_name":"plowenthal","name":"Patrick + Lowenthal","id":14364665,"id_str":"14364665","indices":[180,191]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[192,197]},{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[198,213]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[245,250]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[267,276]}],"urls":[],"media":[{"id":1187228076704296960,"id_str":"1187228076704296960","indices":[277,300],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnhpUNUcAAX0LO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnhpUNUcAAX0LO.jpg","url":"https:\/\/t.co\/KORrK9Pu86","display_url":"pic.twitter.com\/KORrK9Pu86","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1187228088616177664\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1600,"h":1200,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187228076704296960,"id_str":"1187228076704296960","indices":[277,300],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnhpUNUcAAX0LO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnhpUNUcAAX0LO.jpg","url":"https:\/\/t.co\/KORrK9Pu86","display_url":"pic.twitter.com\/KORrK9Pu86","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1187228088616177664\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1600,"h":1200,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187228076704288769,"id_str":"1187228076704288769","indices":[277,300],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnhpUNUUAEGct8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnhpUNUUAEGct8.jpg","url":"https:\/\/t.co\/KORrK9Pu86","display_url":"pic.twitter.com\/KORrK9Pu86","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1187228088616177664\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":960,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910574724748644353,"id_str":"910574724748644353","name":"Amy + Lomellini","screen_name":"AmyLomellini_ID","location":"New York, USA","description":"Associate + Director of Blended & Online Learning and doctoral candidate with a passion + for accessible and inclusive online teaching and learning. #EdTech #A11y","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":644,"friends_count":1061,"listed_count":9,"created_at":"Wed + Sep 20 18:41:46 +0000 2017","favourites_count":7378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1141,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910574724748644353\/1551624059","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":25,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:17:21 +0000 2019","id":1187553704486100993,"id_str":"1187553704486100993","full_text":"RT + @nangur1: Cultural Responsive Instructional Design in online learning environments. + Such an important topic for inclusivity! #AECT19 #A\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[129,136]}],"symbols":[],"user_mentions":[{"screen_name":"nangur1","name":"Dr. + Nandita Gurjar","id":2743313304,"id_str":"2743313304","indices":[3,11]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 22:19:45 +0000 2019","id":1187493910626463744,"id_str":"1187493910626463744","full_text":"Cultural + Responsive Instructional Design in online learning environments. Such an important + topic for inclusivity! #AECT19 #AECT19inspired https:\/\/t.co\/vqyOMaSNyt","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"AECT19","indices":[116,123]},{"text":"AECT19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187493903919808512,"id_str":"1187493903919808512","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187493903919808512,"id_str":"1187493903919808512","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafwVAAAQoXQ.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187493903911358464,"id_str":"1187493903911358464","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafuUEAACDy5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafuUEAACDy5.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187493903915577346,"id_str":"1187493903915577346","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrTafvUcAIGLBq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrTafvUcAIGLBq.jpg","url":"https:\/\/t.co\/vqyOMaSNyt","display_url":"pic.twitter.com\/vqyOMaSNyt","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187493910626463744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 22:39:28 +0000 2019","id":1187498871435382784,"id_str":"1187498871435382784","full_text":"@eromerohall + @tugcealdemirpsu @vdennen @veletsianos Vanessa raises interesting questions: + Do we shape our institutions or are we shaped by our institutions? #aect19","truncated":false,"display_text_range":[52,165],"entities":{"hashtags":[{"text":"aect19","indices":[158,165]}],"symbols":[],"user_mentions":[{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[0,12]},{"screen_name":"tugcealdemirpsu","name":"Tugce + Aldemir","id":702658623621586944,"id_str":"702658623621586944","indices":[13,29]},{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[30,38]},{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[39,51]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1187497767033139200,"in_reply_to_status_id_str":"1187497767033139200","in_reply_to_user_id":83447547,"in_reply_to_user_id_str":"83447547","in_reply_to_screen_name":"arasbozkurt","user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 00:24:07 +0000 2019","id":1187525208388689920,"id_str":"1187525208388689920","full_text":"It\u2019s + been a great @AECT conference!! Sad it\u2019s almost over. Thanks @AECTTIL + for welcoming me in to your division!! #aect2019 #aect19inspired https:\/\/t.co\/LiCbsRLGGs","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"aect2019","indices":[114,123]},{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[18,23]},{"screen_name":"AECTTIL","name":"AECT + TIL","id":4921781685,"id_str":"4921781685","indices":[66,74]}],"urls":[],"media":[{"id":1187525173018128384,"id_str":"1187525173018128384","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187525173018128384\/pu\/img\/_mwqkei2HwXrP70a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187525173018128384\/pu\/img\/_mwqkei2HwXrP70a.jpg","url":"https:\/\/t.co\/LiCbsRLGGs","display_url":"pic.twitter.com\/LiCbsRLGGs","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1187525208388689920\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187525173018128384,"id_str":"1187525173018128384","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187525173018128384\/pu\/img\/_mwqkei2HwXrP70a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187525173018128384\/pu\/img\/_mwqkei2HwXrP70a.jpg","url":"https:\/\/t.co\/LiCbsRLGGs","display_url":"pic.twitter.com\/LiCbsRLGGs","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1187525208388689920\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":3550,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187525173018128384\/pu\/vid\/720x1280\/eOJA-MHtgxqnCbK3.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187525173018128384\/pu\/vid\/360x640\/qGwpy8YakBz9sGhP.mp4?tag=10"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187525173018128384\/pu\/vid\/320x568\/zDp-6QhcsyzfsMQM.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187525173018128384\/pu\/pl\/F7EGM6RW7vDqdd5g.m3u8?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":763378325712674818,"id_str":"763378325712674818","name":"Tay + Fess, M.Ed.","screen_name":"Captain_Fess","location":"Naples, FL","description":"Music + Educator l \ud83c\udff3\ufe0f\u200d\ud83c\udf08 l Presenter l UDL l FGCU l + Doctoral Student Ed.D. l EdTech l Disney Geek","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":576,"listed_count":3,"created_at":"Wed + Aug 10 14:15:50 +0000 2016","favourites_count":1730,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":665,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/763378325712674818\/1595378873","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:42:13 +0000 2019","id":1187514663673700352,"id_str":"1187514663673700352","full_text":"RT + @LearnEngage: Who doesn''t want more empowered learners? Explore how you can + harness Self-Determination Theory to build curiosity and con\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 20:00:00 +0000 2019","id":1187458740267696135,"id_str":"1187458740267696135","full_text":"Who + doesn''t want more empowered learners? Explore how you can harness Self-Determination + Theory to build curiosity and confidence in your course! Do not miss the Inspire! + Self-Directed Learning session with @valarywithawhy at 4pm! #AECT19 #aect19inspired + @AECT https:\/\/t.co\/F49KFvdHxN","truncated":false,"display_text_range":[0,260],"entities":{"hashtags":[{"text":"AECT19","indices":[231,238]},{"text":"aect19inspired","indices":[239,254]}],"symbols":[],"user_mentions":[{"screen_name":"valarywithawhy","name":"Valary + Oleinik","id":111391715,"id_str":"111391715","indices":[207,222]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[255,260]}],"urls":[],"media":[{"id":1187125227488272389,"id_str":"1187125227488272389","indices":[261,284],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmEGtBX4AUACg6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmEGtBX4AUACg6.jpg","url":"https:\/\/t.co\/F49KFvdHxN","display_url":"pic.twitter.com\/F49KFvdHxN","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187458740267696135\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":1920,"h":1440,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187125227488272389,"id_str":"1187125227488272389","indices":[261,284],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmEGtBX4AUACg6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmEGtBX4AUACg6.jpg","url":"https:\/\/t.co\/F49KFvdHxN","display_url":"pic.twitter.com\/F49KFvdHxN","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187458740267696135\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":1920,"h":1440,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 00:39:40 +0000 2019","id":1187529122987180032,"id_str":"1187529122987180032","full_text":"Meeting + up with fellow Africans at @AECT #aect19inspired Liberia, Tanzania, Nigeria, + SA & Namibia https:\/\/t.co\/0Zp0eUlGJ1","truncated":false,"display_text_range":[0,101],"entities":{"hashtags":[{"text":"aect19inspired","indices":[41,56]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[35,40]}],"urls":[],"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187529118490873857,"id_str":"1187529118490873857","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrzcQQU0AEfLwJ.jpg","url":"https:\/\/t.co\/0Zp0eUlGJ1","display_url":"pic.twitter.com\/0Zp0eUlGJ1","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187529122987180032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":639,"resize":"fit"},"medium":{"w":1024,"h":639,"resize":"fit"},"small":{"w":680,"h":424,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 01:57:16 +0000 2019","id":1187548650785800192,"id_str":"1187548650785800192","full_text":"@SBarksway + @JolieKennedy @LTMediaLab @UMN_CI Wow we look fun! \ud83d\ude00 Seriously, + was such a great conversation. Thank you for joining us & for the opportunity + to share our ideas & insights about #phenomenology. @AECT #aect19","truncated":false,"display_text_range":[45,226],"entities":{"hashtags":[{"text":"phenomenology","indices":[197,211]},{"text":"aect19","indices":[219,226]}],"symbols":[],"user_mentions":[{"screen_name":"SBarksway","name":"Sarah + Barksdale","id":908737706699710464,"id_str":"908737706699710464","indices":[0,10]},{"screen_name":"JolieKennedy","name":"Jolie + Kennedy","id":202011104,"id_str":"202011104","indices":[11,24]},{"screen_name":"LTMediaLab","name":"Learning + Technologies","id":1260285405787652101,"id_str":"1260285405787652101","indices":[25,36]},{"screen_name":"UMN_CI","name":"U + of MN CEHD C&I","id":759684692,"id_str":"759684692","indices":[37,44]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[213,218]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1187443113922445312,"in_reply_to_status_id_str":"1187443113922445312","in_reply_to_user_id":908737706699710464,"in_reply_to_user_id_str":"908737706699710464","in_reply_to_screen_name":"SBarksway","user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 02:16:30 +0000 2019","id":1187553489456685062,"id_str":"1187553489456685062","full_text":"RT + @tammyhuangrui: For those who have not published or who have been rejected, + this session \u201cGSA: Tips and Tricks for Journal Publishing: A\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 23:02:02 +0000 2019","id":1187504550908854272,"id_str":"1187504550908854272","full_text":"For + those who have not published or who have been rejected, this session \u201cGSA: + Tips and Tricks for Journal Publishing: Advice from the Editors\u201d was + really helpful. Thanks to @AlbertRitzhaupt and Dr. Sharon Stidham #aect19 + #aect19inspired @UF_COE https:\/\/t.co\/Lw1EhfcugX","truncated":false,"display_text_range":[0,245],"entities":{"hashtags":[{"text":"aect19","indices":[214,221]},{"text":"aect19inspired","indices":[222,237]}],"symbols":[],"user_mentions":[{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[174,190]},{"screen_name":"UF_COE","name":"UF + College of Education","id":38508931,"id_str":"38508931","indices":[238,245]}],"urls":[],"media":[{"id":1187504544634114048,"id_str":"1187504544634114048","indices":[246,269],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrdF3gUEAAtGEj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrdF3gUEAAtGEj.jpg","url":"https:\/\/t.co\/Lw1EhfcugX","display_url":"pic.twitter.com\/Lw1EhfcugX","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187504550908854272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1530,"resize":"fit"},"small":{"w":680,"h":508,"resize":"fit"},"medium":{"w":1200,"h":896,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187504544634114048,"id_str":"1187504544634114048","indices":[246,269],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrdF3gUEAAtGEj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrdF3gUEAAtGEj.jpg","url":"https:\/\/t.co\/Lw1EhfcugX","display_url":"pic.twitter.com\/Lw1EhfcugX","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187504550908854272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1530,"resize":"fit"},"small":{"w":680,"h":508,"resize":"fit"},"medium":{"w":1200,"h":896,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988637594,"id_str":"2988637594","name":"Rui + \"Tammy\" Huang","screen_name":"ruitammyhuang","location":"FL","description":"PhD, + fellow in Ed Tech @UF_COE, game-based learning and immersive technology researcher, + designer & developer. Learning experience design researcher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":185,"listed_count":6,"created_at":"Wed + Jan 21 02:08:50 +0000 2015","favourites_count":399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988637594\/1621697544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 22:43:19 +0000 2019","id":1187499840483164160,"id_str":"1187499840483164160","full_text":"#AECT2019\nBreakfast + with Champions: an event where experienced professionals in the field of instructional + design and technology share from their expertise with those who are early + off in their careers, to provide them with mentorship and advice. https:\/\/t.co\/WK4kDSDaFJ","truncated":false,"display_text_range":[0,246],"entities":{"hashtags":[{"text":"AECT2019","indices":[0,9]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187499829800210432,"id_str":"1187499829800210432","indices":[247,270],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrYzbYUEAAG7zY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrYzbYUEAAG7zY.jpg","url":"https:\/\/t.co\/WK4kDSDaFJ","display_url":"pic.twitter.com\/WK4kDSDaFJ","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1187499840483164160\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187499829800210432,"id_str":"1187499829800210432","indices":[247,270],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrYzbYUEAAG7zY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrYzbYUEAAG7zY.jpg","url":"https:\/\/t.co\/WK4kDSDaFJ","display_url":"pic.twitter.com\/WK4kDSDaFJ","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1187499840483164160\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187499829804486656,"id_str":"1187499829804486656","indices":[247,270],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrYzbZVUAAAFH9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrYzbZVUAAAFH9.jpg","url":"https:\/\/t.co\/WK4kDSDaFJ","display_url":"pic.twitter.com\/WK4kDSDaFJ","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1187499840483164160\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:36:10 +0000 2019","id":1187513142458437635,"id_str":"1187513142458437635","full_text":"RT + @ISLT_FSU: Come join us! We are looking for a new colleague. Teaching faculty + position is open. If you are in Vegas at AECT come find Dr\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1551131372,"id_str":"1551131372","name":"Moni + IDD","screen_name":"MoniIDD","location":"","description":"Sr. Instructional + Designer, FSU Grad - M.S. ISLT, PhD in Learning Technologies from @ UNT | + QM course certified | \u2764\ufe0f hiking, waterfalls, & living in the PNW","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":485,"friends_count":1614,"listed_count":70,"created_at":"Thu + Jun 27 17:35:30 +0000 2013","favourites_count":6961,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4853,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471619480014888966\/UtL-Oh9p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471619480014888966\/UtL-Oh9p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1551131372\/1623973489","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 13:12:02 +0000 2019","id":1187356073964912642,"id_str":"1187356073964912642","full_text":"Come + join us! We are looking for a new colleague. Teaching faculty position is + open. If you are in Vegas at AECT come find Dr. Jim Klein or @vdennen. #JobsInHigherEd + #HigherEdJobs #FacultyPosition #JobOpening #AECT19 #Vegas #Learning #Education + #Teaching #Instruction #FSU https:\/\/t.co\/6cBHuscFrb","truncated":false,"display_text_range":[0,272],"entities":{"hashtags":[{"text":"JobsInHigherEd","indices":[150,165]},{"text":"HigherEdJobs","indices":[166,179]},{"text":"FacultyPosition","indices":[180,196]},{"text":"JobOpening","indices":[197,208]},{"text":"AECT19","indices":[209,216]},{"text":"Vegas","indices":[217,223]},{"text":"Learning","indices":[224,233]},{"text":"Education","indices":[234,244]},{"text":"Teaching","indices":[245,254]},{"text":"Instruction","indices":[255,267]},{"text":"FSU","indices":[268,272]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[140,148]}],"urls":[],"media":[{"id":1187356064808722433,"id_str":"1187356064808722433","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpWDNDUYAEHK6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpWDNDUYAEHK6m.jpg","url":"https:\/\/t.co\/6cBHuscFrb","display_url":"pic.twitter.com\/6cBHuscFrb","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187356073964912642\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":1600,"h":1067,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187356064808722433,"id_str":"1187356064808722433","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpWDNDUYAEHK6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpWDNDUYAEHK6m.jpg","url":"https:\/\/t.co\/6cBHuscFrb","display_url":"pic.twitter.com\/6cBHuscFrb","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187356073964912642\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":1600,"h":1067,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 23:17:34 +0000 2019","id":1187508461078102017,"id_str":"1187508461078102017","full_text":"We + had a lot of fun, asked many questions, learned about new tools, talked through + ideas and made new connections at the #EmergingTechShowcase. Thank you \ud83d\udc4f\ud83c\udfff\ud83d\udc4f\ud83c\udfff + to those who presented and who took part. #aect19inspired #EmergingTechShowcase + #aect19 https:\/\/t.co\/z1P3YuG8CY","truncated":false,"display_text_range":[0,246],"entities":{"hashtags":[{"text":"EmergingTechShowcase","indices":[121,142]},{"text":"aect19inspired","indices":[201,216]},{"text":"EmergingTechShowcase","indices":[217,238]},{"text":"aect19","indices":[239,246]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187508456443396096,"id_str":"1187508456443396096","indices":[247,270],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","url":"https:\/\/t.co\/z1P3YuG8CY","display_url":"pic.twitter.com\/z1P3YuG8CY","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187508461078102017\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1195,"h":1499,"resize":"fit"},"small":{"w":542,"h":680,"resize":"fit"},"medium":{"w":957,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187508456443396096,"id_str":"1187508456443396096","indices":[247,270],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrgpkIUwAAchre.jpg","url":"https:\/\/t.co\/z1P3YuG8CY","display_url":"pic.twitter.com\/z1P3YuG8CY","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187508461078102017\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1195,"h":1499,"resize":"fit"},"small":{"w":542,"h":680,"resize":"fit"},"medium":{"w":957,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 25 01:50:52 +0000 2019","id":1187547037698445312,"id_str":"1187547037698445312","full_text":"RT + @troman: The Play Impossible Gameball was well received at #aect19! I love + presenting at the Emerging Tech Showcase. It''s such a great e\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[62,69]}],"symbols":[],"user_mentions":[{"screen_name":"troman","name":"Dr. + Tiffany Roman","id":15299255,"id_str":"15299255","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 25 00:06:38 +0000 2019","id":1187520808454742016,"id_str":"1187520808454742016","full_text":"The + Play Impossible Gameball was well received at #aect19! I love presenting at + the Emerging Tech Showcase. It''s such a great event! @tutaleni https:\/\/t.co\/KKANHkqtq3","truncated":false,"display_text_range":[0,142],"entities":{"hashtags":[{"text":"aect19","indices":[50,57]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[133,142]}],"urls":[{"url":"https:\/\/t.co\/KKANHkqtq3","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187482052481843200","display_url":"twitter.com\/tutaleni\/statu\u2026","indices":[143,166]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15299255,"id_str":"15299255","name":"Dr. + Tiffany Roman","screen_name":"troman","location":"Kennesaw, GA","description":"Assistant + Professor of Instructional Technology. Entrepreneur. Designer. Teacher. Mother. + Researcher of Design Ed, Innovation & Tech Integration in K-20.","url":"https:\/\/t.co\/vWr6F7hZ75","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vWr6F7hZ75","expanded_url":"http:\/\/www.round3.io","display_url":"round3.io","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":546,"friends_count":865,"listed_count":10,"created_at":"Wed + Jul 02 16:06:37 +0000 2008","favourites_count":1076,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":363,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1468308563403714566\/zZzeCmpz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1468308563403714566\/zZzeCmpz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15299255\/1537500662","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187482052481843200,"quoted_status_id_str":"1187482052481843200","quoted_status_permalink":{"url":"https:\/\/t.co\/KKANHkqtq3","expanded":"https:\/\/twitter.com\/tutaleni\/status\/1187482052481843200","display":"twitter.com\/tutaleni\/statu\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 21:32:38 +0000 2019","id":1187482052481843200,"id_str":"1187482052481843200","full_text":"Who + knew Newton\u2019s law could be this fun? #AECT19inspired #EmergingTechShowcase + https:\/\/t.co\/r8wJlakPFI","truncated":false,"display_text_range":[0,78],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[41,56]},{"text":"EmergingTechShowcase","indices":[57,78]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187482047473782784,"id_str":"1187482047473782784","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","url":"https:\/\/t.co\/r8wJlakPFI","display_url":"pic.twitter.com\/r8wJlakPFI","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187482052481843200\/photo\/1","type":"photo","sizes":{"large":{"w":1152,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187482047473782784,"id_str":"1187482047473782784","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","url":"https:\/\/t.co\/r8wJlakPFI","display_url":"pic.twitter.com\/r8wJlakPFI","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187482052481843200\/photo\/1","type":"photo","sizes":{"large":{"w":1152,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1187482052481843200,"quoted_status_id_str":"1187482052481843200","quoted_status_permalink":{"url":"https:\/\/t.co\/KKANHkqtq3","expanded":"https:\/\/twitter.com\/tutaleni\/status\/1187482052481843200","display":"twitter.com\/tutaleni\/statu\u2026"},"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1187485720824303616%2C1187485376643944448%2C1187485376375427072%2C1187485215888789504%2C1187484865001689088%2C1187484200590426112%2C1187483959820574720%2C1187483751556640768%2C1187483441819983874%2C1187483370923671552%2C1187483119231700993%2C1187483008800100352%2C1187482774531432453%2C1187482722274406401%2C1187482719900569601%2C1187482636324921345%2C1187482577981952001%2C1187482259571564549%2C1187482052481843200%2C1187481756275888128%2C1187481170688331777%2C1187481117986873368%2C1187481053566570496%2C1187481016337944581%2C1187480890944811009%2C1187480882384429072%2C1187480733050429454%2C1187480578188181509%2C1187480525365104645%2C1187480455941152776%2C1187480362211041303%2C1187480196909326338%2C1187480166165037061%2C1187479796621570048%2C1187479061217468417%2C1187478245119164417%2C1187478099799101441%2C1187478008602361856%2C1187477403137740801%2C1187477040624103424%2C1187476829327650816%2C1187476753482043394%2C1187476081219002368%2C1187475193595195395%2C1187474963600564225%2C1187473123752284160%2C1187473123752284160%2C1187471969328873478%2C1187470828255858689%2C1187470130034294784%2C1187470080579227652%2C1187468269512298501%2C1187468128826953728%2C1187467319498297348%2C1187465962674458624%2C1187465602006319104%2C1187462640206958592%2C1187462120612364293%2C1187460911721664517%2C1187460641021399041%2C1187460540043448321%2C1187459529295839233%2C1187459027711778816%2C1187458993620279297%2C1187458888410509312%2C1187458868789628939%2C1187458740267696135%2C1187458614539108352%2C1187458570427813895%2C1187458487934226432%2C1187458299291156481%2C1187457499533922305%2C1187457499533922305%2C1187456857712934912%2C1187456623616413696%2C1187456237216157696%2C1187454985178619911%2C1187454670421184512%2C1187452727032340480%2C1187451373496832001%2C1187451319868461057%2C1187451190952546306%2C1187450304578506752%2C1187448878846693376%2C1187448661032292352%2C1187448541926567941%2C1187445385603637249%2C1187443113922445312%2C1187443113922445312%2C1187441776937750528%2C1187439202276802560%2C1187438851020742656%2C1187438587760889856%2C1187436625598570497%2C1187436306500067328%2C1187431764513263616%2C1187431091050893312%2C1187430904052015104%2C1187430616377233408%2C1187430560886611969&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:44 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:44 GMT + x-transaction: 4bd8a7bd07b37a57 + content-length: '55890' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '287' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '348' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Thu Oct 24 19:19:57 +0000 2019","id":1187448661032292352,"id_str":"1187448661032292352","full_text":"RT + @SultanMutlaq: Fourth day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 + @khebrat_edu @S_Meemar @onaizahedu round tables sessi\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[29,44]},{"text":"AECTech2019","indices":[45,57]},{"text":"aect19inspired","indices":[58,73]}],"symbols":[],"user_mentions":[{"screen_name":"SultanMutlaq","name":"SultanMutlaq","id":370132373,"id_str":"370132373","indices":[3,16]},{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[74,85]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[86,98]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[99,108]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[109,120]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 19:06:56 +0000 2019","id":1187445385603637249,"id_str":"1187445385603637249","full_text":"Fourth + day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 @khebrat_edu + @S_Meemar @onaizahedu round tables sessions https:\/\/t.co\/zn9pMmBAyt","truncated":false,"display_text_range":[0,124],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]},{"text":"AECTech2019","indices":[27,39]},{"text":"aect19inspired","indices":[40,55]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[56,67]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[68,80]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[81,90]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[91,102]}],"urls":[],"media":[{"id":1187445377806389249,"id_str":"1187445377806389249","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqnR55UUAEVpIH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqnR55UUAEVpIH.jpg","url":"https:\/\/t.co\/zn9pMmBAyt","display_url":"pic.twitter.com\/zn9pMmBAyt","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187445385603637249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187445377806389249,"id_str":"1187445377806389249","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqnR55UUAEVpIH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqnR55UUAEVpIH.jpg","url":"https:\/\/t.co\/zn9pMmBAyt","display_url":"pic.twitter.com\/zn9pMmBAyt","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187445385603637249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187445377789620224,"id_str":"1187445377789620224","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqnR51UcAA3KaK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqnR51UcAA3KaK.jpg","url":"https:\/\/t.co\/zn9pMmBAyt","display_url":"pic.twitter.com\/zn9pMmBAyt","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187445385603637249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187445378234191872,"id_str":"1187445378234191872","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqnR7fUEAAa4aX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqnR7fUEAAa4aX.jpg","url":"https:\/\/t.co\/zn9pMmBAyt","display_url":"pic.twitter.com\/zn9pMmBAyt","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187445385603637249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187098337842843648,"in_reply_to_status_id_str":"1187098337842843648","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:11:53 +0000 2019","id":1187476829327650816,"id_str":"1187476829327650816","full_text":"Fourth + day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 @khebrat_edu + @S_Meemar @onaizahedu. Exploring How People Solve Problems https:\/\/t.co\/WgDo5RcHJU","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]},{"text":"AECTech2019","indices":[27,39]},{"text":"aect19inspired","indices":[40,55]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[56,67]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[68,80]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[81,90]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[91,102]}],"urls":[],"media":[{"id":1187476823984099328,"id_str":"1187476823984099328","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrD4UCU0AAK-0D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrD4UCU0AAK-0D.jpg","url":"https:\/\/t.co\/WgDo5RcHJU","display_url":"pic.twitter.com\/WgDo5RcHJU","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187476829327650816\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187476823984099328,"id_str":"1187476823984099328","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrD4UCU0AAK-0D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrD4UCU0AAK-0D.jpg","url":"https:\/\/t.co\/WgDo5RcHJU","display_url":"pic.twitter.com\/WgDo5RcHJU","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187476829327650816\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187476824009261057,"id_str":"1187476824009261057","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrD4UIUwAEjOIb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrD4UIUwAEjOIb.jpg","url":"https:\/\/t.co\/WgDo5RcHJU","display_url":"pic.twitter.com\/WgDo5RcHJU","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187476829327650816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187462120612364293,"in_reply_to_status_id_str":"1187462120612364293","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 19:26:29 +0000 2019","id":1187450304578506752,"id_str":"1187450304578506752","full_text":"RT + @pazureka: Best presentation I saw today at #aect19! Enjoyed hearing abt @SBarksway''s + work using tech integrated menus for students to p\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[47,54]}],"symbols":[],"user_mentions":[{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[3,12]},{"screen_name":"SBarksway","name":"Sarah + Barksdale","id":908737706699710464,"id_str":"908737706699710464","indices":[76,86]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64769037,"id_str":"64769037","name":"jenn\u03b9\u0493er + engl\u03c5nd","screen_name":"jmenglund03","location":"Settler on Dakota homelands","description":"@UMN_CI + LT PhD Candidate \u2022 @UMNews instructional designer \u2022 @GOGN_OER scholar + \u2022 @femedtech member \u2022 #OEP advocate \u2022 Pronouns: she\/her","url":"https:\/\/t.co\/cjLLex1JDn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cjLLex1JDn","expanded_url":"https:\/\/jenniferenglund.net\/","display_url":"jenniferenglund.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":662,"friends_count":627,"listed_count":72,"created_at":"Tue + Aug 11 17:10:00 +0000 2009","favourites_count":2052,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2918,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B7C8E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64769037\/1500750705","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"452568","profile_sidebar_border_color":"204207","profile_sidebar_fill_color":"060A00","profile_text_color":"618238","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 23:43:16 +0000 2019","id":1186790153068564485,"id_str":"1186790153068564485","full_text":"Best + presentation I saw today at #aect19! Enjoyed hearing abt @SBarksway''s work + using tech integrated menus for students to pursue their interests while demonstrating + competence in more meaningful + creative ways. @AECT @UMN_CI https:\/\/t.co\/TAjYOVLoO9","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"aect19","indices":[33,40]}],"symbols":[],"user_mentions":[{"screen_name":"SBarksway","name":"Sarah + Barksdale","id":908737706699710464,"id_str":"908737706699710464","indices":[62,72]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[214,219]},{"screen_name":"UMN_CI","name":"U + of MN CEHD C&I","id":759684692,"id_str":"759684692","indices":[220,227]}],"urls":[],"media":[{"id":1186790142003908608,"id_str":"1186790142003908608","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","url":"https:\/\/t.co\/TAjYOVLoO9","display_url":"pic.twitter.com\/TAjYOVLoO9","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":972,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":645,"resize":"fit"},"large":{"w":1024,"h":972,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186790142003908608,"id_str":"1186790142003908608","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","url":"https:\/\/t.co\/TAjYOVLoO9","display_url":"pic.twitter.com\/TAjYOVLoO9","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":972,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":645,"resize":"fit"},"large":{"w":1024,"h":972,"resize":"fit"}},"ext_alt_text":null},{"id":1186790148622569473,"id_str":"1186790148622569473","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhTWi-U0AEx9jJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhTWi-U0AEx9jJ.jpg","url":"https:\/\/t.co\/TAjYOVLoO9","display_url":"pic.twitter.com\/TAjYOVLoO9","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":601,"resize":"fit"},"large":{"w":1024,"h":601,"resize":"fit"},"small":{"w":680,"h":399,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:17:30 +0000 2019","id":1187478245119164417,"id_str":"1187478245119164417","full_text":"O-H-I-O + #buckeyes are rocking and rolling at #aect19 conference Las Vegas @VVongkulluksn + @Nelsmich @hawk_nathanA @ShengBo_Chen @caranorth11 @DLResearchLab @OSUehe + https:\/\/t.co\/nYG7zo4su3","truncated":false,"display_text_range":[0,162],"entities":{"hashtags":[{"text":"buckeyes","indices":[8,17]},{"text":"aect19","indices":[45,52]}],"symbols":[],"user_mentions":[{"screen_name":"VVongkulluksn","name":"Vanessa + Vongkulluksn","id":859192619582226432,"id_str":"859192619582226432","indices":[74,88]},{"screen_name":"Nelsmich","name":"Mike + Nelson","id":51712418,"id_str":"51712418","indices":[89,98]},{"screen_name":"hawk_nathanA","name":"Nathan + A Hawk","id":492536804,"id_str":"492536804","indices":[99,112]},{"screen_name":"ShengBo_Chen","name":"Sheng-Bo + Chen","id":1341770169669070849,"id_str":"1341770169669070849","indices":[113,126]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[127,139]},{"screen_name":"DLResearchLab","name":"Digital + Learning Lab","id":866326285999591426,"id_str":"866326285999591426","indices":[140,154]},{"screen_name":"OSUehe","name":"Ohio + State Education and Human Ecology","id":48771513,"id_str":"48771513","indices":[155,162]}],"urls":[],"media":[{"id":1187478239502954502,"id_str":"1187478239502954502","indices":[163,186],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrFKtQUcAYh_Ey.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrFKtQUcAYh_Ey.jpg","url":"https:\/\/t.co\/nYG7zo4su3","display_url":"pic.twitter.com\/nYG7zo4su3","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187478245119164417\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187478239502954502,"id_str":"1187478239502954502","indices":[163,186],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrFKtQUcAYh_Ey.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrFKtQUcAYh_Ey.jpg","url":"https:\/\/t.co\/nYG7zo4su3","display_url":"pic.twitter.com\/nYG7zo4su3","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187478245119164417\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 20:27:16 +0000 2019","id":1187465602006319104,"id_str":"1187465602006319104","full_text":"My + Snapchats don\u2019t disappear after viewing. #aect19","truncated":false,"display_text_range":[0,51],"entities":{"hashtags":[{"text":"aect19","indices":[44,51]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 20:07:09 +0000 2019","id":1187460540043448321,"id_str":"1187460540043448321","full_text":"Struggling + to know how to teach various qualitative paradigms to new qualitative research + students? We have some ideas using a new method called Decision-based Learning + that we''ll be teaching at 2 p.m. today at #AECT19. Come be #aectinspired! + https:\/\/t.co\/1pCQSrE8vl","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"AECT19","indices":[211,218]},{"text":"aectinspired","indices":[228,241]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187460492937199616,"id_str":"1187460492937199616","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","url":"https:\/\/t.co\/1pCQSrE8vl","display_url":"pic.twitter.com\/1pCQSrE8vl","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187460540043448321\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":711,"resize":"fit"},"large":{"w":1462,"h":866,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":403,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187460492937199616,"id_str":"1187460492937199616","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","url":"https:\/\/t.co\/1pCQSrE8vl","display_url":"pic.twitter.com\/1pCQSrE8vl","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187460540043448321\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":711,"resize":"fit"},"large":{"w":1462,"h":866,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":403,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17639668,"id_str":"17639668","name":"Rick + West","screen_name":"richardewest","location":"Provo, ut","description":"Instructional + Designer, Researcher, & Evaluator at Brigham Young University","url":"http:\/\/t.co\/Nc39wWEhGM","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Nc39wWEhGM","expanded_url":"http:\/\/richardewest.com","display_url":"richardewest.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":223,"listed_count":39,"created_at":"Wed + Nov 26 02:26:26 +0000 2008","favourites_count":799,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3339,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17639668\/1446650027","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:08:54 +0000 2019","id":1187476081219002368,"id_str":"1187476081219002368","full_text":"Exploring + gender behaviours virtually #aect19inspired #EmergingTechShowcase https:\/\/t.co\/1laXOQwIVF","truncated":false,"display_text_range":[0,75],"entities":{"hashtags":[{"text":"aect19inspired","indices":[38,53]},{"text":"EmergingTechShowcase","indices":[54,75]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187476075653128199,"id_str":"1187476075653128199","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrDMwSUYAcVHqo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrDMwSUYAcVHqo.jpg","url":"https:\/\/t.co\/1laXOQwIVF","display_url":"pic.twitter.com\/1laXOQwIVF","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187476081219002368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187476075653128199,"id_str":"1187476075653128199","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrDMwSUYAcVHqo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrDMwSUYAcVHqo.jpg","url":"https:\/\/t.co\/1laXOQwIVF","display_url":"pic.twitter.com\/1laXOQwIVF","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187476081219002368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 20:00:00 +0000 2019","id":1187458740267696135,"id_str":"1187458740267696135","full_text":"Who + doesn''t want more empowered learners? Explore how you can harness Self-Determination + Theory to build curiosity and confidence in your course! Do not miss the Inspire! + Self-Directed Learning session with @valarywithawhy at 4pm! #AECT19 #aect19inspired + @AECT https:\/\/t.co\/F49KFvdHxN","truncated":false,"display_text_range":[0,260],"entities":{"hashtags":[{"text":"AECT19","indices":[231,238]},{"text":"aect19inspired","indices":[239,254]}],"symbols":[],"user_mentions":[{"screen_name":"valarywithawhy","name":"Valary + Oleinik","id":111391715,"id_str":"111391715","indices":[207,222]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[255,260]}],"urls":[],"media":[{"id":1187125227488272389,"id_str":"1187125227488272389","indices":[261,284],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmEGtBX4AUACg6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmEGtBX4AUACg6.jpg","url":"https:\/\/t.co\/F49KFvdHxN","display_url":"pic.twitter.com\/F49KFvdHxN","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187458740267696135\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":1920,"h":1440,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187125227488272389,"id_str":"1187125227488272389","indices":[261,284],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmEGtBX4AUACg6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmEGtBX4AUACg6.jpg","url":"https:\/\/t.co\/F49KFvdHxN","display_url":"pic.twitter.com\/F49KFvdHxN","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187458740267696135\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":1920,"h":1440,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 20:28:42 +0000 2019","id":1187465962674458624,"id_str":"1187465962674458624","full_text":"We + are having fun! How about you? #aect19 #aect19inspired https:\/\/t.co\/CDf2xmGiEJ","truncated":false,"display_text_range":[0,58],"entities":{"hashtags":[{"text":"aect19","indices":[35,42]},{"text":"aect19inspired","indices":[43,58]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187465953174417408,"id_str":"1187465953174417408","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq5_jHU8AASDEn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq5_jHU8AASDEn.jpg","url":"https:\/\/t.co\/CDf2xmGiEJ","display_url":"pic.twitter.com\/CDf2xmGiEJ","expanded_url":"https:\/\/twitter.com\/kristaruggles\/status\/1187465962674458624\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187465953174417408,"id_str":"1187465953174417408","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq5_jHU8AASDEn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq5_jHU8AASDEn.jpg","url":"https:\/\/t.co\/CDf2xmGiEJ","display_url":"pic.twitter.com\/CDf2xmGiEJ","expanded_url":"https:\/\/twitter.com\/kristaruggles\/status\/1187465962674458624\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1022045132,"id_str":"1022045132","name":"Krista + Ruggles, PhD, NBCT","screen_name":"kristaruggles","location":"Salt Lake City, + UT","description":"Associate Professor @ Utah Valley University, ISTE Certified, + \ud83d\udc0a\ud83e\udde1\ud83d\udc99","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":252,"friends_count":544,"listed_count":5,"created_at":"Wed + Dec 19 13:05:12 +0000 2012","favourites_count":504,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":548,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/871368520747040769\/bh0EdaUI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/871368520747040769\/bh0EdaUI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1022045132\/1496585421","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 18:40:58 +0000 2019","id":1187438851020742656,"id_str":"1187438851020742656","full_text":"Great + roundtable session on Tech Trends. Thank you Charles Hodges and Thomas Reeves! + @AECT #aect19 #aect19inspired https:\/\/t.co\/2aPKHbT3V7","truncated":false,"display_text_range":[0,114],"entities":{"hashtags":[{"text":"aect19","indices":[91,98]},{"text":"aect19inspired","indices":[99,114]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[85,90]}],"urls":[],"media":[{"id":1187438845169528832,"id_str":"1187438845169528832","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqhVp7UcAAjSj4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqhVp7UcAAjSj4.jpg","url":"https:\/\/t.co\/2aPKHbT3V7","display_url":"pic.twitter.com\/2aPKHbT3V7","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187438851020742656\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":413,"h":680,"resize":"fit"},"large":{"w":828,"h":1364,"resize":"fit"},"medium":{"w":728,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187438845169528832,"id_str":"1187438845169528832","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqhVp7UcAAjSj4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqhVp7UcAAjSj4.jpg","url":"https:\/\/t.co\/2aPKHbT3V7","display_url":"pic.twitter.com\/2aPKHbT3V7","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187438851020742656\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":413,"h":680,"resize":"fit"},"large":{"w":828,"h":1364,"resize":"fit"},"medium":{"w":728,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 18:10:08 +0000 2019","id":1187431091050893312,"id_str":"1187431091050893312","full_text":"RT + @LearnEngage: How can you use #podcasts and #ePortfolios in the classroom? + Check out our Instructional Media session today at 1pm in Con\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"podcasts","indices":[33,42]},{"text":"ePortfolios","indices":[47,59]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 18:00:00 +0000 2019","id":1187428544290447361,"id_str":"1187428544290447361","full_text":"How + can you use #podcasts and #ePortfolios in the classroom? Check out our Instructional + Media session today at 1pm in Conf Room 8! #AECT19 #learnerengagement https:\/\/t.co\/iMgRHGP4Bl","truncated":false,"display_text_range":[0,158],"entities":{"hashtags":[{"text":"podcasts","indices":[16,25]},{"text":"ePortfolios","indices":[30,42]},{"text":"AECT19","indices":[132,139]},{"text":"learnerengagement","indices":[140,158]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187115652575911938,"id_str":"1187115652575911938","indices":[159,182],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl7ZXsX4AI_THX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl7ZXsX4AI_THX.jpg","url":"https:\/\/t.co\/iMgRHGP4Bl","display_url":"pic.twitter.com\/iMgRHGP4Bl","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187428544290447361\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187115652575911938,"id_str":"1187115652575911938","indices":[159,182],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl7ZXsX4AI_THX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl7ZXsX4AI_THX.jpg","url":"https:\/\/t.co\/iMgRHGP4Bl","display_url":"pic.twitter.com\/iMgRHGP4Bl","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187428544290447361\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:28:40 +0000 2019","id":1187481053566570496,"id_str":"1187481053566570496","full_text":"RT + @tutaleni: I\u2019ve been looking forward to the #EmergingTechnologiesShowcase + all week!! #AECT19inspired https:\/\/t.co\/snEtdmBQFn","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"EmergingTechnologiesShowcase","indices":[47,76]},{"text":"AECT19inspired","indices":[88,103]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]}],"urls":[],"media":[{"id":1187458987412738049,"id_str":"1187458987412738049","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHqzqFoU0AEmH6u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHqzqFoU0AEmH6u.jpg","url":"https:\/\/t.co\/snEtdmBQFn","display_url":"pic.twitter.com\/snEtdmBQFn","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187458993620279297\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":498,"h":280,"resize":"fit"},"small":{"w":498,"h":280,"resize":"fit"},"large":{"w":498,"h":280,"resize":"fit"}},"source_status_id":1187458993620279297,"source_status_id_str":"1187458993620279297","source_user_id":48223678,"source_user_id_str":"48223678"}]},"extended_entities":{"media":[{"id":1187458987412738049,"id_str":"1187458987412738049","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHqzqFoU0AEmH6u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHqzqFoU0AEmH6u.jpg","url":"https:\/\/t.co\/snEtdmBQFn","display_url":"pic.twitter.com\/snEtdmBQFn","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187458993620279297\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":498,"h":280,"resize":"fit"},"small":{"w":498,"h":280,"resize":"fit"},"large":{"w":498,"h":280,"resize":"fit"}},"source_status_id":1187458993620279297,"source_status_id_str":"1187458993620279297","source_user_id":48223678,"source_user_id_str":"48223678","video_info":{"aspect_ratio":[249,140],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHqzqFoU0AEmH6u.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 20:01:00 +0000 2019","id":1187458993620279297,"id_str":"1187458993620279297","full_text":"I\u2019ve + been looking forward to the #EmergingTechnologiesShowcase all week!! #AECT19inspired + https:\/\/t.co\/snEtdmBQFn","truncated":false,"display_text_range":[0,89],"entities":{"hashtags":[{"text":"EmergingTechnologiesShowcase","indices":[33,62]},{"text":"AECT19inspired","indices":[74,89]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187458987412738049,"id_str":"1187458987412738049","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHqzqFoU0AEmH6u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHqzqFoU0AEmH6u.jpg","url":"https:\/\/t.co\/snEtdmBQFn","display_url":"pic.twitter.com\/snEtdmBQFn","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187458993620279297\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":498,"h":280,"resize":"fit"},"small":{"w":498,"h":280,"resize":"fit"},"large":{"w":498,"h":280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187458987412738049,"id_str":"1187458987412738049","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHqzqFoU0AEmH6u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHqzqFoU0AEmH6u.jpg","url":"https:\/\/t.co\/snEtdmBQFn","display_url":"pic.twitter.com\/snEtdmBQFn","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187458993620279297\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":498,"h":280,"resize":"fit"},"small":{"w":498,"h":280,"resize":"fit"},"large":{"w":498,"h":280,"resize":"fit"}},"video_info":{"aspect_ratio":[249,140],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHqzqFoU0AEmH6u.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 19:19:28 +0000 2019","id":1187448541926567941,"id_str":"1187448541926567941","full_text":"RT + @ChangeIt4Better: Tech Trends is one of those peer-reviewed journals we''ve + spoken about this term, #eme603 and #eme607. Check out the ne\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"eme603","indices":[102,109]},{"text":"eme607","indices":[114,121]}],"symbols":[],"user_mentions":[{"screen_name":"ChangeIt4Better","name":"Dr. + Suzanne Ensmann","id":1596150056,"id_str":"1596150056","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 18:52:35 +0000 2019","id":1187441776937750528,"id_str":"1187441776937750528","full_text":"Tech + Trends is one of those peer-reviewed journals we''ve spoken about this term, + #eme603 and #eme607. Check out the newest special issue out! Thanks for the + update, @hodgesc! #aect19inspired #aect2019 https:\/\/t.co\/BZyouEbcUp https:\/\/t.co\/olCohGYQwl","truncated":false,"display_text_range":[0,224],"entities":{"hashtags":[{"text":"eme603","indices":[81,88]},{"text":"eme607","indices":[93,100]},{"text":"aect19inspired","indices":[175,190]},{"text":"aect2019","indices":[191,200]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[165,173]}],"urls":[{"url":"https:\/\/t.co\/BZyouEbcUp","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187368147168444417","display_url":"twitter.com\/hodgesc\/status\u2026","indices":[201,224]}],"media":[{"id":1187441765986340864,"id_str":"1187441765986340864","indices":[225,248],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqj_q0UEAASvjj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqj_q0UEAASvjj.jpg","url":"https:\/\/t.co\/olCohGYQwl","display_url":"pic.twitter.com\/olCohGYQwl","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187441776937750528\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":640,"resize":"fit"},"medium":{"w":480,"h":640,"resize":"fit"},"small":{"w":480,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187441765986340864,"id_str":"1187441765986340864","indices":[225,248],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqj_q0UEAASvjj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqj_q0UEAASvjj.jpg","url":"https:\/\/t.co\/olCohGYQwl","display_url":"pic.twitter.com\/olCohGYQwl","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187441776937750528\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":640,"resize":"fit"},"medium":{"w":480,"h":640,"resize":"fit"},"small":{"w":480,"h":640,"resize":"fit"}},"ext_alt_text":null},{"id":1187441765998948353,"id_str":"1187441765998948353","indices":[225,248],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqj_q3UcAE88ud.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqj_q3UcAE88ud.jpg","url":"https:\/\/t.co\/olCohGYQwl","display_url":"pic.twitter.com\/olCohGYQwl","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187441776937750528\/photo\/1","type":"photo","sizes":{"small":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":480,"resize":"fit"},"medium":{"w":640,"h":480,"resize":"fit"}},"ext_alt_text":null},{"id":1187441765994754054,"id_str":"1187441765994754054","indices":[225,248],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqj_q2UcAYIAnR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqj_q2UcAYIAnR.jpg","url":"https:\/\/t.co\/olCohGYQwl","display_url":"pic.twitter.com\/olCohGYQwl","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187441776937750528\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":640,"resize":"fit"},"small":{"w":480,"h":640,"resize":"fit"},"medium":{"w":480,"h":640,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187368147168444417,"quoted_status_id_str":"1187368147168444417","quoted_status_permalink":{"url":"https:\/\/t.co\/BZyouEbcUp","expanded":"https:\/\/twitter.com\/hodgesc\/status\/1187368147168444417","display":"twitter.com\/hodgesc\/status\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 14:00:01 +0000 2019","id":1187368147168444417,"id_str":"1187368147168444417","full_text":"Interested + in Teacher Readiness to Implement Technology Innovations? Visit my roundtable + with @DrTerriC to learn about our recent research. Oct 24, 11:00 to 11:50am, + Convention Center, Paradise North #aect19 #aect19inspired","truncated":false,"display_text_range":[0,223],"entities":{"hashtags":[{"text":"aect19","indices":[200,207]},{"text":"aect19inspired","indices":[208,223]}],"symbols":[],"user_mentions":[{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[94,103]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1187368147168444417,"quoted_status_id_str":"1187368147168444417","quoted_status_permalink":{"url":"https:\/\/t.co\/BZyouEbcUp","expanded":"https:\/\/twitter.com\/hodgesc\/status\/1187368147168444417","display":"twitter.com\/hodgesc\/status\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 19:55:04 +0000 2019","id":1187457499533922305,"id_str":"1187457499533922305","full_text":"2:00 + pm - 2:50 pm at Convention Center - Ballroom B\n229. Exploring the Qualifications + of New Faculty in Instructional Design and Technology - T. Logan Arrington, + Lauren Bagdy & James Klein #AECT19 #FSU #FSUCOE #ISLT #InstructionalDesign + #ID","truncated":false,"display_text_range":[0,244],"entities":{"hashtags":[{"text":"AECT19","indices":[193,200]},{"text":"FSU","indices":[201,205]},{"text":"FSUCOE","indices":[206,213]},{"text":"ISLT","indices":[214,219]},{"text":"InstructionalDesign","indices":[220,240]},{"text":"ID","indices":[241,244]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:38:09 +0000 2019","id":1187483441819983874,"id_str":"1187483441819983874","full_text":"RT + @ThomasLamey1: Michelle Loo from USA ILC starting off their talk on Building + Academic Capacity with Cultural Relevance: A Cross-Case Ana\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ThomasLamey1","name":"Thomas + Lamey","id":1426994293898629126,"id_str":"1426994293898629126","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:04:28 +0000 2019","id":1187474963600564225,"id_str":"1187474963600564225","full_text":"Michelle + Loo from USA ILC starting off their talk on Building Academic Capacity with + Cultural Relevance: A Cross-Case Analysis of Transnational Partnerships aect2 + #aect19 @ Westgate Las Vegas Resort & Casino https:\/\/t.co\/J6luLEbAQw","truncated":false,"display_text_range":[0,235],"entities":{"hashtags":[{"text":"aect19","indices":[163,170]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/J6luLEbAQw","expanded_url":"https:\/\/www.instagram.com\/p\/B4A-80zD5y-\/?igshid=gcdlcfnrjdk9","display_url":"instagram.com\/p\/B4A-80zD5y-\/\u2026","indices":[212,235]}]},"source":"\u003ca + href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":{"type":"Point","coordinates":[36.13625965,-115.15144543]},"coordinates":{"type":"Point","coordinates":[-115.15144543,36.13625965]},"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 18:52:35 +0000 2019","id":1187441776937750528,"id_str":"1187441776937750528","full_text":"Tech + Trends is one of those peer-reviewed journals we''ve spoken about this term, + #eme603 and #eme607. Check out the newest special issue out! Thanks for the + update, @hodgesc! #aect19inspired #aect2019 https:\/\/t.co\/BZyouEbcUp https:\/\/t.co\/olCohGYQwl","truncated":false,"display_text_range":[0,224],"entities":{"hashtags":[{"text":"eme603","indices":[81,88]},{"text":"eme607","indices":[93,100]},{"text":"aect19inspired","indices":[175,190]},{"text":"aect2019","indices":[191,200]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[165,173]}],"urls":[{"url":"https:\/\/t.co\/BZyouEbcUp","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187368147168444417","display_url":"twitter.com\/hodgesc\/status\u2026","indices":[201,224]}],"media":[{"id":1187441765986340864,"id_str":"1187441765986340864","indices":[225,248],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqj_q0UEAASvjj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqj_q0UEAASvjj.jpg","url":"https:\/\/t.co\/olCohGYQwl","display_url":"pic.twitter.com\/olCohGYQwl","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187441776937750528\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":640,"resize":"fit"},"medium":{"w":480,"h":640,"resize":"fit"},"small":{"w":480,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187441765986340864,"id_str":"1187441765986340864","indices":[225,248],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqj_q0UEAASvjj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqj_q0UEAASvjj.jpg","url":"https:\/\/t.co\/olCohGYQwl","display_url":"pic.twitter.com\/olCohGYQwl","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187441776937750528\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":640,"resize":"fit"},"medium":{"w":480,"h":640,"resize":"fit"},"small":{"w":480,"h":640,"resize":"fit"}},"ext_alt_text":null},{"id":1187441765998948353,"id_str":"1187441765998948353","indices":[225,248],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqj_q3UcAE88ud.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqj_q3UcAE88ud.jpg","url":"https:\/\/t.co\/olCohGYQwl","display_url":"pic.twitter.com\/olCohGYQwl","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187441776937750528\/photo\/1","type":"photo","sizes":{"small":{"w":640,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":480,"resize":"fit"},"medium":{"w":640,"h":480,"resize":"fit"}},"ext_alt_text":null},{"id":1187441765994754054,"id_str":"1187441765994754054","indices":[225,248],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqj_q2UcAYIAnR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqj_q2UcAYIAnR.jpg","url":"https:\/\/t.co\/olCohGYQwl","display_url":"pic.twitter.com\/olCohGYQwl","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187441776937750528\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":640,"resize":"fit"},"small":{"w":480,"h":640,"resize":"fit"},"medium":{"w":480,"h":640,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187368147168444417,"quoted_status_id_str":"1187368147168444417","quoted_status_permalink":{"url":"https:\/\/t.co\/BZyouEbcUp","expanded":"https:\/\/twitter.com\/hodgesc\/status\/1187368147168444417","display":"twitter.com\/hodgesc\/status\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 14:00:01 +0000 2019","id":1187368147168444417,"id_str":"1187368147168444417","full_text":"Interested + in Teacher Readiness to Implement Technology Innovations? Visit my roundtable + with @DrTerriC to learn about our recent research. Oct 24, 11:00 to 11:50am, + Convention Center, Paradise North #aect19 #aect19inspired","truncated":false,"display_text_range":[0,223],"entities":{"hashtags":[{"text":"aect19","indices":[200,207]},{"text":"aect19inspired","indices":[208,223]}],"symbols":[],"user_mentions":[{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[94,103]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 19:59:19 +0000 2019","id":1187458570427813895,"id_str":"1187458570427813895","full_text":"RT + @LearnEngage: Continuing the dialogue from a presentation last year, the \"It''s + a Win-Win!\" panel will discuss how four schools approache\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 19:30:00 +0000 2019","id":1187451190952546306,"id_str":"1187451190952546306","full_text":"Continuing + the dialogue from a presentation last year, the \"It''s a Win-Win!\" panel + will discuss how four schools approached course designs through a gameshow + format and reveal lessons learned! +50 points for likes and RTs! #AECT19 #instructionaldesign + https:\/\/t.co\/xCVN82c6ZZ","truncated":false,"display_text_range":[0,251],"entities":{"hashtags":[{"text":"AECT19","indices":[223,230]},{"text":"instructionaldesign","indices":[231,251]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187118769002504192,"id_str":"1187118769002504192","indices":[252,275],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl-OxSX4AANnrO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl-OxSX4AANnrO.jpg","url":"https:\/\/t.co\/xCVN82c6ZZ","display_url":"pic.twitter.com\/xCVN82c6ZZ","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187451190952546306\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":640,"resize":"fit"},"small":{"w":680,"h":340,"resize":"fit"},"medium":{"w":1200,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187118769002504192,"id_str":"1187118769002504192","indices":[252,275],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl-OxSX4AANnrO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl-OxSX4AANnrO.jpg","url":"https:\/\/t.co\/xCVN82c6ZZ","display_url":"pic.twitter.com\/xCVN82c6ZZ","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187451190952546306\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":640,"resize":"fit"},"small":{"w":680,"h":340,"resize":"fit"},"medium":{"w":1200,"h":600,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 20:52:34 +0000 2019","id":1187471969328873478,"id_str":"1187471969328873478","full_text":"We + are almost ready! If you\u2019re showing come set up. #aect19inspired https:\/\/t.co\/BBwfBnUQpo","truncated":false,"display_text_range":[0,67],"entities":{"hashtags":[{"text":"aect19inspired","indices":[52,67]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187471961854640130,"id_str":"1187471961854640130","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq_dTMVAAIvfTQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq_dTMVAAIvfTQ.jpg","url":"https:\/\/t.co\/BBwfBnUQpo","display_url":"pic.twitter.com\/BBwfBnUQpo","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187471969328873478\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187471961854640130,"id_str":"1187471961854640130","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq_dTMVAAIvfTQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq_dTMVAAIvfTQ.jpg","url":"https:\/\/t.co\/BBwfBnUQpo","display_url":"pic.twitter.com\/BBwfBnUQpo","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187471969328873478\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:47:12 +0000 2019","id":1187485720824303616,"id_str":"1187485720824303616","full_text":"@AECT + - Curious how many participants are here at the convention? #aect19 #aect19inspired","truncated":false,"display_text_range":[0,89],"entities":{"hashtags":[{"text":"aect19","indices":[66,73]},{"text":"aect19inspired","indices":[74,89]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 20:00:30 +0000 2019","id":1187458868789628939,"id_str":"1187458868789628939","full_text":"RT + @ISLT_FSU: 2:00 pm - 2:50 pm Emerging Technology Showcase T08- How gender + moderates participants\u2019 behavior in 3D teaching-focused VLE: c\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 19:45:04 +0000 2019","id":1187454985178619911,"id_str":"1187454985178619911","full_text":"2:00 + pm - 2:50 pm Emerging Technology Showcase T08- How gender moderates participants\u2019 + behavior in 3D teaching-focused VLE: case study of STEM GTAs - Mariya Pachman, + Fengfeng Ke, Zhaihuan Dai & Xin Yuan #AECT19 #FSU #FSUCOE #ISLT #STEM + #teaching #education","truncated":false,"display_text_range":[0,261],"entities":{"hashtags":[{"text":"AECT19","indices":[207,214]},{"text":"FSU","indices":[216,220]},{"text":"FSUCOE","indices":[221,228]},{"text":"ISLT","indices":[229,234]},{"text":"STEM","indices":[235,240]},{"text":"teaching","indices":[241,250]},{"text":"education","indices":[251,261]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:26:17 +0000 2019","id":1187480455941152776,"id_str":"1187480455941152776","full_text":"RT + @richardewest: Struggling to know how to teach various qualitative paradigms + to new qualitative research students? We have some ideas us\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"richardewest","name":"Rick + West","id":17639668,"id_str":"17639668","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 20:07:09 +0000 2019","id":1187460540043448321,"id_str":"1187460540043448321","full_text":"Struggling + to know how to teach various qualitative paradigms to new qualitative research + students? We have some ideas using a new method called Decision-based Learning + that we''ll be teaching at 2 p.m. today at #AECT19. Come be #aectinspired! + https:\/\/t.co\/1pCQSrE8vl","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"AECT19","indices":[211,218]},{"text":"aectinspired","indices":[228,241]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187460492937199616,"id_str":"1187460492937199616","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","url":"https:\/\/t.co\/1pCQSrE8vl","display_url":"pic.twitter.com\/1pCQSrE8vl","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187460540043448321\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":711,"resize":"fit"},"large":{"w":1462,"h":866,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":403,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187460492937199616,"id_str":"1187460492937199616","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq1BuJVAAACR-l.jpg","url":"https:\/\/t.co\/1pCQSrE8vl","display_url":"pic.twitter.com\/1pCQSrE8vl","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187460540043448321\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":711,"resize":"fit"},"large":{"w":1462,"h":866,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":403,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17639668,"id_str":"17639668","name":"Rick + West","screen_name":"richardewest","location":"Provo, ut","description":"Instructional + Designer, Researcher, & Evaluator at Brigham Young University","url":"http:\/\/t.co\/Nc39wWEhGM","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Nc39wWEhGM","expanded_url":"http:\/\/richardewest.com","display_url":"richardewest.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":223,"listed_count":39,"created_at":"Wed + Nov 26 02:26:26 +0000 2008","favourites_count":799,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3339,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17639668\/1446650027","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 19:20:49 +0000 2019","id":1187448878846693376,"id_str":"1187448878846693376","full_text":"RT + @AnnaRoseLeach: Presentation complete! Thank you @caranorth11 @dr_tracy_s + @correia65 @myramade for panel conversation! #aect19inspired\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[3,17]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[53,65]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:14:53 +0000 2019","id":1187402090546524160,"id_str":"1187402090546524160","full_text":"Presentation + complete! Thank you @caranorth11 @dr_tracy_s @correia65 @myramade for panel + conversation! #aect19inspired #aect19 https:\/\/t.co\/ylezM3Ia9v","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"aect19inspired","indices":[104,119]},{"text":"aect19","indices":[120,127]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[34,46]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[59,69]},{"screen_name":"myramade","name":"Hey, + it''s Myra!","id":15434589,"id_str":"15434589","indices":[70,79]}],"urls":[],"media":[{"id":1187402082778697728,"id_str":"1187402082778697728","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp_5zWVUAAbTQY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp_5zWVUAAbTQY.jpg","url":"https:\/\/t.co\/ylezM3Ia9v","display_url":"pic.twitter.com\/ylezM3Ia9v","expanded_url":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1187402090546524160\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187402082778697728,"id_str":"1187402082778697728","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp_5zWVUAAbTQY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp_5zWVUAAbTQY.jpg","url":"https:\/\/t.co\/ylezM3Ia9v","display_url":"pic.twitter.com\/ylezM3Ia9v","expanded_url":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1187402090546524160\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 20:57:09 +0000 2019","id":1187473123752284160,"id_str":"1187473123752284160","full_text":"RT + @arasbozkurt: Happy to announce that me and Akbulut, researchers from Anadolu + University, received Reviewer Excellence Award by ETR&D pr\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"arasbozkurt","name":"Aras + Bozkurt","id":83447547,"id_str":"83447547","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1535273520,"id_str":"1535273520","name":"Maha + Bali, PhD \u0645\u0647\u0627 \u0628\u0627\u0644\u064a \ud83c\udf35","screen_name":"Bali_Maha","location":"AUC, + Cairo, #Egypt","description":"Learning\/Writing\/Connecting\/Equity\/Care. + Prof Practice #facdev @cltauc @AUC. @VConnecting @UnboundEq @socialjustacad + #MYFest22\nWas #PhDmum @SheffieldUni","url":"https:\/\/t.co\/mPqyKiGvg6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mPqyKiGvg6","expanded_url":"http:\/\/blog.mahabali.me","display_url":"blog.mahabali.me","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13519,"friends_count":10237,"listed_count":500,"created_at":"Thu + Jun 20 23:42:32 +0000 2013","favourites_count":111226,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":74352,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513251193631485961\/VqZnvAQt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513251193631485961\/VqZnvAQt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1535273520\/1650088931","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 20:21:09 +0000 2019","id":1187101677142319105,"id_str":"1187101677142319105","full_text":"Happy + to announce that me and Akbulut, researchers from Anadolu University, received + Reviewer Excellence Award by ETR&D presented at #AECT19 #ETRD @yvzkblt + @AECT https:\/\/t.co\/QJXzm3Nc74","truncated":false,"display_text_range":[0,165],"entities":{"hashtags":[{"text":"AECT19","indices":[137,144]},{"text":"ETRD","indices":[145,150]}],"symbols":[],"user_mentions":[{"screen_name":"yvzkblt","name":"Yavuz + Akbulut","id":257891862,"id_str":"257891862","indices":[151,159]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[160,165]}],"urls":[],"media":[{"id":1187101649879425025,"id_str":"1187101649879425025","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","url":"https:\/\/t.co\/QJXzm3Nc74","display_url":"pic.twitter.com\/QJXzm3Nc74","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187101677142319105\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187101649879425025,"id_str":"1187101649879425025","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","url":"https:\/\/t.co\/QJXzm3Nc74","display_url":"pic.twitter.com\/QJXzm3Nc74","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187101677142319105\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":67,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:25:15 +0000 2019","id":1187480196909326338,"id_str":"1187480196909326338","full_text":"RT + @DrVirtuality: #Gamification and #VR session @ @aect happening now. #aect19 + #aect19 #aect19inspired @classcraftgame https:\/\/t.co\/zmiaF4n\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"Gamification","indices":[18,31]},{"text":"VR","indices":[36,39]},{"text":"aect19","indices":[71,78]},{"text":"aect19","indices":[79,86]},{"text":"aect19inspired","indices":[87,102]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[50,55]},{"screen_name":"classcraftgame","name":"Classcraft","id":1131525116,"id_str":"1131525116","indices":[103,118]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:16:34 +0000 2019","id":1187478008602361856,"id_str":"1187478008602361856","full_text":"#Gamification + and #VR session @ @aect happening now. #aect19 #aect19 #aect19inspired @classcraftgame + https:\/\/t.co\/zmiaF4n9ia","truncated":false,"display_text_range":[0,100],"entities":{"hashtags":[{"text":"Gamification","indices":[0,13]},{"text":"VR","indices":[18,21]},{"text":"aect19","indices":[53,60]},{"text":"aect19","indices":[61,68]},{"text":"aect19inspired","indices":[69,84]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[32,37]},{"screen_name":"classcraftgame","name":"Classcraft","id":1131525116,"id_str":"1131525116","indices":[85,100]}],"urls":[],"media":[{"id":1187477996648558594,"id_str":"1187477996648558594","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrE8kjUcAIJhLO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrE8kjUcAIJhLO.jpg","url":"https:\/\/t.co\/zmiaF4n9ia","display_url":"pic.twitter.com\/zmiaF4n9ia","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187478008602361856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":702,"h":1200,"resize":"fit"},"large":{"w":828,"h":1416,"resize":"fit"},"small":{"w":398,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187477996648558594,"id_str":"1187477996648558594","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrE8kjUcAIJhLO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrE8kjUcAIJhLO.jpg","url":"https:\/\/t.co\/zmiaF4n9ia","display_url":"pic.twitter.com\/zmiaF4n9ia","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187478008602361856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":702,"h":1200,"resize":"fit"},"large":{"w":828,"h":1416,"resize":"fit"},"small":{"w":398,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:04:28 +0000 2019","id":1187474963600564225,"id_str":"1187474963600564225","full_text":"Michelle + Loo from USA ILC starting off their talk on Building Academic Capacity with + Cultural Relevance: A Cross-Case Analysis of Transnational Partnerships aect2 + #aect19 @ Westgate Las Vegas Resort & Casino https:\/\/t.co\/J6luLEbAQw","truncated":false,"display_text_range":[0,235],"entities":{"hashtags":[{"text":"aect19","indices":[163,170]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/J6luLEbAQw","expanded_url":"https:\/\/www.instagram.com\/p\/B4A-80zD5y-\/?igshid=gcdlcfnrjdk9","display_url":"instagram.com\/p\/B4A-80zD5y-\/\u2026","indices":[212,235]}]},"source":"\u003ca + href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":{"type":"Point","coordinates":[36.13625965,-115.15144543]},"coordinates":{"type":"Point","coordinates":[-115.15144543,36.13625965]},"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 20:01:00 +0000 2019","id":1187458993620279297,"id_str":"1187458993620279297","full_text":"I\u2019ve + been looking forward to the #EmergingTechnologiesShowcase all week!! #AECT19inspired + https:\/\/t.co\/snEtdmBQFn","truncated":false,"display_text_range":[0,89],"entities":{"hashtags":[{"text":"EmergingTechnologiesShowcase","indices":[33,62]},{"text":"AECT19inspired","indices":[74,89]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187458987412738049,"id_str":"1187458987412738049","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHqzqFoU0AEmH6u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHqzqFoU0AEmH6u.jpg","url":"https:\/\/t.co\/snEtdmBQFn","display_url":"pic.twitter.com\/snEtdmBQFn","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187458993620279297\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":498,"h":280,"resize":"fit"},"small":{"w":498,"h":280,"resize":"fit"},"large":{"w":498,"h":280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187458987412738049,"id_str":"1187458987412738049","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHqzqFoU0AEmH6u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHqzqFoU0AEmH6u.jpg","url":"https:\/\/t.co\/snEtdmBQFn","display_url":"pic.twitter.com\/snEtdmBQFn","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187458993620279297\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":498,"h":280,"resize":"fit"},"small":{"w":498,"h":280,"resize":"fit"},"large":{"w":498,"h":280,"resize":"fit"}},"video_info":{"aspect_ratio":[249,140],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHqzqFoU0AEmH6u.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 19:59:30 +0000 2019","id":1187458614539108352,"id_str":"1187458614539108352","full_text":"Can + hardly wait!! One hour before the #EmergingTechnologiesShowcase #AECT19inspired + https:\/\/t.co\/xDphZDWieY","truncated":false,"display_text_range":[0,83],"entities":{"hashtags":[{"text":"EmergingTechnologiesShowcase","indices":[38,67]},{"text":"AECT19inspired","indices":[68,83]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187458608025309184,"id_str":"1187458608025309184","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHqzUATUEAAhyuq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHqzUATUEAAhyuq.jpg","url":"https:\/\/t.co\/xDphZDWieY","display_url":"pic.twitter.com\/xDphZDWieY","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187458614539108352\/photo\/1","type":"photo","sizes":{"medium":{"w":470,"h":350,"resize":"fit"},"small":{"w":470,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":470,"h":350,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187458608025309184,"id_str":"1187458608025309184","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHqzUATUEAAhyuq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHqzUATUEAAhyuq.jpg","url":"https:\/\/t.co\/xDphZDWieY","display_url":"pic.twitter.com\/xDphZDWieY","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187458614539108352\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":470,"h":350,"resize":"fit"},"small":{"w":470,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":470,"h":350,"resize":"fit"}},"video_info":{"aspect_ratio":[47,35],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHqzUATUEAAhyuq.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:23:40 +0000 2019","id":1187479796621570048,"id_str":"1187479796621570048","full_text":"RT + @tutaleni: The @EdTechOkstate @OSUEHA is ready for our workshop in ballroom + D. Join us #AECT19inspired https:\/\/t.co\/WCClXexFkK","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]},{"screen_name":"EdTechOkstate","name":"Okstate + Ed Tech","id":4141659852,"id_str":"4141659852","indices":[18,32]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2950104673,"id_str":"2950104673","name":"Ayodeji + Ibukun","screen_name":"lbukunAA","location":"Oklahoma, USA","description":"B.Engrg + MS MNSE","url":"https:\/\/t.co\/kVfuPQQfYs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kVfuPQQfYs","expanded_url":"http:\/\/www.ayoibukun.com","display_url":"ayoibukun.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":489,"listed_count":0,"created_at":"Mon + Dec 29 12:06:33 +0000 2014","favourites_count":665,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":154,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2950104673\/1574622610","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 15:08:57 +0000 2019","id":1187385494805471232,"id_str":"1187385494805471232","full_text":"The + @EdTechOkstate @OSUEHA is ready for our workshop in ballroom D. Join us #AECT19inspired + https:\/\/t.co\/WCClXexFkK","truncated":false,"display_text_range":[0,91],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[76,91]}],"symbols":[],"user_mentions":[{"screen_name":"EdTechOkstate","name":"Okstate + Ed Tech","id":4141659852,"id_str":"4141659852","indices":[4,18]}],"urls":[],"media":[{"id":1187385489050877958,"id_str":"1187385489050877958","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpwz65UwAY4A8K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpwz65UwAY4A8K.jpg","url":"https:\/\/t.co\/WCClXexFkK","display_url":"pic.twitter.com\/WCClXexFkK","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187385494805471232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187385489050877958,"id_str":"1187385489050877958","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpwz65UwAY4A8K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpwz65UwAY4A8K.jpg","url":"https:\/\/t.co\/WCClXexFkK","display_url":"pic.twitter.com\/WCClXexFkK","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187385494805471232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:34:43 +0000 2019","id":1187482577981952001,"id_str":"1187482577981952001","full_text":"Patrick + explaining tips to use social presence effectively R12 #aect19 @plowenthal","truncated":false,"display_text_range":[0,82],"entities":{"hashtags":[{"text":"aect19","indices":[63,70]}],"symbols":[],"user_mentions":[{"screen_name":"plowenthal","name":"Patrick + Lowenthal","id":14364665,"id_str":"14364665","indices":[71,82]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:35:30 +0000 2019","id":1187482774531432453,"id_str":"1187482774531432453","full_text":"RT + @SultanMutlaq: Fourth day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 + @khebrat_edu @S_Meemar @onaizahedu. Exploring How Peo\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[29,44]},{"text":"AECTech2019","indices":[45,57]},{"text":"aect19inspired","indices":[58,73]}],"symbols":[],"user_mentions":[{"screen_name":"SultanMutlaq","name":"SultanMutlaq","id":370132373,"id_str":"370132373","indices":[3,16]},{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[74,85]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[86,98]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[99,108]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[109,120]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:11:53 +0000 2019","id":1187476829327650816,"id_str":"1187476829327650816","full_text":"Fourth + day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 @khebrat_edu + @S_Meemar @onaizahedu. Exploring How People Solve Problems https:\/\/t.co\/WgDo5RcHJU","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]},{"text":"AECTech2019","indices":[27,39]},{"text":"aect19inspired","indices":[40,55]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[56,67]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[68,80]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[81,90]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[91,102]}],"urls":[],"media":[{"id":1187476823984099328,"id_str":"1187476823984099328","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrD4UCU0AAK-0D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrD4UCU0AAK-0D.jpg","url":"https:\/\/t.co\/WgDo5RcHJU","display_url":"pic.twitter.com\/WgDo5RcHJU","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187476829327650816\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187476823984099328,"id_str":"1187476823984099328","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrD4UCU0AAK-0D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrD4UCU0AAK-0D.jpg","url":"https:\/\/t.co\/WgDo5RcHJU","display_url":"pic.twitter.com\/WgDo5RcHJU","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187476829327650816\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187476824009261057,"id_str":"1187476824009261057","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrD4UIUwAEjOIb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrD4UIUwAEjOIb.jpg","url":"https:\/\/t.co\/WgDo5RcHJU","display_url":"pic.twitter.com\/WgDo5RcHJU","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187476829327650816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187462120612364293,"in_reply_to_status_id_str":"1187462120612364293","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 18:32:07 +0000 2019","id":1187436625598570497,"id_str":"1187436625598570497","full_text":"RT + @steph_moore: New Handbook of Research in Educational and Technology is inspiring! + Focused on how we help solve important, complex probl\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"steph_moore","name":"stephanie + moore","id":15636128,"id_str":"15636128","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14537661,"id_str":"14537661","name":"michele_estes","screen_name":"michele_estes","location":"","description":"Professor + #edtech, Writer, Designer, Public Speaker, International Partner: #usjpcoil + #gctl https:\/\/t.co\/PaLoEKkRkg Views my own\/retweets not endorsements","url":null,"entities":{"description":{"urls":[{"url":"https:\/\/t.co\/PaLoEKkRkg","expanded_url":"http:\/\/summitX.org","display_url":"summitX.org","indices":[92,115]}]}},"protected":false,"followers_count":385,"friends_count":1599,"listed_count":10,"created_at":"Sat + Apr 26 01:04:43 +0000 2008","favourites_count":1973,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":617,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/541356812310548480\/AfYbjkUF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/541356812310548480\/AfYbjkUF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14537661\/1417901154","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 16:36:25 +0000 2019","id":1186682731570159616,"id_str":"1186682731570159616","full_text":"New + Handbook of Research in Educational and Technology is inspiring! Focused on + how we help solve important, complex problems rather than \"things.\" #aect19inspired","truncated":false,"display_text_range":[0,163],"entities":{"hashtags":[{"text":"aect19inspired","indices":[148,163]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15636128,"id_str":"15636128","name":"stephanie + moore","screen_name":"steph_moore","location":"New Mexico Baby!","description":"Online + learning. Ethics & design. Tea. Bourbon. Chocolate. Leaning into metamodern. + Editor in Chief of @JCHEResearch she\/her, Author: SEL at a Distance","url":"https:\/\/t.co\/zwm2yMkODU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zwm2yMkODU","expanded_url":"https:\/\/wwnorton.com\/books\/9781324016571","display_url":"wwnorton.com\/books\/97813240\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3098,"friends_count":1316,"listed_count":54,"created_at":"Mon + Jul 28 19:10:00 +0000 2008","favourites_count":18809,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13765,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15636128\/1656742799","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":11,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:37:52 +0000 2019","id":1187483370923671552,"id_str":"1187483370923671552","full_text":"RT + @KuiXieOSU: O-H-I-O #buckeyes are rocking and rolling at #aect19 conference + Las Vegas @VVongkulluksn @Nelsmich @hawk_nathanA @ShengBo_Ch\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"buckeyes","indices":[23,32]},{"text":"aect19","indices":[60,67]}],"symbols":[],"user_mentions":[{"screen_name":"VVongkulluksn","name":"Vanessa + Vongkulluksn","id":859192619582226432,"id_str":"859192619582226432","indices":[89,103]},{"screen_name":"Nelsmich","name":"Mike + Nelson","id":51712418,"id_str":"51712418","indices":[104,113]},{"screen_name":"hawk_nathanA","name":"Nathan + A Hawk","id":492536804,"id_str":"492536804","indices":[114,127]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:17:30 +0000 2019","id":1187478245119164417,"id_str":"1187478245119164417","full_text":"O-H-I-O + #buckeyes are rocking and rolling at #aect19 conference Las Vegas @VVongkulluksn + @Nelsmich @hawk_nathanA @ShengBo_Chen @caranorth11 @DLResearchLab @OSUehe + https:\/\/t.co\/nYG7zo4su3","truncated":false,"display_text_range":[0,162],"entities":{"hashtags":[{"text":"buckeyes","indices":[8,17]},{"text":"aect19","indices":[45,52]}],"symbols":[],"user_mentions":[{"screen_name":"VVongkulluksn","name":"Vanessa + Vongkulluksn","id":859192619582226432,"id_str":"859192619582226432","indices":[74,88]},{"screen_name":"Nelsmich","name":"Mike + Nelson","id":51712418,"id_str":"51712418","indices":[89,98]},{"screen_name":"hawk_nathanA","name":"Nathan + A Hawk","id":492536804,"id_str":"492536804","indices":[99,112]},{"screen_name":"ShengBo_Chen","name":"Sheng-Bo + Chen","id":1341770169669070849,"id_str":"1341770169669070849","indices":[113,126]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[127,139]},{"screen_name":"DLResearchLab","name":"Digital + Learning Lab","id":866326285999591426,"id_str":"866326285999591426","indices":[140,154]},{"screen_name":"OSUehe","name":"Ohio + State Education and Human Ecology","id":48771513,"id_str":"48771513","indices":[155,162]}],"urls":[],"media":[{"id":1187478239502954502,"id_str":"1187478239502954502","indices":[163,186],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrFKtQUcAYh_Ey.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrFKtQUcAYh_Ey.jpg","url":"https:\/\/t.co\/nYG7zo4su3","display_url":"pic.twitter.com\/nYG7zo4su3","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187478245119164417\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187478239502954502,"id_str":"1187478239502954502","indices":[163,186],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrFKtQUcAYh_Ey.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrFKtQUcAYh_Ey.jpg","url":"https:\/\/t.co\/nYG7zo4su3","display_url":"pic.twitter.com\/nYG7zo4su3","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187478245119164417\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 19:59:00 +0000 2019","id":1187458487934226432,"id_str":"1187458487934226432","full_text":"RT + @ISLT_FSU: 2:00 pm - 2:50 pm at Convention Center - Ballroom B\n229. Exploring + the Qualifications of New Faculty in Instructional Design\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 19:55:04 +0000 2019","id":1187457499533922305,"id_str":"1187457499533922305","full_text":"2:00 + pm - 2:50 pm at Convention Center - Ballroom B\n229. Exploring the Qualifications + of New Faculty in Instructional Design and Technology - T. Logan Arrington, + Lauren Bagdy & James Klein #AECT19 #FSU #FSUCOE #ISLT #InstructionalDesign + #ID","truncated":false,"display_text_range":[0,244],"entities":{"hashtags":[{"text":"AECT19","indices":[193,200]},{"text":"FSU","indices":[201,205]},{"text":"FSUCOE","indices":[206,213]},{"text":"ISLT","indices":[214,219]},{"text":"InstructionalDesign","indices":[220,240]},{"text":"ID","indices":[241,244]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 19:51:35 +0000 2019","id":1187456623616413696,"id_str":"1187456623616413696","full_text":"Congratulations + to all who contributed to @GeorgiaTech''s Commission on Creating the Next + in Education (CNE) initiative. The CNE was awarded the #AECT19 Annual Achievement + Award at this year''s @AECT Convention. https:\/\/t.co\/EkFCOcXDHm","truncated":false,"display_text_range":[0,209],"entities":{"hashtags":[{"text":"AECT19","indices":[144,151]}],"symbols":[],"user_mentions":[{"screen_name":"GeorgiaTech","name":"Georgia + Tech","id":19080617,"id_str":"19080617","indices":[42,54]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[192,197]}],"urls":[],"media":[{"id":1187456616238632961,"id_str":"1187456616238632961","indices":[210,233],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqxgEUXUAEtRTM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqxgEUXUAEtRTM.png","url":"https:\/\/t.co\/EkFCOcXDHm","display_url":"pic.twitter.com\/EkFCOcXDHm","expanded_url":"https:\/\/twitter.com\/C21U\/status\/1187456623616413696\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":800,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187456616238632961,"id_str":"1187456616238632961","indices":[210,233],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqxgEUXUAEtRTM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqxgEUXUAEtRTM.png","url":"https:\/\/t.co\/EkFCOcXDHm","display_url":"pic.twitter.com\/EkFCOcXDHm","expanded_url":"https:\/\/twitter.com\/C21U\/status\/1187456623616413696\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":800,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":252132568,"id_str":"252132568","name":"Center + for 21st Century Universities (C21U)","screen_name":"C21U","location":"Atlanta, + GA","description":"The Center for 21st Century Universities (C21U) serves + as a catalyst for education innovation at Georgia Tech.","url":"https:\/\/t.co\/b50lnB4zNB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/b50lnB4zNB","expanded_url":"http:\/\/www.c21u.gatech.edu","display_url":"c21u.gatech.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1747,"friends_count":1381,"listed_count":160,"created_at":"Mon + Feb 14 15:20:29 +0000 2011","favourites_count":2363,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9047,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C4CBD3","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471168391322943493\/Y-3C-JlW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471168391322943493\/Y-3C-JlW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/252132568\/1541166473","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"005A8C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 18:08:14 +0000 2019","id":1187430616377233408,"id_str":"1187430616377233408","full_text":"RT + @RoutledgeEd: Congrats to authors Joseph Rene Corbeil, Maria Elena Corbeil, + and (not pictured) Badrul Khan, who received the Outstanding\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RoutledgeEd","name":"Routledge + Education Books","id":27606068,"id_str":"27606068","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 21:58:17 +0000 2019","id":1187126122376392704,"id_str":"1187126122376392704","full_text":"Congrats + to authors Joseph Rene Corbeil, Maria Elena Corbeil, and (not pictured) Badrul + Khan, who received the Outstanding Book Award from #AECT2019\u2019s Culture, + Learning, and Technology division \u2014 a global treatment of #learninganalytics + and #educationaldatamining. https:\/\/t.co\/aG1kf7a5ew","truncated":false,"display_text_range":[0,264],"entities":{"hashtags":[{"text":"AECT2019","indices":[139,148]},{"text":"learninganalytics","indices":[218,236]},{"text":"educationaldatamining","indices":[241,263]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27606068,"id_str":"27606068","name":"Routledge + Education Books","screen_name":"RoutledgeEd","location":"Global","description":"Supporting + educators, teachers, scholars and students with informative and practical + books based on leading research and classroom practice.","url":"http:\/\/t.co\/j4LZK9ypti","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/j4LZK9ypti","expanded_url":"http:\/\/www.routledge.com\/education","display_url":"routledge.com\/education","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":13833,"friends_count":3278,"listed_count":230,"created_at":"Mon + Mar 30 08:33:32 +0000 2009","favourites_count":2658,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10107,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"6A9ADA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27606068\/1629726175","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"6A9ADA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:45:50 +0000 2019","id":1187485376643944448,"id_str":"1187485376643944448","full_text":"Two + gentle who inspire me! @michaelmgrant and Dr. Phil Harris. Many thanks for + the hours they\u2019ve spent creating #aect19inspired for us! #rockinthebowtie + #rockinnotie https:\/\/t.co\/yyhnoLSa14","truncated":false,"display_text_range":[0,165],"entities":{"hashtags":[{"text":"aect19inspired","indices":[112,127]},{"text":"rockinthebowtie","indices":[136,152]},{"text":"rockinnotie","indices":[153,165]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[27,41]}],"urls":[],"media":[{"id":1187485372168593408,"id_str":"1187485372168593408","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrLp4gU4AAY6oO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrLp4gU4AAY6oO.jpg","url":"https:\/\/t.co\/yyhnoLSa14","display_url":"pic.twitter.com\/yyhnoLSa14","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187485376643944448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187485372168593408,"id_str":"1187485372168593408","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrLp4gU4AAY6oO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrLp4gU4AAY6oO.jpg","url":"https:\/\/t.co\/yyhnoLSa14","display_url":"pic.twitter.com\/yyhnoLSa14","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187485376643944448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 20:45:15 +0000 2019","id":1187470130034294784,"id_str":"1187470130034294784","full_text":"RT + @techedges: . @utexascoe Doctoral students Yi Shi, Peixia Shao, Ying Cai, + & Daeun Hong in action presenting research on preservice #edte\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"techedges","name":"Dr. + Joan E. Hughes","id":19613812,"id_str":"19613812","indices":[3,13]},{"screen_name":"utexascoe","name":"College + of Education","id":19671331,"id_str":"19671331","indices":[17,27]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83220399,"id_str":"83220399","name":"Tracey + Flores","screen_name":"traceyhabla","location":"Austin, TX","description":"Chicanita. + Writer. Runner. Assist. Profe of Language & Literacy #UTAustin. Creo en el + poder de las familias y nuestra youth. #SunDevils @Las_Escritoras","url":"https:\/\/t.co\/p2zXqXk1w0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p2zXqXk1w0","expanded_url":"http:\/\/traceyflores.wordpress.com\/","display_url":"traceyflores.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3143,"friends_count":2063,"listed_count":54,"created_at":"Sat + Oct 17 21:08:22 +0000 2009","favourites_count":49080,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":25444,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1300850051120467968\/zzbxuYyH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1300850051120467968\/zzbxuYyH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83220399\/1546124910","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 19:40:43 +0000 2019","id":1187091501660041216,"id_str":"1187091501660041216","full_text":". + @utexascoe Doctoral students Yi Shi, Peixia Shao, Ying Cai, & Daeun Hong + in action presenting research on preservice #edtech syllabi #aect19inspired + #texasCI https:\/\/t.co\/W1zNi3m2Rm","truncated":false,"display_text_range":[0,164],"entities":{"hashtags":[{"text":"edtech","indices":[123,130]},{"text":"aect19inspired","indices":[140,155]},{"text":"texasCI","indices":[156,164]}],"symbols":[],"user_mentions":[{"screen_name":"utexascoe","name":"College + of Education","id":19671331,"id_str":"19671331","indices":[2,12]}],"urls":[],"media":[{"id":1187091484073283584,"id_str":"1187091484073283584","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHllalAUUAAzuvO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHllalAUUAAzuvO.jpg","url":"https:\/\/t.co\/W1zNi3m2Rm","display_url":"pic.twitter.com\/W1zNi3m2Rm","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187091501660041216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187091484073283584,"id_str":"1187091484073283584","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHllalAUUAAzuvO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHllalAUUAAzuvO.jpg","url":"https:\/\/t.co\/W1zNi3m2Rm","display_url":"pic.twitter.com\/W1zNi3m2Rm","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187091501660041216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187091484090089472,"id_str":"1187091484090089472","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHllalEUwAAK3Qd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHllalEUwAAK3Qd.jpg","url":"https:\/\/t.co\/W1zNi3m2Rm","display_url":"pic.twitter.com\/W1zNi3m2Rm","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187091501660041216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187091484056547329,"id_str":"1187091484056547329","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHllak8U8AElMEH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHllak8U8AElMEH.jpg","url":"https:\/\/t.co\/W1zNi3m2Rm","display_url":"pic.twitter.com\/W1zNi3m2Rm","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187091501660041216\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19613812,"id_str":"19613812","name":"Dr. + Joan E. Hughes","screen_name":"techedges","location":"Austin, TX","description":"Prof, + Learning Technologies, UT Austin. Researcher, teacher, writer: tech integration + in schools, teacher educ & PD. Author:https:\/\/t.co\/p12V06CqJU","url":"https:\/\/t.co\/0V3yBaAOKy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0V3yBaAOKy","expanded_url":"http:\/\/techedges.org","display_url":"techedges.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/p12V06CqJU","expanded_url":"http:\/\/bit.ly\/IntegratingEdTech","display_url":"bit.ly\/IntegratingEdT\u2026","indices":[124,147]}]}},"protected":false,"followers_count":1646,"friends_count":2355,"listed_count":158,"created_at":"Tue + Jan 27 20:26:10 +0000 2009","favourites_count":722,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2871,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEBB2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431552022538510336\/qGc8ZRJj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431552022538510336\/qGc8ZRJj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19613812\/1408660446","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:41:10 +0000 2019","id":1187484200590426112,"id_str":"1187484200590426112","full_text":"Emerging + tech showcase @AECT #aect19 #aect19inspired https:\/\/t.co\/rQcBIOKx4n","truncated":false,"display_text_range":[0,52],"entities":{"hashtags":[{"text":"aect19","indices":[29,36]},{"text":"aect19inspired","indices":[37,52]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[23,28]}],"urls":[],"media":[{"id":1187484195045564417,"id_str":"1187484195045564417","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrKlXYU4AElhWs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrKlXYU4AElhWs.jpg","url":"https:\/\/t.co\/rQcBIOKx4n","display_url":"pic.twitter.com\/rQcBIOKx4n","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187484200590426112\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":934,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":529,"resize":"fit"},"large":{"w":2048,"h":1594,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187484195045564417,"id_str":"1187484195045564417","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrKlXYU4AElhWs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrKlXYU4AElhWs.jpg","url":"https:\/\/t.co\/rQcBIOKx4n","display_url":"pic.twitter.com\/rQcBIOKx4n","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187484200590426112\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":934,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":529,"resize":"fit"},"large":{"w":2048,"h":1594,"resize":"fit"}},"ext_alt_text":null},{"id":1187484195049730048,"id_str":"1187484195049730048","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrKlXZUcAAuZq0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrKlXZUcAAuZq0.jpg","url":"https:\/\/t.co\/rQcBIOKx4n","display_url":"pic.twitter.com\/rQcBIOKx4n","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187484200590426112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":903,"h":1200,"resize":"fit"},"large":{"w":1150,"h":1529,"resize":"fit"},"small":{"w":511,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:28:31 +0000 2019","id":1187481016337944581,"id_str":"1187481016337944581","full_text":"RT + @ISLT_FSU: 3:00 pm - 3:50 pm at Pavillion 9 (371) Moving Up the Organizational + Food Chain: From Faculty Member to Administrator with #FS\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 20:45:03 +0000 2019","id":1187470080579227652,"id_str":"1187470080579227652","full_text":"3:00 + pm - 3:50 pm at Pavillion 9 (371) Moving Up the Organizational Food Chain: + From Faculty Member to Administrator with #FSU #FSUCOE #ISLT Robert Reiser + and Alison Carr-Chellman, Marcus Childress, Jason Huett & Anthony A. Pina + #AECT19","truncated":false,"display_text_range":[0,240],"entities":{"hashtags":[{"text":"FSU","indices":[122,126]},{"text":"FSUCOE","indices":[127,134]},{"text":"ISLT","indices":[135,140]},{"text":"AECT19","indices":[233,240]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:45:12 +0000 2019","id":1187485215888789504,"id_str":"1187485215888789504","full_text":"Happening + now: drop by table 3 at the @AECT #aect19inspired emerging tech showcase to + see my study abroad FAQ chatbot, running on @chatfuel! https:\/\/t.co\/L4Ija501ST","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[44,59]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[38,43]},{"screen_name":"chatfuel","name":"Chatfuel","id":3355773219,"id_str":"3355773219","indices":[130,139]}],"urls":[],"media":[{"id":1187485208628457473,"id_str":"1187485208628457473","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrLgXRUcAEhTJH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrLgXRUcAEhTJH.jpg","url":"https:\/\/t.co\/L4Ija501ST","display_url":"pic.twitter.com\/L4Ija501ST","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1187485215888789504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187485208628457473,"id_str":"1187485208628457473","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrLgXRUcAEhTJH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrLgXRUcAEhTJH.jpg","url":"https:\/\/t.co\/L4Ija501ST","display_url":"pic.twitter.com\/L4Ija501ST","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1187485215888789504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 20:01:08 +0000 2019","id":1187459027711778816,"id_str":"1187459027711778816","full_text":"2:00 + pm - 2:50 pm Emerging Technology Showcase\nT04-Designing Function Fighters: + A digital game-based learning experience for algebraic thinking \u2013 Ginny + L. Smith #AECT19 #Math #Games #EdTech #education #Learning #Algebra #FSU #FSUCOE + #ISLT https:\/\/t.co\/rQxKittCgE","truncated":false,"display_text_range":[0,238],"entities":{"hashtags":[{"text":"AECT19","indices":[161,168]},{"text":"Math","indices":[169,174]},{"text":"Games","indices":[175,181]},{"text":"EdTech","indices":[182,189]},{"text":"education","indices":[190,200]},{"text":"Learning","indices":[201,210]},{"text":"Algebra","indices":[211,219]},{"text":"FSU","indices":[220,224]},{"text":"FSUCOE","indices":[225,232]},{"text":"ISLT","indices":[233,238]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187459025950138373,"id_str":"1187459025950138373","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqzsVMW4AUypcg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqzsVMW4AUypcg.jpg","url":"https:\/\/t.co\/rQxKittCgE","display_url":"pic.twitter.com\/rQxKittCgE","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187459027711778816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187459025950138373,"id_str":"1187459025950138373","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqzsVMW4AUypcg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqzsVMW4AUypcg.jpg","url":"https:\/\/t.co\/rQxKittCgE","display_url":"pic.twitter.com\/rQxKittCgE","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187459027711778816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:36:26 +0000 2019","id":1187483008800100352,"id_str":"1187483008800100352","full_text":"RT + @schmik7: Connecting at #aect19inspired! https:\/\/t.co\/2uJdTw21AY","truncated":false,"display_text_range":[0,67],"entities":{"hashtags":[{"text":"aect19inspired","indices":[27,42]}],"symbols":[],"user_mentions":[{"screen_name":"schmik7","name":"Kristina + Schmid","id":887750209098309633,"id_str":"887750209098309633","indices":[3,11]}],"urls":[],"media":[{"id":1187476605934813187,"id_str":"1187476605934813187","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrDrnvUwAMShT8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrDrnvUwAMShT8.jpg","url":"https:\/\/t.co\/2uJdTw21AY","display_url":"pic.twitter.com\/2uJdTw21AY","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187476753482043394\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":1187476753482043394,"source_status_id_str":"1187476753482043394","source_user_id":887750209098309633,"source_user_id_str":"887750209098309633"}]},"extended_entities":{"media":[{"id":1187476605934813187,"id_str":"1187476605934813187","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrDrnvUwAMShT8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrDrnvUwAMShT8.jpg","url":"https:\/\/t.co\/2uJdTw21AY","display_url":"pic.twitter.com\/2uJdTw21AY","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187476753482043394\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":1187476753482043394,"source_status_id_str":"1187476753482043394","source_user_id":887750209098309633,"source_user_id_str":"887750209098309633","ext_alt_text":null},{"id":1187476606752739328,"id_str":"1187476606752739328","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrDrqyVUAA9uUS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrDrqyVUAA9uUS.jpg","url":"https:\/\/t.co\/2uJdTw21AY","display_url":"pic.twitter.com\/2uJdTw21AY","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187476753482043394\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":1187476753482043394,"source_status_id_str":"1187476753482043394","source_user_id":887750209098309633,"source_user_id_str":"887750209098309633","ext_alt_text":null},{"id":1187476606786232322,"id_str":"1187476606786232322","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrDrq6UYAIV6TJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrDrq6UYAIV6TJ.jpg","url":"https:\/\/t.co\/2uJdTw21AY","display_url":"pic.twitter.com\/2uJdTw21AY","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187476753482043394\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1187476753482043394,"source_status_id_str":"1187476753482043394","source_user_id":887750209098309633,"source_user_id_str":"887750209098309633","ext_alt_text":null},{"id":1187476606765301763,"id_str":"1187476606765301763","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrDrq1VAAMkCeJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrDrq1VAAMkCeJ.jpg","url":"https:\/\/t.co\/2uJdTw21AY","display_url":"pic.twitter.com\/2uJdTw21AY","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187476753482043394\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":766,"resize":"fit"},"large":{"w":1024,"h":766,"resize":"fit"},"small":{"w":680,"h":509,"resize":"fit"}},"source_status_id":1187476753482043394,"source_status_id_str":"1187476753482043394","source_user_id":887750209098309633,"source_user_id_str":"887750209098309633","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:11:34 +0000 2019","id":1187476753482043394,"id_str":"1187476753482043394","full_text":"Connecting + at #aect19inspired! https:\/\/t.co\/2uJdTw21AY","truncated":false,"display_text_range":[0,30],"entities":{"hashtags":[{"text":"aect19inspired","indices":[14,29]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187476605934813187,"id_str":"1187476605934813187","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrDrnvUwAMShT8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrDrnvUwAMShT8.jpg","url":"https:\/\/t.co\/2uJdTw21AY","display_url":"pic.twitter.com\/2uJdTw21AY","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187476753482043394\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187476605934813187,"id_str":"1187476605934813187","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrDrnvUwAMShT8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrDrnvUwAMShT8.jpg","url":"https:\/\/t.co\/2uJdTw21AY","display_url":"pic.twitter.com\/2uJdTw21AY","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187476753482043394\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null},{"id":1187476606752739328,"id_str":"1187476606752739328","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrDrqyVUAA9uUS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrDrqyVUAA9uUS.jpg","url":"https:\/\/t.co\/2uJdTw21AY","display_url":"pic.twitter.com\/2uJdTw21AY","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187476753482043394\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}},"ext_alt_text":null},{"id":1187476606786232322,"id_str":"1187476606786232322","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrDrq6UYAIV6TJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrDrq6UYAIV6TJ.jpg","url":"https:\/\/t.co\/2uJdTw21AY","display_url":"pic.twitter.com\/2uJdTw21AY","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187476753482043394\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187476606765301763,"id_str":"1187476606765301763","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrDrq1VAAMkCeJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrDrq1VAAMkCeJ.jpg","url":"https:\/\/t.co\/2uJdTw21AY","display_url":"pic.twitter.com\/2uJdTw21AY","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187476753482043394\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":766,"resize":"fit"},"large":{"w":1024,"h":766,"resize":"fit"},"small":{"w":680,"h":509,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":887750209098309633,"id_str":"887750209098309633","name":"Kristina + Schmid","screen_name":"schmik7","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":21,"listed_count":0,"created_at":"Wed + Jul 19 19:05:18 +0000 2017","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1007818313303388160\/lj4vJiuG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1007818313303388160\/lj4vJiuG_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:26:34 +0000 2019","id":1187480525365104645,"id_str":"1187480525365104645","full_text":"My + favourite panel so far... Educational Technology, Social Justice & Critical + Whiteness with @camille_dd Amy Bradshaw & Deepak Subramony @aectclt @AECT + #aect19inspired Thanks for the great reading list:) Will definitely be sharing + in my @emergeAfrica report back webinar https:\/\/t.co\/UEuaa3EjP5","truncated":false,"display_text_range":[0,279],"entities":{"hashtags":[{"text":"aect19inspired","indices":[161,176]}],"symbols":[],"user_mentions":[{"screen_name":"camille_dd","name":"Camille + Dickson-Deane","id":398945750,"id_str":"398945750","indices":[98,109]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[146,154]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[155,160]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[246,259]}],"urls":[],"media":[{"id":1187480521418264577,"id_str":"1187480521418264577","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrHPiDU0AEBRU4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrHPiDU0AEBRU4.jpg","url":"https:\/\/t.co\/UEuaa3EjP5","display_url":"pic.twitter.com\/UEuaa3EjP5","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187480525365104645\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":455,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":302,"resize":"fit"},"large":{"w":1024,"h":455,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187480521418264577,"id_str":"1187480521418264577","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrHPiDU0AEBRU4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrHPiDU0AEBRU4.jpg","url":"https:\/\/t.co\/UEuaa3EjP5","display_url":"pic.twitter.com\/UEuaa3EjP5","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187480525365104645\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":455,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":302,"resize":"fit"},"large":{"w":1024,"h":455,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 18:12:48 +0000 2019","id":1187431764513263616,"id_str":"1187431764513263616","full_text":"\u2066@lynnhummel\u2069 + presenting a great poster session now @AECT\u2069 #aect19 #aect19inspired + #aect https:\/\/t.co\/R7PmOoF8S5","truncated":false,"display_text_range":[0,88],"entities":{"hashtags":[{"text":"aect19","indices":[59,66]},{"text":"aect19inspired","indices":[67,82]},{"text":"aect","indices":[83,88]}],"symbols":[],"user_mentions":[{"screen_name":"lynnhummel","name":"Lynn + Hummel","id":21052453,"id_str":"21052453","indices":[1,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[52,57]}],"urls":[],"media":[{"id":1187431757911453696,"id_str":"1187431757911453696","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqa5H1UcAAM7KK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqa5H1UcAAM7KK.jpg","url":"https:\/\/t.co\/R7PmOoF8S5","display_url":"pic.twitter.com\/R7PmOoF8S5","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187431764513263616\/photo\/1","type":"photo","sizes":{"large":{"w":828,"h":1445,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":688,"h":1200,"resize":"fit"},"small":{"w":390,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187431757911453696,"id_str":"1187431757911453696","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqa5H1UcAAM7KK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqa5H1UcAAM7KK.jpg","url":"https:\/\/t.co\/R7PmOoF8S5","display_url":"pic.twitter.com\/R7PmOoF8S5","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187431764513263616\/photo\/1","type":"photo","sizes":{"large":{"w":828,"h":1445,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":688,"h":1200,"resize":"fit"},"small":{"w":390,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 19:30:31 +0000 2019","id":1187451319868461057,"id_str":"1187451319868461057","full_text":"RT + @SBarksway: Just attended my 1st ever round table session @ #aect19 and it + was FANTASTIC! Thank you for leading such a wonderful, engagi\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[63,70]}],"symbols":[],"user_mentions":[{"screen_name":"SBarksway","name":"Sarah + Barksdale","id":908737706699710464,"id_str":"908737706699710464","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64769037,"id_str":"64769037","name":"jenn\u03b9\u0493er + engl\u03c5nd","screen_name":"jmenglund03","location":"Settler on Dakota homelands","description":"@UMN_CI + LT PhD Candidate \u2022 @UMNews instructional designer \u2022 @GOGN_OER scholar + \u2022 @femedtech member \u2022 #OEP advocate \u2022 Pronouns: she\/her","url":"https:\/\/t.co\/cjLLex1JDn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cjLLex1JDn","expanded_url":"https:\/\/jenniferenglund.net\/","display_url":"jenniferenglund.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":662,"friends_count":627,"listed_count":72,"created_at":"Tue + Aug 11 17:10:00 +0000 2009","favourites_count":2052,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2918,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B7C8E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64769037\/1500750705","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"452568","profile_sidebar_border_color":"204207","profile_sidebar_fill_color":"060A00","profile_text_color":"618238","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 18:57:54 +0000 2019","id":1187443113922445312,"id_str":"1187443113922445312","full_text":"Just + attended my 1st ever round table session @ #aect19 and it was FANTASTIC! Thank + you for leading such a wonderful, engaging discussion around phenomenology + @JolieKennedy @pazureka #aect19inspired @LTMediaLab @UMN_CI https:\/\/t.co\/KD1sxKUERh","truncated":false,"display_text_range":[0,218],"entities":{"hashtags":[{"text":"aect19","indices":[48,55]},{"text":"aect19inspired","indices":[183,198]}],"symbols":[],"user_mentions":[{"screen_name":"JolieKennedy","name":"Jolie + Kennedy","id":202011104,"id_str":"202011104","indices":[159,172]},{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[173,182]},{"screen_name":"LTMediaLab","name":"Learning + Technologies","id":1260285405787652101,"id_str":"1260285405787652101","indices":[199,210]},{"screen_name":"UMN_CI","name":"U + of MN CEHD C&I","id":759684692,"id_str":"759684692","indices":[211,218]}],"urls":[],"media":[{"id":1187442309144563712,"id_str":"1187442309144563712","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":770,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1314,"resize":"fit"},"small":{"w":680,"h":436,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187442309144563712,"id_str":"1187442309144563712","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":770,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1314,"resize":"fit"},"small":{"w":680,"h":436,"resize":"fit"}},"ext_alt_text":null},{"id":1187442309148762112,"id_str":"1187442309148762112","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkfSQU4AA6UVk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkfSQU4AA6UVk.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187442394054004738,"id_str":"1187442394054004738","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkkOjUEAIwLPB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkkOjUEAIwLPB.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":908737706699710464,"id_str":"908737706699710464","name":"Sarah + Barksdale","screen_name":"SBarksway","location":"","description":"Educator + \ud83d\udcda Researcher \u270d\ud83c\udffb Instructional Design \ud83d\udc69\u200d\ud83c\udfa8 + PhD Cand.\u2615\ufe0f Learning Technologies \ud83d\udcbb Adventurer & Travelholic + \ud83c\udfd4\ufe0f \ud83d\udc99: #edtech #CSforALL #teachered #pd","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":329,"friends_count":480,"listed_count":5,"created_at":"Fri + Sep 15 17:02:07 +0000 2017","favourites_count":2160,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":428,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/908737706699710464\/1506899531","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 18:08:01 +0000 2019","id":1187430560886611969,"id_str":"1187430560886611969","full_text":"RT + @ChangeIt4Better: Online Students\u2019 perspectives joint session with Eunjyu + Yu sharing results from a writing class study & the dispositio\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ChangeIt4Better","name":"Dr. + Suzanne Ensmann","id":1596150056,"id_str":"1596150056","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 00:26:33 +0000 2019","id":1187163432161689600,"id_str":"1187163432161689600","full_text":"Online + Students\u2019 perspectives joint session with Eunjyu Yu sharing results from + a writing class study & the disposition of the online learner (DOL) instrument + published in the Journal of Strategic Innovation and Sustainability (Ensmann, + Wilson, Johnston, Almerico, 2019) #aect2019 https:\/\/t.co\/Jo96Q5u3A5","truncated":false,"display_text_range":[0,284],"entities":{"hashtags":[{"text":"aect2019","indices":[275,284]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187163421797543936,"id_str":"1187163421797543936","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmm156UcAA2ORL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmm156UcAA2ORL.jpg","url":"https:\/\/t.co\/Jo96Q5u3A5","display_url":"pic.twitter.com\/Jo96Q5u3A5","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187163432161689600\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187163421797543936,"id_str":"1187163421797543936","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmm156UcAA2ORL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmm156UcAA2ORL.jpg","url":"https:\/\/t.co\/Jo96Q5u3A5","display_url":"pic.twitter.com\/Jo96Q5u3A5","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187163432161689600\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187163421843681285,"id_str":"1187163421843681285","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmm16FUcAUTTeA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmm16FUcAUTTeA.jpg","url":"https:\/\/t.co\/Jo96Q5u3A5","display_url":"pic.twitter.com\/Jo96Q5u3A5","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187163432161689600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187163421843673089,"id_str":"1187163421843673089","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmm16FUUAEr7s9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmm16FUUAEr7s9.jpg","url":"https:\/\/t.co\/Jo96Q5u3A5","display_url":"pic.twitter.com\/Jo96Q5u3A5","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187163432161689600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187163421835313152,"id_str":"1187163421835313152","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmm16DUwAA8upb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmm16DUwAA8upb.jpg","url":"https:\/\/t.co\/Jo96Q5u3A5","display_url":"pic.twitter.com\/Jo96Q5u3A5","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187163432161689600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:25:55 +0000 2019","id":1187480362211041303,"id_str":"1187480362211041303","full_text":"RT + @LearnEngage: Who doesn''t want more empowered learners? Explore how you can + harness Self-Determination Theory to build curiosity and con\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 20:00:00 +0000 2019","id":1187458740267696135,"id_str":"1187458740267696135","full_text":"Who + doesn''t want more empowered learners? Explore how you can harness Self-Determination + Theory to build curiosity and confidence in your course! Do not miss the Inspire! + Self-Directed Learning session with @valarywithawhy at 4pm! #AECT19 #aect19inspired + @AECT https:\/\/t.co\/F49KFvdHxN","truncated":false,"display_text_range":[0,260],"entities":{"hashtags":[{"text":"AECT19","indices":[231,238]},{"text":"aect19inspired","indices":[239,254]}],"symbols":[],"user_mentions":[{"screen_name":"valarywithawhy","name":"Valary + Oleinik","id":111391715,"id_str":"111391715","indices":[207,222]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[255,260]}],"urls":[],"media":[{"id":1187125227488272389,"id_str":"1187125227488272389","indices":[261,284],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmEGtBX4AUACg6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmEGtBX4AUACg6.jpg","url":"https:\/\/t.co\/F49KFvdHxN","display_url":"pic.twitter.com\/F49KFvdHxN","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187458740267696135\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":1920,"h":1440,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187125227488272389,"id_str":"1187125227488272389","indices":[261,284],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmEGtBX4AUACg6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmEGtBX4AUACg6.jpg","url":"https:\/\/t.co\/F49KFvdHxN","display_url":"pic.twitter.com\/F49KFvdHxN","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187458740267696135\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":1920,"h":1440,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:45:50 +0000 2019","id":1187485376375427072,"id_str":"1187485376375427072","full_text":"At + AECT International Division Membership meeting, open positions inviting volunteering, + taking leadership, and sharing passion and expertise @AECT #aect19 #aect19inspired + https:\/\/t.co\/Thsmmjyal9","truncated":false,"display_text_range":[0,171],"entities":{"hashtags":[{"text":"aect19","indices":[148,155]},{"text":"aect19inspired","indices":[156,171]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[142,147]}],"urls":[],"media":[{"id":1187485369807167488,"id_str":"1187485369807167488","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrLpvtUYAA_Y5-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrLpvtUYAA_Y5-.jpg","url":"https:\/\/t.co\/Thsmmjyal9","display_url":"pic.twitter.com\/Thsmmjyal9","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187485376375427072\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1752,"resize":"fit"},"medium":{"w":1200,"h":1027,"resize":"fit"},"small":{"w":680,"h":582,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187485369807167488,"id_str":"1187485369807167488","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrLpvtUYAA_Y5-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrLpvtUYAA_Y5-.jpg","url":"https:\/\/t.co\/Thsmmjyal9","display_url":"pic.twitter.com\/Thsmmjyal9","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187485376375427072\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1752,"resize":"fit"},"medium":{"w":1200,"h":1027,"resize":"fit"},"small":{"w":680,"h":582,"resize":"fit"}},"ext_alt_text":null},{"id":1187485369802997760,"id_str":"1187485369802997760","indices":[172,195],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrLpvsUwAAd0Og.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrLpvsUwAAd0Og.jpg","url":"https:\/\/t.co\/Thsmmjyal9","display_url":"pic.twitter.com\/Thsmmjyal9","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187485376375427072\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:33:27 +0000 2019","id":1187482259571564549,"id_str":"1187482259571564549","full_text":"RT + @nicolapallitt: My favourite panel so far... Educational Technology, Social + Justice & Critical Whiteness with @camille_dd Amy Bradshaw &\u2026","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"camille_dd","name":"Camille + Dickson-Deane","id":398945750,"id_str":"398945750","indices":[117,128]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:26:34 +0000 2019","id":1187480525365104645,"id_str":"1187480525365104645","full_text":"My + favourite panel so far... Educational Technology, Social Justice & Critical + Whiteness with @camille_dd Amy Bradshaw & Deepak Subramony @aectclt @AECT + #aect19inspired Thanks for the great reading list:) Will definitely be sharing + in my @emergeAfrica report back webinar https:\/\/t.co\/UEuaa3EjP5","truncated":false,"display_text_range":[0,279],"entities":{"hashtags":[{"text":"aect19inspired","indices":[161,176]}],"symbols":[],"user_mentions":[{"screen_name":"camille_dd","name":"Camille + Dickson-Deane","id":398945750,"id_str":"398945750","indices":[98,109]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[146,154]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[155,160]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[246,259]}],"urls":[],"media":[{"id":1187480521418264577,"id_str":"1187480521418264577","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrHPiDU0AEBRU4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrHPiDU0AEBRU4.jpg","url":"https:\/\/t.co\/UEuaa3EjP5","display_url":"pic.twitter.com\/UEuaa3EjP5","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187480525365104645\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":455,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":302,"resize":"fit"},"large":{"w":1024,"h":455,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187480521418264577,"id_str":"1187480521418264577","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrHPiDU0AEBRU4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrHPiDU0AEBRU4.jpg","url":"https:\/\/t.co\/UEuaa3EjP5","display_url":"pic.twitter.com\/UEuaa3EjP5","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187480525365104645\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":455,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":302,"resize":"fit"},"large":{"w":1024,"h":455,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:12:43 +0000 2019","id":1187477040624103424,"id_str":"1187477040624103424","full_text":"\"We + do a pretty good job of teaching conceptual and procedural knowledge in higher + education. But not conditional knowledge and functional expertise.\" #aect19inspired + #aect19 #aect2019 https:\/\/t.co\/jSiod2moZg","truncated":false,"display_text_range":[0,184],"entities":{"hashtags":[{"text":"aect19inspired","indices":[151,166]},{"text":"aect19","indices":[167,174]},{"text":"aect2019","indices":[175,184]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187477034840162304,"id_str":"1187477034840162304","indices":[185,208],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrEEliVAAAC-QX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrEEliVAAAC-QX.jpg","url":"https:\/\/t.co\/jSiod2moZg","display_url":"pic.twitter.com\/jSiod2moZg","expanded_url":"https:\/\/twitter.com\/ericpaulrogers\/status\/1187477040624103424\/photo\/1","type":"photo","sizes":{"large":{"w":970,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":568,"h":1200,"resize":"fit"},"small":{"w":322,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187477034840162304,"id_str":"1187477034840162304","indices":[185,208],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrEEliVAAAC-QX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrEEliVAAAC-QX.jpg","url":"https:\/\/t.co\/jSiod2moZg","display_url":"pic.twitter.com\/jSiod2moZg","expanded_url":"https:\/\/twitter.com\/ericpaulrogers\/status\/1187477040624103424\/photo\/1","type":"photo","sizes":{"large":{"w":970,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":568,"h":1200,"resize":"fit"},"small":{"w":322,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":51775264,"id_str":"51775264","name":"Eric + Paul Rogers","screen_name":"ericpaulrogers","location":"Salt Lake City, UT","description":"(he, + him) aspiring stone catcher | ally\ud83c\udf08","url":"https:\/\/t.co\/xhUZs9RX55","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xhUZs9RX55","expanded_url":"https:\/\/ericpaulrogers.com","display_url":"ericpaulrogers.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":361,"friends_count":1232,"listed_count":2,"created_at":"Sun + Jun 28 16:49:05 +0000 2009","favourites_count":27579,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3148,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1478471925911339008\/2wRBAyhT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1478471925911339008\/2wRBAyhT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/51775264\/1648702096","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:25:08 +0000 2019","id":1187480166165037061,"id_str":"1187480166165037061","full_text":"RT + @DrRossPerkins: Here\u2019s another person who truly inspires me! My colleague + from UVa, @steph_moore Amazing designer, editor, mom, and Surv\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrRossPerkins","name":"Ross + Perkins, PhD","id":2905458781,"id_str":"2905458781","indices":[3,17]},{"screen_name":"steph_moore","name":"stephanie + moore","id":15636128,"id_str":"15636128","indices":[87,99]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:16:55 +0000 2019","id":1187478099799101441,"id_str":"1187478099799101441","full_text":"Here\u2019s + another person who truly inspires me! My colleague from UVa, @steph_moore + Amazing designer, editor, mom, and Survivor! #aect19inspired #StephStrong + @AECT @JCHEResearch #aectRTD https:\/\/t.co\/OaxO9y4kcy","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"aect19inspired","indices":[126,141]},{"text":"StephStrong","indices":[142,154]},{"text":"aectRTD","indices":[175,183]}],"symbols":[],"user_mentions":[{"screen_name":"steph_moore","name":"stephanie + moore","id":15636128,"id_str":"15636128","indices":[68,80]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[155,160]},{"screen_name":"JCHEResearch","name":"JCHE","id":3632440875,"id_str":"3632440875","indices":[161,174]}],"urls":[],"media":[{"id":1187478092526153729,"id_str":"1187478092526153729","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrFCJuUcAE1mo1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrFCJuUcAE1mo1.jpg","url":"https:\/\/t.co\/OaxO9y4kcy","display_url":"pic.twitter.com\/OaxO9y4kcy","expanded_url":"https:\/\/twitter.com\/DrRossPerkins\/status\/1187478099799101441\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187478092526153729,"id_str":"1187478092526153729","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrFCJuUcAE1mo1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrFCJuUcAE1mo1.jpg","url":"https:\/\/t.co\/OaxO9y4kcy","display_url":"pic.twitter.com\/OaxO9y4kcy","expanded_url":"https:\/\/twitter.com\/DrRossPerkins\/status\/1187478099799101441\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2905458781,"id_str":"2905458781","name":"Ross + Perkins, PhD","screen_name":"DrRossPerkins","location":"Apex, NC","description":"Asc + Prof @ Boise State. EdS\/EdD ProgCoord. https:\/\/t.co\/8jp7WXqbV1 | Huge + listserv influencer, 1998-2006.","url":"https:\/\/t.co\/8jp7WXqbV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[43,66]}]}},"protected":false,"followers_count":773,"friends_count":485,"listed_count":21,"created_at":"Thu + Nov 20 19:52:09 +0000 2014","favourites_count":3672,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2751,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2905458781\/1618315302","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 18:30:51 +0000 2019","id":1187436306500067328,"id_str":"1187436306500067328","full_text":"RT + @techedges: . @utexascoe Doctoral students Yi Shi, Peixia Shao, Ying Cai, + & Daeun Hong in action presenting research on preservice #edte\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"techedges","name":"Dr. + Joan E. Hughes","id":19613812,"id_str":"19613812","indices":[3,13]},{"screen_name":"utexascoe","name":"College + of Education","id":19671331,"id_str":"19671331","indices":[17,27]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19671331,"id_str":"19671331","name":"College + of Education","screen_name":"utexascoe","location":"University of Texas at + Austin","description":"Let\u2019s Reimagine Education | The College of Education + @UTAustin is ranked 8th among public universities, with 6 programs in the + top 10.","url":"https:\/\/t.co\/zcvWc0tlL1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zcvWc0tlL1","expanded_url":"http:\/\/education.utexas.edu","display_url":"education.utexas.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":11649,"friends_count":747,"listed_count":367,"created_at":"Wed + Jan 28 19:50:23 +0000 2009","favourites_count":3656,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":true,"statuses_count":14112,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C75A28","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1267504387594862594\/TO0Gnctt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1267504387594862594\/TO0Gnctt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19671331\/1535650377","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"DF6F1D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E2F2CE","profile_text_color":"36412E","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 19:40:43 +0000 2019","id":1187091501660041216,"id_str":"1187091501660041216","full_text":". + @utexascoe Doctoral students Yi Shi, Peixia Shao, Ying Cai, & Daeun Hong + in action presenting research on preservice #edtech syllabi #aect19inspired + #texasCI https:\/\/t.co\/W1zNi3m2Rm","truncated":false,"display_text_range":[0,164],"entities":{"hashtags":[{"text":"edtech","indices":[123,130]},{"text":"aect19inspired","indices":[140,155]},{"text":"texasCI","indices":[156,164]}],"symbols":[],"user_mentions":[{"screen_name":"utexascoe","name":"College + of Education","id":19671331,"id_str":"19671331","indices":[2,12]}],"urls":[],"media":[{"id":1187091484073283584,"id_str":"1187091484073283584","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHllalAUUAAzuvO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHllalAUUAAzuvO.jpg","url":"https:\/\/t.co\/W1zNi3m2Rm","display_url":"pic.twitter.com\/W1zNi3m2Rm","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187091501660041216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187091484073283584,"id_str":"1187091484073283584","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHllalAUUAAzuvO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHllalAUUAAzuvO.jpg","url":"https:\/\/t.co\/W1zNi3m2Rm","display_url":"pic.twitter.com\/W1zNi3m2Rm","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187091501660041216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187091484090089472,"id_str":"1187091484090089472","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHllalEUwAAK3Qd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHllalEUwAAK3Qd.jpg","url":"https:\/\/t.co\/W1zNi3m2Rm","display_url":"pic.twitter.com\/W1zNi3m2Rm","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187091501660041216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187091484056547329,"id_str":"1187091484056547329","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHllak8U8AElMEH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHllak8U8AElMEH.jpg","url":"https:\/\/t.co\/W1zNi3m2Rm","display_url":"pic.twitter.com\/W1zNi3m2Rm","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187091501660041216\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19613812,"id_str":"19613812","name":"Dr. + Joan E. Hughes","screen_name":"techedges","location":"Austin, TX","description":"Prof, + Learning Technologies, UT Austin. Researcher, teacher, writer: tech integration + in schools, teacher educ & PD. Author:https:\/\/t.co\/p12V06CqJU","url":"https:\/\/t.co\/0V3yBaAOKy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0V3yBaAOKy","expanded_url":"http:\/\/techedges.org","display_url":"techedges.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/p12V06CqJU","expanded_url":"http:\/\/bit.ly\/IntegratingEdTech","display_url":"bit.ly\/IntegratingEdT\u2026","indices":[124,147]}]}},"protected":false,"followers_count":1646,"friends_count":2355,"listed_count":158,"created_at":"Tue + Jan 27 20:26:10 +0000 2009","favourites_count":722,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2871,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEBB2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431552022538510336\/qGc8ZRJj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431552022538510336\/qGc8ZRJj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19613812\/1408660446","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:16:55 +0000 2019","id":1187478099799101441,"id_str":"1187478099799101441","full_text":"Here\u2019s + another person who truly inspires me! My colleague from UVa, @steph_moore + Amazing designer, editor, mom, and Survivor! #aect19inspired #StephStrong + @AECT @JCHEResearch #aectRTD https:\/\/t.co\/OaxO9y4kcy","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"aect19inspired","indices":[126,141]},{"text":"StephStrong","indices":[142,154]},{"text":"aectRTD","indices":[175,183]}],"symbols":[],"user_mentions":[{"screen_name":"steph_moore","name":"stephanie + moore","id":15636128,"id_str":"15636128","indices":[68,80]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[155,160]},{"screen_name":"JCHEResearch","name":"JCHE","id":3632440875,"id_str":"3632440875","indices":[161,174]}],"urls":[],"media":[{"id":1187478092526153729,"id_str":"1187478092526153729","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrFCJuUcAE1mo1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrFCJuUcAE1mo1.jpg","url":"https:\/\/t.co\/OaxO9y4kcy","display_url":"pic.twitter.com\/OaxO9y4kcy","expanded_url":"https:\/\/twitter.com\/DrRossPerkins\/status\/1187478099799101441\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187478092526153729,"id_str":"1187478092526153729","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrFCJuUcAE1mo1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrFCJuUcAE1mo1.jpg","url":"https:\/\/t.co\/OaxO9y4kcy","display_url":"pic.twitter.com\/OaxO9y4kcy","expanded_url":"https:\/\/twitter.com\/DrRossPerkins\/status\/1187478099799101441\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2905458781,"id_str":"2905458781","name":"Ross + Perkins, PhD","screen_name":"DrRossPerkins","location":"Apex, NC","description":"Asc + Prof @ Boise State. EdS\/EdD ProgCoord. https:\/\/t.co\/8jp7WXqbV1 | Huge + listserv influencer, 1998-2006.","url":"https:\/\/t.co\/8jp7WXqbV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[43,66]}]}},"protected":false,"followers_count":773,"friends_count":485,"listed_count":21,"created_at":"Thu + Nov 20 19:52:09 +0000 2014","favourites_count":3672,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2751,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2905458781\/1618315302","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 20:07:33 +0000 2019","id":1187460641021399041,"id_str":"1187460641021399041","full_text":"RT + @tutaleni: The @EdTechOkstate @OSUEHA is ready for our workshop in ballroom + D. Join us #AECT19inspired https:\/\/t.co\/WCClXexFkK","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]},{"screen_name":"EdTechOkstate","name":"Okstate + Ed Tech","id":4141659852,"id_str":"4141659852","indices":[18,32]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18684248,"id_str":"18684248","name":"OSU + College of Education and Human Sciences","screen_name":"okstate_ehs","location":"Stillwater, + Oklahoma","description":"Welcome to the official twitter account for the College + of Education and Human Sciences at #okstate. #PeoplePassionPurpose","url":"https:\/\/t.co\/4cwl0KhhPf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4cwl0KhhPf","expanded_url":"http:\/\/education.okstate.edu","display_url":"education.okstate.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2554,"friends_count":862,"listed_count":49,"created_at":"Tue + Jan 06 17:06:45 +0000 2009","favourites_count":1677,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4879,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1272534799689887745\/Hx_cAEVL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1272534799689887745\/Hx_cAEVL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18684248\/1636653934","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FB5309","profile_sidebar_border_color":"FB5409","profile_sidebar_fill_color":"F5F4F7","profile_text_color":"FF5A08","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 15:08:57 +0000 2019","id":1187385494805471232,"id_str":"1187385494805471232","full_text":"The + @EdTechOkstate @OSUEHA is ready for our workshop in ballroom D. Join us #AECT19inspired + https:\/\/t.co\/WCClXexFkK","truncated":false,"display_text_range":[0,91],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[76,91]}],"symbols":[],"user_mentions":[{"screen_name":"EdTechOkstate","name":"Okstate + Ed Tech","id":4141659852,"id_str":"4141659852","indices":[4,18]}],"urls":[],"media":[{"id":1187385489050877958,"id_str":"1187385489050877958","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpwz65UwAY4A8K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpwz65UwAY4A8K.jpg","url":"https:\/\/t.co\/WCClXexFkK","display_url":"pic.twitter.com\/WCClXexFkK","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187385494805471232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187385489050877958,"id_str":"1187385489050877958","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpwz65UwAY4A8K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpwz65UwAY4A8K.jpg","url":"https:\/\/t.co\/WCClXexFkK","display_url":"pic.twitter.com\/WCClXexFkK","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187385494805471232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 19:45:04 +0000 2019","id":1187454985178619911,"id_str":"1187454985178619911","full_text":"2:00 + pm - 2:50 pm Emerging Technology Showcase T08- How gender moderates participants\u2019 + behavior in 3D teaching-focused VLE: case study of STEM GTAs - Mariya Pachman, + Fengfeng Ke, Zhaihuan Dai & Xin Yuan #AECT19 #FSU #FSUCOE #ISLT #STEM + #teaching #education","truncated":false,"display_text_range":[0,261],"entities":{"hashtags":[{"text":"AECT19","indices":[207,214]},{"text":"FSU","indices":[216,220]},{"text":"FSUCOE","indices":[221,228]},{"text":"ISLT","indices":[229,234]},{"text":"STEM","indices":[235,240]},{"text":"teaching","indices":[241,250]},{"text":"education","indices":[251,261]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:20:45 +0000 2019","id":1187479061217468417,"id_str":"1187479061217468417","full_text":"#Gamification + resources shared @aect #aect #aect19 #aect19inspired https:\/\/t.co\/CueSngylnk","truncated":false,"display_text_range":[0,66],"entities":{"hashtags":[{"text":"Gamification","indices":[0,13]},{"text":"aect","indices":[37,42]},{"text":"aect19","indices":[43,50]},{"text":"aect19inspired","indices":[51,66]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[31,36]}],"urls":[],"media":[{"id":1187479033564418050,"id_str":"1187479033564418050","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrF47XU0AIQn3a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrF47XU0AIQn3a.jpg","url":"https:\/\/t.co\/CueSngylnk","display_url":"pic.twitter.com\/CueSngylnk","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187479061217468417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187479033564418050,"id_str":"1187479033564418050","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrF47XU0AIQn3a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrF47XU0AIQn3a.jpg","url":"https:\/\/t.co\/CueSngylnk","display_url":"pic.twitter.com\/CueSngylnk","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187479061217468417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 19:36:06 +0000 2019","id":1187452727032340480,"id_str":"1187452727032340480","full_text":"#aect19 + Tip #35 - Create and wear a tinfoil hat to protect your brain from WiFi radiation.","truncated":false,"display_text_range":[0,90],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 18:57:54 +0000 2019","id":1187443113922445312,"id_str":"1187443113922445312","full_text":"Just + attended my 1st ever round table session @ #aect19 and it was FANTASTIC! Thank + you for leading such a wonderful, engaging discussion around phenomenology + @JolieKennedy @pazureka #aect19inspired @LTMediaLab @UMN_CI https:\/\/t.co\/KD1sxKUERh","truncated":false,"display_text_range":[0,218],"entities":{"hashtags":[{"text":"aect19","indices":[48,55]},{"text":"aect19inspired","indices":[183,198]}],"symbols":[],"user_mentions":[{"screen_name":"JolieKennedy","name":"Jolie + Kennedy","id":202011104,"id_str":"202011104","indices":[159,172]},{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[173,182]},{"screen_name":"LTMediaLab","name":"Learning + Technologies","id":1260285405787652101,"id_str":"1260285405787652101","indices":[199,210]},{"screen_name":"UMN_CI","name":"U + of MN CEHD C&I","id":759684692,"id_str":"759684692","indices":[211,218]}],"urls":[],"media":[{"id":1187442309144563712,"id_str":"1187442309144563712","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":770,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1314,"resize":"fit"},"small":{"w":680,"h":436,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187442309144563712,"id_str":"1187442309144563712","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkfSPU0AA_g_h.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":770,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1314,"resize":"fit"},"small":{"w":680,"h":436,"resize":"fit"}},"ext_alt_text":null},{"id":1187442309148762112,"id_str":"1187442309148762112","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkfSQU4AA6UVk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkfSQU4AA6UVk.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187442394054004738,"id_str":"1187442394054004738","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqkkOjUEAIwLPB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqkkOjUEAIwLPB.jpg","url":"https:\/\/t.co\/KD1sxKUERh","display_url":"pic.twitter.com\/KD1sxKUERh","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1187443113922445312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":908737706699710464,"id_str":"908737706699710464","name":"Sarah + Barksdale","screen_name":"SBarksway","location":"","description":"Educator + \ud83d\udcda Researcher \u270d\ud83c\udffb Instructional Design \ud83d\udc69\u200d\ud83c\udfa8 + PhD Cand.\u2615\ufe0f Learning Technologies \ud83d\udcbb Adventurer & Travelholic + \ud83c\udfd4\ufe0f \ud83d\udc99: #edtech #CSforALL #teachered #pd","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":329,"friends_count":480,"listed_count":5,"created_at":"Fri + Sep 15 17:02:07 +0000 2017","favourites_count":2160,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":428,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/908737706699710464\/1506899531","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:14:09 +0000 2019","id":1187477403137740801,"id_str":"1187477403137740801","full_text":"Feeling + inspired at #aect19inspired! https:\/\/t.co\/GqMVugSPza","truncated":false,"display_text_range":[0,36],"entities":{"hashtags":[{"text":"aect19inspired","indices":[20,35]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187477316814815233,"id_str":"1187477316814815233","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrEU_-UwAEDaZL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrEU_-UwAEDaZL.jpg","url":"https:\/\/t.co\/GqMVugSPza","display_url":"pic.twitter.com\/GqMVugSPza","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187477403137740801\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187477316814815233,"id_str":"1187477316814815233","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrEU_-UwAEDaZL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrEU_-UwAEDaZL.jpg","url":"https:\/\/t.co\/GqMVugSPza","display_url":"pic.twitter.com\/GqMVugSPza","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187477403137740801\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187477316802207746,"id_str":"1187477316802207746","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrEU_7UYAIc00G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrEU_7UYAIc00G.jpg","url":"https:\/\/t.co\/GqMVugSPza","display_url":"pic.twitter.com\/GqMVugSPza","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187477403137740801\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187477319515901953,"id_str":"1187477319515901953","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrEVKCUEAEEwVo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrEVKCUEAEEwVo.jpg","url":"https:\/\/t.co\/GqMVugSPza","display_url":"pic.twitter.com\/GqMVugSPza","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187477403137740801\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":887750209098309633,"id_str":"887750209098309633","name":"Kristina + Schmid","screen_name":"schmik7","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":21,"listed_count":0,"created_at":"Wed + Jul 19 19:05:18 +0000 2017","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1007818313303388160\/lj4vJiuG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1007818313303388160\/lj4vJiuG_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 20:08:37 +0000 2019","id":1187460911721664517,"id_str":"1187460911721664517","full_text":"Looking + forward to inspiring you to try out some ideas and you get to play with a + new card game. See you at 4 in Room 8. #aect19inspired #gamification https:\/\/t.co\/fD9rJNzueg","truncated":false,"display_text_range":[0,150],"entities":{"hashtags":[{"text":"aect19inspired","indices":[121,136]},{"text":"gamification","indices":[137,150]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/fD9rJNzueg","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187458740267696135","display_url":"twitter.com\/LearnEngage\/st\u2026","indices":[151,174]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":111391715,"id_str":"111391715","name":"Valary + Oleinik","screen_name":"valarywithawhy","location":"New York, NY","description":"speaker + | engager of learners | gamifier of things | unleasher of creativity | geek + | writer | queriest","url":"https:\/\/t.co\/5XjhvhYTqb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5XjhvhYTqb","expanded_url":"http:\/\/www.valarywithawhy.com","display_url":"valarywithawhy.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1251,"friends_count":1550,"listed_count":60,"created_at":"Thu + Feb 04 19:24:07 +0000 2010","favourites_count":9041,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4317,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111391715\/1454624226","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187458740267696135,"quoted_status_id_str":"1187458740267696135","quoted_status_permalink":{"url":"https:\/\/t.co\/fD9rJNzueg","expanded":"https:\/\/twitter.com\/LearnEngage\/status\/1187458740267696135","display":"twitter.com\/LearnEngage\/st\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 20:00:00 +0000 2019","id":1187458740267696135,"id_str":"1187458740267696135","full_text":"Who + doesn''t want more empowered learners? Explore how you can harness Self-Determination + Theory to build curiosity and confidence in your course! Do not miss the Inspire! + Self-Directed Learning session with @valarywithawhy at 4pm! #AECT19 #aect19inspired + @AECT https:\/\/t.co\/F49KFvdHxN","truncated":false,"display_text_range":[0,260],"entities":{"hashtags":[{"text":"AECT19","indices":[231,238]},{"text":"aect19inspired","indices":[239,254]}],"symbols":[],"user_mentions":[{"screen_name":"valarywithawhy","name":"Valary + Oleinik","id":111391715,"id_str":"111391715","indices":[207,222]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[255,260]}],"urls":[],"media":[{"id":1187125227488272389,"id_str":"1187125227488272389","indices":[261,284],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmEGtBX4AUACg6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmEGtBX4AUACg6.jpg","url":"https:\/\/t.co\/F49KFvdHxN","display_url":"pic.twitter.com\/F49KFvdHxN","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187458740267696135\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":1920,"h":1440,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187125227488272389,"id_str":"1187125227488272389","indices":[261,284],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmEGtBX4AUACg6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmEGtBX4AUACg6.jpg","url":"https:\/\/t.co\/F49KFvdHxN","display_url":"pic.twitter.com\/F49KFvdHxN","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187458740267696135\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":1920,"h":1440,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:34:57 +0000 2019","id":1187482636324921345,"id_str":"1187482636324921345","full_text":"RT + @schmik7: Feeling inspired at #aect19inspired! https:\/\/t.co\/GqMVugSPza","truncated":false,"display_text_range":[0,73],"entities":{"hashtags":[{"text":"aect19inspired","indices":[33,48]}],"symbols":[],"user_mentions":[{"screen_name":"schmik7","name":"Kristina + Schmid","id":887750209098309633,"id_str":"887750209098309633","indices":[3,11]}],"urls":[],"media":[{"id":1187477316814815233,"id_str":"1187477316814815233","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrEU_-UwAEDaZL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrEU_-UwAEDaZL.jpg","url":"https:\/\/t.co\/GqMVugSPza","display_url":"pic.twitter.com\/GqMVugSPza","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187477403137740801\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1187477403137740801,"source_status_id_str":"1187477403137740801","source_user_id":887750209098309633,"source_user_id_str":"887750209098309633"}]},"extended_entities":{"media":[{"id":1187477316814815233,"id_str":"1187477316814815233","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrEU_-UwAEDaZL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrEU_-UwAEDaZL.jpg","url":"https:\/\/t.co\/GqMVugSPza","display_url":"pic.twitter.com\/GqMVugSPza","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187477403137740801\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1187477403137740801,"source_status_id_str":"1187477403137740801","source_user_id":887750209098309633,"source_user_id_str":"887750209098309633","ext_alt_text":null},{"id":1187477316802207746,"id_str":"1187477316802207746","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrEU_7UYAIc00G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrEU_7UYAIc00G.jpg","url":"https:\/\/t.co\/GqMVugSPza","display_url":"pic.twitter.com\/GqMVugSPza","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187477403137740801\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1187477403137740801,"source_status_id_str":"1187477403137740801","source_user_id":887750209098309633,"source_user_id_str":"887750209098309633","ext_alt_text":null},{"id":1187477319515901953,"id_str":"1187477319515901953","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrEVKCUEAEEwVo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrEVKCUEAEEwVo.jpg","url":"https:\/\/t.co\/GqMVugSPza","display_url":"pic.twitter.com\/GqMVugSPza","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187477403137740801\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"source_status_id":1187477403137740801,"source_status_id_str":"1187477403137740801","source_user_id":887750209098309633,"source_user_id_str":"887750209098309633","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:14:09 +0000 2019","id":1187477403137740801,"id_str":"1187477403137740801","full_text":"Feeling + inspired at #aect19inspired! https:\/\/t.co\/GqMVugSPza","truncated":false,"display_text_range":[0,36],"entities":{"hashtags":[{"text":"aect19inspired","indices":[20,35]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187477316814815233,"id_str":"1187477316814815233","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrEU_-UwAEDaZL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrEU_-UwAEDaZL.jpg","url":"https:\/\/t.co\/GqMVugSPza","display_url":"pic.twitter.com\/GqMVugSPza","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187477403137740801\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187477316814815233,"id_str":"1187477316814815233","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrEU_-UwAEDaZL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrEU_-UwAEDaZL.jpg","url":"https:\/\/t.co\/GqMVugSPza","display_url":"pic.twitter.com\/GqMVugSPza","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187477403137740801\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187477316802207746,"id_str":"1187477316802207746","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrEU_7UYAIc00G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrEU_7UYAIc00G.jpg","url":"https:\/\/t.co\/GqMVugSPza","display_url":"pic.twitter.com\/GqMVugSPza","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187477403137740801\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187477319515901953,"id_str":"1187477319515901953","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrEVKCUEAEEwVo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrEVKCUEAEEwVo.jpg","url":"https:\/\/t.co\/GqMVugSPza","display_url":"pic.twitter.com\/GqMVugSPza","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187477403137740801\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":887750209098309633,"id_str":"887750209098309633","name":"Kristina + Schmid","screen_name":"schmik7","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":21,"listed_count":0,"created_at":"Wed + Jul 19 19:05:18 +0000 2017","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1007818313303388160\/lj4vJiuG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1007818313303388160\/lj4vJiuG_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 19:06:56 +0000 2019","id":1187445385603637249,"id_str":"1187445385603637249","full_text":"Fourth + day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 @khebrat_edu + @S_Meemar @onaizahedu round tables sessions https:\/\/t.co\/zn9pMmBAyt","truncated":false,"display_text_range":[0,124],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]},{"text":"AECTech2019","indices":[27,39]},{"text":"aect19inspired","indices":[40,55]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[56,67]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[68,80]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[81,90]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[91,102]}],"urls":[],"media":[{"id":1187445377806389249,"id_str":"1187445377806389249","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqnR55UUAEVpIH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqnR55UUAEVpIH.jpg","url":"https:\/\/t.co\/zn9pMmBAyt","display_url":"pic.twitter.com\/zn9pMmBAyt","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187445385603637249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187445377806389249,"id_str":"1187445377806389249","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqnR55UUAEVpIH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqnR55UUAEVpIH.jpg","url":"https:\/\/t.co\/zn9pMmBAyt","display_url":"pic.twitter.com\/zn9pMmBAyt","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187445385603637249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187445377789620224,"id_str":"1187445377789620224","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqnR51UcAA3KaK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqnR51UcAA3KaK.jpg","url":"https:\/\/t.co\/zn9pMmBAyt","display_url":"pic.twitter.com\/zn9pMmBAyt","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187445385603637249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187445378234191872,"id_str":"1187445378234191872","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqnR7fUEAAa4aX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqnR7fUEAAa4aX.jpg","url":"https:\/\/t.co\/zn9pMmBAyt","display_url":"pic.twitter.com\/zn9pMmBAyt","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187445385603637249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187098337842843648,"in_reply_to_status_id_str":"1187098337842843648","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 20:34:05 +0000 2019","id":1187467319498297348,"id_str":"1187467319498297348","full_text":"This + is cool! #aect19 https:\/\/t.co\/fKZEqfZUAP","truncated":false,"display_text_range":[0,21],"entities":{"hashtags":[{"text":"aect19","indices":[14,21]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187467274015268865,"id_str":"1187467274015268865","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq7MboU4AEM4uq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq7MboU4AEM4uq.jpg","url":"https:\/\/t.co\/fKZEqfZUAP","display_url":"pic.twitter.com\/fKZEqfZUAP","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187467319498297348\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187467274015268865,"id_str":"1187467274015268865","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq7MboU4AEM4uq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq7MboU4AEM4uq.jpg","url":"https:\/\/t.co\/fKZEqfZUAP","display_url":"pic.twitter.com\/fKZEqfZUAP","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187467319498297348\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":27,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:28:01 +0000 2019","id":1187480890944811009,"id_str":"1187480890944811009","full_text":"RT + @KuiXieOSU: O-H-I-O #buckeyes are rocking and rolling at #aect19 conference + Las Vegas @VVongkulluksn @Nelsmich @hawk_nathanA @ShengBo_Ch\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"buckeyes","indices":[23,32]},{"text":"aect19","indices":[60,67]}],"symbols":[],"user_mentions":[{"screen_name":"VVongkulluksn","name":"Vanessa + Vongkulluksn","id":859192619582226432,"id_str":"859192619582226432","indices":[89,103]},{"screen_name":"Nelsmich","name":"Mike + Nelson","id":51712418,"id_str":"51712418","indices":[104,113]},{"screen_name":"hawk_nathanA","name":"Nathan + A Hawk","id":492536804,"id_str":"492536804","indices":[114,127]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":866326285999591426,"id_str":"866326285999591426","name":"Digital + Learning Lab","screen_name":"DLResearchLab","location":"Columbus, OH","description":"In + Research Laboratory for Digital Learning, we strive to understand how students + learn and how to design and integrate technology to improve student success.","url":"https:\/\/t.co\/uuHiL3zY6O","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uuHiL3zY6O","expanded_url":"http:\/\/dl.ehe.osu.edu","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":523,"friends_count":211,"listed_count":8,"created_at":"Sun + May 21 16:14:16 +0000 2017","favourites_count":190,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":277,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/866338092130742273\/WzV6Mzgv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/866338092130742273\/WzV6Mzgv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/866326285999591426\/1495384056","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:17:30 +0000 2019","id":1187478245119164417,"id_str":"1187478245119164417","full_text":"O-H-I-O + #buckeyes are rocking and rolling at #aect19 conference Las Vegas @VVongkulluksn + @Nelsmich @hawk_nathanA @ShengBo_Chen @caranorth11 @DLResearchLab @OSUehe + https:\/\/t.co\/nYG7zo4su3","truncated":false,"display_text_range":[0,162],"entities":{"hashtags":[{"text":"buckeyes","indices":[8,17]},{"text":"aect19","indices":[45,52]}],"symbols":[],"user_mentions":[{"screen_name":"VVongkulluksn","name":"Vanessa + Vongkulluksn","id":859192619582226432,"id_str":"859192619582226432","indices":[74,88]},{"screen_name":"Nelsmich","name":"Mike + Nelson","id":51712418,"id_str":"51712418","indices":[89,98]},{"screen_name":"hawk_nathanA","name":"Nathan + A Hawk","id":492536804,"id_str":"492536804","indices":[99,112]},{"screen_name":"ShengBo_Chen","name":"Sheng-Bo + Chen","id":1341770169669070849,"id_str":"1341770169669070849","indices":[113,126]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[127,139]},{"screen_name":"DLResearchLab","name":"Digital + Learning Lab","id":866326285999591426,"id_str":"866326285999591426","indices":[140,154]},{"screen_name":"OSUehe","name":"Ohio + State Education and Human Ecology","id":48771513,"id_str":"48771513","indices":[155,162]}],"urls":[],"media":[{"id":1187478239502954502,"id_str":"1187478239502954502","indices":[163,186],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrFKtQUcAYh_Ey.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrFKtQUcAYh_Ey.jpg","url":"https:\/\/t.co\/nYG7zo4su3","display_url":"pic.twitter.com\/nYG7zo4su3","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187478245119164417\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187478239502954502,"id_str":"1187478239502954502","indices":[163,186],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrFKtQUcAYh_Ey.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrFKtQUcAYh_Ey.jpg","url":"https:\/\/t.co\/nYG7zo4su3","display_url":"pic.twitter.com\/nYG7zo4su3","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1187478245119164417\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:35:17 +0000 2019","id":1187482719900569601,"id_str":"1187482719900569601","full_text":"RT + @ericpaulrogers: \"We do a pretty good job of teaching conceptual and procedural + knowledge in higher education. But not conditional knowl\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ericpaulrogers","name":"Eric + Paul Rogers","id":51775264,"id_str":"51775264","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 21:12:43 +0000 2019","id":1187477040624103424,"id_str":"1187477040624103424","full_text":"\"We + do a pretty good job of teaching conceptual and procedural knowledge in higher + education. But not conditional knowledge and functional expertise.\" #aect19inspired + #aect19 #aect2019 https:\/\/t.co\/jSiod2moZg","truncated":false,"display_text_range":[0,184],"entities":{"hashtags":[{"text":"aect19inspired","indices":[151,166]},{"text":"aect19","indices":[167,174]},{"text":"aect2019","indices":[175,184]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187477034840162304,"id_str":"1187477034840162304","indices":[185,208],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrEEliVAAAC-QX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrEEliVAAAC-QX.jpg","url":"https:\/\/t.co\/jSiod2moZg","display_url":"pic.twitter.com\/jSiod2moZg","expanded_url":"https:\/\/twitter.com\/ericpaulrogers\/status\/1187477040624103424\/photo\/1","type":"photo","sizes":{"large":{"w":970,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":568,"h":1200,"resize":"fit"},"small":{"w":322,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187477034840162304,"id_str":"1187477034840162304","indices":[185,208],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrEEliVAAAC-QX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrEEliVAAAC-QX.jpg","url":"https:\/\/t.co\/jSiod2moZg","display_url":"pic.twitter.com\/jSiod2moZg","expanded_url":"https:\/\/twitter.com\/ericpaulrogers\/status\/1187477040624103424\/photo\/1","type":"photo","sizes":{"large":{"w":970,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":568,"h":1200,"resize":"fit"},"small":{"w":322,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":51775264,"id_str":"51775264","name":"Eric + Paul Rogers","screen_name":"ericpaulrogers","location":"Salt Lake City, UT","description":"(he, + him) aspiring stone catcher | ally\ud83c\udf08","url":"https:\/\/t.co\/xhUZs9RX55","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xhUZs9RX55","expanded_url":"https:\/\/ericpaulrogers.com","display_url":"ericpaulrogers.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":361,"friends_count":1232,"listed_count":2,"created_at":"Sun + Jun 28 16:49:05 +0000 2009","favourites_count":27579,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3148,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1478471925911339008\/2wRBAyhT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1478471925911339008\/2wRBAyhT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/51775264\/1648702096","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:36:52 +0000 2019","id":1187483119231700993,"id_str":"1187483119231700993","full_text":"Darron + Lamkin demonstrating Engineering design concepts and 4 forces of flights #EmergingTechShowcase + #aect19inspired https:\/\/t.co\/c3IbeaiZCT","truncated":false,"display_text_range":[0,118],"entities":{"hashtags":[{"text":"EmergingTechShowcase","indices":[81,102]},{"text":"aect19inspired","indices":[103,118]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187483111228985344,"id_str":"1187483111228985344","indices":[119,142],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrJmR2UUAAiX5J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrJmR2UUAAiX5J.jpg","url":"https:\/\/t.co\/c3IbeaiZCT","display_url":"pic.twitter.com\/c3IbeaiZCT","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187483119231700993\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187483111228985344,"id_str":"1187483111228985344","indices":[119,142],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrJmR2UUAAiX5J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrJmR2UUAAiX5J.jpg","url":"https:\/\/t.co\/c3IbeaiZCT","display_url":"pic.twitter.com\/c3IbeaiZCT","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187483119231700993\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1187483111233187840,"id_str":"1187483111233187840","indices":[119,142],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrJmR3UcAAvk59.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrJmR3UcAAvk59.jpg","url":"https:\/\/t.co\/c3IbeaiZCT","display_url":"pic.twitter.com\/c3IbeaiZCT","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187483119231700993\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1187483111233212416,"id_str":"1187483111233212416","indices":[119,142],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrJmR3U0AAwNVl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrJmR3U0AAwNVl.jpg","url":"https:\/\/t.co\/c3IbeaiZCT","display_url":"pic.twitter.com\/c3IbeaiZCT","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187483119231700993\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187483111354855424,"id_str":"1187483111354855424","indices":[119,142],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrJmSUU8AAnbE2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrJmSUU8AAnbE2.jpg","url":"https:\/\/t.co\/c3IbeaiZCT","display_url":"pic.twitter.com\/c3IbeaiZCT","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187483119231700993\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 19:58:15 +0000 2019","id":1187458299291156481,"id_str":"1187458299291156481","full_text":"RT + @C21U: Congratulations to all who contributed to @GeorgiaTech''s Commission + on Creating the Next in Education (CNE) initiative. The CNE w\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"C21U","name":"Center + for 21st Century Universities (C21U)","id":252132568,"id_str":"252132568","indices":[3,8]},{"screen_name":"GeorgiaTech","name":"Georgia + Tech","id":19080617,"id_str":"19080617","indices":[52,64]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 19:51:35 +0000 2019","id":1187456623616413696,"id_str":"1187456623616413696","full_text":"Congratulations + to all who contributed to @GeorgiaTech''s Commission on Creating the Next + in Education (CNE) initiative. The CNE was awarded the #AECT19 Annual Achievement + Award at this year''s @AECT Convention. https:\/\/t.co\/EkFCOcXDHm","truncated":false,"display_text_range":[0,209],"entities":{"hashtags":[{"text":"AECT19","indices":[144,151]}],"symbols":[],"user_mentions":[{"screen_name":"GeorgiaTech","name":"Georgia + Tech","id":19080617,"id_str":"19080617","indices":[42,54]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[192,197]}],"urls":[],"media":[{"id":1187456616238632961,"id_str":"1187456616238632961","indices":[210,233],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqxgEUXUAEtRTM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqxgEUXUAEtRTM.png","url":"https:\/\/t.co\/EkFCOcXDHm","display_url":"pic.twitter.com\/EkFCOcXDHm","expanded_url":"https:\/\/twitter.com\/C21U\/status\/1187456623616413696\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":800,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187456616238632961,"id_str":"1187456616238632961","indices":[210,233],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqxgEUXUAEtRTM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqxgEUXUAEtRTM.png","url":"https:\/\/t.co\/EkFCOcXDHm","display_url":"pic.twitter.com\/EkFCOcXDHm","expanded_url":"https:\/\/twitter.com\/C21U\/status\/1187456623616413696\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":800,"resize":"fit"},"medium":{"w":800,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":252132568,"id_str":"252132568","name":"Center + for 21st Century Universities (C21U)","screen_name":"C21U","location":"Atlanta, + GA","description":"The Center for 21st Century Universities (C21U) serves + as a catalyst for education innovation at Georgia Tech.","url":"https:\/\/t.co\/b50lnB4zNB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/b50lnB4zNB","expanded_url":"http:\/\/www.c21u.gatech.edu","display_url":"c21u.gatech.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1747,"friends_count":1381,"listed_count":160,"created_at":"Mon + Feb 14 15:20:29 +0000 2011","favourites_count":2363,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9047,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C4CBD3","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471168391322943493\/Y-3C-JlW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471168391322943493\/Y-3C-JlW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/252132568\/1541166473","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"005A8C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:11:34 +0000 2019","id":1187476753482043394,"id_str":"1187476753482043394","full_text":"Connecting + at #aect19inspired! https:\/\/t.co\/2uJdTw21AY","truncated":false,"display_text_range":[0,30],"entities":{"hashtags":[{"text":"aect19inspired","indices":[14,29]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187476605934813187,"id_str":"1187476605934813187","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrDrnvUwAMShT8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrDrnvUwAMShT8.jpg","url":"https:\/\/t.co\/2uJdTw21AY","display_url":"pic.twitter.com\/2uJdTw21AY","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187476753482043394\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187476605934813187,"id_str":"1187476605934813187","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrDrnvUwAMShT8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrDrnvUwAMShT8.jpg","url":"https:\/\/t.co\/2uJdTw21AY","display_url":"pic.twitter.com\/2uJdTw21AY","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187476753482043394\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null},{"id":1187476606752739328,"id_str":"1187476606752739328","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrDrqyVUAA9uUS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrDrqyVUAA9uUS.jpg","url":"https:\/\/t.co\/2uJdTw21AY","display_url":"pic.twitter.com\/2uJdTw21AY","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187476753482043394\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}},"ext_alt_text":null},{"id":1187476606786232322,"id_str":"1187476606786232322","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrDrq6UYAIV6TJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrDrq6UYAIV6TJ.jpg","url":"https:\/\/t.co\/2uJdTw21AY","display_url":"pic.twitter.com\/2uJdTw21AY","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187476753482043394\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187476606765301763,"id_str":"1187476606765301763","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrDrq1VAAMkCeJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrDrq1VAAMkCeJ.jpg","url":"https:\/\/t.co\/2uJdTw21AY","display_url":"pic.twitter.com\/2uJdTw21AY","expanded_url":"https:\/\/twitter.com\/schmik7\/status\/1187476753482043394\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":766,"resize":"fit"},"large":{"w":1024,"h":766,"resize":"fit"},"small":{"w":680,"h":509,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":887750209098309633,"id_str":"887750209098309633","name":"Kristina + Schmid","screen_name":"schmik7","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":21,"listed_count":0,"created_at":"Wed + Jul 19 19:05:18 +0000 2017","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1007818313303388160\/lj4vJiuG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1007818313303388160\/lj4vJiuG_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 19:43:49 +0000 2019","id":1187454670421184512,"id_str":"1187454670421184512","full_text":"#aect19inspire + #aect2019 If you haven\u2019t yet been to @TacosElGordo_ then drop whatever + you\u2019re doing and go right now. So good.","truncated":false,"display_text_range":[0,125],"entities":{"hashtags":[{"text":"aect19inspire","indices":[0,14]},{"text":"aect2019","indices":[15,24]}],"symbols":[],"user_mentions":[{"screen_name":"TacosElGordo_","name":"Tacos + El Gordo","id":158111054,"id_str":"158111054","indices":[52,66]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 20:15:30 +0000 2019","id":1187462640206958592,"id_str":"1187462640206958592","full_text":"#aect19 + Tip #945 - post incessantly on twitter about your session tomorrow morning + and how great it will be. Then sleep in.","truncated":false,"display_text_range":[0,123],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 18:42:22 +0000 2019","id":1187439202276802560,"id_str":"1187439202276802560","full_text":"@JennWillTeach + lets look at this as an alternate article to . use for class next semester! (Tagging + you to talk later!) \n#aect19inspired conversation! https:\/\/t.co\/CtF75CoFpE","truncated":false,"display_text_range":[0,151],"entities":{"hashtags":[{"text":"aect19inspired","indices":[122,137]}],"symbols":[],"user_mentions":[{"screen_name":"JennWillTeach","name":"Jennifer + Williams #DisruptTexts","id":61522079,"id_str":"61522079","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/CtF75CoFpE","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1187431469687271425","display_url":"twitter.com\/hodgesc\/status\u2026","indices":[152,175]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":61522079,"in_reply_to_user_id_str":"61522079","in_reply_to_screen_name":"JennWillTeach","user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187431469687271425,"quoted_status_id_str":"1187431469687271425","quoted_status_permalink":{"url":"https:\/\/t.co\/CtF75CoFpE","expanded":"https:\/\/twitter.com\/hodgesc\/status\/1187431469687271425","display":"twitter.com\/hodgesc\/status\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 18:11:38 +0000 2019","id":1187431469687271425,"id_str":"1187431469687271425","full_text":"\"The + Substitution Augmentation Modification Redefinition (SAMR) Model: a Critical + Review and Suggestions for its Use\" in @AECTTechTrends https:\/\/t.co\/h2laRcFXjq + @techedges @DrTerriC #AECTech2019","truncated":false,"display_text_range":[0,195],"entities":{"hashtags":[{"text":"AECTech2019","indices":[183,195]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[121,136]},{"screen_name":"techedges","name":"Dr. + Joan E. Hughes","id":19613812,"id_str":"19613812","indices":[162,172]},{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[173,182]}],"urls":[{"url":"https:\/\/t.co\/h2laRcFXjq","expanded_url":"https:\/\/rdcu.be\/bVb2V","display_url":"rdcu.be\/bVb2V","indices":[138,161]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:16:34 +0000 2019","id":1187478008602361856,"id_str":"1187478008602361856","full_text":"#Gamification + and #VR session @ @aect happening now. #aect19 #aect19 #aect19inspired @classcraftgame + https:\/\/t.co\/zmiaF4n9ia","truncated":false,"display_text_range":[0,100],"entities":{"hashtags":[{"text":"Gamification","indices":[0,13]},{"text":"VR","indices":[18,21]},{"text":"aect19","indices":[53,60]},{"text":"aect19","indices":[61,68]},{"text":"aect19inspired","indices":[69,84]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[32,37]},{"screen_name":"classcraftgame","name":"Classcraft","id":1131525116,"id_str":"1131525116","indices":[85,100]}],"urls":[],"media":[{"id":1187477996648558594,"id_str":"1187477996648558594","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrE8kjUcAIJhLO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrE8kjUcAIJhLO.jpg","url":"https:\/\/t.co\/zmiaF4n9ia","display_url":"pic.twitter.com\/zmiaF4n9ia","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187478008602361856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":702,"h":1200,"resize":"fit"},"large":{"w":828,"h":1416,"resize":"fit"},"small":{"w":398,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187477996648558594,"id_str":"1187477996648558594","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrE8kjUcAIJhLO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrE8kjUcAIJhLO.jpg","url":"https:\/\/t.co\/zmiaF4n9ia","display_url":"pic.twitter.com\/zmiaF4n9ia","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187478008602361856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":702,"h":1200,"resize":"fit"},"large":{"w":828,"h":1416,"resize":"fit"},"small":{"w":398,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 19:52:31 +0000 2019","id":1187456857712934912,"id_str":"1187456857712934912","full_text":"It + was fun to meet @techedges face-to-face today - also very pleased she chose + to visit our roundtable! #aect19inspired","truncated":false,"display_text_range":[0,119],"entities":{"hashtags":[{"text":"aect19inspired","indices":[104,119]}],"symbols":[],"user_mentions":[{"screen_name":"techedges","name":"Dr. + Joan E. Hughes","id":19613812,"id_str":"19613812","indices":[19,29]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 19:30:00 +0000 2019","id":1187451190952546306,"id_str":"1187451190952546306","full_text":"Continuing + the dialogue from a presentation last year, the \"It''s a Win-Win!\" panel + will discuss how four schools approached course designs through a gameshow + format and reveal lessons learned! +50 points for likes and RTs! #AECT19 #instructionaldesign + https:\/\/t.co\/xCVN82c6ZZ","truncated":false,"display_text_range":[0,251],"entities":{"hashtags":[{"text":"AECT19","indices":[223,230]},{"text":"instructionaldesign","indices":[231,251]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187118769002504192,"id_str":"1187118769002504192","indices":[252,275],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl-OxSX4AANnrO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl-OxSX4AANnrO.jpg","url":"https:\/\/t.co\/xCVN82c6ZZ","display_url":"pic.twitter.com\/xCVN82c6ZZ","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187451190952546306\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":640,"resize":"fit"},"small":{"w":680,"h":340,"resize":"fit"},"medium":{"w":1200,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187118769002504192,"id_str":"1187118769002504192","indices":[252,275],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl-OxSX4AANnrO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl-OxSX4AANnrO.jpg","url":"https:\/\/t.co\/xCVN82c6ZZ","display_url":"pic.twitter.com\/xCVN82c6ZZ","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187451190952546306\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":640,"resize":"fit"},"small":{"w":680,"h":340,"resize":"fit"},"medium":{"w":1200,"h":600,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:29:08 +0000 2019","id":1187481170688331777,"id_str":"1187481170688331777","full_text":"RT + @tutaleni: We are almost ready! If you\u2019re showing come set up. #aect19inspired + https:\/\/t.co\/BBwfBnUQpo","truncated":false,"display_text_range":[0,105],"entities":{"hashtags":[{"text":"aect19inspired","indices":[66,81]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]}],"urls":[],"media":[{"id":1187471961854640130,"id_str":"1187471961854640130","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq_dTMVAAIvfTQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq_dTMVAAIvfTQ.jpg","url":"https:\/\/t.co\/BBwfBnUQpo","display_url":"pic.twitter.com\/BBwfBnUQpo","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187471969328873478\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"source_status_id":1187471969328873478,"source_status_id_str":"1187471969328873478","source_user_id":48223678,"source_user_id_str":"48223678"}]},"extended_entities":{"media":[{"id":1187471961854640130,"id_str":"1187471961854640130","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq_dTMVAAIvfTQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq_dTMVAAIvfTQ.jpg","url":"https:\/\/t.co\/BBwfBnUQpo","display_url":"pic.twitter.com\/BBwfBnUQpo","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187471969328873478\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"source_status_id":1187471969328873478,"source_status_id_str":"1187471969328873478","source_user_id":48223678,"source_user_id_str":"48223678","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 20:52:34 +0000 2019","id":1187471969328873478,"id_str":"1187471969328873478","full_text":"We + are almost ready! If you\u2019re showing come set up. #aect19inspired https:\/\/t.co\/BBwfBnUQpo","truncated":false,"display_text_range":[0,67],"entities":{"hashtags":[{"text":"aect19inspired","indices":[52,67]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187471961854640130,"id_str":"1187471961854640130","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq_dTMVAAIvfTQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq_dTMVAAIvfTQ.jpg","url":"https:\/\/t.co\/BBwfBnUQpo","display_url":"pic.twitter.com\/BBwfBnUQpo","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187471969328873478\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187471961854640130,"id_str":"1187471961854640130","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq_dTMVAAIvfTQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq_dTMVAAIvfTQ.jpg","url":"https:\/\/t.co\/BBwfBnUQpo","display_url":"pic.twitter.com\/BBwfBnUQpo","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187471969328873478\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:05:23 +0000 2019","id":1187475193595195395,"id_str":"1187475193595195395","full_text":"#aect19 + Tip #42 - While presenting, make yourself look smarter by pausing to think + and adjust your glasses in the middle of your presentation.","truncated":false,"display_text_range":[0,142],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:28:55 +0000 2019","id":1187481117986873368,"id_str":"1187481117986873368","full_text":"RT + @ISLT_FSU: 2:00 pm - 2:50 pm Emerging Technology Showcase\nT04-Designing Function + Fighters: A digital game-based learning experience for\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 20:01:08 +0000 2019","id":1187459027711778816,"id_str":"1187459027711778816","full_text":"2:00 + pm - 2:50 pm Emerging Technology Showcase\nT04-Designing Function Fighters: + A digital game-based learning experience for algebraic thinking \u2013 Ginny + L. Smith #AECT19 #Math #Games #EdTech #education #Learning #Algebra #FSU #FSUCOE + #ISLT https:\/\/t.co\/rQxKittCgE","truncated":false,"display_text_range":[0,238],"entities":{"hashtags":[{"text":"AECT19","indices":[161,168]},{"text":"Math","indices":[169,174]},{"text":"Games","indices":[175,181]},{"text":"EdTech","indices":[182,189]},{"text":"education","indices":[190,200]},{"text":"Learning","indices":[201,210]},{"text":"Algebra","indices":[211,219]},{"text":"FSU","indices":[220,224]},{"text":"FSUCOE","indices":[225,232]},{"text":"ISLT","indices":[233,238]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187459025950138373,"id_str":"1187459025950138373","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqzsVMW4AUypcg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqzsVMW4AUypcg.jpg","url":"https:\/\/t.co\/rQxKittCgE","display_url":"pic.twitter.com\/rQxKittCgE","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187459027711778816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187459025950138373,"id_str":"1187459025950138373","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqzsVMW4AUypcg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqzsVMW4AUypcg.jpg","url":"https:\/\/t.co\/rQxKittCgE","display_url":"pic.twitter.com\/rQxKittCgE","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187459027711778816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 20:03:08 +0000 2019","id":1187459529295839233,"id_str":"1187459529295839233","full_text":"In + less than an hour at 2 pm in Conference Room 4, We''re holding Educational + Technology, Social Justice & Critical Whiteness panel. Please join us + for the discussion! #aect19 #aectgsa https:\/\/t.co\/z7lBH2lwdX","truncated":false,"display_text_range":[0,188],"entities":{"hashtags":[{"text":"aect19","indices":[172,179]},{"text":"aectgsa","indices":[180,188]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187459519565066241,"id_str":"1187459519565066241","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq0JEDU8AENHYX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq0JEDU8AENHYX.jpg","url":"https:\/\/t.co\/z7lBH2lwdX","display_url":"pic.twitter.com\/z7lBH2lwdX","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1187459529295839233\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187459519565066241,"id_str":"1187459519565066241","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq0JEDU8AENHYX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq0JEDU8AENHYX.jpg","url":"https:\/\/t.co\/z7lBH2lwdX","display_url":"pic.twitter.com\/z7lBH2lwdX","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1187459529295839233\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14994538,"id_str":"14994538","name":"Kzenovka","screen_name":"kzenovka","location":"Metaverse","description":"educator, + coolhunter, and sometimes puppetmaster. Metagame Book Club, Games & Sim Network + and Inevitable Instructors","url":"https:\/\/t.co\/SN1thrlVqD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SN1thrlVqD","expanded_url":"https:\/\/sites.google.com\/site\/metagamebookclub\/","display_url":"sites.google.com\/site\/metagameb\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1338,"friends_count":3152,"listed_count":228,"created_at":"Tue + Jun 03 16:35:29 +0000 2008","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15007,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14994538\/1436550079","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:32:38 +0000 2019","id":1187482052481843200,"id_str":"1187482052481843200","full_text":"Who + knew Newton\u2019s law could be this fun? #AECT19inspired #EmergingTechShowcase + https:\/\/t.co\/r8wJlakPFI","truncated":false,"display_text_range":[0,78],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[41,56]},{"text":"EmergingTechShowcase","indices":[57,78]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187482047473782784,"id_str":"1187482047473782784","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","url":"https:\/\/t.co\/r8wJlakPFI","display_url":"pic.twitter.com\/r8wJlakPFI","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187482052481843200\/photo\/1","type":"photo","sizes":{"large":{"w":1152,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187482047473782784,"id_str":"1187482047473782784","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrIoXDUEAAgUbv.jpg","url":"https:\/\/t.co\/r8wJlakPFI","display_url":"pic.twitter.com\/r8wJlakPFI","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187482052481843200\/photo\/1","type":"photo","sizes":{"large":{"w":1152,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 19:50:03 +0000 2019","id":1187456237216157696,"id_str":"1187456237216157696","full_text":"2:00 + pm - 2:50 pm in Conference Rm 13 (354). Building Personal Learning Network + (PLN) through Twitter: An Activity System Analysis of Twitter Conference Backchannel + \u2013 Hajeen Choi #AECT19 #FSU #FSUCOE #ISLT","truncated":false,"display_text_range":[0,205],"entities":{"hashtags":[{"text":"AECT19","indices":[179,186]},{"text":"FSU","indices":[187,191]},{"text":"FSUCOE","indices":[192,199]},{"text":"ISLT","indices":[200,205]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:39:23 +0000 2019","id":1187483751556640768,"id_str":"1187483751556640768","full_text":"RT + @LearnEngage: Ever wonder how to #sketchnote a presentation? Pros from @UNTsocial + and @ECNUER hope to show you how at the Inspire! Sketc\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"sketchnote","indices":[36,47]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]},{"screen_name":"UNTsocial","name":"University + of North Texas","id":18462994,"id_str":"18462994","indices":[74,84]},{"screen_name":"ECNUER","name":"East + China Normal University","id":1732892550,"id_str":"1732892550","indices":[89,96]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:00:00 +0000 2019","id":1187398342889754625,"id_str":"1187398342889754625","full_text":"Ever + wonder how to #sketchnote a presentation? Pros from @UNTsocial and @ECNUER + hope to show you how at the Inspire! Sketchnoting session at 3pm! Come learn + with us! #AECT19 #aect19inspired @AECT https:\/\/t.co\/25zZOVkv2N","truncated":false,"display_text_range":[0,195],"entities":{"hashtags":[{"text":"sketchnote","indices":[19,30]},{"text":"AECT19","indices":[166,173]},{"text":"aect19inspired","indices":[174,189]}],"symbols":[],"user_mentions":[{"screen_name":"UNTsocial","name":"University + of North Texas","id":18462994,"id_str":"18462994","indices":[57,67]},{"screen_name":"ECNUER","name":"East + China Normal University","id":1732892550,"id_str":"1732892550","indices":[72,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[190,195]}],"urls":[],"media":[{"id":1187122528189407235,"id_str":"1187122528189407235","indices":[196,219],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","url":"https:\/\/t.co\/25zZOVkv2N","display_url":"pic.twitter.com\/25zZOVkv2N","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187398342889754625\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187122528189407235,"id_str":"1187122528189407235","indices":[196,219],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","url":"https:\/\/t.co\/25zZOVkv2N","display_url":"pic.twitter.com\/25zZOVkv2N","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187398342889754625\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 20:00:35 +0000 2019","id":1187458888410509312,"id_str":"1187458888410509312","full_text":"RT + @ISLT_FSU: 2:00 pm - 2:50 pm in Conference Rm 13 (354). Building Personal + Learning Network (PLN) through Twitter: An Activity System Ana\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 19:50:03 +0000 2019","id":1187456237216157696,"id_str":"1187456237216157696","full_text":"2:00 + pm - 2:50 pm in Conference Rm 13 (354). Building Personal Learning Network + (PLN) through Twitter: An Activity System Analysis of Twitter Conference Backchannel + \u2013 Hajeen Choi #AECT19 #FSU #FSUCOE #ISLT","truncated":false,"display_text_range":[0,205],"entities":{"hashtags":[{"text":"AECT19","indices":[179,186]},{"text":"FSU","indices":[187,191]},{"text":"FSUCOE","indices":[192,199]},{"text":"ISLT","indices":[200,205]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 20:45:03 +0000 2019","id":1187470080579227652,"id_str":"1187470080579227652","full_text":"3:00 + pm - 3:50 pm at Pavillion 9 (371) Moving Up the Organizational Food Chain: + From Faculty Member to Administrator with #FSU #FSUCOE #ISLT Robert Reiser + and Alison Carr-Chellman, Marcus Childress, Jason Huett & Anthony A. Pina + #AECT19","truncated":false,"display_text_range":[0,240],"entities":{"hashtags":[{"text":"FSU","indices":[122,126]},{"text":"FSUCOE","indices":[127,134]},{"text":"ISLT","indices":[135,140]},{"text":"AECT19","indices":[233,240]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 19:30:43 +0000 2019","id":1187451373496832001,"id_str":"1187451373496832001","full_text":"RT + @LearnEngage: How can you use #podcasts and #ePortfolios in the classroom? + Check out our Instructional Media session today at 1pm in Con\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"podcasts","indices":[33,42]},{"text":"ePortfolios","indices":[47,59]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64769037,"id_str":"64769037","name":"jenn\u03b9\u0493er + engl\u03c5nd","screen_name":"jmenglund03","location":"Settler on Dakota homelands","description":"@UMN_CI + LT PhD Candidate \u2022 @UMNews instructional designer \u2022 @GOGN_OER scholar + \u2022 @femedtech member \u2022 #OEP advocate \u2022 Pronouns: she\/her","url":"https:\/\/t.co\/cjLLex1JDn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cjLLex1JDn","expanded_url":"https:\/\/jenniferenglund.net\/","display_url":"jenniferenglund.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":662,"friends_count":627,"listed_count":72,"created_at":"Tue + Aug 11 17:10:00 +0000 2009","favourites_count":2052,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2918,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B7C8E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64769037\/1500750705","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"452568","profile_sidebar_border_color":"204207","profile_sidebar_fill_color":"060A00","profile_text_color":"618238","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 18:00:00 +0000 2019","id":1187428544290447361,"id_str":"1187428544290447361","full_text":"How + can you use #podcasts and #ePortfolios in the classroom? Check out our Instructional + Media session today at 1pm in Conf Room 8! #AECT19 #learnerengagement https:\/\/t.co\/iMgRHGP4Bl","truncated":false,"display_text_range":[0,158],"entities":{"hashtags":[{"text":"podcasts","indices":[16,25]},{"text":"ePortfolios","indices":[30,42]},{"text":"AECT19","indices":[132,139]},{"text":"learnerengagement","indices":[140,158]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187115652575911938,"id_str":"1187115652575911938","indices":[159,182],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl7ZXsX4AI_THX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl7ZXsX4AI_THX.jpg","url":"https:\/\/t.co\/iMgRHGP4Bl","display_url":"pic.twitter.com\/iMgRHGP4Bl","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187428544290447361\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187115652575911938,"id_str":"1187115652575911938","indices":[159,182],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl7ZXsX4AI_THX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl7ZXsX4AI_THX.jpg","url":"https:\/\/t.co\/iMgRHGP4Bl","display_url":"pic.twitter.com\/iMgRHGP4Bl","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187428544290447361\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 21:35:18 +0000 2019","id":1187482722274406401,"id_str":"1187482722274406401","full_text":"Interesting + session on #VR and #VRLE @AECT #aect #aect19 #aect19inspired https:\/\/t.co\/YxnsnY1oiU","truncated":false,"display_text_range":[0,72],"entities":{"hashtags":[{"text":"VR","indices":[23,26]},{"text":"VRLE","indices":[31,36]},{"text":"aect","indices":[43,48]},{"text":"aect19","indices":[49,56]},{"text":"aect19inspired","indices":[57,72]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[37,42]}],"urls":[],"media":[{"id":1187482701772705793,"id_str":"1187482701772705793","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrJOcgVUAEMvXN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrJOcgVUAEMvXN.jpg","url":"https:\/\/t.co\/YxnsnY1oiU","display_url":"pic.twitter.com\/YxnsnY1oiU","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187482722274406401\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187482701772705793,"id_str":"1187482701772705793","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrJOcgVUAEMvXN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrJOcgVUAEMvXN.jpg","url":"https:\/\/t.co\/YxnsnY1oiU","display_url":"pic.twitter.com\/YxnsnY1oiU","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187482722274406401\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 20:13:26 +0000 2019","id":1187462120612364293,"id_str":"1187462120612364293","full_text":"Fourth + day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 @khebrat_edu + @S_Meemar @onaizahedu Tips and Tricks for Journal Publishing: Advice from + the Editors https:\/\/t.co\/7KvmCFuKDS","truncated":false,"display_text_range":[0,166],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]},{"text":"AECTech2019","indices":[27,39]},{"text":"aect19inspired","indices":[40,55]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[56,67]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[68,80]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[81,90]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[91,102]}],"urls":[],"media":[{"id":1187462115306561537,"id_str":"1187462115306561537","indices":[167,190],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq2gJ8U4AE5QDk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq2gJ8U4AE5QDk.jpg","url":"https:\/\/t.co\/7KvmCFuKDS","display_url":"pic.twitter.com\/7KvmCFuKDS","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187462120612364293\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187462115306561537,"id_str":"1187462115306561537","indices":[167,190],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq2gJ8U4AE5QDk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq2gJ8U4AE5QDk.jpg","url":"https:\/\/t.co\/7KvmCFuKDS","display_url":"pic.twitter.com\/7KvmCFuKDS","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187462120612364293\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187445385603637249,"in_reply_to_status_id_str":"1187445385603637249","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1187430370200961025%2C1187430339444121605%2C1187430290802626560%2C1187429935104823299%2C1187429308878458881%2C1187429273403101185%2C1187428999078797313%2C1187428818702786562%2C1187428544290447361%2C1187428300467118080%2C1187428144699072512%2C1187427423014420482%2C1187427423014420482%2C1187426131164614656%2C1187423427411316737%2C1187423409468137472%2C1187423174205431808%2C1187421566948139009%2C1187421243097567234%2C1187415824014798853%2C1187415441875992576%2C1187415313240866816%2C1187415067110727682%2C1187413691538395136%2C1187412944520241152%2C1187412944520241152%2C1187411843569946624%2C1187411804776886274%2C1187411712045019136%2C1187410974707343360%2C1187410943938039809%2C1187409821903048705%2C1187409693314039810%2C1187409690025775104%2C1187409633654255618%2C1187409582366302208%2C1187409527475453957%2C1187409492260118530%2C1187409358583484419%2C1187409260965179393%2C1187409074717184000%2C1187408915018874880%2C1187407520739946498%2C1187407469703659520%2C1187407053620252672%2C1187406349874810881%2C1187406175878254592%2C1187405994852118528%2C1187405973012377600%2C1187405218121535490%2C1187405208441065472%2C1187404087584686080%2C1187403933288824833%2C1187403377501601793%2C1187402117134213120%2C1187402090546524160%2C1187401764711985158%2C1187400994612604930%2C1187400466474262528%2C1187399618918699008%2C1187398563686256640%2C1187398548502937606%2C1187398543436201986%2C1187398342889754625%2C1187398103650852864%2C1187397494415622145%2C1187397494415622145%2C1187396419251924992%2C1187396215400325120%2C1187395272764051459%2C1187395188743798784%2C1187394174980509696%2C1187391556698787841%2C1187390897949827072%2C1187390618604957696%2C1187389728393515013%2C1187389685212958721%2C1187389449027457024%2C1187389369600098304%2C1187389348955803649%2C1187389321759690753%2C1187389258803372034%2C1187389223172739072%2C1187389157179609093%2C1187389108059901952%2C1187388981975097344%2C1187388913998008325%2C1187388863016136707%2C1187388654366277635%2C1187388496861777920%2C1187388456529465347%2C1187388323150651395%2C1187388251587465216%2C1187387915334238208%2C1187387895599878144%2C1187387488374935552%2C1187387173563068417%2C1187387171357020160%2C1187387027865718784%2C1187386714370854912&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:45 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:45 GMT + x-transaction: cff9070044825c2e + content-length: '63311' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '286' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '407' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Thu Oct 24 16:58:01 +0000 2019","id":1187412944520241152,"id_str":"1187412944520241152","full_text":"RT + @PaulineMuljana: This \"I Zap, U Zap, We All Zap\" workshop is totally inspiring. + If you are in the job market, this is a great idea to pr\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:05:04 +0000 2019","id":1187399618918699008,"id_str":"1187399618918699008","full_text":"This + \"I Zap, U Zap, We All Zap\" workshop is totally inspiring. If you are in + the job market, this is a great idea to present your resume. Shout out to + the Oklahoma State Univ team who are facilitating the workshop! #aect19 #aect19inspired + https:\/\/t.co\/WIt9namhFl","truncated":false,"display_text_range":[0,238],"entities":{"hashtags":[{"text":"aect19","indices":[215,222]},{"text":"aect19inspired","indices":[223,238]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187399594914639872,"id_str":"1187399594914639872","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHp9o_VUcAAHsvp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHp9o_VUcAAHsvp.jpg","url":"https:\/\/t.co\/WIt9namhFl","display_url":"pic.twitter.com\/WIt9namhFl","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187399618918699008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":240,"h":320,"resize":"fit"},"small":{"w":240,"h":320,"resize":"fit"},"medium":{"w":240,"h":320,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187399594914639872,"id_str":"1187399594914639872","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHp9o_VUcAAHsvp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHp9o_VUcAAHsvp.jpg","url":"https:\/\/t.co\/WIt9namhFl","display_url":"pic.twitter.com\/WIt9namhFl","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187399618918699008\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":240,"h":320,"resize":"fit"},"small":{"w":240,"h":320,"resize":"fit"},"medium":{"w":240,"h":320,"resize":"fit"}},"video_info":{"aspect_ratio":[3,4],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHp9o_VUcAAHsvp.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 17:59:02 +0000 2019","id":1187428300467118080,"id_str":"1187428300467118080","full_text":"I + can kill two stones with one bird #aect19","truncated":false,"display_text_range":[0,43],"entities":{"hashtags":[{"text":"aect19","indices":[36,43]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:18:29 +0000 2019","id":1187387895599878144,"id_str":"1187387895599878144","full_text":"Morning + started with running. #aect19inspired #aect19 https:\/\/t.co\/fwVMK6vyP7","truncated":false,"display_text_range":[0,53],"entities":{"hashtags":[{"text":"aect19inspired","indices":[30,45]},{"text":"aect19","indices":[46,53]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187387879435075584,"id_str":"1187387879435075584","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpy_DxVAAAFP_7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpy_DxVAAAFP_7.jpg","url":"https:\/\/t.co\/fwVMK6vyP7","display_url":"pic.twitter.com\/fwVMK6vyP7","expanded_url":"https:\/\/twitter.com\/kcsabina_\/status\/1187387895599878144\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1638,"h":2048,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"},"small":{"w":544,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187387879435075584,"id_str":"1187387879435075584","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpy_DxVAAAFP_7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpy_DxVAAAFP_7.jpg","url":"https:\/\/t.co\/fwVMK6vyP7","display_url":"pic.twitter.com\/fwVMK6vyP7","expanded_url":"https:\/\/twitter.com\/kcsabina_\/status\/1187387895599878144\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1638,"h":2048,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"},"small":{"w":544,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":930858708258738178,"id_str":"930858708258738178","name":"Sabina + KC","screen_name":"kcsabina_","location":"Odessa, TX","description":"Ed.D, + Instructional Design and Performance Technology, Instructional Designer, Life + Coach, Dreamer, Do-er, Achiever, Optimist, Learner, Teacher","url":"https:\/\/t.co\/IBPYKJja50","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IBPYKJja50","expanded_url":"https:\/\/www.linkedin.com\/in\/sabina-k-c-044b77133\/","display_url":"linkedin.com\/in\/sabina-k-c-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":496,"listed_count":2,"created_at":"Wed + Nov 15 18:03:05 +0000 2017","favourites_count":3136,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":415,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1390058813223575560\/eKI3EIR__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1390058813223575560\/eKI3EIR__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/930858708258738178\/1613749154","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9e52725880000","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9e52725880000.json","place_type":"poi","name":"Pediatric + Intensive Care Unit","full_name":"Pediatric Intensive Care Unit","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.13610748997846,36.132361878365195],[-115.13610748997846,36.132361878365195],[-115.13610748997846,36.132361878365195],[-115.13610748997846,36.132361878365195]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:08:26 +0000 2019","id":1187400466474262528,"id_str":"1187400466474262528","full_text":"@AECT + This #aect19inspired session is a blast already. Hurry! Get to ballroom A! + https:\/\/t.co\/YzeNvNCLKT","truncated":false,"display_text_range":[0,80],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]}],"urls":[],"media":[{"id":1187400458144382976,"id_str":"1187400458144382976","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp-bPHVAAAl9lR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp-bPHVAAAl9lR.jpg","url":"https:\/\/t.co\/YzeNvNCLKT","display_url":"pic.twitter.com\/YzeNvNCLKT","expanded_url":"https:\/\/twitter.com\/TAmankwatia\/status\/1187400466474262528\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187400458144382976,"id_str":"1187400458144382976","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp-bPHVAAAl9lR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp-bPHVAAAl9lR.jpg","url":"https:\/\/t.co\/YzeNvNCLKT","display_url":"pic.twitter.com\/YzeNvNCLKT","expanded_url":"https:\/\/twitter.com\/TAmankwatia\/status\/1187400466474262528\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":25068789,"id_str":"25068789","name":"Tonya + Amankwatia","screen_name":"TAmankwatia","location":"Greensboro, NC","description":"North + Carolina A&T Assistant Vice Provost-Extended Campus. I evaluate programs, + design models for accessible, supportive online instruction & lifelong learning.","url":"https:\/\/t.co\/JWw4AAXsRF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JWw4AAXsRF","expanded_url":"https:\/\/www.linkedin.com\/in\/tonyalehigh\/","display_url":"linkedin.com\/in\/tonyalehigh\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":339,"friends_count":346,"listed_count":33,"created_at":"Wed + Mar 18 13:10:23 +0000 2009","favourites_count":1300,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1840,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E8CFA9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1185683022684790785\/fBnwhav1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1185683022684790785\/fBnwhav1_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"CC3366","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:23:30 +0000 2019","id":1187389157179609093,"id_str":"1187389157179609093","full_text":"RT + @MarcusChildress: It was an honor to be one of the \"champions\" at this year''s + AECT Breakfast with Champions. So many great and deserving\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"MarcusChildress","name":"Marcus + Childress, Ph.D.","id":62390382,"id_str":"62390382","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 06:10:35 +0000 2019","id":1187250011379093504,"id_str":"1187250011379093504","full_text":"It + was an honor to be one of the \"champions\" at this year''s AECT Breakfast + with Champions. So many great and deserving scholars are in this photo........and + then there''s me ;) #aect19 #aect19inspired https:\/\/t.co\/9iXORWHoLj","truncated":false,"display_text_range":[0,200],"entities":{"hashtags":[{"text":"aect19","indices":[177,184]},{"text":"aect19inspired","indices":[185,200]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187249984363585536,"id_str":"1187249984363585536","indices":[201,224],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn1kgmUYAASW0f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn1kgmUYAASW0f.jpg","url":"https:\/\/t.co\/9iXORWHoLj","display_url":"pic.twitter.com\/9iXORWHoLj","expanded_url":"https:\/\/twitter.com\/MarcusChildress\/status\/1187250011379093504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":765,"h":430,"resize":"fit"},"large":{"w":765,"h":430,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187249984363585536,"id_str":"1187249984363585536","indices":[201,224],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn1kgmUYAASW0f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn1kgmUYAASW0f.jpg","url":"https:\/\/t.co\/9iXORWHoLj","display_url":"pic.twitter.com\/9iXORWHoLj","expanded_url":"https:\/\/twitter.com\/MarcusChildress\/status\/1187250011379093504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":765,"h":430,"resize":"fit"},"large":{"w":765,"h":430,"resize":"fit"}},"ext_alt_text":null},{"id":1187249994799054849,"id_str":"1187249994799054849","indices":[201,224],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn1lHeVAAEBI1g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn1lHeVAAEBI1g.jpg","url":"https:\/\/t.co\/9iXORWHoLj","display_url":"pic.twitter.com\/9iXORWHoLj","expanded_url":"https:\/\/twitter.com\/MarcusChildress\/status\/1187250011379093504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":1200,"resize":"fit"},"small":{"w":612,"h":680,"resize":"fit"},"large":{"w":1844,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1187250006211747840,"id_str":"1187250006211747840","indices":[201,224],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn1lx_U4AALO9X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn1lx_U4AALO9X.jpg","url":"https:\/\/t.co\/9iXORWHoLj","display_url":"pic.twitter.com\/9iXORWHoLj","expanded_url":"https:\/\/twitter.com\/MarcusChildress\/status\/1187250011379093504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":422,"resize":"fit"},"large":{"w":960,"h":596,"resize":"fit"},"medium":{"w":960,"h":596,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62390382,"id_str":"62390382","name":"Marcus + Childress, Ph.D.","screen_name":"MarcusChildress","location":"Overland Park, + KS","description":"Founder and Owner of Course Jockey; Former Chief Academic + Officer; Instructional Designer; Past-President @aect; @Virginia_Tech alum; + @AppState alum","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":661,"friends_count":1023,"listed_count":27,"created_at":"Mon + Aug 03 00:34:28 +0000 2009","favourites_count":782,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":833,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1421500685036699650\/4Dx2SRoe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1421500685036699650\/4Dx2SRoe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62390382\/1516048344","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:36:16 +0000 2019","id":1187407469703659520,"id_str":"1187407469703659520","full_text":"@PaulineMuljana + Thanks for the tip, Pauline! Bookmarking this in my schedule so I can go back + later for the resources.\n#aect19inspired #aect19","truncated":false,"display_text_range":[16,142],"entities":{"hashtags":[{"text":"aect19inspired","indices":[119,134]},{"text":"aect19","indices":[135,142]}],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[0,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":1187399618918699008,"in_reply_to_status_id_str":"1187399618918699008","in_reply_to_user_id":214979874,"in_reply_to_user_id_str":"214979874","in_reply_to_screen_name":"PaulineMuljana","user":{"id":64769037,"id_str":"64769037","name":"jenn\u03b9\u0493er + engl\u03c5nd","screen_name":"jmenglund03","location":"Settler on Dakota homelands","description":"@UMN_CI + LT PhD Candidate \u2022 @UMNews instructional designer \u2022 @GOGN_OER scholar + \u2022 @femedtech member \u2022 #OEP advocate \u2022 Pronouns: she\/her","url":"https:\/\/t.co\/cjLLex1JDn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cjLLex1JDn","expanded_url":"https:\/\/jenniferenglund.net\/","display_url":"jenniferenglund.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":662,"friends_count":627,"listed_count":72,"created_at":"Tue + Aug 11 17:10:00 +0000 2009","favourites_count":2052,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2918,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B7C8E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64769037\/1500750705","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"452568","profile_sidebar_border_color":"204207","profile_sidebar_fill_color":"060A00","profile_text_color":"618238","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:25:46 +0000 2019","id":1187389728393515013,"id_str":"1187389728393515013","full_text":"RT + @ISLT_FSU: Come join us! We are looking for a new colleague. Teaching faculty + position is open. If you are in Vegas at AECT come find Dr\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":266676830,"id_str":"266676830","name":"KT + Kjellerup","screen_name":"ktkjellerup","location":"Tallahassee","description":"advocate + for learning, education, quality management.","url":"https:\/\/t.co\/k77W8juf9B","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/k77W8juf9B","expanded_url":"https:\/\/my-ppc.com","display_url":"my-ppc.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1772,"friends_count":2708,"listed_count":39,"created_at":"Tue + Mar 15 16:30:49 +0000 2011","favourites_count":23265,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25286,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/698243618121785345\/NuazzVaA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/698243618121785345\/NuazzVaA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/266676830\/1356727092","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"F58EA8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 13:12:02 +0000 2019","id":1187356073964912642,"id_str":"1187356073964912642","full_text":"Come + join us! We are looking for a new colleague. Teaching faculty position is + open. If you are in Vegas at AECT come find Dr. Jim Klein or @vdennen. #JobsInHigherEd + #HigherEdJobs #FacultyPosition #JobOpening #AECT19 #Vegas #Learning #Education + #Teaching #Instruction #FSU https:\/\/t.co\/6cBHuscFrb","truncated":false,"display_text_range":[0,272],"entities":{"hashtags":[{"text":"JobsInHigherEd","indices":[150,165]},{"text":"HigherEdJobs","indices":[166,179]},{"text":"FacultyPosition","indices":[180,196]},{"text":"JobOpening","indices":[197,208]},{"text":"AECT19","indices":[209,216]},{"text":"Vegas","indices":[217,223]},{"text":"Learning","indices":[224,233]},{"text":"Education","indices":[234,244]},{"text":"Teaching","indices":[245,254]},{"text":"Instruction","indices":[255,267]},{"text":"FSU","indices":[268,272]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[140,148]}],"urls":[],"media":[{"id":1187356064808722433,"id_str":"1187356064808722433","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpWDNDUYAEHK6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpWDNDUYAEHK6m.jpg","url":"https:\/\/t.co\/6cBHuscFrb","display_url":"pic.twitter.com\/6cBHuscFrb","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187356073964912642\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":1600,"h":1067,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187356064808722433,"id_str":"1187356064808722433","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpWDNDUYAEHK6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpWDNDUYAEHK6m.jpg","url":"https:\/\/t.co\/6cBHuscFrb","display_url":"pic.twitter.com\/6cBHuscFrb","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187356073964912642\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":1600,"h":1067,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:25:36 +0000 2019","id":1187389685212958721,"id_str":"1187389685212958721","full_text":"RT + @DrVirtuality: Microsoft Teams focus. Session happening now in Ballroom E. + Lots of seats. #MicrosoftTeams #MicrosoftEdu #AECT #AECT19\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"MicrosoftTeams","indices":[93,108]},{"text":"MicrosoftEdu","indices":[109,122]},{"text":"AECT","indices":[125,130]},{"text":"AECT19","indices":[131,138]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 15:22:20 +0000 2019","id":1187388863016136707,"id_str":"1187388863016136707","full_text":"Microsoft + Teams focus. Session happening now in Ballroom E. Lots of seats. #MicrosoftTeams + #MicrosoftEdu #AECT #AECT19 #aect19inspired https:\/\/t.co\/NJJsmnOZTQ","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"MicrosoftTeams","indices":[75,90]},{"text":"MicrosoftEdu","indices":[91,104]},{"text":"AECT","indices":[107,112]},{"text":"AECT19","indices":[113,120]},{"text":"aect19inspired","indices":[121,136]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187388838580125698,"id_str":"1187388838580125698","indices":[137,160],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpz243VAAIM8s5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpz243VAAIM8s5.jpg","url":"https:\/\/t.co\/NJJsmnOZTQ","display_url":"pic.twitter.com\/NJJsmnOZTQ","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187388863016136707\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":768,"h":1024,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187388838580125698,"id_str":"1187388838580125698","indices":[137,160],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpz243VAAIM8s5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpz243VAAIM8s5.jpg","url":"https:\/\/t.co\/NJJsmnOZTQ","display_url":"pic.twitter.com\/NJJsmnOZTQ","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187388863016136707\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":768,"h":1024,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:24:09 +0000 2019","id":1187389321759690753,"id_str":"1187389321759690753","full_text":"Using + problem-based learning approach to support students\u2019 computational thinking + skills! #computationalthinking #aect19inspired #csforall https:\/\/t.co\/p9o4lbrjUI","truncated":false,"display_text_range":[0,138],"entities":{"hashtags":[{"text":"computationalthinking","indices":[90,112]},{"text":"aect19inspired","indices":[113,128]},{"text":"csforall","indices":[129,138]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187389315170488320,"id_str":"1187389315170488320","indices":[139,162],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp0SoTU0AAVZXc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp0SoTU0AAVZXc.jpg","url":"https:\/\/t.co\/p9o4lbrjUI","display_url":"pic.twitter.com\/p9o4lbrjUI","expanded_url":"https:\/\/twitter.com\/janetliao33\/status\/1187389321759690753\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187389315170488320,"id_str":"1187389315170488320","indices":[139,162],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp0SoTU0AAVZXc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp0SoTU0AAVZXc.jpg","url":"https:\/\/t.co\/p9o4lbrjUI","display_url":"pic.twitter.com\/p9o4lbrjUI","expanded_url":"https:\/\/twitter.com\/janetliao33\/status\/1187389321759690753\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1601019379,"id_str":"1601019379","name":"Yin-Chan + (Janet) Liao","screen_name":"janetliao33","location":"Atlanta, GA","description":"Assistant + Professor at Georgia State University | K-12 Computing Education, Teacher + Preparation & Development, Tech Integration","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":614,"listed_count":55,"created_at":"Wed + Jul 17 13:45:52 +0000 2013","favourites_count":706,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":952,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E0ECF8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/907351602339627008\/manV5xaw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/907351602339627008\/manV5xaw_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:30:25 +0000 2019","id":1187390897949827072,"id_str":"1187390897949827072","full_text":"@ekowch + hey can we cross paths at #aect19inspired today?","truncated":false,"display_text_range":[0,56],"entities":{"hashtags":[{"text":"aect19inspired","indices":[34,49]}],"symbols":[],"user_mentions":[{"screen_name":"ekowch","name":"Dr. + Eugene Kowch","id":28518944,"id_str":"28518944","indices":[0,7]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":28518944,"in_reply_to_user_id_str":"28518944","in_reply_to_screen_name":"ekowch","user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:24:20 +0000 2019","id":1187389369600098304,"id_str":"1187389369600098304","full_text":"RT + @nangur1: Breakfast with the champions! Thank you \u2066@veletsianos\u2069 + for your inspirational work! #aect19inspired #aect19 https:\/\/t.co\/Ft5Hw\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[97,112]},{"text":"aect19","indices":[113,120]}],"symbols":[],"user_mentions":[{"screen_name":"nangur1","name":"Dr. + Nandita Gurjar","id":2743313304,"id_str":"2743313304","indices":[3,11]},{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[54,66]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 05:28:07 +0000 2019","id":1187239325131403264,"id_str":"1187239325131403264","full_text":"Breakfast + with the champions! Thank you \u2066@veletsianos\u2069 for your inspirational + work! #aect19inspired #aect19 https:\/\/t.co\/Ft5Hw8Y5lU","truncated":false,"display_text_range":[0,107],"entities":{"hashtags":[{"text":"aect19inspired","indices":[84,99]},{"text":"aect19","indices":[100,107]}],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[41,53]}],"urls":[],"media":[{"id":1187239318726696960,"id_str":"1187239318726696960","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnr3sAU4AAW5UF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnr3sAU4AAW5UF.jpg","url":"https:\/\/t.co\/Ft5Hw8Y5lU","display_url":"pic.twitter.com\/Ft5Hw8Y5lU","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187239325131403264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187239318726696960,"id_str":"1187239318726696960","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnr3sAU4AAW5UF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnr3sAU4AAW5UF.jpg","url":"https:\/\/t.co\/Ft5Hw8Y5lU","display_url":"pic.twitter.com\/Ft5Hw8Y5lU","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187239325131403264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:00:49 +0000 2019","id":1187398548502937606,"id_str":"1187398548502937606","full_text":"RT + @pazureka: Good morning @AECT! Take a look at what the Learner Engagement + Division has in store today and join us. The Roundtables will\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[3,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 15:51:33 +0000 2019","id":1187396215400325120,"id_str":"1187396215400325120","full_text":"Good + morning @AECT! Take a look at what the Learner Engagement Division has in + store today and join us. The Roundtables will be buzzing starting at 10AM + in Paradise North! @LearnEngage #aect19 https:\/\/t.co\/omORQjjefm","truncated":false,"display_text_range":[0,192],"entities":{"hashtags":[{"text":"aect19","indices":[185,192]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[13,18]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[172,184]}],"urls":[],"media":[{"id":1187396211801636865,"id_str":"1187396211801636865","indices":[193,216],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp6kEQUwAEI8CW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp6kEQUwAEI8CW.jpg","url":"https:\/\/t.co\/omORQjjefm","display_url":"pic.twitter.com\/omORQjjefm","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187396215400325120\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1168,"h":802,"resize":"fit"},"medium":{"w":1168,"h":802,"resize":"fit"},"small":{"w":680,"h":467,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187396211801636865,"id_str":"1187396211801636865","indices":[193,216],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp6kEQUwAEI8CW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp6kEQUwAEI8CW.jpg","url":"https:\/\/t.co\/omORQjjefm","display_url":"pic.twitter.com\/omORQjjefm","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187396215400325120\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1168,"h":802,"resize":"fit"},"medium":{"w":1168,"h":802,"resize":"fit"},"small":{"w":680,"h":467,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:23:46 +0000 2019","id":1187389223172739072,"id_str":"1187389223172739072","full_text":"RT + @kzenovka: 8 am - it is early but it will be worth it.....CLT Inspire! Online + Microaggression in Pavillion 9 #aect19 #aect19inspired #ae\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[112,119]},{"text":"aect19inspired","indices":[120,135]}],"symbols":[],"user_mentions":[{"screen_name":"kzenovka","name":"Kzenovka","id":14994538,"id_str":"14994538","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 05:55:00 +0000 2019","id":1187246088857804800,"id_str":"1187246088857804800","full_text":"8 + am - it is early but it will be worth it.....CLT Inspire! Online Microaggression + in Pavillion 9 #aect19 #aect19inspired #aectgsa \n\nhttps:\/\/t.co\/pAKOhYkAzk + https:\/\/t.co\/sbTLC4K80r","truncated":false,"display_text_range":[0,156],"entities":{"hashtags":[{"text":"aect19","indices":[98,105]},{"text":"aect19inspired","indices":[106,121]},{"text":"aectgsa","indices":[122,130]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pAKOhYkAzk","expanded_url":"https:\/\/convention2.allacademic.com\/one\/aect\/aect19\/index.php?cmd=Online+Program+View+Paper&","display_url":"convention2.allacademic.com\/one\/aect\/aect1\u2026","indices":[133,156]}],"media":[{"id":1187244016473010177,"id_str":"1187244016473010177","indices":[157,180],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnwJIeU8AEg7H5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnwJIeU8AEg7H5.jpg","url":"https:\/\/t.co\/sbTLC4K80r","display_url":"pic.twitter.com\/sbTLC4K80r","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1187246088857804800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187244016473010177,"id_str":"1187244016473010177","indices":[157,180],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnwJIeU8AEg7H5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnwJIeU8AEg7H5.jpg","url":"https:\/\/t.co\/sbTLC4K80r","display_url":"pic.twitter.com\/sbTLC4K80r","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1187246088857804800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14994538,"id_str":"14994538","name":"Kzenovka","screen_name":"kzenovka","location":"Metaverse","description":"educator, + coolhunter, and sometimes puppetmaster. Metagame Book Club, Games & Sim Network + and Inevitable Instructors","url":"https:\/\/t.co\/SN1thrlVqD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SN1thrlVqD","expanded_url":"https:\/\/sites.google.com\/site\/metagamebookclub\/","display_url":"sites.google.com\/site\/metagameb\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1338,"friends_count":3152,"listed_count":228,"created_at":"Tue + Jun 03 16:35:29 +0000 2008","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15007,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14994538\/1436550079","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:43:46 +0000 2019","id":1187409358583484419,"id_str":"1187409358583484419","full_text":"RT + @LearnEngage: Ever wonder how to #sketchnote a presentation? Pros from @UNTsocial + and @ECNUER hope to show you how at the Inspire! Sketc\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"sketchnote","indices":[36,47]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]},{"screen_name":"UNTsocial","name":"University + of North Texas","id":18462994,"id_str":"18462994","indices":[74,84]},{"screen_name":"ECNUER","name":"East + China Normal University","id":1732892550,"id_str":"1732892550","indices":[89,96]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:00:00 +0000 2019","id":1187398342889754625,"id_str":"1187398342889754625","full_text":"Ever + wonder how to #sketchnote a presentation? Pros from @UNTsocial and @ECNUER + hope to show you how at the Inspire! Sketchnoting session at 3pm! Come learn + with us! #AECT19 #aect19inspired @AECT https:\/\/t.co\/25zZOVkv2N","truncated":false,"display_text_range":[0,195],"entities":{"hashtags":[{"text":"sketchnote","indices":[19,30]},{"text":"AECT19","indices":[166,173]},{"text":"aect19inspired","indices":[174,189]}],"symbols":[],"user_mentions":[{"screen_name":"UNTsocial","name":"University + of North Texas","id":18462994,"id_str":"18462994","indices":[57,67]},{"screen_name":"ECNUER","name":"East + China Normal University","id":1732892550,"id_str":"1732892550","indices":[72,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[190,195]}],"urls":[],"media":[{"id":1187122528189407235,"id_str":"1187122528189407235","indices":[196,219],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","url":"https:\/\/t.co\/25zZOVkv2N","display_url":"pic.twitter.com\/25zZOVkv2N","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187398342889754625\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187122528189407235,"id_str":"1187122528189407235","indices":[196,219],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","url":"https:\/\/t.co\/25zZOVkv2N","display_url":"pic.twitter.com\/25zZOVkv2N","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187398342889754625\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:43:26 +0000 2019","id":1187394174980509696,"id_str":"1187394174980509696","full_text":"Surprise, + congrats, and reunion: a @SICET @ll351 @ge_xun @Happy_Tao service award, and + meeting many bi-lingual colleagues, PC @jjm09, celebrating and learning from + international collaboration, Thx for all the support from @AECT #aect19 #aect19inspired + https:\/\/t.co\/PWriUIwFou","truncated":false,"display_text_range":[0,251],"entities":{"hashtags":[{"text":"aect19","indices":[228,235]},{"text":"aect19inspired","indices":[236,251]}],"symbols":[],"user_mentions":[{"screen_name":"SICET","name":"SICET","id":114832274,"id_str":"114832274","indices":[35,41]},{"screen_name":"ll351","name":"Lin + Lin","id":23219752,"id_str":"23219752","indices":[42,48]},{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[49,56]},{"screen_name":"Happy_Tao","name":"Hengtao + Tang","id":482227724,"id_str":"482227724","indices":[57,67]},{"screen_name":"jjm09","name":"J. + Mao","id":72457436,"id_str":"72457436","indices":[126,132]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[222,227]}],"urls":[],"media":[{"id":1187394156538159104,"id_str":"1187394156538159104","indices":[252,275],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp4sbzU4AAR37r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp4sbzU4AAR37r.jpg","url":"https:\/\/t.co\/PWriUIwFou","display_url":"pic.twitter.com\/PWriUIwFou","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187394174980509696\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":1440,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187394156538159104,"id_str":"1187394156538159104","indices":[252,275],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp4sbzU4AAR37r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp4sbzU4AAR37r.jpg","url":"https:\/\/t.co\/PWriUIwFou","display_url":"pic.twitter.com\/PWriUIwFou","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187394174980509696\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":1440,"h":1080,"resize":"fit"}},"ext_alt_text":null},{"id":1187394156508745728,"id_str":"1187394156508745728","indices":[252,275],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp4sbsUEAAvTiI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp4sbsUEAAvTiI.jpg","url":"https:\/\/t.co\/PWriUIwFou","display_url":"pic.twitter.com\/PWriUIwFou","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187394174980509696\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187394156584288262,"id_str":"1187394156584288262","indices":[252,275],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp4sb-UwAYXZ50.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp4sb-UwAYXZ50.jpg","url":"https:\/\/t.co\/PWriUIwFou","display_url":"pic.twitter.com\/PWriUIwFou","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187394174980509696\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187394156718505985,"id_str":"1187394156718505985","indices":[252,275],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp4sceUwAEdYkQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp4sceUwAEdYkQ.jpg","url":"https:\/\/t.co\/PWriUIwFou","display_url":"pic.twitter.com\/PWriUIwFou","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187394174980509696\/photo\/1","type":"photo","sizes":{"large":{"w":1440,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:22:20 +0000 2019","id":1187388863016136707,"id_str":"1187388863016136707","full_text":"Microsoft + Teams focus. Session happening now in Ballroom E. Lots of seats. #MicrosoftTeams + #MicrosoftEdu #AECT #AECT19 #aect19inspired https:\/\/t.co\/NJJsmnOZTQ","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"MicrosoftTeams","indices":[75,90]},{"text":"MicrosoftEdu","indices":[91,104]},{"text":"AECT","indices":[107,112]},{"text":"AECT19","indices":[113,120]},{"text":"aect19inspired","indices":[121,136]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187388838580125698,"id_str":"1187388838580125698","indices":[137,160],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpz243VAAIM8s5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpz243VAAIM8s5.jpg","url":"https:\/\/t.co\/NJJsmnOZTQ","display_url":"pic.twitter.com\/NJJsmnOZTQ","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187388863016136707\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":768,"h":1024,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187388838580125698,"id_str":"1187388838580125698","indices":[137,160],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpz243VAAIM8s5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpz243VAAIM8s5.jpg","url":"https:\/\/t.co\/NJJsmnOZTQ","display_url":"pic.twitter.com\/NJJsmnOZTQ","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187388863016136707\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":768,"h":1024,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:31:07 +0000 2019","id":1187406175878254592,"id_str":"1187406175878254592","full_text":"@AmyLomellini_ID + @nicolapallitt @christieliuidtr @jesustrespalac1 @AllisonHallAZ @d_mulder + @DrRossPerkins @plowenthal @JenM @edtechdoc @AECT @gsa_aect Also, shout out + to @AmyLomellini_ID , @UmbrellaMichela , and Dr. @JenM for sharing inspiring + insights and experiences during a @gsa_aect panel \"Designing for Accessibility\" + yesterday. #aect19 #aect19inspired","truncated":false,"display_text_range":[151,359],"entities":{"hashtags":[{"text":"aect19","indices":[336,343]},{"text":"aect19inspired","indices":[344,359]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[0,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[17,31]},{"screen_name":"JesusTrespalac1","name":"Jesus + Trespalacios","id":1554537673771126785,"id_str":"1554537673771126785","indices":[49,65]},{"screen_name":"AllisonHallAZ","name":"Dr. + Allison Barsnica Hall","id":720930385,"id_str":"720930385","indices":[66,80]},{"screen_name":"d_mulder","name":"Dr. + Dave Mulder","id":30278154,"id_str":"30278154","indices":[81,90]},{"screen_name":"DrRossPerkins","name":"Ross + Perkins, PhD","id":2905458781,"id_str":"2905458781","indices":[91,105]},{"screen_name":"plowenthal","name":"Patrick + Lowenthal","id":14364665,"id_str":"14364665","indices":[106,117]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[118,123]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[135,140]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[141,150]},{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[170,186]},{"screen_name":"UmbrellaMichela","name":"Esther + Michela","id":940824276307009536,"id_str":"940824276307009536","indices":[189,205]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[216,221]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[279,288]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1187228088616177664,"in_reply_to_status_id_str":"1187228088616177664","in_reply_to_user_id":910574724748644353,"in_reply_to_user_id_str":"910574724748644353","in_reply_to_screen_name":"AmyLomellini_ID","user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:24:39 +0000 2019","id":1187389449027457024,"id_str":"1187389449027457024","full_text":"Working + on a book chapter. Argument. Shouldn\u2019t we be having instructional design + students use things like @MicrosoftTeams to learn project management skills. + #aect19inspired https:\/\/t.co\/KwcUTpceL2","truncated":false,"display_text_range":[0,174],"entities":{"hashtags":[{"text":"aect19inspired","indices":[159,174]}],"symbols":[],"user_mentions":[{"screen_name":"MicrosoftTeams","name":"Microsoft + Teams","id":817461289081409536,"id_str":"817461289081409536","indices":[107,122]}],"urls":[{"url":"https:\/\/t.co\/KwcUTpceL2","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187387173563068417","display_url":"twitter.com\/DrVirtuality\/s\u2026","indices":[175,198]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1187387173563068417,"quoted_status_id_str":"1187387173563068417","quoted_status_permalink":{"url":"https:\/\/t.co\/KwcUTpceL2","expanded":"https:\/\/twitter.com\/DrVirtuality\/status\/1187387173563068417","display":"twitter.com\/DrVirtuality\/s\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 15:15:37 +0000 2019","id":1187387173563068417,"id_str":"1187387173563068417","full_text":"Attending + #MicrosoftTeams session today @AECT #AECT19 #AECT19Inspired #MicrosoftEDU. + Lots of seats open in Ballroom E. \ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a + https:\/\/t.co\/SBGWAdj41N","truncated":false,"display_text_range":[0,130],"entities":{"hashtags":[{"text":"MicrosoftTeams","indices":[10,25]},{"text":"AECT19","indices":[46,53]},{"text":"AECT19Inspired","indices":[54,69]},{"text":"MicrosoftEDU","indices":[70,83]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[40,45]}],"urls":[],"media":[{"id":1187387109532815361,"id_str":"1187387109532815361","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpySPqU0AEVgtz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpySPqU0AEVgtz.jpg","url":"https:\/\/t.co\/SBGWAdj41N","display_url":"pic.twitter.com\/SBGWAdj41N","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187387173563068417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187387109532815361,"id_str":"1187387109532815361","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpySPqU0AEVgtz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpySPqU0AEVgtz.jpg","url":"https:\/\/t.co\/SBGWAdj41N","display_url":"pic.twitter.com\/SBGWAdj41N","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187387173563068417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:50:12 +0000 2019","id":1187410974707343360,"id_str":"1187410974707343360","full_text":"I + made a thing! Inspired by the #izapuzapwezap workshop with @tutaleni and colleagues. + #aect19 #aect19inspired #inspiredme https:\/\/t.co\/bB4dtRRIfB","truncated":false,"display_text_range":[0,122],"entities":{"hashtags":[{"text":"izapuzapwezap","indices":[32,46]},{"text":"aect19","indices":[87,94]},{"text":"aect19inspired","indices":[95,110]},{"text":"inspiredme","indices":[111,122]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[61,70]}],"urls":[],"media":[{"id":1187410969615429632,"id_str":"1187410969615429632","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqH_FZUcAAVcmK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqH_FZUcAAVcmK.jpg","url":"https:\/\/t.co\/bB4dtRRIfB","display_url":"pic.twitter.com\/bB4dtRRIfB","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1187410974707343360\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1250,"h":1250,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187410969615429632,"id_str":"1187410969615429632","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqH_FZUcAAVcmK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqH_FZUcAAVcmK.jpg","url":"https:\/\/t.co\/bB4dtRRIfB","display_url":"pic.twitter.com\/bB4dtRRIfB","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1187410974707343360\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1250,"h":1250,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:45:37 +0000 2019","id":1187409821903048705,"id_str":"1187409821903048705","full_text":"RT + @jennkepka: It''s OER or Bust at 2pm: Play the OER-egon trail game and talk + about barriers to OER adoption! Bring your oxen (& devices) t\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jennkepka","name":"Jenn + Kepka","id":3733671685,"id_str":"3733671685","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:15:00 +0000 2019","id":1187402117134213120,"id_str":"1187402117134213120","full_text":"It''s + OER or Bust at 2pm: Play the OER-egon trail game and talk about barriers to + OER adoption! Bring your oxen (& devices) to Pavilion 10 to \"Ford the + River\" and learn more. Bonus: enjoy some 80s-like graphics! #aect19inspired + https:\/\/t.co\/W29H012lcB https:\/\/t.co\/VFZZWkljUG","truncated":false,"display_text_range":[0,254],"entities":{"hashtags":[{"text":"aect19inspired","indices":[215,230]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/W29H012lcB","expanded_url":"http:\/\/tinyurl.com\/y2lvtj7c","display_url":"tinyurl.com\/y2lvtj7c","indices":[231,254]}],"media":[{"id":1187260427639521280,"id_str":"1187260427639521280","indices":[255,278],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn_EY1VAAAQLxE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn_EY1VAAAQLxE.jpg","url":"https:\/\/t.co\/VFZZWkljUG","display_url":"pic.twitter.com\/VFZZWkljUG","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1187402117134213120\/photo\/1","type":"photo","sizes":{"medium":{"w":62,"h":61,"resize":"fit"},"thumb":{"w":61,"h":61,"resize":"crop"},"large":{"w":62,"h":61,"resize":"fit"},"small":{"w":62,"h":61,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187260427639521280,"id_str":"1187260427639521280","indices":[255,278],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn_EY1VAAAQLxE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn_EY1VAAAQLxE.jpg","url":"https:\/\/t.co\/VFZZWkljUG","display_url":"pic.twitter.com\/VFZZWkljUG","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1187402117134213120\/photo\/1","type":"photo","sizes":{"medium":{"w":62,"h":61,"resize":"fit"},"thumb":{"w":61,"h":61,"resize":"crop"},"large":{"w":62,"h":61,"resize":"fit"},"small":{"w":62,"h":61,"resize":"fit"}},"ext_alt_text":"a + fuzzy green image of a covered wagon that says \"OER or bust\" on the side"}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3733671685,"id_str":"3733671685","name":"Jenn + Kepka","screen_name":"jennkepka","location":"Oregon, USA","description":"Outreach\/retention\/tutoring + faculty in OR; doc student in #edtech at Boise St. Past: UO, WOU, KU. \u2764 + #oer & \u2615 & \u26f8. Views my own. she\/her\/hers","url":"https:\/\/t.co\/nvazHyg5JB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nvazHyg5JB","expanded_url":"http:\/\/jennkepka.com","display_url":"jennkepka.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":700,"friends_count":1225,"listed_count":45,"created_at":"Wed + Sep 30 05:39:55 +0000 2015","favourites_count":19836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3733671685\/1446791014","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 17:09:28 +0000 2019","id":1187415824014798853,"id_str":"1187415824014798853","full_text":"RT + @ChangeIt4Better: Drs. Baaki & Tracey offer persona empathic design to + teach students how to have empathy for the learners to improve in\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ChangeIt4Better","name":"Dr. + Suzanne Ensmann","id":1596150056,"id_str":"1596150056","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 17:57:42 +0000 2019","id":1187065576906035200,"id_str":"1187065576906035200","full_text":"Drs. + Baaki & Tracey offer persona empathic design to teach students how to + have empathy for the learners to improve instructional design. #eme601 #eme607 + #eme603 #aect19inspired #aect2019 https:\/\/t.co\/ua9r17wVRV","truncated":false,"display_text_range":[0,191],"entities":{"hashtags":[{"text":"eme601","indices":[142,149]},{"text":"eme607","indices":[150,157]},{"text":"eme603","indices":[158,165]},{"text":"aect19inspired","indices":[166,181]},{"text":"aect2019","indices":[182,191]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187065555250868224,"id_str":"1187065555250868224","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlN1UnUcAACX2g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlN1UnUcAACX2g.jpg","url":"https:\/\/t.co\/ua9r17wVRV","display_url":"pic.twitter.com\/ua9r17wVRV","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187065576906035200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187065555250868224,"id_str":"1187065555250868224","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlN1UnUcAACX2g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlN1UnUcAACX2g.jpg","url":"https:\/\/t.co\/ua9r17wVRV","display_url":"pic.twitter.com\/ua9r17wVRV","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187065576906035200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187065555238313985,"id_str":"1187065555238313985","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlN1UkU4AEbQYu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlN1UkU4AEbQYu.jpg","url":"https:\/\/t.co\/ua9r17wVRV","display_url":"pic.twitter.com\/ua9r17wVRV","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187065576906035200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187065555255037953,"id_str":"1187065555255037953","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlN1UoUEAExVCd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlN1UoUEAExVCd.jpg","url":"https:\/\/t.co\/ua9r17wVRV","display_url":"pic.twitter.com\/ua9r17wVRV","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187065576906035200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187065555494133761,"id_str":"1187065555494133761","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlN1VhUYAE_FZY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlN1VhUYAE_FZY.jpg","url":"https:\/\/t.co\/ua9r17wVRV","display_url":"pic.twitter.com\/ua9r17wVRV","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187065576906035200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 18:01:06 +0000 2019","id":1187428818702786562,"id_str":"1187428818702786562","full_text":"1:00 + pm -1:50 pm in Ballroom A (331) \u2013 ADDIE-ing the Systems Approach to Improve + Instruction for 6000 University Students by Jeffrey Phillips, James Klein, + Elizabeth Dunne & Mike Siriwardena #FSU #FSUCOE #ISLT #ADDIE #SystemsApproach + #Instruction #AECT19","truncated":false,"display_text_range":[0,258],"entities":{"hashtags":[{"text":"FSU","indices":[195,199]},{"text":"FSUCOE","indices":[200,207]},{"text":"ISLT","indices":[208,213]},{"text":"ADDIE","indices":[214,220]},{"text":"SystemsApproach","indices":[221,237]},{"text":"Instruction","indices":[238,250]},{"text":"AECT19","indices":[251,258]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 18:06:57 +0000 2019","id":1187430290802626560,"id_str":"1187430290802626560","full_text":"RT + @HsuBSU: Had a great meeting and discussions with Dr. Hodges! Look forward + to serving as the International Column Editor in the next few\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HsuBSU","name":"Yu-Chang + Hsu","id":237053180,"id_str":"237053180","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237053180,"id_str":"237053180","name":"Yu-Chang + Hsu","screen_name":"HsuBSU","location":"","description":"Professor, Boise + State University","url":"https:\/\/t.co\/hyvWHDFMCC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hyvWHDFMCC","expanded_url":"https:\/\/yuchanghsu.wixsite.com\/portfolio","display_url":"yuchanghsu.wixsite.com\/portfolio","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":405,"listed_count":0,"created_at":"Tue + Jan 11 23:53:22 +0000 2011","favourites_count":1093,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":432,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213226927\/HSU_Headshot_new_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213226927\/HSU_Headshot_new_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:30:19 +0000 2019","id":1187405973012377600,"id_str":"1187405973012377600","full_text":"Had + a great meeting and discussions with Dr. Hodges! Look forward to serving as + the International Column Editor in the next few years! @hodgesc @AECTTechTrends + #aect2019 https:\/\/t.co\/i83vrYpRms","truncated":false,"display_text_range":[0,169],"entities":{"hashtags":[{"text":"aect2019","indices":[160,169]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[135,143]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[144,159]}],"urls":[],"media":[{"id":1187405922986946560,"id_str":"1187405922986946560","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqDZVPU8AA_VGt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqDZVPU8AA_VGt.jpg","url":"https:\/\/t.co\/i83vrYpRms","display_url":"pic.twitter.com\/i83vrYpRms","expanded_url":"https:\/\/twitter.com\/HsuBSU\/status\/1187405973012377600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":920,"h":1200,"resize":"fit"},"large":{"w":1570,"h":2048,"resize":"fit"},"small":{"w":521,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187405922986946560,"id_str":"1187405922986946560","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqDZVPU8AA_VGt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqDZVPU8AA_VGt.jpg","url":"https:\/\/t.co\/i83vrYpRms","display_url":"pic.twitter.com\/i83vrYpRms","expanded_url":"https:\/\/twitter.com\/HsuBSU\/status\/1187405973012377600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":920,"h":1200,"resize":"fit"},"large":{"w":1570,"h":2048,"resize":"fit"},"small":{"w":521,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237053180,"id_str":"237053180","name":"Yu-Chang + Hsu","screen_name":"HsuBSU","location":"","description":"Professor, Boise + State University","url":"https:\/\/t.co\/hyvWHDFMCC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hyvWHDFMCC","expanded_url":"https:\/\/yuchanghsu.wixsite.com\/portfolio","display_url":"yuchanghsu.wixsite.com\/portfolio","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":405,"listed_count":0,"created_at":"Tue + Jan 11 23:53:22 +0000 2011","favourites_count":1093,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":432,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213226927\/HSU_Headshot_new_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213226927\/HSU_Headshot_new_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:44:27 +0000 2019","id":1187409527475453957,"id_str":"1187409527475453957","full_text":"RT + @AmyLomellini_ID: Great day with inspiring people at #AECT19! Looking forward + to tomorrow!\n\n@nicolapallitt @christieliuidtr @jesustrespa\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[56,63]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[3,19]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[95,109]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 04:43:28 +0000 2019","id":1187228088616177664,"id_str":"1187228088616177664","full_text":"Great + day with inspiring people at #AECT19! Looking forward to tomorrow!\n\n@nicolapallitt + @christieliuidtr @jesustrespalac1 @AllisonHallAZ @d_mulder \n\n(not pictured: + @DrRossPerkins @plowenthal @JenM @PaulineMuljana and many more...) \n\n@edtechdoc + @AECT #aect19inspired @gsa_aect https:\/\/t.co\/KORrK9Pu86","truncated":false,"display_text_range":[0,276],"entities":{"hashtags":[{"text":"AECT19","indices":[35,42]},{"text":"aect19inspired","indices":[251,266]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[74,88]},{"screen_name":"JesusTrespalac1","name":"Jesus + Trespalacios","id":1554537673771126785,"id_str":"1554537673771126785","indices":[106,122]},{"screen_name":"AllisonHallAZ","name":"Dr. + Allison Barsnica Hall","id":720930385,"id_str":"720930385","indices":[123,137]},{"screen_name":"d_mulder","name":"Dr. + Dave Mulder","id":30278154,"id_str":"30278154","indices":[138,147]},{"screen_name":"DrRossPerkins","name":"Ross + Perkins, PhD","id":2905458781,"id_str":"2905458781","indices":[165,179]},{"screen_name":"plowenthal","name":"Patrick + Lowenthal","id":14364665,"id_str":"14364665","indices":[180,191]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[192,197]},{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[198,213]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[245,250]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[267,276]}],"urls":[],"media":[{"id":1187228076704296960,"id_str":"1187228076704296960","indices":[277,300],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnhpUNUcAAX0LO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnhpUNUcAAX0LO.jpg","url":"https:\/\/t.co\/KORrK9Pu86","display_url":"pic.twitter.com\/KORrK9Pu86","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1187228088616177664\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1600,"h":1200,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187228076704296960,"id_str":"1187228076704296960","indices":[277,300],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnhpUNUcAAX0LO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnhpUNUcAAX0LO.jpg","url":"https:\/\/t.co\/KORrK9Pu86","display_url":"pic.twitter.com\/KORrK9Pu86","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1187228088616177664\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1600,"h":1200,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187228076704288769,"id_str":"1187228076704288769","indices":[277,300],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnhpUNUUAEGct8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnhpUNUUAEGct8.jpg","url":"https:\/\/t.co\/KORrK9Pu86","display_url":"pic.twitter.com\/KORrK9Pu86","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1187228088616177664\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":960,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910574724748644353,"id_str":"910574724748644353","name":"Amy + Lomellini","screen_name":"AmyLomellini_ID","location":"New York, USA","description":"Associate + Director of Blended & Online Learning and doctoral candidate with a passion + for accessible and inclusive online teaching and learning. #EdTech #A11y","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":644,"friends_count":1061,"listed_count":9,"created_at":"Wed + Sep 20 18:41:46 +0000 2017","favourites_count":7378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1141,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910574724748644353\/1551624059","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":25,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:00:53 +0000 2019","id":1187398563686256640,"id_str":"1187398563686256640","full_text":"RT + @LearnEngage: Ever wonder how to #sketchnote a presentation? Pros from @UNTsocial + and @ECNUER hope to show you how at the Inspire! Sketc\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"sketchnote","indices":[36,47]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]},{"screen_name":"UNTsocial","name":"University + of North Texas","id":18462994,"id_str":"18462994","indices":[74,84]},{"screen_name":"ECNUER","name":"East + China Normal University","id":1732892550,"id_str":"1732892550","indices":[89,96]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:00:00 +0000 2019","id":1187398342889754625,"id_str":"1187398342889754625","full_text":"Ever + wonder how to #sketchnote a presentation? Pros from @UNTsocial and @ECNUER + hope to show you how at the Inspire! Sketchnoting session at 3pm! Come learn + with us! #AECT19 #aect19inspired @AECT https:\/\/t.co\/25zZOVkv2N","truncated":false,"display_text_range":[0,195],"entities":{"hashtags":[{"text":"sketchnote","indices":[19,30]},{"text":"AECT19","indices":[166,173]},{"text":"aect19inspired","indices":[174,189]}],"symbols":[],"user_mentions":[{"screen_name":"UNTsocial","name":"University + of North Texas","id":18462994,"id_str":"18462994","indices":[57,67]},{"screen_name":"ECNUER","name":"East + China Normal University","id":1732892550,"id_str":"1732892550","indices":[72,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[190,195]}],"urls":[],"media":[{"id":1187122528189407235,"id_str":"1187122528189407235","indices":[196,219],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","url":"https:\/\/t.co\/25zZOVkv2N","display_url":"pic.twitter.com\/25zZOVkv2N","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187398342889754625\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187122528189407235,"id_str":"1187122528189407235","indices":[196,219],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","url":"https:\/\/t.co\/25zZOVkv2N","display_url":"pic.twitter.com\/25zZOVkv2N","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187398342889754625\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:30:19 +0000 2019","id":1187405973012377600,"id_str":"1187405973012377600","full_text":"Had + a great meeting and discussions with Dr. Hodges! Look forward to serving as + the International Column Editor in the next few years! @hodgesc @AECTTechTrends + #aect2019 https:\/\/t.co\/i83vrYpRms","truncated":false,"display_text_range":[0,169],"entities":{"hashtags":[{"text":"aect2019","indices":[160,169]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[135,143]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[144,159]}],"urls":[],"media":[{"id":1187405922986946560,"id_str":"1187405922986946560","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqDZVPU8AA_VGt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqDZVPU8AA_VGt.jpg","url":"https:\/\/t.co\/i83vrYpRms","display_url":"pic.twitter.com\/i83vrYpRms","expanded_url":"https:\/\/twitter.com\/HsuBSU\/status\/1187405973012377600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":920,"h":1200,"resize":"fit"},"large":{"w":1570,"h":2048,"resize":"fit"},"small":{"w":521,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187405922986946560,"id_str":"1187405922986946560","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqDZVPU8AA_VGt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqDZVPU8AA_VGt.jpg","url":"https:\/\/t.co\/i83vrYpRms","display_url":"pic.twitter.com\/i83vrYpRms","expanded_url":"https:\/\/twitter.com\/HsuBSU\/status\/1187405973012377600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":920,"h":1200,"resize":"fit"},"large":{"w":1570,"h":2048,"resize":"fit"},"small":{"w":521,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237053180,"id_str":"237053180","name":"Yu-Chang + Hsu","screen_name":"HsuBSU","location":"","description":"Professor, Boise + State University","url":"https:\/\/t.co\/hyvWHDFMCC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hyvWHDFMCC","expanded_url":"https:\/\/yuchanghsu.wixsite.com\/portfolio","display_url":"yuchanghsu.wixsite.com\/portfolio","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":405,"listed_count":0,"created_at":"Tue + Jan 11 23:53:22 +0000 2011","favourites_count":1093,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":432,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213226927\/HSU_Headshot_new_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213226927\/HSU_Headshot_new_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:27:17 +0000 2019","id":1187405208441065472,"id_str":"1187405208441065472","full_text":"So + happy to see our own Noah Koubenec @EdTech_UofSC delivered the Inspire! Session + on GitHub! Nicely done! #aect19 #aect19inspired https:\/\/t.co\/2L4JpYHjOP","truncated":false,"display_text_range":[0,130],"entities":{"hashtags":[{"text":"aect19","indices":[107,114]},{"text":"aect19inspired","indices":[115,130]}],"symbols":[],"user_mentions":[{"screen_name":"EdTech_UofSC","name":"LD&T + and EdTech at UofSC","id":2835369671,"id_str":"2835369671","indices":[38,51]}],"urls":[],"media":[{"id":1187405190883790849,"id_str":"1187405190883790849","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqCut8VUAE0j-V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqCut8VUAE0j-V.jpg","url":"https:\/\/t.co\/2L4JpYHjOP","display_url":"pic.twitter.com\/2L4JpYHjOP","expanded_url":"https:\/\/twitter.com\/Happy_Tao\/status\/1187405208441065472\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187405190883790849,"id_str":"1187405190883790849","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqCut8VUAE0j-V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqCut8VUAE0j-V.jpg","url":"https:\/\/t.co\/2L4JpYHjOP","display_url":"pic.twitter.com\/2L4JpYHjOP","expanded_url":"https:\/\/twitter.com\/Happy_Tao\/status\/1187405208441065472\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":482227724,"id_str":"482227724","name":"Hengtao + Tang","screen_name":"Happy_Tao","location":"Columbia, SC","description":"Assistant + Professor @edtech_uofsc. #Gamecock Live love teach! @psuldt alumni. We are....","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":390,"friends_count":870,"listed_count":13,"created_at":"Fri + Feb 03 17:29:31 +0000 2012","favourites_count":2095,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1127,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1804992888\/h_large_CCWB_7b22000080c72f76_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1804992888\/h_large_CCWB_7b22000080c72f76_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/482227724\/1578336887","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 18:03:03 +0000 2019","id":1187429308878458881,"id_str":"1187429308878458881","full_text":"RT + @ISLT_FSU: 1:00 pm -1:50 pm in Ballroom A (331) \u2013 ADDIE-ing the Systems + Approach to Improve Instruction for 6000 University Students by\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 18:01:06 +0000 2019","id":1187428818702786562,"id_str":"1187428818702786562","full_text":"1:00 + pm -1:50 pm in Ballroom A (331) \u2013 ADDIE-ing the Systems Approach to Improve + Instruction for 6000 University Students by Jeffrey Phillips, James Klein, + Elizabeth Dunne & Mike Siriwardena #FSU #FSUCOE #ISLT #ADDIE #SystemsApproach + #Instruction #AECT19","truncated":false,"display_text_range":[0,258],"entities":{"hashtags":[{"text":"FSU","indices":[195,199]},{"text":"FSUCOE","indices":[200,207]},{"text":"ISLT","indices":[208,213]},{"text":"ADDIE","indices":[214,220]},{"text":"SystemsApproach","indices":[221,237]},{"text":"Instruction","indices":[238,250]},{"text":"AECT19","indices":[251,258]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:15:02 +0000 2019","id":1187387027865718784,"id_str":"1187387027865718784","full_text":"RT + @tutaleni: The @EdTechOkstate @OSUEHA is ready for our workshop in ballroom + D. Join us #AECT19inspired https:\/\/t.co\/WCClXexFkK","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]},{"screen_name":"EdTechOkstate","name":"Okstate + Ed Tech","id":4141659852,"id_str":"4141659852","indices":[18,32]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":39633554,"id_str":"39633554","name":"Dr. + Jay","screen_name":"jayphd18","location":"FB Live + YouTube","description":"@Learngenix + | Learning Dev & Tech Specialist | Blogger | Innovator Mindset Certified | + Practitioner of the Entrepreneurial Mindset Profile | RTs\u2260Endorsements","url":"https:\/\/t.co\/Vq9uQJwqFx","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Vq9uQJwqFx","expanded_url":"http:\/\/www.jayphd.com","display_url":"jayphd.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1756,"friends_count":1802,"listed_count":174,"created_at":"Tue + May 12 23:57:17 +0000 2009","favourites_count":16040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18821,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFAFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1301320893982011392\/EaXR9FNf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1301320893982011392\/EaXR9FNf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/39633554\/1550539796","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"CC3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F7DA93","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 15:08:57 +0000 2019","id":1187385494805471232,"id_str":"1187385494805471232","full_text":"The + @EdTechOkstate @OSUEHA is ready for our workshop in ballroom D. Join us #AECT19inspired + https:\/\/t.co\/WCClXexFkK","truncated":false,"display_text_range":[0,91],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[76,91]}],"symbols":[],"user_mentions":[{"screen_name":"EdTechOkstate","name":"Okstate + Ed Tech","id":4141659852,"id_str":"4141659852","indices":[4,18]}],"urls":[],"media":[{"id":1187385489050877958,"id_str":"1187385489050877958","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpwz65UwAY4A8K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpwz65UwAY4A8K.jpg","url":"https:\/\/t.co\/WCClXexFkK","display_url":"pic.twitter.com\/WCClXexFkK","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187385494805471232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187385489050877958,"id_str":"1187385489050877958","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpwz65UwAY4A8K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpwz65UwAY4A8K.jpg","url":"https:\/\/t.co\/WCClXexFkK","display_url":"pic.twitter.com\/WCClXexFkK","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187385494805471232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:44:40 +0000 2019","id":1187409582366302208,"id_str":"1187409582366302208","full_text":"RT + @pazureka: Good morning @AECT! Take a look at what the Learner Engagement + Division has in store today and join us. The Roundtables will\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[3,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 15:51:33 +0000 2019","id":1187396215400325120,"id_str":"1187396215400325120","full_text":"Good + morning @AECT! Take a look at what the Learner Engagement Division has in + store today and join us. The Roundtables will be buzzing starting at 10AM + in Paradise North! @LearnEngage #aect19 https:\/\/t.co\/omORQjjefm","truncated":false,"display_text_range":[0,192],"entities":{"hashtags":[{"text":"aect19","indices":[185,192]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[13,18]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[172,184]}],"urls":[],"media":[{"id":1187396211801636865,"id_str":"1187396211801636865","indices":[193,216],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp6kEQUwAEI8CW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp6kEQUwAEI8CW.jpg","url":"https:\/\/t.co\/omORQjjefm","display_url":"pic.twitter.com\/omORQjjefm","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187396215400325120\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1168,"h":802,"resize":"fit"},"medium":{"w":1168,"h":802,"resize":"fit"},"small":{"w":680,"h":467,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187396211801636865,"id_str":"1187396211801636865","indices":[193,216],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp6kEQUwAEI8CW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp6kEQUwAEI8CW.jpg","url":"https:\/\/t.co\/omORQjjefm","display_url":"pic.twitter.com\/omORQjjefm","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187396215400325120\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1168,"h":802,"resize":"fit"},"medium":{"w":1168,"h":802,"resize":"fit"},"small":{"w":680,"h":467,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 17:31:00 +0000 2019","id":1187421243097567234,"id_str":"1187421243097567234","full_text":".@plowenthal + and I are about to share the results of our study on the use of @FlipGrid + in a graduate level online course. Come check us out! We will be in Conference + Room 12 at 2pm. #aect19 #aect19inspired https:\/\/t.co\/xLmxI8GHgu","truncated":false,"display_text_range":[0,205],"entities":{"hashtags":[{"text":"aect19","indices":[182,189]},{"text":"aect19inspired","indices":[190,205]}],"symbols":[],"user_mentions":[{"screen_name":"plowenthal","name":"Patrick + Lowenthal","id":14364665,"id_str":"14364665","indices":[1,12]}],"urls":[],"media":[{"id":1184455719657136128,"id_str":"1184455719657136128","indices":[206,229],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAIM5ZX4AACV5k.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAIM5ZX4AACV5k.png","url":"https:\/\/t.co\/xLmxI8GHgu","display_url":"pic.twitter.com\/xLmxI8GHgu","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187421243097567234\/photo\/1","type":"photo","sizes":{"medium":{"w":731,"h":519,"resize":"fit"},"small":{"w":680,"h":483,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":731,"h":519,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184455719657136128,"id_str":"1184455719657136128","indices":[206,229],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAIM5ZX4AACV5k.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAIM5ZX4AACV5k.png","url":"https:\/\/t.co\/xLmxI8GHgu","display_url":"pic.twitter.com\/xLmxI8GHgu","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187421243097567234\/photo\/1","type":"photo","sizes":{"medium":{"w":731,"h":519,"resize":"fit"},"small":{"w":680,"h":483,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":731,"h":519,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:30:24 +0000 2019","id":1187405994852118528,"id_str":"1187405994852118528","full_text":"#aect19 + Tip #08 - roundtable presentations are a great way to get to know people that + you didn\u2019t know before, so avoid them at all cost.","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 17:00:59 +0000 2019","id":1187413691538395136,"id_str":"1187413691538395136","full_text":"Clearly + labeled tables for the #aect19inspired roundtable sessions! @michaelmgrant + and @dctrcurry -- Many thanks to whoever made that happen! @AECT","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[{"text":"aect19inspired","indices":[31,46]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[68,82]},{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[87,97]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[143,148]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:20:11 +0000 2019","id":1187388323150651395,"id_str":"1187388323150651395","full_text":"RT + @kzenovka: In less than 30 minutes....start your day with an Inspire! Online + Microaggression in Pavillon 9. \n#aect19inspired #aect19 #ae\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[112,127]},{"text":"aect19","indices":[128,135]}],"symbols":[],"user_mentions":[{"screen_name":"kzenovka","name":"Kzenovka","id":14994538,"id_str":"14994538","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 14:32:00 +0000 2019","id":1187376196306124801,"id_str":"1187376196306124801","full_text":"In + less than 30 minutes....start your day with an Inspire! Online Microaggression + in Pavillon 9. \n#aect19inspired #aect19 #aectgsa https:\/\/t.co\/ErJVYvcthR","truncated":false,"display_text_range":[0,130],"entities":{"hashtags":[{"text":"aect19inspired","indices":[98,113]},{"text":"aect19","indices":[114,121]},{"text":"aectgsa","indices":[122,130]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187249257838891009,"id_str":"1187249257838891009","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn06OFVUAEFqkd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn06OFVUAEFqkd.jpg","url":"https:\/\/t.co\/ErJVYvcthR","display_url":"pic.twitter.com\/ErJVYvcthR","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1187376196306124801\/photo\/1","type":"photo","sizes":{"medium":{"w":960,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":960,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187249257838891009,"id_str":"1187249257838891009","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn06OFVUAEFqkd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn06OFVUAEFqkd.jpg","url":"https:\/\/t.co\/ErJVYvcthR","display_url":"pic.twitter.com\/ErJVYvcthR","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1187376196306124801\/photo\/1","type":"photo","sizes":{"medium":{"w":960,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":960,"h":640,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14994538,"id_str":"14994538","name":"Kzenovka","screen_name":"kzenovka","location":"Metaverse","description":"educator, + coolhunter, and sometimes puppetmaster. Metagame Book Club, Games & Sim Network + and Inevitable Instructors","url":"https:\/\/t.co\/SN1thrlVqD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SN1thrlVqD","expanded_url":"https:\/\/sites.google.com\/site\/metagamebookclub\/","display_url":"sites.google.com\/site\/metagameb\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1338,"friends_count":3152,"listed_count":228,"created_at":"Tue + Jun 03 16:35:29 +0000 2008","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15007,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14994538\/1436550079","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:13:47 +0000 2019","id":1187386714370854912,"id_str":"1187386714370854912","full_text":"RT + @hajeen2040: Interesting topic and fabulous presentation! #AECT19 #fsu2040 + #ReciprocalTeaching https:\/\/t.co\/gioNdHiptN","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"AECT19","indices":[61,68]},{"text":"fsu2040","indices":[69,77]},{"text":"ReciprocalTeaching","indices":[78,97]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gioNdHiptN","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186732733516701696","display_url":"twitter.com\/ISLT_FSU\/statu\u2026","indices":[98,121]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1664133686,"id_str":"1664133686","name":"Zhongrui(Ray) + Yao","screen_name":"ZhongruiYao","location":"Davis, CA","description":"Dr. + Zhongrui Yao in ISLT program at Florida State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":109,"friends_count":438,"listed_count":6,"created_at":"Mon + Aug 12 04:22:44 +0000 2013","favourites_count":511,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":690,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1168975986920214530\/OJRLfdQQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1168975986920214530\/OJRLfdQQ_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 06:12:45 +0000 2019","id":1186888167502204928,"id_str":"1186888167502204928","full_text":"Interesting + topic and fabulous presentation! #AECT19 #fsu2040 #ReciprocalTeaching https:\/\/t.co\/gioNdHiptN","truncated":false,"display_text_range":[0,81],"entities":{"hashtags":[{"text":"AECT19","indices":[45,52]},{"text":"fsu2040","indices":[53,61]},{"text":"ReciprocalTeaching","indices":[62,81]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gioNdHiptN","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186732733516701696","display_url":"twitter.com\/ISLT_FSU\/statu\u2026","indices":[82,105]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1033854044039729152,"id_str":"1033854044039729152","name":"Hajeen + Choi","screen_name":"hajeenfsu","location":"FL","description":"PhD., Interested + in online teaching and learning, motivation, engagement, othering\/belonging, + networked learning, social media in education","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":178,"listed_count":1,"created_at":"Sun + Aug 26 23:09:46 +0000 2018","favourites_count":653,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1033854044039729152\/1535327544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186732733516701696,"quoted_status_id_str":"1186732733516701696","quoted_status_permalink":{"url":"https:\/\/t.co\/gioNdHiptN","expanded":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186732733516701696","display":"twitter.com\/ISLT_FSU\/statu\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 19:55:06 +0000 2019","id":1186732733516701696,"id_str":"1186732733516701696","full_text":"Come + visit poster T38: Online Reciprocal Teaching: Designing an Instructional Approach + that Scaffolds Metacognitive Strategy Use for College Students with #FSU #FSUCOE + #ISLT Jiyae Bong & @vdennen #AECT19 #AECT2019 https:\/\/t.co\/JcnMfDqJv6","truncated":false,"display_text_range":[0,217],"entities":{"hashtags":[{"text":"FSU","indices":[155,159]},{"text":"FSUCOE","indices":[160,167]},{"text":"ISLT","indices":[168,173]},{"text":"AECT19","indices":[200,207]},{"text":"AECT2019","indices":[208,217]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[191,199]}],"urls":[],"media":[{"id":1186732730333179910,"id_str":"1186732730333179910","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","url":"https:\/\/t.co\/JcnMfDqJv6","display_url":"pic.twitter.com\/JcnMfDqJv6","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186732733516701696\/photo\/1","type":"photo","sizes":{"large":{"w":1609,"h":1075,"resize":"fit"},"medium":{"w":1200,"h":802,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1186732730333179910,"id_str":"1186732730333179910","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","url":"https:\/\/t.co\/JcnMfDqJv6","display_url":"pic.twitter.com\/JcnMfDqJv6","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186732733516701696\/photo\/1","type":"photo","sizes":{"large":{"w":1609,"h":1075,"resize":"fit"},"medium":{"w":1200,"h":802,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186732733516701696,"quoted_status_id_str":"1186732733516701696","quoted_status_permalink":{"url":"https:\/\/t.co\/gioNdHiptN","expanded":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186732733516701696","display":"twitter.com\/ISLT_FSU\/statu\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:53:07 +0000 2019","id":1187411712045019136,"id_str":"1187411712045019136","full_text":"Flip + Your PD \u2066@NancyeBlackEdu\u2069 \u2066@AECT\u2069 #aect19 #aect19inspired + #flippedclasroom https:\/\/t.co\/yY7ojBKZ2I","truncated":false,"display_text_range":[0,79],"entities":{"hashtags":[{"text":"aect19","indices":[39,46]},{"text":"aect19inspired","indices":[47,62]},{"text":"flippedclasroom","indices":[63,79]}],"symbols":[],"user_mentions":[{"screen_name":"NancyeBlackEdu","name":"Nancye + Blair Black","id":175808323,"id_str":"175808323","indices":[14,29]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[32,37]}],"urls":[],"media":[{"id":1187411706521145344,"id_str":"1187411706521145344","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqIp-lVUAAjoeP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqIp-lVUAAjoeP.jpg","url":"https:\/\/t.co\/yY7ojBKZ2I","display_url":"pic.twitter.com\/yY7ojBKZ2I","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187411712045019136\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187411706521145344,"id_str":"1187411706521145344","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqIp-lVUAAjoeP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqIp-lVUAAjoeP.jpg","url":"https:\/\/t.co\/yY7ojBKZ2I","display_url":"pic.twitter.com\/yY7ojBKZ2I","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187411712045019136\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:43:23 +0000 2019","id":1187409260965179393,"id_str":"1187409260965179393","full_text":"RT + @DrVirtuality: @NancyeBlackEdu presenting on \"Flip Your PD: Top Tips and + Tools for Creating PD Videos\" right now in Ballroom G @ @aect #\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[3,16]},{"screen_name":"NancyeBlackEdu","name":"Nancye + Blair Black","id":175808323,"id_str":"175808323","indices":[18,33]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[132,137]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:27:19 +0000 2019","id":1187405218121535490,"id_str":"1187405218121535490","full_text":"@NancyeBlackEdu + presenting on \"Flip Your PD: Top Tips and Tools for Creating PD Videos\" + right now in Ballroom G @ @aect #aect19 #aect19inspired #flippedclasroom https:\/\/t.co\/19CV3S7apd","truncated":false,"display_text_range":[0,160],"entities":{"hashtags":[{"text":"aect19","indices":[120,127]},{"text":"aect19inspired","indices":[128,143]},{"text":"flippedclasroom","indices":[144,160]}],"symbols":[],"user_mentions":[{"screen_name":"NancyeBlackEdu","name":"Nancye + Blair Black","id":175808323,"id_str":"175808323","indices":[0,15]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[114,119]}],"urls":[],"media":[{"id":1187405205790265344,"id_str":"1187405205790265344","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqCvleUEAAgeRJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqCvleUEAAgeRJ.jpg","url":"https:\/\/t.co\/19CV3S7apd","display_url":"pic.twitter.com\/19CV3S7apd","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187405218121535490\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":960,"h":1280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187405205790265344,"id_str":"1187405205790265344","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqCvleUEAAgeRJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqCvleUEAAgeRJ.jpg","url":"https:\/\/t.co\/19CV3S7apd","display_url":"pic.twitter.com\/19CV3S7apd","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187405218121535490\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":960,"h":1280,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":175808323,"in_reply_to_user_id_str":"175808323","in_reply_to_screen_name":"NancyeBlackEdu","user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:22:32 +0000 2019","id":1187388913998008325,"id_str":"1187388913998008325","full_text":"RT + @kzenovka: Join us at 2 pm today for Educational Technology, Social Justice + and Critical Whiteness panel at 2 pm in Conference Room 4\n#a\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kzenovka","name":"Kzenovka","id":14994538,"id_str":"14994538","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 11:33:00 +0000 2019","id":1187331149535727621,"id_str":"1187331149535727621","full_text":"Join + us at 2 pm today for Educational Technology, Social Justice and Critical Whiteness + panel at 2 pm in Conference Room 4\n#aect19inspired #AECTech2019 #aect19 #aectgsa + https:\/\/t.co\/RbGqHIy1h0","truncated":false,"display_text_range":[0,168],"entities":{"hashtags":[{"text":"aect19inspired","indices":[123,138]},{"text":"AECTech2019","indices":[139,151]},{"text":"aect19","indices":[152,159]},{"text":"aectgsa","indices":[160,168]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187250558190551040,"id_str":"1187250558190551040","indices":[169,192],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn2F6RVAAAZ-RY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn2F6RVAAAZ-RY.jpg","url":"https:\/\/t.co\/RbGqHIy1h0","display_url":"pic.twitter.com\/RbGqHIy1h0","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1187331149535727621\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":340,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"medium":{"w":1024,"h":512,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187250558190551040,"id_str":"1187250558190551040","indices":[169,192],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn2F6RVAAAZ-RY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn2F6RVAAAZ-RY.jpg","url":"https:\/\/t.co\/RbGqHIy1h0","display_url":"pic.twitter.com\/RbGqHIy1h0","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1187331149535727621\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":340,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"medium":{"w":1024,"h":512,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14994538,"id_str":"14994538","name":"Kzenovka","screen_name":"kzenovka","location":"Metaverse","description":"educator, + coolhunter, and sometimes puppetmaster. Metagame Book Club, Games & Sim Network + and Inevitable Instructors","url":"https:\/\/t.co\/SN1thrlVqD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SN1thrlVqD","expanded_url":"https:\/\/sites.google.com\/site\/metagamebookclub\/","display_url":"sites.google.com\/site\/metagameb\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1338,"friends_count":3152,"listed_count":228,"created_at":"Tue + Jun 03 16:35:29 +0000 2008","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15007,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14994538\/1436550079","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:47:48 +0000 2019","id":1187395272764051459,"id_str":"1187395272764051459","full_text":"RT + @PaulineMuljana: The \"Narrowing Down your Research Interests\" @gsa_aect + panel session that I co-facilitated with Yam has inspired me. I''\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[65,74]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 14:52:50 +0000 2019","id":1187381441023201280,"id_str":"1187381441023201280","full_text":"The + \"Narrowing Down your Research Interests\" @gsa_aect panel session that I + co-facilitated with Yam has inspired me. I''m sure it has inspired the attendees + as well. Shout out to the panelists, Drs. @aac3 , @tintinluo , @robmoore3 + , and @eromerohall . #aect19 https:\/\/t.co\/gKIkBntwgp","truncated":false,"display_text_range":[0,258],"entities":{"hashtags":[{"text":"aect19","indices":[251,258]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[45,54]},{"screen_name":"aac3","name":"Dr. + ali carr-chellman","id":27413768,"id_str":"27413768","indices":[198,203]},{"screen_name":"tintinluo","name":"Tian + Luo","id":29474883,"id_str":"29474883","indices":[206,216]},{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[219,229]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[236,248]}],"urls":[],"media":[{"id":1187381434102665217,"id_str":"1187381434102665217","indices":[259,282],"media_url":"http:\/\/pbs.twimg.com\/media\/EHptH5CVUAEliUj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHptH5CVUAEliUj.jpg","url":"https:\/\/t.co\/gKIkBntwgp","display_url":"pic.twitter.com\/gKIkBntwgp","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187381441023201280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187381434102665217,"id_str":"1187381434102665217","indices":[259,282],"media_url":"http:\/\/pbs.twimg.com\/media\/EHptH5CVUAEliUj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHptH5CVUAEliUj.jpg","url":"https:\/\/t.co\/gKIkBntwgp","display_url":"pic.twitter.com\/gKIkBntwgp","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187381441023201280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 18:00:00 +0000 2019","id":1187428544290447361,"id_str":"1187428544290447361","full_text":"How + can you use #podcasts and #ePortfolios in the classroom? Check out our Instructional + Media session today at 1pm in Conf Room 8! #AECT19 #learnerengagement https:\/\/t.co\/iMgRHGP4Bl","truncated":false,"display_text_range":[0,158],"entities":{"hashtags":[{"text":"podcasts","indices":[16,25]},{"text":"ePortfolios","indices":[30,42]},{"text":"AECT19","indices":[132,139]},{"text":"learnerengagement","indices":[140,158]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187115652575911938,"id_str":"1187115652575911938","indices":[159,182],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl7ZXsX4AI_THX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl7ZXsX4AI_THX.jpg","url":"https:\/\/t.co\/iMgRHGP4Bl","display_url":"pic.twitter.com\/iMgRHGP4Bl","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187428544290447361\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187115652575911938,"id_str":"1187115652575911938","indices":[159,182],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl7ZXsX4AI_THX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl7ZXsX4AI_THX.jpg","url":"https:\/\/t.co\/iMgRHGP4Bl","display_url":"pic.twitter.com\/iMgRHGP4Bl","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187428544290447361\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:36:28 +0000 2019","id":1187407520739946498,"id_str":"1187407520739946498","full_text":"RT + @LearnEngage: Ever wonder how to #sketchnote a presentation? Pros from @UNTsocial + and @ECNUER hope to show you how at the Inspire! Sketc\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"sketchnote","indices":[36,47]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]},{"screen_name":"UNTsocial","name":"University + of North Texas","id":18462994,"id_str":"18462994","indices":[74,84]},{"screen_name":"ECNUER","name":"East + China Normal University","id":1732892550,"id_str":"1732892550","indices":[89,96]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64769037,"id_str":"64769037","name":"jenn\u03b9\u0493er + engl\u03c5nd","screen_name":"jmenglund03","location":"Settler on Dakota homelands","description":"@UMN_CI + LT PhD Candidate \u2022 @UMNews instructional designer \u2022 @GOGN_OER scholar + \u2022 @femedtech member \u2022 #OEP advocate \u2022 Pronouns: she\/her","url":"https:\/\/t.co\/cjLLex1JDn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cjLLex1JDn","expanded_url":"https:\/\/jenniferenglund.net\/","display_url":"jenniferenglund.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":662,"friends_count":627,"listed_count":72,"created_at":"Tue + Aug 11 17:10:00 +0000 2009","favourites_count":2052,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2918,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B7C8E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64769037\/1500750705","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"452568","profile_sidebar_border_color":"204207","profile_sidebar_fill_color":"060A00","profile_text_color":"618238","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:00:00 +0000 2019","id":1187398342889754625,"id_str":"1187398342889754625","full_text":"Ever + wonder how to #sketchnote a presentation? Pros from @UNTsocial and @ECNUER + hope to show you how at the Inspire! Sketchnoting session at 3pm! Come learn + with us! #AECT19 #aect19inspired @AECT https:\/\/t.co\/25zZOVkv2N","truncated":false,"display_text_range":[0,195],"entities":{"hashtags":[{"text":"sketchnote","indices":[19,30]},{"text":"AECT19","indices":[166,173]},{"text":"aect19inspired","indices":[174,189]}],"symbols":[],"user_mentions":[{"screen_name":"UNTsocial","name":"University + of North Texas","id":18462994,"id_str":"18462994","indices":[57,67]},{"screen_name":"ECNUER","name":"East + China Normal University","id":1732892550,"id_str":"1732892550","indices":[72,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[190,195]}],"urls":[],"media":[{"id":1187122528189407235,"id_str":"1187122528189407235","indices":[196,219],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","url":"https:\/\/t.co\/25zZOVkv2N","display_url":"pic.twitter.com\/25zZOVkv2N","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187398342889754625\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187122528189407235,"id_str":"1187122528189407235","indices":[196,219],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","url":"https:\/\/t.co\/25zZOVkv2N","display_url":"pic.twitter.com\/25zZOVkv2N","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187398342889754625\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:05:04 +0000 2019","id":1187399618918699008,"id_str":"1187399618918699008","full_text":"This + \"I Zap, U Zap, We All Zap\" workshop is totally inspiring. If you are in + the job market, this is a great idea to present your resume. Shout out to + the Oklahoma State Univ team who are facilitating the workshop! #aect19 #aect19inspired + https:\/\/t.co\/WIt9namhFl","truncated":false,"display_text_range":[0,238],"entities":{"hashtags":[{"text":"aect19","indices":[215,222]},{"text":"aect19inspired","indices":[223,238]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187399594914639872,"id_str":"1187399594914639872","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHp9o_VUcAAHsvp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHp9o_VUcAAHsvp.jpg","url":"https:\/\/t.co\/WIt9namhFl","display_url":"pic.twitter.com\/WIt9namhFl","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187399618918699008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":240,"h":320,"resize":"fit"},"small":{"w":240,"h":320,"resize":"fit"},"medium":{"w":240,"h":320,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187399594914639872,"id_str":"1187399594914639872","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHp9o_VUcAAHsvp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHp9o_VUcAAHsvp.jpg","url":"https:\/\/t.co\/WIt9namhFl","display_url":"pic.twitter.com\/WIt9namhFl","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187399618918699008\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":240,"h":320,"resize":"fit"},"small":{"w":240,"h":320,"resize":"fit"},"medium":{"w":240,"h":320,"resize":"fit"}},"video_info":{"aspect_ratio":[3,4],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHp9o_VUcAAHsvp.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:50:04 +0000 2019","id":1187410943938039809,"id_str":"1187410943938039809","full_text":"Stop + by Roundtable T42 to hear about \"Five Success Factors for Effective Mobile + Performance Support Systems\" by Yao Huang & James Klein. 10 am - 10:50 + am #AECT19: #FSU #FSUCOE #ISLT #PerformanceSupport","truncated":false,"display_text_range":[0,205],"entities":{"hashtags":[{"text":"AECT19","indices":[158,165]},{"text":"FSU","indices":[167,171]},{"text":"FSUCOE","indices":[172,179]},{"text":"ISLT","indices":[180,185]},{"text":"PerformanceSupport","indices":[186,205]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 17:39:41 +0000 2019","id":1187423427411316737,"id_str":"1187423427411316737","full_text":"RT + @robmoore3: .@plowenthal and I are about to share the results of our study + on the use of @FlipGrid in a graduate level online course. Co\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[3,13]},{"screen_name":"plowenthal","name":"Patrick + Lowenthal","id":14364665,"id_str":"14364665","indices":[16,27]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 17:31:00 +0000 2019","id":1187421243097567234,"id_str":"1187421243097567234","full_text":".@plowenthal + and I are about to share the results of our study on the use of @FlipGrid + in a graduate level online course. Come check us out! We will be in Conference + Room 12 at 2pm. #aect19 #aect19inspired https:\/\/t.co\/xLmxI8GHgu","truncated":false,"display_text_range":[0,205],"entities":{"hashtags":[{"text":"aect19","indices":[182,189]},{"text":"aect19inspired","indices":[190,205]}],"symbols":[],"user_mentions":[{"screen_name":"plowenthal","name":"Patrick + Lowenthal","id":14364665,"id_str":"14364665","indices":[1,12]}],"urls":[],"media":[{"id":1184455719657136128,"id_str":"1184455719657136128","indices":[206,229],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAIM5ZX4AACV5k.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAIM5ZX4AACV5k.png","url":"https:\/\/t.co\/xLmxI8GHgu","display_url":"pic.twitter.com\/xLmxI8GHgu","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187421243097567234\/photo\/1","type":"photo","sizes":{"medium":{"w":731,"h":519,"resize":"fit"},"small":{"w":680,"h":483,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":731,"h":519,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184455719657136128,"id_str":"1184455719657136128","indices":[206,229],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAIM5ZX4AACV5k.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAIM5ZX4AACV5k.png","url":"https:\/\/t.co\/xLmxI8GHgu","display_url":"pic.twitter.com\/xLmxI8GHgu","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187421243097567234\/photo\/1","type":"photo","sizes":{"medium":{"w":731,"h":519,"resize":"fit"},"small":{"w":680,"h":483,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":731,"h":519,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:44:18 +0000 2019","id":1187409492260118530,"id_str":"1187409492260118530","full_text":"RT + @Happy_Tao: So happy to see our own Noah Koubenec @EdTech_UofSC delivered + the Inspire! Session on GitHub! Nicely done! #aect19 #aect19in\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[122,129]}],"symbols":[],"user_mentions":[{"screen_name":"Happy_Tao","name":"Hengtao + Tang","id":482227724,"id_str":"482227724","indices":[3,13]},{"screen_name":"EdTech_UofSC","name":"LD&T + and EdTech at UofSC","id":2835369671,"id_str":"2835369671","indices":[53,66]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:27:17 +0000 2019","id":1187405208441065472,"id_str":"1187405208441065472","full_text":"So + happy to see our own Noah Koubenec @EdTech_UofSC delivered the Inspire! Session + on GitHub! Nicely done! #aect19 #aect19inspired https:\/\/t.co\/2L4JpYHjOP","truncated":false,"display_text_range":[0,130],"entities":{"hashtags":[{"text":"aect19","indices":[107,114]},{"text":"aect19inspired","indices":[115,130]}],"symbols":[],"user_mentions":[{"screen_name":"EdTech_UofSC","name":"LD&T + and EdTech at UofSC","id":2835369671,"id_str":"2835369671","indices":[38,51]}],"urls":[],"media":[{"id":1187405190883790849,"id_str":"1187405190883790849","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqCut8VUAE0j-V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqCut8VUAE0j-V.jpg","url":"https:\/\/t.co\/2L4JpYHjOP","display_url":"pic.twitter.com\/2L4JpYHjOP","expanded_url":"https:\/\/twitter.com\/Happy_Tao\/status\/1187405208441065472\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187405190883790849,"id_str":"1187405190883790849","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqCut8VUAE0j-V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqCut8VUAE0j-V.jpg","url":"https:\/\/t.co\/2L4JpYHjOP","display_url":"pic.twitter.com\/2L4JpYHjOP","expanded_url":"https:\/\/twitter.com\/Happy_Tao\/status\/1187405208441065472\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":482227724,"id_str":"482227724","name":"Hengtao + Tang","screen_name":"Happy_Tao","location":"Columbia, SC","description":"Assistant + Professor @edtech_uofsc. #Gamecock Live love teach! @psuldt alumni. We are....","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":390,"friends_count":870,"listed_count":13,"created_at":"Fri + Feb 03 17:29:31 +0000 2012","favourites_count":2095,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1127,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1804992888\/h_large_CCWB_7b22000080c72f76_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1804992888\/h_large_CCWB_7b22000080c72f76_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/482227724\/1578336887","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 17:39:36 +0000 2019","id":1187423409468137472,"id_str":"1187423409468137472","full_text":"@DKSch + congratulations! You are the winner of Cards Against AECT! Thank you for your + contribution to @tedaect\u2019s Smaldino and Herring Leadership Endowment. + Where can I find you today? #AECT19 #aect19inspired","truncated":false,"display_text_range":[0,206],"entities":{"hashtags":[{"text":"AECT19","indices":[183,190]},{"text":"aect19inspired","indices":[191,206]}],"symbols":[],"user_mentions":[{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[0,6]},{"screen_name":"tedaect","name":"TED + AECT","id":2165058337,"id_str":"2165058337","indices":[101,109]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":38657815,"in_reply_to_user_id_str":"38657815","in_reply_to_screen_name":"DKSch","user":{"id":281735316,"id_str":"281735316","name":"Dr. + Kalianne L. Neumann","screen_name":"NeumannKL","location":"Stillwater, OK","description":"Assistant + Professor \u2013 Oklahoma State University \u2013 Learning, Design, and Technology","url":"https:\/\/t.co\/C5ihHdSiId","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/C5ihHdSiId","expanded_url":"http:\/\/bit.ly\/RevisionAssistanttoo","display_url":"bit.ly\/RevisionAssist\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":200,"friends_count":194,"listed_count":15,"created_at":"Wed + Apr 13 21:33:05 +0000 2011","favourites_count":445,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":276,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281735316\/1412853928","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:14:53 +0000 2019","id":1187402090546524160,"id_str":"1187402090546524160","full_text":"Presentation + complete! Thank you @caranorth11 @dr_tracy_s @correia65 @myramade for panel + conversation! #aect19inspired #aect19 https:\/\/t.co\/ylezM3Ia9v","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"aect19inspired","indices":[104,119]},{"text":"aect19","indices":[120,127]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[34,46]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[59,69]},{"screen_name":"myramade","name":"Hey, + it''s Myra!","id":15434589,"id_str":"15434589","indices":[70,79]}],"urls":[],"media":[{"id":1187402082778697728,"id_str":"1187402082778697728","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp_5zWVUAAbTQY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp_5zWVUAAbTQY.jpg","url":"https:\/\/t.co\/ylezM3Ia9v","display_url":"pic.twitter.com\/ylezM3Ia9v","expanded_url":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1187402090546524160\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187402082778697728,"id_str":"1187402082778697728","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp_5zWVUAAbTQY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp_5zWVUAAbTQY.jpg","url":"https:\/\/t.co\/ylezM3Ia9v","display_url":"pic.twitter.com\/ylezM3Ia9v","expanded_url":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1187402090546524160\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:15:37 +0000 2019","id":1187387173563068417,"id_str":"1187387173563068417","full_text":"Attending + #MicrosoftTeams session today @AECT #AECT19 #AECT19Inspired #MicrosoftEDU. + Lots of seats open in Ballroom E. \ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a + https:\/\/t.co\/SBGWAdj41N","truncated":false,"display_text_range":[0,130],"entities":{"hashtags":[{"text":"MicrosoftTeams","indices":[10,25]},{"text":"AECT19","indices":[46,53]},{"text":"AECT19Inspired","indices":[54,69]},{"text":"MicrosoftEDU","indices":[70,83]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[40,45]}],"urls":[],"media":[{"id":1187387109532815361,"id_str":"1187387109532815361","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpySPqU0AEVgtz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpySPqU0AEVgtz.jpg","url":"https:\/\/t.co\/SBGWAdj41N","display_url":"pic.twitter.com\/SBGWAdj41N","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187387173563068417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187387109532815361,"id_str":"1187387109532815361","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpySPqU0AEVgtz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpySPqU0AEVgtz.jpg","url":"https:\/\/t.co\/SBGWAdj41N","display_url":"pic.twitter.com\/SBGWAdj41N","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187387173563068417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:22:13 +0000 2019","id":1187403933288824833,"id_str":"1187403933288824833","full_text":"New + Initiative launched by the AECT Teacher Education Division - EdTech Lesson + Repository (https:\/\/t.co\/RhYr6pVBoW). Please submit your #edtech activities + and lessons! #aectted #aect19inspired #k12 https:\/\/t.co\/qROQ9zz5qu","truncated":false,"display_text_range":[0,197],"entities":{"hashtags":[{"text":"edtech","indices":[136,143]},{"text":"aectted","indices":[168,176]},{"text":"aect19inspired","indices":[177,192]},{"text":"k12","indices":[193,197]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RhYr6pVBoW","expanded_url":"http:\/\/bit.ly\/2Ukju4b","display_url":"bit.ly\/2Ukju4b","indices":[91,114]}],"media":[{"id":1187403927525847040,"id_str":"1187403927525847040","indices":[198,221],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqBlLkU8AA0ScQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqBlLkU8AA0ScQ.jpg","url":"https:\/\/t.co\/qROQ9zz5qu","display_url":"pic.twitter.com\/qROQ9zz5qu","expanded_url":"https:\/\/twitter.com\/janetliao33\/status\/1187403933288824833\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":497,"resize":"fit"},"large":{"w":1024,"h":748,"resize":"fit"},"medium":{"w":1024,"h":748,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187403927525847040,"id_str":"1187403927525847040","indices":[198,221],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqBlLkU8AA0ScQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqBlLkU8AA0ScQ.jpg","url":"https:\/\/t.co\/qROQ9zz5qu","display_url":"pic.twitter.com\/qROQ9zz5qu","expanded_url":"https:\/\/twitter.com\/janetliao33\/status\/1187403933288824833\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":497,"resize":"fit"},"large":{"w":1024,"h":748,"resize":"fit"},"medium":{"w":1024,"h":748,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1601019379,"id_str":"1601019379","name":"Yin-Chan + (Janet) Liao","screen_name":"janetliao33","location":"Atlanta, GA","description":"Assistant + Professor at Georgia State University | K-12 Computing Education, Teacher + Preparation & Development, Tech Integration","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":614,"listed_count":55,"created_at":"Wed + Jul 17 13:45:52 +0000 2013","favourites_count":706,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":952,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E0ECF8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/907351602339627008\/manV5xaw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/907351602339627008\/manV5xaw_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 17:07:57 +0000 2019","id":1187415441875992576,"id_str":"1187415441875992576","full_text":"RT + @nikiwats23: Want to know more about corporate IDs in IT? Come see me in Convention + Center, Conference Rm 13 at 2pm. #aect2019 #aect19in\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect2019","indices":[120,129]}],"symbols":[],"user_mentions":[{"screen_name":"nikiwats23","name":"Niki + Watson","id":2861017036,"id_str":"2861017036","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 20:48:09 +0000 2019","id":1187108470111100928,"id_str":"1187108470111100928","full_text":"Want + to know more about corporate IDs in IT? Come see me in Convention Center, + Conference Rm 13 at 2pm. #aect2019 #aect19inspired #lifeofaninstructionaldesigner + https:\/\/t.co\/WaPQvr57vn","truncated":false,"display_text_range":[0,160],"entities":{"hashtags":[{"text":"aect2019","indices":[104,113]},{"text":"aect19inspired","indices":[114,129]},{"text":"lifeofaninstructionaldesigner","indices":[130,160]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187108464331354114,"id_str":"1187108464331354114","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl029ZUcAILCbk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl029ZUcAILCbk.jpg","url":"https:\/\/t.co\/WaPQvr57vn","display_url":"pic.twitter.com\/WaPQvr57vn","expanded_url":"https:\/\/twitter.com\/nikiwats23\/status\/1187108470111100928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":351,"h":680,"resize":"fit"},"large":{"w":990,"h":1920,"resize":"fit"},"medium":{"w":619,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187108464331354114,"id_str":"1187108464331354114","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl029ZUcAILCbk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl029ZUcAILCbk.jpg","url":"https:\/\/t.co\/WaPQvr57vn","display_url":"pic.twitter.com\/WaPQvr57vn","expanded_url":"https:\/\/twitter.com\/nikiwats23\/status\/1187108470111100928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":351,"h":680,"resize":"fit"},"large":{"w":990,"h":1920,"resize":"fit"},"medium":{"w":619,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2861017036,"id_str":"2861017036","name":"Niki + Watson","screen_name":"nikiwats23","location":"","description":"lover, not + a fighter","url":"https:\/\/t.co\/yDBCkJthUM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yDBCkJthUM","expanded_url":"http:\/\/www.nikishawatson.com","display_url":"nikishawatson.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":157,"friends_count":700,"listed_count":19,"created_at":"Tue + Nov 04 16:58:08 +0000 2014","favourites_count":845,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":624,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593920214175186944\/KosJSXMv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593920214175186944\/KosJSXMv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2861017036\/1442268041","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:13:36 +0000 2019","id":1187401764711985158,"id_str":"1187401764711985158","full_text":"RT + @hodgesc: I''m ready to chat about @AECTTechTrends today Oct 24, 10:00 to + 10:50am, Convention Center, Paradise North #aect19 #aect19inspi\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[119,126]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[37,52]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237053180,"id_str":"237053180","name":"Yu-Chang + Hsu","screen_name":"HsuBSU","location":"","description":"Professor, Boise + State University","url":"https:\/\/t.co\/hyvWHDFMCC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hyvWHDFMCC","expanded_url":"https:\/\/yuchanghsu.wixsite.com\/portfolio","display_url":"yuchanghsu.wixsite.com\/portfolio","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":405,"listed_count":0,"created_at":"Tue + Jan 11 23:53:22 +0000 2011","favourites_count":1093,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":432,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213226927\/HSU_Headshot_new_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213226927\/HSU_Headshot_new_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 13:00:01 +0000 2019","id":1187353047149600768,"id_str":"1187353047149600768","full_text":"I''m + ready to chat about @AECTTechTrends today Oct 24, 10:00 to 10:50am, Convention + Center, Paradise North #aect19 #aect19inspired","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[{"text":"aect19","indices":[106,113]},{"text":"aect19inspired","indices":[114,129]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[24,39]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:53:39 +0000 2019","id":1187411843569946624,"id_str":"1187411843569946624","full_text":"RT + @PaulineMuljana: @AmyLomellini_ID @nicolapallitt @christieliuidtr @jesustrespalac1 + @AllisonHallAZ @d_mulder @DrRossPerkins @plowenthal @\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]},{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[20,36]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[37,51]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64769037,"id_str":"64769037","name":"jenn\u03b9\u0493er + engl\u03c5nd","screen_name":"jmenglund03","location":"Settler on Dakota homelands","description":"@UMN_CI + LT PhD Candidate \u2022 @UMNews instructional designer \u2022 @GOGN_OER scholar + \u2022 @femedtech member \u2022 #OEP advocate \u2022 Pronouns: she\/her","url":"https:\/\/t.co\/cjLLex1JDn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cjLLex1JDn","expanded_url":"https:\/\/jenniferenglund.net\/","display_url":"jenniferenglund.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":662,"friends_count":627,"listed_count":72,"created_at":"Tue + Aug 11 17:10:00 +0000 2009","favourites_count":2052,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2918,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B7C8E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64769037\/1500750705","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"452568","profile_sidebar_border_color":"204207","profile_sidebar_fill_color":"060A00","profile_text_color":"618238","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:31:07 +0000 2019","id":1187406175878254592,"id_str":"1187406175878254592","full_text":"@AmyLomellini_ID + @nicolapallitt @christieliuidtr @jesustrespalac1 @AllisonHallAZ @d_mulder + @DrRossPerkins @plowenthal @JenM @edtechdoc @AECT @gsa_aect Also, shout out + to @AmyLomellini_ID , @UmbrellaMichela , and Dr. @JenM for sharing inspiring + insights and experiences during a @gsa_aect panel \"Designing for Accessibility\" + yesterday. #aect19 #aect19inspired","truncated":false,"display_text_range":[151,359],"entities":{"hashtags":[{"text":"aect19","indices":[336,343]},{"text":"aect19inspired","indices":[344,359]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[0,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[17,31]},{"screen_name":"JesusTrespalac1","name":"Jesus + Trespalacios","id":1554537673771126785,"id_str":"1554537673771126785","indices":[49,65]},{"screen_name":"AllisonHallAZ","name":"Dr. + Allison Barsnica Hall","id":720930385,"id_str":"720930385","indices":[66,80]},{"screen_name":"d_mulder","name":"Dr. + Dave Mulder","id":30278154,"id_str":"30278154","indices":[81,90]},{"screen_name":"DrRossPerkins","name":"Ross + Perkins, PhD","id":2905458781,"id_str":"2905458781","indices":[91,105]},{"screen_name":"plowenthal","name":"Patrick + Lowenthal","id":14364665,"id_str":"14364665","indices":[106,117]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[118,123]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[135,140]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[141,150]},{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[170,186]},{"screen_name":"UmbrellaMichela","name":"Esther + Michela","id":940824276307009536,"id_str":"940824276307009536","indices":[189,205]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[216,221]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[279,288]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1187228088616177664,"in_reply_to_status_id_str":"1187228088616177664","in_reply_to_user_id":910574724748644353,"in_reply_to_user_id_str":"910574724748644353","in_reply_to_screen_name":"AmyLomellini_ID","user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:33:02 +0000 2019","id":1187391556698787841,"id_str":"1187391556698787841","full_text":"Today + is the day to play (and learn) at 1:00 in room 9! #aect19 #aect19inspired + https:\/\/t.co\/zwzak2kS9L","truncated":false,"display_text_range":[0,79],"entities":{"hashtags":[{"text":"aect19","indices":[56,63]},{"text":"aect19inspired","indices":[64,79]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187391546330533888,"id_str":"1187391546330533888","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp2UgBVUAAFUD_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp2UgBVUAAFUD_.jpg","url":"https:\/\/t.co\/zwzak2kS9L","display_url":"pic.twitter.com\/zwzak2kS9L","expanded_url":"https:\/\/twitter.com\/kristaruggles\/status\/1187391556698787841\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187391546330533888,"id_str":"1187391546330533888","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp2UgBVUAAFUD_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp2UgBVUAAFUD_.jpg","url":"https:\/\/t.co\/zwzak2kS9L","display_url":"pic.twitter.com\/zwzak2kS9L","expanded_url":"https:\/\/twitter.com\/kristaruggles\/status\/1187391556698787841\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1022045132,"id_str":"1022045132","name":"Krista + Ruggles, PhD, NBCT","screen_name":"kristaruggles","location":"Salt Lake City, + UT","description":"Associate Professor @ Utah Valley University, ISTE Certified, + \ud83d\udc0a\ud83e\udde1\ud83d\udc99","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":252,"friends_count":544,"listed_count":5,"created_at":"Wed + Dec 19 13:05:12 +0000 2012","favourites_count":504,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":548,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/871368520747040769\/bh0EdaUI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/871368520747040769\/bh0EdaUI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1022045132\/1496585421","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:15:36 +0000 2019","id":1187387171357020160,"id_str":"1187387171357020160","full_text":"RT + @nicolapallitt: Our #aect19inspired #aect19 slides for presentations about + our IRCEES processes & collaborative practices are at https:\/\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19inspired","indices":[23,38]},{"text":"aect19","indices":[39,46]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":39633554,"id_str":"39633554","name":"Dr. + Jay","screen_name":"jayphd18","location":"FB Live + YouTube","description":"@Learngenix + | Learning Dev & Tech Specialist | Blogger | Innovator Mindset Certified | + Practitioner of the Entrepreneurial Mindset Profile | RTs\u2260Endorsements","url":"https:\/\/t.co\/Vq9uQJwqFx","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Vq9uQJwqFx","expanded_url":"http:\/\/www.jayphd.com","display_url":"jayphd.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1756,"friends_count":1802,"listed_count":174,"created_at":"Tue + May 12 23:57:17 +0000 2009","favourites_count":16040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18821,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFAFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1301320893982011392\/EaXR9FNf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1301320893982011392\/EaXR9FNf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/39633554\/1550539796","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"CC3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F7DA93","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 03:40:06 +0000 2019","id":1187212142543421440,"id_str":"1187212142543421440","full_text":"Our + #aect19inspired #aect19 slides for presentations about our IRCEES processes + & collaborative practices are at https:\/\/t.co\/FztUPU6yZC & https:\/\/t.co\/rYzrohgoyb + Had a good time presenting with @christieliuidtr Hannah Grossman & @AmyLomellini_ID + @emergeAfrica @aectclt @AECT","truncated":false,"display_text_range":[0,288],"entities":{"hashtags":[{"text":"aect19inspired","indices":[4,19]},{"text":"aect19","indices":[20,27]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[242,258]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[259,272]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[274,282]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[283,288]}],"urls":[{"url":"https:\/\/t.co\/FztUPU6yZC","expanded_url":"http:\/\/bit.ly\/IRCEES1","display_url":"bit.ly\/IRCEES1","indices":[117,140]},{"url":"https:\/\/t.co\/rYzrohgoyb","expanded_url":"http:\/\/bit.ly\/IRCEES2","display_url":"bit.ly\/IRCEES2","indices":[147,170]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:10:32 +0000 2019","id":1187400994612604930,"id_str":"1187400994612604930","full_text":"RT + @edtechdoc: Who inspires us? Fantastic alumni, students, and faculty of the + BSU EdD program! It\u2019s so great to connect or reconnect while\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237053180,"id_str":"237053180","name":"Yu-Chang + Hsu","screen_name":"HsuBSU","location":"","description":"Professor, Boise + State University","url":"https:\/\/t.co\/hyvWHDFMCC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hyvWHDFMCC","expanded_url":"https:\/\/yuchanghsu.wixsite.com\/portfolio","display_url":"yuchanghsu.wixsite.com\/portfolio","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":405,"listed_count":0,"created_at":"Tue + Jan 11 23:53:22 +0000 2011","favourites_count":1093,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":432,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213226927\/HSU_Headshot_new_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213226927\/HSU_Headshot_new_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 04:58:36 +0000 2019","id":1187231897761415168,"id_str":"1187231897761415168","full_text":"Who + inspires us? Fantastic alumni, students, and faculty of the BSU EdD program! + It\u2019s so great to connect or reconnect while at #aect19 (and this is only + part of the group who were attending!) @AECT https:\/\/t.co\/RR4RwMUG5j","truncated":false,"display_text_range":[0,198],"entities":{"hashtags":[{"text":"aect19","indices":[128,135]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[193,198]}],"urls":[],"media":[{"id":1187231890312331264,"id_str":"1187231890312331264","indices":[199,222],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnlHTAVAAAbg5S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnlHTAVAAAbg5S.jpg","url":"https:\/\/t.co\/RR4RwMUG5j","display_url":"pic.twitter.com\/RR4RwMUG5j","expanded_url":"https:\/\/twitter.com\/edtechdoc\/status\/1187231897761415168\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187231890312331264,"id_str":"1187231890312331264","indices":[199,222],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnlHTAVAAAbg5S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnlHTAVAAAbg5S.jpg","url":"https:\/\/t.co\/RR4RwMUG5j","display_url":"pic.twitter.com\/RR4RwMUG5j","expanded_url":"https:\/\/twitter.com\/edtechdoc\/status\/1187231897761415168\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1101331518692184065,"id_str":"1101331518692184065","name":"BSU + EdTech AGP","screen_name":"EdTechAGP","location":"Boise, ID","description":"Advanced + Grad Programs. 100% online Ed Specialist & Doctoral programs in educational + technology at Boise State University. EdD founded 2012. EdS founded 2016.","url":"https:\/\/t.co\/27jpLvNAsW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/27jpLvNAsW","expanded_url":"https:\/\/sites.google.com\/boisestate.edu\/edtech-advanced-grad-programs\/home","display_url":"sites.google.com\/boisestate.edu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":147,"friends_count":89,"listed_count":4,"created_at":"Fri + Mar 01 04:01:10 +0000 2019","favourites_count":201,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":142,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1101332437634826241\/bPwzWhxZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1101332437634826241\/bPwzWhxZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1101331518692184065\/1551413241","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 17:50:25 +0000 2019","id":1187426131164614656,"id_str":"1187426131164614656","full_text":"Thanks + to all who attended my @AECT presentation on Git & @github for open educational + resources, especially our incredibly supportive @EdTech_UofSC faculty! get + the slides and all the links here - https:\/\/t.co\/SMCHa9pIYF #aect19inspired + @Happy_Tao @TAmankwatia","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"aect19inspired","indices":[229,244]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[30,35]},{"screen_name":"github","name":"GitHub","id":13334762,"id_str":"13334762","indices":[62,69]},{"screen_name":"EdTech_UofSC","name":"LD&T + and EdTech at UofSC","id":2835369671,"id_str":"2835369671","indices":[139,152]},{"screen_name":"Happy_Tao","name":"Hengtao + Tang","id":482227724,"id_str":"482227724","indices":[245,255]},{"screen_name":"TAmankwatia","name":"Tonya + Amankwatia","id":25068789,"id_str":"25068789","indices":[256,268]}],"urls":[{"url":"https:\/\/t.co\/SMCHa9pIYF","expanded_url":"https:\/\/koubenecn.github.io\/aect-2019-slides\/#\/","display_url":"koubenecn.github.io\/aect-2019-slid\u2026","indices":[202,225]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:15:00 +0000 2019","id":1187402117134213120,"id_str":"1187402117134213120","full_text":"It''s + OER or Bust at 2pm: Play the OER-egon trail game and talk about barriers to + OER adoption! Bring your oxen (& devices) to Pavilion 10 to \"Ford the + River\" and learn more. Bonus: enjoy some 80s-like graphics! #aect19inspired + https:\/\/t.co\/W29H012lcB https:\/\/t.co\/VFZZWkljUG","truncated":false,"display_text_range":[0,254],"entities":{"hashtags":[{"text":"aect19inspired","indices":[215,230]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/W29H012lcB","expanded_url":"http:\/\/tinyurl.com\/y2lvtj7c","display_url":"tinyurl.com\/y2lvtj7c","indices":[231,254]}],"media":[{"id":1187260427639521280,"id_str":"1187260427639521280","indices":[255,278],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn_EY1VAAAQLxE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn_EY1VAAAQLxE.jpg","url":"https:\/\/t.co\/VFZZWkljUG","display_url":"pic.twitter.com\/VFZZWkljUG","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1187402117134213120\/photo\/1","type":"photo","sizes":{"medium":{"w":62,"h":61,"resize":"fit"},"thumb":{"w":61,"h":61,"resize":"crop"},"large":{"w":62,"h":61,"resize":"fit"},"small":{"w":62,"h":61,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187260427639521280,"id_str":"1187260427639521280","indices":[255,278],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn_EY1VAAAQLxE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn_EY1VAAAQLxE.jpg","url":"https:\/\/t.co\/VFZZWkljUG","display_url":"pic.twitter.com\/VFZZWkljUG","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1187402117134213120\/photo\/1","type":"photo","sizes":{"medium":{"w":62,"h":61,"resize":"fit"},"thumb":{"w":61,"h":61,"resize":"crop"},"large":{"w":62,"h":61,"resize":"fit"},"small":{"w":62,"h":61,"resize":"fit"}},"ext_alt_text":"a + fuzzy green image of a covered wagon that says \"OER or bust\" on the side"}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3733671685,"id_str":"3733671685","name":"Jenn + Kepka","screen_name":"jennkepka","location":"Oregon, USA","description":"Outreach\/retention\/tutoring + faculty in OR; doc student in #edtech at Boise St. Past: UO, WOU, KU. \u2764 + #oer & \u2615 & \u26f8. Views my own. she\/her\/hers","url":"https:\/\/t.co\/nvazHyg5JB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nvazHyg5JB","expanded_url":"http:\/\/jennkepka.com","display_url":"jennkepka.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":700,"friends_count":1225,"listed_count":45,"created_at":"Wed + Sep 30 05:39:55 +0000 2015","favourites_count":19836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3733671685\/1446791014","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:42:39 +0000 2019","id":1187409074717184000,"id_str":"1187409074717184000","full_text":"RT + @PaulineMuljana: @AmyLomellini_ID @nicolapallitt @christieliuidtr @jesustrespalac1 + @AllisonHallAZ @d_mulder @DrRossPerkins @plowenthal @\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]},{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[20,36]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[37,51]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:31:07 +0000 2019","id":1187406175878254592,"id_str":"1187406175878254592","full_text":"@AmyLomellini_ID + @nicolapallitt @christieliuidtr @jesustrespalac1 @AllisonHallAZ @d_mulder + @DrRossPerkins @plowenthal @JenM @edtechdoc @AECT @gsa_aect Also, shout out + to @AmyLomellini_ID , @UmbrellaMichela , and Dr. @JenM for sharing inspiring + insights and experiences during a @gsa_aect panel \"Designing for Accessibility\" + yesterday. #aect19 #aect19inspired","truncated":false,"display_text_range":[151,359],"entities":{"hashtags":[{"text":"aect19","indices":[336,343]},{"text":"aect19inspired","indices":[344,359]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[0,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[17,31]},{"screen_name":"JesusTrespalac1","name":"Jesus + Trespalacios","id":1554537673771126785,"id_str":"1554537673771126785","indices":[49,65]},{"screen_name":"AllisonHallAZ","name":"Dr. + Allison Barsnica Hall","id":720930385,"id_str":"720930385","indices":[66,80]},{"screen_name":"d_mulder","name":"Dr. + Dave Mulder","id":30278154,"id_str":"30278154","indices":[81,90]},{"screen_name":"DrRossPerkins","name":"Ross + Perkins, PhD","id":2905458781,"id_str":"2905458781","indices":[91,105]},{"screen_name":"plowenthal","name":"Patrick + Lowenthal","id":14364665,"id_str":"14364665","indices":[106,117]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[118,123]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[135,140]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[141,150]},{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[170,186]},{"screen_name":"UmbrellaMichela","name":"Esther + Michela","id":940824276307009536,"id_str":"940824276307009536","indices":[189,205]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[216,221]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[279,288]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1187228088616177664,"in_reply_to_status_id_str":"1187228088616177664","in_reply_to_user_id":910574724748644353,"in_reply_to_user_id_str":"910574724748644353","in_reply_to_screen_name":"AmyLomellini_ID","user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:45:06 +0000 2019","id":1187409693314039810,"id_str":"1187409693314039810","full_text":"RT + @PaulineMuljana: This \"I Zap, U Zap, We All Zap\" workshop is totally inspiring. + If you are in the job market, this is a great idea to pr\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:05:04 +0000 2019","id":1187399618918699008,"id_str":"1187399618918699008","full_text":"This + \"I Zap, U Zap, We All Zap\" workshop is totally inspiring. If you are in + the job market, this is a great idea to present your resume. Shout out to + the Oklahoma State Univ team who are facilitating the workshop! #aect19 #aect19inspired + https:\/\/t.co\/WIt9namhFl","truncated":false,"display_text_range":[0,238],"entities":{"hashtags":[{"text":"aect19","indices":[215,222]},{"text":"aect19inspired","indices":[223,238]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187399594914639872,"id_str":"1187399594914639872","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHp9o_VUcAAHsvp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHp9o_VUcAAHsvp.jpg","url":"https:\/\/t.co\/WIt9namhFl","display_url":"pic.twitter.com\/WIt9namhFl","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187399618918699008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":240,"h":320,"resize":"fit"},"small":{"w":240,"h":320,"resize":"fit"},"medium":{"w":240,"h":320,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187399594914639872,"id_str":"1187399594914639872","indices":[239,262],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHp9o_VUcAAHsvp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHp9o_VUcAAHsvp.jpg","url":"https:\/\/t.co\/WIt9namhFl","display_url":"pic.twitter.com\/WIt9namhFl","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187399618918699008\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":240,"h":320,"resize":"fit"},"small":{"w":240,"h":320,"resize":"fit"},"medium":{"w":240,"h":320,"resize":"fit"}},"video_info":{"aspect_ratio":[3,4],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHp9o_VUcAAHsvp.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:27:19 +0000 2019","id":1187405218121535490,"id_str":"1187405218121535490","full_text":"@NancyeBlackEdu + presenting on \"Flip Your PD: Top Tips and Tools for Creating PD Videos\" + right now in Ballroom G @ @aect #aect19 #aect19inspired #flippedclasroom https:\/\/t.co\/19CV3S7apd","truncated":false,"display_text_range":[0,160],"entities":{"hashtags":[{"text":"aect19","indices":[120,127]},{"text":"aect19inspired","indices":[128,143]},{"text":"flippedclasroom","indices":[144,160]}],"symbols":[],"user_mentions":[{"screen_name":"NancyeBlackEdu","name":"Nancye + Blair Black","id":175808323,"id_str":"175808323","indices":[0,15]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[114,119]}],"urls":[],"media":[{"id":1187405205790265344,"id_str":"1187405205790265344","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqCvleUEAAgeRJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqCvleUEAAgeRJ.jpg","url":"https:\/\/t.co\/19CV3S7apd","display_url":"pic.twitter.com\/19CV3S7apd","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187405218121535490\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":960,"h":1280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187405205790265344,"id_str":"1187405205790265344","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqCvleUEAAgeRJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqCvleUEAAgeRJ.jpg","url":"https:\/\/t.co\/19CV3S7apd","display_url":"pic.twitter.com\/19CV3S7apd","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187405218121535490\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":960,"h":1280,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":175808323,"in_reply_to_user_id_str":"175808323","in_reply_to_screen_name":"NancyeBlackEdu","user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 17:55:33 +0000 2019","id":1187427423014420482,"id_str":"1187427423014420482","full_text":"Using + @github for educational materials, even as part of a learning activity with + students, is a pretty awesome idea! #aect19 https:\/\/t.co\/NiWDqfBkQy","truncated":false,"display_text_range":[0,125],"entities":{"hashtags":[{"text":"aect19","indices":[118,125]}],"symbols":[],"user_mentions":[{"screen_name":"github","name":"GitHub","id":13334762,"id_str":"13334762","indices":[6,13]}],"urls":[{"url":"https:\/\/t.co\/NiWDqfBkQy","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1187426131164614656","display_url":"twitter.com\/koubenec\/statu\u2026","indices":[126,149]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187426131164614656,"quoted_status_id_str":"1187426131164614656","quoted_status_permalink":{"url":"https:\/\/t.co\/NiWDqfBkQy","expanded":"https:\/\/twitter.com\/koubenec\/status\/1187426131164614656","display":"twitter.com\/koubenec\/statu\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 17:50:25 +0000 2019","id":1187426131164614656,"id_str":"1187426131164614656","full_text":"Thanks + to all who attended my @AECT presentation on Git & @github for open educational + resources, especially our incredibly supportive @EdTech_UofSC faculty! get + the slides and all the links here - https:\/\/t.co\/SMCHa9pIYF #aect19inspired + @Happy_Tao @TAmankwatia","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"aect19inspired","indices":[229,244]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[30,35]},{"screen_name":"github","name":"GitHub","id":13334762,"id_str":"13334762","indices":[62,69]},{"screen_name":"EdTech_UofSC","name":"LD&T + and EdTech at UofSC","id":2835369671,"id_str":"2835369671","indices":[139,152]},{"screen_name":"Happy_Tao","name":"Hengtao + Tang","id":482227724,"id_str":"482227724","indices":[245,255]},{"screen_name":"TAmankwatia","name":"Tonya + Amankwatia","id":25068789,"id_str":"25068789","indices":[256,268]}],"urls":[{"url":"https:\/\/t.co\/SMCHa9pIYF","expanded_url":"https:\/\/koubenecn.github.io\/aect-2019-slides\/#\/","display_url":"koubenecn.github.io\/aect-2019-slid\u2026","indices":[202,225]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:44:52 +0000 2019","id":1187409633654255618,"id_str":"1187409633654255618","full_text":"RT + @christieliuidtr: Surprise, congrats, and reunion: a @SICET @ll351 @ge_xun + @Happy_Tao service award, and meeting many bi-lingual colleag\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SICET","name":"SICET","id":114832274,"id_str":"114832274","indices":[56,62]},{"screen_name":"ll351","name":"Lin + Lin","id":23219752,"id_str":"23219752","indices":[63,69]},{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[70,77]},{"screen_name":"Happy_Tao","name":"Hengtao + Tang","id":482227724,"id_str":"482227724","indices":[78,88]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 15:43:26 +0000 2019","id":1187394174980509696,"id_str":"1187394174980509696","full_text":"Surprise, + congrats, and reunion: a @SICET @ll351 @ge_xun @Happy_Tao service award, and + meeting many bi-lingual colleagues, PC @jjm09, celebrating and learning from + international collaboration, Thx for all the support from @AECT #aect19 #aect19inspired + https:\/\/t.co\/PWriUIwFou","truncated":false,"display_text_range":[0,251],"entities":{"hashtags":[{"text":"aect19","indices":[228,235]},{"text":"aect19inspired","indices":[236,251]}],"symbols":[],"user_mentions":[{"screen_name":"SICET","name":"SICET","id":114832274,"id_str":"114832274","indices":[35,41]},{"screen_name":"ll351","name":"Lin + Lin","id":23219752,"id_str":"23219752","indices":[42,48]},{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[49,56]},{"screen_name":"Happy_Tao","name":"Hengtao + Tang","id":482227724,"id_str":"482227724","indices":[57,67]},{"screen_name":"jjm09","name":"J. + Mao","id":72457436,"id_str":"72457436","indices":[126,132]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[222,227]}],"urls":[],"media":[{"id":1187394156538159104,"id_str":"1187394156538159104","indices":[252,275],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp4sbzU4AAR37r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp4sbzU4AAR37r.jpg","url":"https:\/\/t.co\/PWriUIwFou","display_url":"pic.twitter.com\/PWriUIwFou","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187394174980509696\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":1440,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187394156538159104,"id_str":"1187394156538159104","indices":[252,275],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp4sbzU4AAR37r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp4sbzU4AAR37r.jpg","url":"https:\/\/t.co\/PWriUIwFou","display_url":"pic.twitter.com\/PWriUIwFou","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187394174980509696\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":1440,"h":1080,"resize":"fit"}},"ext_alt_text":null},{"id":1187394156508745728,"id_str":"1187394156508745728","indices":[252,275],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp4sbsUEAAvTiI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp4sbsUEAAvTiI.jpg","url":"https:\/\/t.co\/PWriUIwFou","display_url":"pic.twitter.com\/PWriUIwFou","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187394174980509696\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187394156584288262,"id_str":"1187394156584288262","indices":[252,275],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp4sb-UwAYXZ50.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp4sb-UwAYXZ50.jpg","url":"https:\/\/t.co\/PWriUIwFou","display_url":"pic.twitter.com\/PWriUIwFou","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187394174980509696\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187394156718505985,"id_str":"1187394156718505985","indices":[252,275],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp4sceUwAEdYkQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp4sceUwAEdYkQ.jpg","url":"https:\/\/t.co\/PWriUIwFou","display_url":"pic.twitter.com\/PWriUIwFou","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187394174980509696\/photo\/1","type":"photo","sizes":{"large":{"w":1440,"h":1080,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:19:54 +0000 2019","id":1187388251587465216,"id_str":"1187388251587465216","full_text":"RT + @matt_m_schmidt: If you are interested in #virtualreality #VR interventions + for #autism, please check out this podcast interview with th\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"virtualreality","indices":[45,60]},{"text":"VR","indices":[61,64]},{"text":"autism","indices":[83,90]}],"symbols":[],"user_mentions":[{"screen_name":"matt_m_schmidt","name":"Matthew + Schmidt","id":9806452,"id_str":"9806452","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 14:35:20 +0000 2019","id":1187377036899176449,"id_str":"1187377036899176449","full_text":"If + you are interested in #virtualreality #VR interventions for #autism, please + check out this podcast interview with the Versatilist where I discuss some + of my recent research: https:\/\/t.co\/GLwlJVKCTn @immersiveLRN #aect19","truncated":false,"display_text_range":[0,222],"entities":{"hashtags":[{"text":"virtualreality","indices":[25,40]},{"text":"VR","indices":[41,44]},{"text":"autism","indices":[63,70]},{"text":"aect19","indices":[215,222]}],"symbols":[],"user_mentions":[{"screen_name":"immersiveLRN","name":"Immersive + Learning Research Network - #iLRN","id":2569387303,"id_str":"2569387303","indices":[201,214]}],"urls":[{"url":"https:\/\/t.co\/GLwlJVKCTn","expanded_url":"http:\/\/bit.ly\/2Bu3dRO","display_url":"bit.ly\/2Bu3dRO","indices":[177,200]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":9806452,"id_str":"9806452","name":"Matthew + Schmidt","screen_name":"matt_m_schmidt","location":"Gainesville, FL","description":"Editor-in-Chief + of Learner & User Experience Research. Read & share here: https:\/\/t.co\/nMBaOeqjpy","url":"https:\/\/t.co\/MQBbLAksSX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MQBbLAksSX","expanded_url":"http:\/\/matthewschmidt.info","display_url":"matthewschmidt.info","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/nMBaOeqjpy","expanded_url":"https:\/\/edtechbooks.org\/ux","display_url":"edtechbooks.org\/ux","indices":[74,97]}]}},"protected":false,"followers_count":668,"friends_count":404,"listed_count":17,"created_at":"Tue + Oct 30 21:35:53 +0000 2007","favourites_count":698,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":564,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9806452\/1603124176","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 18:02:54 +0000 2019","id":1187429273403101185,"id_str":"1187429273403101185","full_text":"RT + @LearnEngage: Using @github for educational materials, even as part of a learning + activity with students, is a pretty awesome idea! #aec\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]},{"screen_name":"github","name":"GitHub","id":13334762,"id_str":"13334762","indices":[23,30]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 17:55:33 +0000 2019","id":1187427423014420482,"id_str":"1187427423014420482","full_text":"Using + @github for educational materials, even as part of a learning activity with + students, is a pretty awesome idea! #aect19 https:\/\/t.co\/NiWDqfBkQy","truncated":false,"display_text_range":[0,125],"entities":{"hashtags":[{"text":"aect19","indices":[118,125]}],"symbols":[],"user_mentions":[{"screen_name":"github","name":"GitHub","id":13334762,"id_str":"13334762","indices":[6,13]}],"urls":[{"url":"https:\/\/t.co\/NiWDqfBkQy","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1187426131164614656","display_url":"twitter.com\/koubenec\/statu\u2026","indices":[126,149]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187426131164614656,"quoted_status_id_str":"1187426131164614656","quoted_status_permalink":{"url":"https:\/\/t.co\/NiWDqfBkQy","expanded":"https:\/\/twitter.com\/koubenec\/status\/1187426131164614656","display":"twitter.com\/koubenec\/statu\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 17:50:25 +0000 2019","id":1187426131164614656,"id_str":"1187426131164614656","full_text":"Thanks + to all who attended my @AECT presentation on Git & @github for open educational + resources, especially our incredibly supportive @EdTech_UofSC faculty! get + the slides and all the links here - https:\/\/t.co\/SMCHa9pIYF #aect19inspired + @Happy_Tao @TAmankwatia","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"aect19inspired","indices":[229,244]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[30,35]},{"screen_name":"github","name":"GitHub","id":13334762,"id_str":"13334762","indices":[62,69]},{"screen_name":"EdTech_UofSC","name":"LD&T + and EdTech at UofSC","id":2835369671,"id_str":"2835369671","indices":[139,152]},{"screen_name":"Happy_Tao","name":"Hengtao + Tang","id":482227724,"id_str":"482227724","indices":[245,255]},{"screen_name":"TAmankwatia","name":"Tonya + Amankwatia","id":25068789,"id_str":"25068789","indices":[256,268]}],"urls":[{"url":"https:\/\/t.co\/SMCHa9pIYF","expanded_url":"https:\/\/koubenecn.github.io\/aect-2019-slides\/#\/","display_url":"koubenecn.github.io\/aect-2019-slid\u2026","indices":[202,225]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1187426131164614656,"quoted_status_id_str":"1187426131164614656","quoted_status_permalink":{"url":"https:\/\/t.co\/NiWDqfBkQy","expanded":"https:\/\/twitter.com\/koubenec\/status\/1187426131164614656","display":"twitter.com\/koubenec\/statu\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:20:52 +0000 2019","id":1187388496861777920,"id_str":"1187388496861777920","full_text":"Top + 10 skills in 2020 as compared with 2015. #MicrosoftTeams #MicrosoftEdu #AECT + #AECT19 #aect19inspired https:\/\/t.co\/HlJ4sCcDpl","truncated":false,"display_text_range":[0,106],"entities":{"hashtags":[{"text":"MicrosoftTeams","indices":[45,60]},{"text":"MicrosoftEdu","indices":[61,74]},{"text":"AECT","indices":[77,82]},{"text":"AECT19","indices":[83,90]},{"text":"aect19inspired","indices":[91,106]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187388458878193664,"id_str":"1187388458878193664","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpzgyXVUAAwtX2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpzgyXVUAAwtX2.jpg","url":"https:\/\/t.co\/HlJ4sCcDpl","display_url":"pic.twitter.com\/HlJ4sCcDpl","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187388496861777920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187388458878193664,"id_str":"1187388458878193664","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpzgyXVUAAwtX2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpzgyXVUAAwtX2.jpg","url":"https:\/\/t.co\/HlJ4sCcDpl","display_url":"pic.twitter.com\/HlJ4sCcDpl","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187388496861777920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 17:06:27 +0000 2019","id":1187415067110727682,"id_str":"1187415067110727682","full_text":"RT + @AECT: Have a great #AECT19 day 4! Today\u2019s highlights include 7 workshops + and 11 Inspire! Sessions, Roundtables at 10am, Emerging Techno\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[23,30]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":13515,"id_str":"13515","name":"Jennifer + Maddrell","screen_name":"JenM","location":"Chicago, IL","description":"Teach, + study & design learning experiences","url":"https:\/\/t.co\/725I4m2QWv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/725I4m2QWv","expanded_url":"https:\/\/jennifermaddrell.com","display_url":"jennifermaddrell.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2420,"friends_count":4448,"listed_count":80,"created_at":"Tue + Nov 21 13:57:14 +0000 2006","favourites_count":7779,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3455,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13515\/1604669803","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 12:01:27 +0000 2019","id":1187338312048140289,"id_str":"1187338312048140289","full_text":"Have + a great #AECT19 day 4! Today\u2019s highlights include 7 workshops and 11 + Inspire! Sessions, Roundtables at 10am, Emerging Technology Showcase at 2pm, + Membership Meeting at 5pm, and University Reception at 6:15pm. https:\/\/t.co\/JJj6M6XvE6","truncated":false,"display_text_range":[0,213],"entities":{"hashtags":[{"text":"AECT19","indices":[13,20]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187338305936994304,"id_str":"1187338305936994304","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpF5gGWsAA6GoH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpF5gGWsAA6GoH.jpg","url":"https:\/\/t.co\/JJj6M6XvE6","display_url":"pic.twitter.com\/JJj6M6XvE6","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187338312048140289\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187338305936994304,"id_str":"1187338305936994304","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpF5gGWsAA6GoH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpF5gGWsAA6GoH.jpg","url":"https:\/\/t.co\/JJj6M6XvE6","display_url":"pic.twitter.com\/JJj6M6XvE6","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187338312048140289\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:31:49 +0000 2019","id":1187406349874810881,"id_str":"1187406349874810881","full_text":"RT + @jennkepka: It''s OER or Bust at 2pm: Play the OER-egon trail game and talk + about barriers to OER adoption! Bring your oxen (& devices) t\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jennkepka","name":"Jenn + Kepka","id":3733671685,"id_str":"3733671685","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64769037,"id_str":"64769037","name":"jenn\u03b9\u0493er + engl\u03c5nd","screen_name":"jmenglund03","location":"Settler on Dakota homelands","description":"@UMN_CI + LT PhD Candidate \u2022 @UMNews instructional designer \u2022 @GOGN_OER scholar + \u2022 @femedtech member \u2022 #OEP advocate \u2022 Pronouns: she\/her","url":"https:\/\/t.co\/cjLLex1JDn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cjLLex1JDn","expanded_url":"https:\/\/jenniferenglund.net\/","display_url":"jenniferenglund.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":662,"friends_count":627,"listed_count":72,"created_at":"Tue + Aug 11 17:10:00 +0000 2009","favourites_count":2052,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2918,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B7C8E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64769037\/1500750705","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"452568","profile_sidebar_border_color":"204207","profile_sidebar_fill_color":"060A00","profile_text_color":"618238","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:15:00 +0000 2019","id":1187402117134213120,"id_str":"1187402117134213120","full_text":"It''s + OER or Bust at 2pm: Play the OER-egon trail game and talk about barriers to + OER adoption! Bring your oxen (& devices) to Pavilion 10 to \"Ford the + River\" and learn more. Bonus: enjoy some 80s-like graphics! #aect19inspired + https:\/\/t.co\/W29H012lcB https:\/\/t.co\/VFZZWkljUG","truncated":false,"display_text_range":[0,254],"entities":{"hashtags":[{"text":"aect19inspired","indices":[215,230]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/W29H012lcB","expanded_url":"http:\/\/tinyurl.com\/y2lvtj7c","display_url":"tinyurl.com\/y2lvtj7c","indices":[231,254]}],"media":[{"id":1187260427639521280,"id_str":"1187260427639521280","indices":[255,278],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn_EY1VAAAQLxE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn_EY1VAAAQLxE.jpg","url":"https:\/\/t.co\/VFZZWkljUG","display_url":"pic.twitter.com\/VFZZWkljUG","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1187402117134213120\/photo\/1","type":"photo","sizes":{"medium":{"w":62,"h":61,"resize":"fit"},"thumb":{"w":61,"h":61,"resize":"crop"},"large":{"w":62,"h":61,"resize":"fit"},"small":{"w":62,"h":61,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187260427639521280,"id_str":"1187260427639521280","indices":[255,278],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn_EY1VAAAQLxE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn_EY1VAAAQLxE.jpg","url":"https:\/\/t.co\/VFZZWkljUG","display_url":"pic.twitter.com\/VFZZWkljUG","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1187402117134213120\/photo\/1","type":"photo","sizes":{"medium":{"w":62,"h":61,"resize":"fit"},"thumb":{"w":61,"h":61,"resize":"crop"},"large":{"w":62,"h":61,"resize":"fit"},"small":{"w":62,"h":61,"resize":"fit"}},"ext_alt_text":"a + fuzzy green image of a covered wagon that says \"OER or bust\" on the side"}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3733671685,"id_str":"3733671685","name":"Jenn + Kepka","screen_name":"jennkepka","location":"Oregon, USA","description":"Outreach\/retention\/tutoring + faculty in OR; doc student in #edtech at Boise St. Past: UO, WOU, KU. \u2764 + #oer & \u2615 & \u26f8. Views my own. she\/her\/hers","url":"https:\/\/t.co\/nvazHyg5JB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nvazHyg5JB","expanded_url":"http:\/\/jennkepka.com","display_url":"jennkepka.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":700,"friends_count":1225,"listed_count":45,"created_at":"Wed + Sep 30 05:39:55 +0000 2015","favourites_count":19836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3733671685\/1446791014","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:23:54 +0000 2019","id":1187389258803372034,"id_str":"1187389258803372034","full_text":"RT + @FanXU92073425: It\u2019s so nice to meet those friends at #aect19. Nothing + could be better!#aect19inspired I\u2019m so proud of what @SICET has d\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[57,64]},{"text":"aect19inspired","indices":[90,105]}],"symbols":[],"user_mentions":[{"screen_name":"FanXU92073425","name":"Fan + XU \u8bb8\u5e06","id":1098051352645623808,"id_str":"1098051352645623808","indices":[3,17]},{"screen_name":"SICET","name":"SICET","id":114832274,"id_str":"114832274","indices":[127,133]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 05:54:39 +0000 2019","id":1187246000672428032,"id_str":"1187246000672428032","full_text":"It\u2019s + so nice to meet those friends at #aect19. Nothing could be better!#aect19inspired + I\u2019m so proud of what @SICET has done. Thanks for bringing such wonderful + sessions. You guys really did rock that! @Happy_Tao https:\/\/t.co\/j7RusOCojk","truncated":false,"display_text_range":[0,211],"entities":{"hashtags":[{"text":"aect19","indices":[38,45]},{"text":"aect19inspired","indices":[71,86]}],"symbols":[],"user_mentions":[{"screen_name":"SICET","name":"SICET","id":114832274,"id_str":"114832274","indices":[108,114]},{"screen_name":"Happy_Tao","name":"Hengtao + Tang","id":482227724,"id_str":"482227724","indices":[201,211]}],"urls":[],"media":[{"id":1187245932699516929,"id_str":"1187245932699516929","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnx4q-VAAEweGZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnx4q-VAAEweGZ.jpg","url":"https:\/\/t.co\/j7RusOCojk","display_url":"pic.twitter.com\/j7RusOCojk","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187246000672428032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187245932699516929,"id_str":"1187245932699516929","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnx4q-VAAEweGZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnx4q-VAAEweGZ.jpg","url":"https:\/\/t.co\/j7RusOCojk","display_url":"pic.twitter.com\/j7RusOCojk","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187246000672428032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187245933043470336,"id_str":"1187245933043470336","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnx4sQVUAAZGj7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnx4sQVUAAZGj7.jpg","url":"https:\/\/t.co\/j7RusOCojk","display_url":"pic.twitter.com\/j7RusOCojk","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187246000672428032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187245933051822080,"id_str":"1187245933051822080","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnx4sSUwAAXdYv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnx4sSUwAAXdYv.jpg","url":"https:\/\/t.co\/j7RusOCojk","display_url":"pic.twitter.com\/j7RusOCojk","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187246000672428032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187245933068578816,"id_str":"1187245933068578816","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnx4sWUcAAr_zU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnx4sWUcAAr_zU.jpg","url":"https:\/\/t.co\/j7RusOCojk","display_url":"pic.twitter.com\/j7RusOCojk","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187246000672428032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1098051352645623808,"id_str":"1098051352645623808","name":"Fan + XU \u8bb8\u5e06","screen_name":"FanXU92073425","location":"Columbus, Ohio","description":"Ph.D. + candidate of Learning Technologies @OhioState @OSUehe Graduate Research Assistant + @OSUcete Member of Research Group @LEDresearch","url":"https:\/\/t.co\/wYY2xiYHsc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wYY2xiYHsc","expanded_url":"https:\/\/fanxuspace.webnode.page","display_url":"fanxuspace.webnode.page","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":158,"friends_count":302,"listed_count":0,"created_at":"Wed + Feb 20 02:46:58 +0000 2019","favourites_count":391,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":109,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1098051352645623808\/1646758591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 18:05:32 +0000 2019","id":1187429935104823299,"id_str":"1187429935104823299","full_text":"RT + @HsuBSU: Had a great meeting and discussions with Dr. Hodges! Look forward + to serving as the International Column Editor in the next few\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"HsuBSU","name":"Yu-Chang + Hsu","id":237053180,"id_str":"237053180","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:30:19 +0000 2019","id":1187405973012377600,"id_str":"1187405973012377600","full_text":"Had + a great meeting and discussions with Dr. Hodges! Look forward to serving as + the International Column Editor in the next few years! @hodgesc @AECTTechTrends + #aect2019 https:\/\/t.co\/i83vrYpRms","truncated":false,"display_text_range":[0,169],"entities":{"hashtags":[{"text":"aect2019","indices":[160,169]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[135,143]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[144,159]}],"urls":[],"media":[{"id":1187405922986946560,"id_str":"1187405922986946560","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqDZVPU8AA_VGt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqDZVPU8AA_VGt.jpg","url":"https:\/\/t.co\/i83vrYpRms","display_url":"pic.twitter.com\/i83vrYpRms","expanded_url":"https:\/\/twitter.com\/HsuBSU\/status\/1187405973012377600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":920,"h":1200,"resize":"fit"},"large":{"w":1570,"h":2048,"resize":"fit"},"small":{"w":521,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187405922986946560,"id_str":"1187405922986946560","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqDZVPU8AA_VGt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqDZVPU8AA_VGt.jpg","url":"https:\/\/t.co\/i83vrYpRms","display_url":"pic.twitter.com\/i83vrYpRms","expanded_url":"https:\/\/twitter.com\/HsuBSU\/status\/1187405973012377600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":920,"h":1200,"resize":"fit"},"large":{"w":1570,"h":2048,"resize":"fit"},"small":{"w":521,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237053180,"id_str":"237053180","name":"Yu-Chang + Hsu","screen_name":"HsuBSU","location":"","description":"Professor, Boise + State University","url":"https:\/\/t.co\/hyvWHDFMCC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hyvWHDFMCC","expanded_url":"https:\/\/yuchanghsu.wixsite.com\/portfolio","display_url":"yuchanghsu.wixsite.com\/portfolio","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":405,"listed_count":0,"created_at":"Tue + Jan 11 23:53:22 +0000 2011","favourites_count":1093,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":432,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213226927\/HSU_Headshot_new_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213226927\/HSU_Headshot_new_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:00:00 +0000 2019","id":1187398342889754625,"id_str":"1187398342889754625","full_text":"Ever + wonder how to #sketchnote a presentation? Pros from @UNTsocial and @ECNUER + hope to show you how at the Inspire! Sketchnoting session at 3pm! Come learn + with us! #AECT19 #aect19inspired @AECT https:\/\/t.co\/25zZOVkv2N","truncated":false,"display_text_range":[0,195],"entities":{"hashtags":[{"text":"sketchnote","indices":[19,30]},{"text":"AECT19","indices":[166,173]},{"text":"aect19inspired","indices":[174,189]}],"symbols":[],"user_mentions":[{"screen_name":"UNTsocial","name":"University + of North Texas","id":18462994,"id_str":"18462994","indices":[57,67]},{"screen_name":"ECNUER","name":"East + China Normal University","id":1732892550,"id_str":"1732892550","indices":[72,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[190,195]}],"urls":[],"media":[{"id":1187122528189407235,"id_str":"1187122528189407235","indices":[196,219],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","url":"https:\/\/t.co\/25zZOVkv2N","display_url":"pic.twitter.com\/25zZOVkv2N","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187398342889754625\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187122528189407235,"id_str":"1187122528189407235","indices":[196,219],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmBplWX4AMo-YL.jpg","url":"https:\/\/t.co\/25zZOVkv2N","display_url":"pic.twitter.com\/25zZOVkv2N","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187398342889754625\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:00:48 +0000 2019","id":1187398543436201986,"id_str":"1187398543436201986","full_text":"RT + @techedges: . @utexascoe Doctoral students Yi Shi, Peixia Shao, Ying Cai, + & Daeun Hong in action presenting research on preservice #edte\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"techedges","name":"Dr. + Joan E. Hughes","id":19613812,"id_str":"19613812","indices":[3,13]},{"screen_name":"utexascoe","name":"College + of Education","id":19671331,"id_str":"19671331","indices":[17,27]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":776465862291226625,"id_str":"776465862291226625","name":"Yi + Shi","screen_name":"yiyishishi","location":"United States","description":"Doctoral + student in Learning Technologies, The University of Texas at Austin. English + language learner.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":51,"listed_count":0,"created_at":"Thu + Sep 15 17:01:02 +0000 2016","favourites_count":6,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1118541789961625600\/3XQQc8MZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1118541789961625600\/3XQQc8MZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/776465862291226625\/1503638183","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 19:40:43 +0000 2019","id":1187091501660041216,"id_str":"1187091501660041216","full_text":". + @utexascoe Doctoral students Yi Shi, Peixia Shao, Ying Cai, & Daeun Hong + in action presenting research on preservice #edtech syllabi #aect19inspired + #texasCI https:\/\/t.co\/W1zNi3m2Rm","truncated":false,"display_text_range":[0,164],"entities":{"hashtags":[{"text":"edtech","indices":[123,130]},{"text":"aect19inspired","indices":[140,155]},{"text":"texasCI","indices":[156,164]}],"symbols":[],"user_mentions":[{"screen_name":"utexascoe","name":"College + of Education","id":19671331,"id_str":"19671331","indices":[2,12]}],"urls":[],"media":[{"id":1187091484073283584,"id_str":"1187091484073283584","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHllalAUUAAzuvO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHllalAUUAAzuvO.jpg","url":"https:\/\/t.co\/W1zNi3m2Rm","display_url":"pic.twitter.com\/W1zNi3m2Rm","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187091501660041216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187091484073283584,"id_str":"1187091484073283584","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHllalAUUAAzuvO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHllalAUUAAzuvO.jpg","url":"https:\/\/t.co\/W1zNi3m2Rm","display_url":"pic.twitter.com\/W1zNi3m2Rm","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187091501660041216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187091484090089472,"id_str":"1187091484090089472","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHllalEUwAAK3Qd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHllalEUwAAK3Qd.jpg","url":"https:\/\/t.co\/W1zNi3m2Rm","display_url":"pic.twitter.com\/W1zNi3m2Rm","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187091501660041216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187091484056547329,"id_str":"1187091484056547329","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHllak8U8AElMEH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHllak8U8AElMEH.jpg","url":"https:\/\/t.co\/W1zNi3m2Rm","display_url":"pic.twitter.com\/W1zNi3m2Rm","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187091501660041216\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19613812,"id_str":"19613812","name":"Dr. + Joan E. Hughes","screen_name":"techedges","location":"Austin, TX","description":"Prof, + Learning Technologies, UT Austin. Researcher, teacher, writer: tech integration + in schools, teacher educ & PD. Author:https:\/\/t.co\/p12V06CqJU","url":"https:\/\/t.co\/0V3yBaAOKy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0V3yBaAOKy","expanded_url":"http:\/\/techedges.org","display_url":"techedges.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/p12V06CqJU","expanded_url":"http:\/\/bit.ly\/IntegratingEdTech","display_url":"bit.ly\/IntegratingEdT\u2026","indices":[124,147]}]}},"protected":false,"followers_count":1646,"friends_count":2355,"listed_count":158,"created_at":"Tue + Jan 27 20:26:10 +0000 2009","favourites_count":722,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2871,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEBB2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431552022538510336\/qGc8ZRJj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431552022538510336\/qGc8ZRJj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19613812\/1408660446","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:22:48 +0000 2019","id":1187388981975097344,"id_str":"1187388981975097344","full_text":"RT + @kzenovka: You want to hear more about online disinhibition effect, trolling + and hyperpoliteness right? 8 am this morning in Pavilion 9\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kzenovka","name":"Kzenovka","id":14994538,"id_str":"14994538","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 11:16:00 +0000 2019","id":1187326871391752192,"id_str":"1187326871391752192","full_text":"You + want to hear more about online disinhibition effect, trolling and hyperpoliteness + right? 8 am this morning in Pavilion 9 for Online Microaggressions: Striving + for Equitable and Inclusive Online \n\n#aect19inspired #aect19 #aectgsa https:\/\/t.co\/AAkZoT5MrW","truncated":false,"display_text_range":[0,232],"entities":{"hashtags":[{"text":"aect19inspired","indices":[200,215]},{"text":"aect19","indices":[216,223]},{"text":"aectgsa","indices":[224,232]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187246391812218880,"id_str":"1187246391812218880","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnyTZTU4AAMaFf.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnyTZTU4AAMaFf.png","url":"https:\/\/t.co\/AAkZoT5MrW","display_url":"pic.twitter.com\/AAkZoT5MrW","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1187326871391752192\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":400,"resize":"fit"},"small":{"w":400,"h":400,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1187246391812218880,"id_str":"1187246391812218880","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnyTZTU4AAMaFf.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnyTZTU4AAMaFf.png","url":"https:\/\/t.co\/AAkZoT5MrW","display_url":"pic.twitter.com\/AAkZoT5MrW","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1187326871391752192\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":400,"resize":"fit"},"small":{"w":400,"h":400,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14994538,"id_str":"14994538","name":"Kzenovka","screen_name":"kzenovka","location":"Metaverse","description":"educator, + coolhunter, and sometimes puppetmaster. Metagame Book Club, Games & Sim Network + and Inevitable Instructors","url":"https:\/\/t.co\/SN1thrlVqD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SN1thrlVqD","expanded_url":"https:\/\/sites.google.com\/site\/metagamebookclub\/","display_url":"sites.google.com\/site\/metagameb\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1338,"friends_count":3152,"listed_count":228,"created_at":"Tue + Jun 03 16:35:29 +0000 2008","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15007,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14994538\/1436550079","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:51:33 +0000 2019","id":1187396215400325120,"id_str":"1187396215400325120","full_text":"Good + morning @AECT! Take a look at what the Learner Engagement Division has in + store today and join us. The Roundtables will be buzzing starting at 10AM + in Paradise North! @LearnEngage #aect19 https:\/\/t.co\/omORQjjefm","truncated":false,"display_text_range":[0,192],"entities":{"hashtags":[{"text":"aect19","indices":[185,192]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[13,18]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[172,184]}],"urls":[],"media":[{"id":1187396211801636865,"id_str":"1187396211801636865","indices":[193,216],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp6kEQUwAEI8CW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp6kEQUwAEI8CW.jpg","url":"https:\/\/t.co\/omORQjjefm","display_url":"pic.twitter.com\/omORQjjefm","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187396215400325120\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1168,"h":802,"resize":"fit"},"medium":{"w":1168,"h":802,"resize":"fit"},"small":{"w":680,"h":467,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187396211801636865,"id_str":"1187396211801636865","indices":[193,216],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp6kEQUwAEI8CW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp6kEQUwAEI8CW.jpg","url":"https:\/\/t.co\/omORQjjefm","display_url":"pic.twitter.com\/omORQjjefm","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187396215400325120\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1168,"h":802,"resize":"fit"},"medium":{"w":1168,"h":802,"resize":"fit"},"small":{"w":680,"h":467,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 17:32:17 +0000 2019","id":1187421566948139009,"id_str":"1187421566948139009","full_text":"#aect19 + Tip #12 - When working as an AECT Tech volunteer, lift up the computer you\u2019re + fixing and say \u201cit feels like your hard drive is full.\u201d","truncated":false,"display_text_range":[0,141],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:45:05 +0000 2019","id":1187409690025775104,"id_str":"1187409690025775104","full_text":"Stop + by Roundtable T59 \"Exploring the Effect of Group-Collaboration Design on + Developing Preservice Teachers\u2019 Technology-Integration Skills through + Scientific-Inquiry Experiences\" by ewoong Moon, Sungwoong Lee & Xinhao + Xu. 10 am - 10:50 am #AECT19: #FSU #FSUCOE #ISLT","truncated":false,"display_text_range":[0,271],"entities":{"hashtags":[{"text":"AECT19","indices":[244,251]},{"text":"FSU","indices":[253,257]},{"text":"FSUCOE","indices":[258,265]},{"text":"ISLT","indices":[266,271]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:34:37 +0000 2019","id":1187407053620252672,"id_str":"1187407053620252672","full_text":"RT + @AnnaRoseLeach: Presentation complete! Thank you @caranorth11 @dr_tracy_s + @correia65 @myramade for panel conversation! #aect19inspired\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[3,17]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[53,65]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64769037,"id_str":"64769037","name":"jenn\u03b9\u0493er + engl\u03c5nd","screen_name":"jmenglund03","location":"Settler on Dakota homelands","description":"@UMN_CI + LT PhD Candidate \u2022 @UMNews instructional designer \u2022 @GOGN_OER scholar + \u2022 @femedtech member \u2022 #OEP advocate \u2022 Pronouns: she\/her","url":"https:\/\/t.co\/cjLLex1JDn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cjLLex1JDn","expanded_url":"https:\/\/jenniferenglund.net\/","display_url":"jenniferenglund.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":662,"friends_count":627,"listed_count":72,"created_at":"Tue + Aug 11 17:10:00 +0000 2009","favourites_count":2052,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2918,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B7C8E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64769037\/1500750705","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"452568","profile_sidebar_border_color":"204207","profile_sidebar_fill_color":"060A00","profile_text_color":"618238","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:14:53 +0000 2019","id":1187402090546524160,"id_str":"1187402090546524160","full_text":"Presentation + complete! Thank you @caranorth11 @dr_tracy_s @correia65 @myramade for panel + conversation! #aect19inspired #aect19 https:\/\/t.co\/ylezM3Ia9v","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"aect19inspired","indices":[104,119]},{"text":"aect19","indices":[120,127]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[34,46]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[59,69]},{"screen_name":"myramade","name":"Hey, + it''s Myra!","id":15434589,"id_str":"15434589","indices":[70,79]}],"urls":[],"media":[{"id":1187402082778697728,"id_str":"1187402082778697728","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp_5zWVUAAbTQY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp_5zWVUAAbTQY.jpg","url":"https:\/\/t.co\/ylezM3Ia9v","display_url":"pic.twitter.com\/ylezM3Ia9v","expanded_url":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1187402090546524160\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187402082778697728,"id_str":"1187402082778697728","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHp_5zWVUAAbTQY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHp_5zWVUAAbTQY.jpg","url":"https:\/\/t.co\/ylezM3Ia9v","display_url":"pic.twitter.com\/ylezM3Ia9v","expanded_url":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1187402090546524160\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:53:29 +0000 2019","id":1187411804776886274,"id_str":"1187411804776886274","full_text":"RT + @jeroen69: I made a thing! Inspired by the #izapuzapwezap workshop with @tutaleni + and colleagues. #aect19 #aect19inspired #inspiredme ht\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"izapuzapwezap","indices":[46,60]},{"text":"aect19","indices":[101,108]},{"text":"aect19inspired","indices":[109,124]},{"text":"inspiredme","indices":[125,136]}],"symbols":[],"user_mentions":[{"screen_name":"jeroen69","name":"Jeroen","id":6848632,"id_str":"6848632","indices":[3,12]},{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[75,84]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:50:12 +0000 2019","id":1187410974707343360,"id_str":"1187410974707343360","full_text":"I + made a thing! Inspired by the #izapuzapwezap workshop with @tutaleni and colleagues. + #aect19 #aect19inspired #inspiredme https:\/\/t.co\/bB4dtRRIfB","truncated":false,"display_text_range":[0,122],"entities":{"hashtags":[{"text":"izapuzapwezap","indices":[32,46]},{"text":"aect19","indices":[87,94]},{"text":"aect19inspired","indices":[95,110]},{"text":"inspiredme","indices":[111,122]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[61,70]}],"urls":[],"media":[{"id":1187410969615429632,"id_str":"1187410969615429632","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqH_FZUcAAVcmK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqH_FZUcAAVcmK.jpg","url":"https:\/\/t.co\/bB4dtRRIfB","display_url":"pic.twitter.com\/bB4dtRRIfB","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1187410974707343360\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1250,"h":1250,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187410969615429632,"id_str":"1187410969615429632","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqH_FZUcAAVcmK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqH_FZUcAAVcmK.jpg","url":"https:\/\/t.co\/bB4dtRRIfB","display_url":"pic.twitter.com\/bB4dtRRIfB","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1187410974707343360\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":1250,"h":1250,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:24:16 +0000 2019","id":1187389348955803649,"id_str":"1187389348955803649","full_text":"RT + @FanXU92073425: Greetings from LasVegas @correia65!Dr. Bonk @travelinedman + inspired me a lot at #aect19 #aect19inspired So I made a \u201cins\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[99,106]},{"text":"aect19inspired","indices":[107,122]}],"symbols":[],"user_mentions":[{"screen_name":"FanXU92073425","name":"Fan + XU \u8bb8\u5e06","id":1098051352645623808,"id_str":"1098051352645623808","indices":[3,17]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[43,53]},{"screen_name":"travelinedman","name":"travelinedman","id":13077712,"id_str":"13077712","indices":[63,77]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 05:37:23 +0000 2019","id":1187241657684508672,"id_str":"1187241657684508672","full_text":"Greetings + from LasVegas @correia65!Dr. Bonk @travelinedman inspired me a lot at #aect19 + #aect19inspired So I made a \u201cinspired balloon\u201d. Hope everything + goes well in Brazil! https:\/\/t.co\/0O4H01xtJx","truncated":false,"display_text_range":[0,172],"entities":{"hashtags":[{"text":"aect19","indices":[80,87]},{"text":"aect19inspired","indices":[88,103]}],"symbols":[],"user_mentions":[{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[24,34]},{"screen_name":"travelinedman","name":"travelinedman","id":13077712,"id_str":"13077712","indices":[44,58]}],"urls":[],"media":[{"id":1187241537597366272,"id_str":"1187241537597366272","indices":[173,196],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnt418UYAAmBvb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnt418UYAAmBvb.jpg","url":"https:\/\/t.co\/0O4H01xtJx","display_url":"pic.twitter.com\/0O4H01xtJx","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187241657684508672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187241537597366272,"id_str":"1187241537597366272","indices":[173,196],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnt418UYAAmBvb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnt418UYAAmBvb.jpg","url":"https:\/\/t.co\/0O4H01xtJx","display_url":"pic.twitter.com\/0O4H01xtJx","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187241657684508672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1187241538360725505,"id_str":"1187241538360725505","indices":[173,196],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnt44yUUAE69mq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnt44yUUAE69mq.jpg","url":"https:\/\/t.co\/0O4H01xtJx","display_url":"pic.twitter.com\/0O4H01xtJx","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187241657684508672\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1282,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":751,"resize":"fit"},"small":{"w":680,"h":426,"resize":"fit"}},"ext_alt_text":null},{"id":1187241537601589248,"id_str":"1187241537601589248","indices":[173,196],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnt419U0AAVdjZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnt419U0AAVdjZ.jpg","url":"https:\/\/t.co\/0O4H01xtJx","display_url":"pic.twitter.com\/0O4H01xtJx","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187241657684508672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1098051352645623808,"id_str":"1098051352645623808","name":"Fan + XU \u8bb8\u5e06","screen_name":"FanXU92073425","location":"Columbus, Ohio","description":"Ph.D. + candidate of Learning Technologies @OhioState @OSUehe Graduate Research Assistant + @OSUcete Member of Research Group @LEDresearch","url":"https:\/\/t.co\/wYY2xiYHsc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wYY2xiYHsc","expanded_url":"https:\/\/fanxuspace.webnode.page","display_url":"fanxuspace.webnode.page","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":158,"friends_count":302,"listed_count":0,"created_at":"Wed + Feb 20 02:46:58 +0000 2019","favourites_count":391,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":109,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1098051352645623808\/1646758591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:20:00 +0000 2019","id":1187403377501601793,"id_str":"1187403377501601793","full_text":"#aect19inspired + Thank you for allowing me to share my instructional design model at the conference. + https:\/\/t.co\/duxWWbhoG2","truncated":false,"display_text_range":[0,99],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187403370606161920,"id_str":"1187403370606161920","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqBEw4U8AA3_Dt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqBEw4U8AA3_Dt.jpg","url":"https:\/\/t.co\/duxWWbhoG2","display_url":"pic.twitter.com\/duxWWbhoG2","expanded_url":"https:\/\/twitter.com\/teacherrogers\/status\/1187403377501601793\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187403370606161920,"id_str":"1187403370606161920","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqBEw4U8AA3_Dt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqBEw4U8AA3_Dt.jpg","url":"https:\/\/t.co\/duxWWbhoG2","display_url":"pic.twitter.com\/duxWWbhoG2","expanded_url":"https:\/\/twitter.com\/teacherrogers\/status\/1187403377501601793\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187403370601910273,"id_str":"1187403370601910273","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqBEw3UEAE0QoN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqBEw3UEAE0QoN.jpg","url":"https:\/\/t.co\/duxWWbhoG2","display_url":"pic.twitter.com\/duxWWbhoG2","expanded_url":"https:\/\/twitter.com\/teacherrogers\/status\/1187403377501601793\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187041460882792448,"in_reply_to_status_id_str":"1187041460882792448","in_reply_to_user_id":212784618,"in_reply_to_user_id_str":"212784618","in_reply_to_screen_name":"teacherrogers","user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 18:01:49 +0000 2019","id":1187428999078797313,"id_str":"1187428999078797313","full_text":"RT + @koubenec: Thanks to all who attended my @AECT presentation on Git & @github + for open educational resources, especially our incredibly s\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"koubenec","name":"Noah + Koubenec","id":153965652,"id_str":"153965652","indices":[3,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[44,49]},{"screen_name":"github","name":"GitHub","id":13334762,"id_str":"13334762","indices":[76,83]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 17:50:25 +0000 2019","id":1187426131164614656,"id_str":"1187426131164614656","full_text":"Thanks + to all who attended my @AECT presentation on Git & @github for open educational + resources, especially our incredibly supportive @EdTech_UofSC faculty! get + the slides and all the links here - https:\/\/t.co\/SMCHa9pIYF #aect19inspired + @Happy_Tao @TAmankwatia","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"aect19inspired","indices":[229,244]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[30,35]},{"screen_name":"github","name":"GitHub","id":13334762,"id_str":"13334762","indices":[62,69]},{"screen_name":"EdTech_UofSC","name":"LD&T + and EdTech at UofSC","id":2835369671,"id_str":"2835369671","indices":[139,152]},{"screen_name":"Happy_Tao","name":"Hengtao + Tang","id":482227724,"id_str":"482227724","indices":[245,255]},{"screen_name":"TAmankwatia","name":"Tonya + Amankwatia","id":25068789,"id_str":"25068789","indices":[256,268]}],"urls":[{"url":"https:\/\/t.co\/SMCHa9pIYF","expanded_url":"https:\/\/koubenecn.github.io\/aect-2019-slides\/#\/","display_url":"koubenecn.github.io\/aect-2019-slid\u2026","indices":[202,225]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:23:18 +0000 2019","id":1187389108059901952,"id_str":"1187389108059901952","full_text":"Gotta + stop in. This will be a great presentation. I know the team!! #aect19inspired + https:\/\/t.co\/KwcUTpceL2","truncated":false,"display_text_range":[0,84],"entities":{"hashtags":[{"text":"aect19inspired","indices":[69,84]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KwcUTpceL2","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187387173563068417","display_url":"twitter.com\/DrVirtuality\/s\u2026","indices":[85,108]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1187387173563068417,"quoted_status_id_str":"1187387173563068417","quoted_status_permalink":{"url":"https:\/\/t.co\/KwcUTpceL2","expanded":"https:\/\/twitter.com\/DrVirtuality\/status\/1187387173563068417","display":"twitter.com\/DrVirtuality\/s\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 15:15:37 +0000 2019","id":1187387173563068417,"id_str":"1187387173563068417","full_text":"Attending + #MicrosoftTeams session today @AECT #AECT19 #AECT19Inspired #MicrosoftEDU. + Lots of seats open in Ballroom E. \ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a + https:\/\/t.co\/SBGWAdj41N","truncated":false,"display_text_range":[0,130],"entities":{"hashtags":[{"text":"MicrosoftTeams","indices":[10,25]},{"text":"AECT19","indices":[46,53]},{"text":"AECT19Inspired","indices":[54,69]},{"text":"MicrosoftEDU","indices":[70,83]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[40,45]}],"urls":[],"media":[{"id":1187387109532815361,"id_str":"1187387109532815361","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpySPqU0AEVgtz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpySPqU0AEVgtz.jpg","url":"https:\/\/t.co\/SBGWAdj41N","display_url":"pic.twitter.com\/SBGWAdj41N","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187387173563068417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187387109532815361,"id_str":"1187387109532815361","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpySPqU0AEVgtz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpySPqU0AEVgtz.jpg","url":"https:\/\/t.co\/SBGWAdj41N","display_url":"pic.twitter.com\/SBGWAdj41N","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187387173563068417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:52:21 +0000 2019","id":1187396419251924992,"id_str":"1187396419251924992","full_text":"RT + @FanXU92073425: It\u2019s so nice to meet those friends at #aect19. Nothing + could be better!#aect19inspired I\u2019m so proud of what @SICET has d\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[57,64]},{"text":"aect19inspired","indices":[90,105]}],"symbols":[],"user_mentions":[{"screen_name":"FanXU92073425","name":"Fan + XU \u8bb8\u5e06","id":1098051352645623808,"id_str":"1098051352645623808","indices":[3,17]},{"screen_name":"SICET","name":"SICET","id":114832274,"id_str":"114832274","indices":[127,133]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 05:54:39 +0000 2019","id":1187246000672428032,"id_str":"1187246000672428032","full_text":"It\u2019s + so nice to meet those friends at #aect19. Nothing could be better!#aect19inspired + I\u2019m so proud of what @SICET has done. Thanks for bringing such wonderful + sessions. You guys really did rock that! @Happy_Tao https:\/\/t.co\/j7RusOCojk","truncated":false,"display_text_range":[0,211],"entities":{"hashtags":[{"text":"aect19","indices":[38,45]},{"text":"aect19inspired","indices":[71,86]}],"symbols":[],"user_mentions":[{"screen_name":"SICET","name":"SICET","id":114832274,"id_str":"114832274","indices":[108,114]},{"screen_name":"Happy_Tao","name":"Hengtao + Tang","id":482227724,"id_str":"482227724","indices":[201,211]}],"urls":[],"media":[{"id":1187245932699516929,"id_str":"1187245932699516929","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnx4q-VAAEweGZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnx4q-VAAEweGZ.jpg","url":"https:\/\/t.co\/j7RusOCojk","display_url":"pic.twitter.com\/j7RusOCojk","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187246000672428032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187245932699516929,"id_str":"1187245932699516929","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnx4q-VAAEweGZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnx4q-VAAEweGZ.jpg","url":"https:\/\/t.co\/j7RusOCojk","display_url":"pic.twitter.com\/j7RusOCojk","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187246000672428032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187245933043470336,"id_str":"1187245933043470336","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnx4sQVUAAZGj7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnx4sQVUAAZGj7.jpg","url":"https:\/\/t.co\/j7RusOCojk","display_url":"pic.twitter.com\/j7RusOCojk","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187246000672428032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187245933051822080,"id_str":"1187245933051822080","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnx4sSUwAAXdYv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnx4sSUwAAXdYv.jpg","url":"https:\/\/t.co\/j7RusOCojk","display_url":"pic.twitter.com\/j7RusOCojk","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187246000672428032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187245933068578816,"id_str":"1187245933068578816","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnx4sWUcAAr_zU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnx4sWUcAAr_zU.jpg","url":"https:\/\/t.co\/j7RusOCojk","display_url":"pic.twitter.com\/j7RusOCojk","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187246000672428032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1098051352645623808,"id_str":"1098051352645623808","name":"Fan + XU \u8bb8\u5e06","screen_name":"FanXU92073425","location":"Columbus, Ohio","description":"Ph.D. + candidate of Learning Technologies @OhioState @OSUehe Graduate Research Assistant + @OSUcete Member of Research Group @LEDresearch","url":"https:\/\/t.co\/wYY2xiYHsc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wYY2xiYHsc","expanded_url":"https:\/\/fanxuspace.webnode.page","display_url":"fanxuspace.webnode.page","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":158,"friends_count":302,"listed_count":0,"created_at":"Wed + Feb 20 02:46:58 +0000 2019","favourites_count":391,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":109,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1098051352645623808\/1646758591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 17:58:25 +0000 2019","id":1187428144699072512,"id_str":"1187428144699072512","full_text":"@AnnaRoseLeach + @caranorth11 @dr_tracy_s @myramade @AnnaRoseLeach thank you for your leadership + with this #aect19 panel!","truncated":false,"display_text_range":[50,119],"entities":{"hashtags":[{"text":"aect19","indices":[105,112]}],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[0,14]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[15,27]},{"screen_name":"myramade","name":"Hey, + it''s Myra!","id":15434589,"id_str":"15434589","indices":[40,49]},{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[50,64]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187402090546524160,"in_reply_to_status_id_str":"1187402090546524160","in_reply_to_user_id":769261047312035840,"in_reply_to_user_id_str":"769261047312035840","in_reply_to_screen_name":"AnnaRoseLeach","user":{"id":153141293,"id_str":"153141293","name":"Ana-Paula + Correia \u2600\ufe0f","screen_name":"correia65","location":"","description":"Professor + of Learning Technologies @OhioState @OSUehe. Director of @OSUcete. Learning + Designer. Researcher. Leader. @LEDresearch \ud83c\uddfa\ud83c\uddf8\ud83c\uddf5\ud83c\uddf9","url":"https:\/\/t.co\/mgeGAbT0AP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mgeGAbT0AP","expanded_url":"https:\/\/www.ana-paulacorreia.com\/","display_url":"ana-paulacorreia.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3494,"friends_count":3241,"listed_count":29,"created_at":"Mon + Jun 07 20:00:45 +0000 2010","favourites_count":10293,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":654,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1149684446838345728\/1XaCxgEx_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1149684446838345728\/1XaCxgEx_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153141293\/1562941057","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:21:30 +0000 2019","id":1187388654366277635,"id_str":"1187388654366277635","full_text":"#Teamwork + trends. #MicrosoftTeams #MicrosoftEdu #AECT #AECT19 #aect19inspired https:\/\/t.co\/jM6qloVIgc","truncated":false,"display_text_range":[0,79],"entities":{"hashtags":[{"text":"Teamwork","indices":[0,9]},{"text":"MicrosoftTeams","indices":[18,33]},{"text":"MicrosoftEdu","indices":[34,47]},{"text":"AECT","indices":[50,55]},{"text":"AECT19","indices":[56,63]},{"text":"aect19inspired","indices":[64,79]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187388583876784128,"id_str":"1187388583876784128","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpzoEBUcAADXxf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpzoEBUcAADXxf.jpg","url":"https:\/\/t.co\/jM6qloVIgc","display_url":"pic.twitter.com\/jM6qloVIgc","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187388654366277635\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":768,"h":1024,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187388583876784128,"id_str":"1187388583876784128","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpzoEBUcAADXxf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpzoEBUcAADXxf.jpg","url":"https:\/\/t.co\/jM6qloVIgc","display_url":"pic.twitter.com\/jM6qloVIgc","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187388654366277635\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":768,"h":1024,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 17:38:40 +0000 2019","id":1187423174205431808,"id_str":"1187423174205431808","full_text":"RT + @PaulineMuljana: The \"Narrowing Down your Research Interests\" @gsa_aect + panel session that I co-facilitated with Yam has inspired me. I''\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[65,74]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 14:52:50 +0000 2019","id":1187381441023201280,"id_str":"1187381441023201280","full_text":"The + \"Narrowing Down your Research Interests\" @gsa_aect panel session that I + co-facilitated with Yam has inspired me. I''m sure it has inspired the attendees + as well. Shout out to the panelists, Drs. @aac3 , @tintinluo , @robmoore3 + , and @eromerohall . #aect19 https:\/\/t.co\/gKIkBntwgp","truncated":false,"display_text_range":[0,258],"entities":{"hashtags":[{"text":"aect19","indices":[251,258]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[45,54]},{"screen_name":"aac3","name":"Dr. + ali carr-chellman","id":27413768,"id_str":"27413768","indices":[198,203]},{"screen_name":"tintinluo","name":"Tian + Luo","id":29474883,"id_str":"29474883","indices":[206,216]},{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[219,229]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[236,248]}],"urls":[],"media":[{"id":1187381434102665217,"id_str":"1187381434102665217","indices":[259,282],"media_url":"http:\/\/pbs.twimg.com\/media\/EHptH5CVUAEliUj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHptH5CVUAEliUj.jpg","url":"https:\/\/t.co\/gKIkBntwgp","display_url":"pic.twitter.com\/gKIkBntwgp","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187381441023201280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187381434102665217,"id_str":"1187381434102665217","indices":[259,282],"media_url":"http:\/\/pbs.twimg.com\/media\/EHptH5CVUAEliUj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHptH5CVUAEliUj.jpg","url":"https:\/\/t.co\/gKIkBntwgp","display_url":"pic.twitter.com\/gKIkBntwgp","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187381441023201280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 17:07:26 +0000 2019","id":1187415313240866816,"id_str":"1187415313240866816","full_text":"RT + @PaulineMuljana: @AmyLomellini_ID @nicolapallitt @christieliuidtr @jesustrespalac1 + @AllisonHallAZ @d_mulder @DrRossPerkins @plowenthal @\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]},{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[20,36]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[37,51]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 16:31:07 +0000 2019","id":1187406175878254592,"id_str":"1187406175878254592","full_text":"@AmyLomellini_ID + @nicolapallitt @christieliuidtr @jesustrespalac1 @AllisonHallAZ @d_mulder + @DrRossPerkins @plowenthal @JenM @edtechdoc @AECT @gsa_aect Also, shout out + to @AmyLomellini_ID , @UmbrellaMichela , and Dr. @JenM for sharing inspiring + insights and experiences during a @gsa_aect panel \"Designing for Accessibility\" + yesterday. #aect19 #aect19inspired","truncated":false,"display_text_range":[151,359],"entities":{"hashtags":[{"text":"aect19","indices":[336,343]},{"text":"aect19inspired","indices":[344,359]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[0,16]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[17,31]},{"screen_name":"JesusTrespalac1","name":"Jesus + Trespalacios","id":1554537673771126785,"id_str":"1554537673771126785","indices":[49,65]},{"screen_name":"AllisonHallAZ","name":"Dr. + Allison Barsnica Hall","id":720930385,"id_str":"720930385","indices":[66,80]},{"screen_name":"d_mulder","name":"Dr. + Dave Mulder","id":30278154,"id_str":"30278154","indices":[81,90]},{"screen_name":"DrRossPerkins","name":"Ross + Perkins, PhD","id":2905458781,"id_str":"2905458781","indices":[91,105]},{"screen_name":"plowenthal","name":"Patrick + Lowenthal","id":14364665,"id_str":"14364665","indices":[106,117]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[118,123]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[135,140]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[141,150]},{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[170,186]},{"screen_name":"UmbrellaMichela","name":"Esther + Michela","id":940824276307009536,"id_str":"940824276307009536","indices":[189,205]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[216,221]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[279,288]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1187228088616177664,"in_reply_to_status_id_str":"1187228088616177664","in_reply_to_user_id":910574724748644353,"in_reply_to_user_id_str":"910574724748644353","in_reply_to_screen_name":"AmyLomellini_ID","user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 16:42:00 +0000 2019","id":1187408915018874880,"id_str":"1187408915018874880","full_text":"Getting + my name out there by tweeting a ton at #aect19inspired #aect2019 #aect19 #KSUITEC + #KSU https:\/\/t.co\/t7acP2tRzF","truncated":false,"display_text_range":[0,94],"entities":{"hashtags":[{"text":"aect19inspired","indices":[47,62]},{"text":"aect2019","indices":[63,72]},{"text":"aect19","indices":[73,80]},{"text":"KSUITEC","indices":[81,89]},{"text":"KSU","indices":[90,94]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/t7acP2tRzF","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187366745977348102","display_url":"twitter.com\/arasbozkurt\/st\u2026","indices":[95,118]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187366745977348102,"quoted_status_id_str":"1187366745977348102","quoted_status_permalink":{"url":"https:\/\/t.co\/t7acP2tRzF","expanded":"https:\/\/twitter.com\/arasbozkurt\/status\/1187366745977348102","display":"twitter.com\/arasbozkurt\/st\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 13:54:27 +0000 2019","id":1187366745977348102,"id_str":"1187366745977348102","full_text":"Rise + and shine #AECT19 - Social network Analysis for #AECT with NodeXL https:\/\/t.co\/MIQz1GdWlT\n@aect\n@michaelmgrant\n@drterric\n@caranorth11\n@islt_fsu\n@dksch\n@wilsoninedu\n@drvirtuality\n@eromerohall\n@robmoore3\n\nTop + hashtags:\n#aect19\n#aect19inspired\n#aect2019\n#aect\n#fsu\n#fsucoe\n#islt + https:\/\/t.co\/zTCol3vWgv","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[15,22]},{"text":"AECT","indices":[53,58]},{"text":"aect19","indices":[222,229]},{"text":"aect19inspired","indices":[230,245]},{"text":"aect2019","indices":[246,255]},{"text":"aect","indices":[256,261]},{"text":"fsu","indices":[262,266]},{"text":"fsucoe","indices":[267,274]},{"text":"islt","indices":[275,280]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[95,100]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[101,115]},{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[116,125]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[126,138]},{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[139,148]},{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[149,155]},{"screen_name":"WilsonInEdu","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","id":489118534,"id_str":"489118534","indices":[156,168]},{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[169,182]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[183,195]},{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[196,206]}],"urls":[{"url":"https:\/\/t.co\/MIQz1GdWlT","expanded_url":"http:\/\/bit.ly\/2N9hUPr","display_url":"bit.ly\/2N9hUPr","indices":[71,94]}],"media":[{"id":1187366622094331905,"id_str":"1187366622094331905","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","url":"https:\/\/t.co\/zTCol3vWgv","display_url":"pic.twitter.com\/zTCol3vWgv","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187366745977348102\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1578,"resize":"fit"},"medium":{"w":1200,"h":925,"resize":"fit"},"small":{"w":680,"h":524,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187366622094331905,"id_str":"1187366622094331905","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","url":"https:\/\/t.co\/zTCol3vWgv","display_url":"pic.twitter.com\/zTCol3vWgv","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187366745977348102\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1578,"resize":"fit"},"medium":{"w":1200,"h":925,"resize":"fit"},"small":{"w":680,"h":524,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:29:18 +0000 2019","id":1187390618604957696,"id_str":"1187390618604957696","full_text":"Anyone + using #Microsoft Teams? What do you like? #MicrosoftTeams #MicrosoftEdu #AECT + #AECT19 #aect19inspired","truncated":false,"display_text_range":[0,110],"entities":{"hashtags":[{"text":"Microsoft","indices":[13,23]},{"text":"MicrosoftTeams","indices":[49,64]},{"text":"MicrosoftEdu","indices":[65,78]},{"text":"AECT","indices":[81,86]},{"text":"AECT19","indices":[87,94]},{"text":"aect19inspired","indices":[95,110]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1187386657785503744%2C1187386636352589824%2C1187385573863907328%2C1187385494805471232%2C1187385257592406016%2C1187385085521092609%2C1187382630532165633%2C1187382572424155136%2C1187382369705021446%2C1187382252516204545%2C1187381906767261696%2C1187381869194698752%2C1187381869194698752%2C1187381691662225409%2C1187381441023201280%2C1187381321238220800%2C1187381015800680450%2C1187380940160557056%2C1187380744764739585%2C1187380716994285568%2C1187380606075838464%2C1187380556004298752%2C1187380488891256832%2C1187380443215204355%2C1187380391377813504%2C1187379097749483521%2C1187379067496095744%2C1187377036899176449%2C1187376326971416580%2C1187376196306124801%2C1187376187179442176%2C1187375951623135234%2C1187375752095899648%2C1187375352831561728%2C1187374549681221639%2C1187371342644924421%2C1187370990965116928%2C1187370677227180034%2C1187369863070785536%2C1187368477998206976%2C1187368152650248192%2C1187368147168444417%2C1187367619042725888%2C1187367298673201153%2C1187367298673201153%2C1187366745977348102%2C1187360305480732672%2C1187359812104810497%2C1187358580447399936%2C1187358040862806018%2C1187357916757544960%2C1187356073964912642%2C1187354620936388609%2C1187353047149600768%2C1187353047149600768%2C1187345495989075970%2C1187344295684198400%2C1187344237236539393%2C1187342668231299072%2C1187338312048140289%2C1187336927445282816%2C1187336927445282816%2C1187331910881742848%2C1187331149535727621%2C1187326871391752192%2C1187325634755858435%2C1187325634755858435%2C1187319600813400064%2C1187311173923942402%2C1187311173923942402%2C1187303333922344961%2C1187302648904589312%2C1187302648904589312%2C1187287548005179394%2C1187287355700498433%2C1187284070604201984%2C1187284070604201984%2C1187268071016132608%2C1187260963839332352%2C1187253949885059072%2C1187253461995413505%2C1187250011379093504%2C1187247744504750080%2C1187247637801656320%2C1187246770646069249%2C1187246088857804800%2C1187246000672428032%2C1187246000672428032%2C1187243237418754048%2C1187241657684508672%2C1187239325131403264%2C1187236307791011840%2C1187231897761415168%2C1187231897761415168%2C1187228088616177664%2C1187226419568365571%2C1187224899837759488%2C1187224452292939776%2C1187224177213726721%2C1187224108154507265&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:46 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:46 GMT + x-transaction: d061e5dcff5d3bfa + content-length: '62543' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '285' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '333' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Thu Oct 24 08:39:44 +0000 2019","id":1187287548005179394,"id_str":"1187287548005179394","full_text":"RT + @arasbozkurt: Happy to announce that me and Akbulut, researchers from Anadolu + University, received Reviewer Excellence Award by ETR&D pr\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"arasbozkurt","name":"Aras + Bozkurt","id":83447547,"id_str":"83447547","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1107424291,"id_str":"1107424291","name":"UzaktanE\u011fitim","screen_name":"UzaktanEgitimTR","location":"Eski\u015fehir","description":"Distance + Education\nAnytime, Anywhere...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":587,"friends_count":710,"listed_count":4,"created_at":"Sun + Jan 20 22:05:48 +0000 2013","favourites_count":1329,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":873,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1240218612922757122\/V1G3d5_f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1240218612922757122\/V1G3d5_f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1107424291\/1564922816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 20:21:09 +0000 2019","id":1187101677142319105,"id_str":"1187101677142319105","full_text":"Happy + to announce that me and Akbulut, researchers from Anadolu University, received + Reviewer Excellence Award by ETR&D presented at #AECT19 #ETRD @yvzkblt + @AECT https:\/\/t.co\/QJXzm3Nc74","truncated":false,"display_text_range":[0,165],"entities":{"hashtags":[{"text":"AECT19","indices":[137,144]},{"text":"ETRD","indices":[145,150]}],"symbols":[],"user_mentions":[{"screen_name":"yvzkblt","name":"Yavuz + Akbulut","id":257891862,"id_str":"257891862","indices":[151,159]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[160,165]}],"urls":[],"media":[{"id":1187101649879425025,"id_str":"1187101649879425025","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","url":"https:\/\/t.co\/QJXzm3Nc74","display_url":"pic.twitter.com\/QJXzm3Nc74","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187101677142319105\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187101649879425025,"id_str":"1187101649879425025","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","url":"https:\/\/t.co\/QJXzm3Nc74","display_url":"pic.twitter.com\/QJXzm3Nc74","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187101677142319105\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":67,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 11:36:01 +0000 2019","id":1187331910881742848,"id_str":"1187331910881742848","full_text":"Top + story: @tutaleni: ''eLearning: An International Collaborative Exploration + of Higher-Educational Technology Usage in Africa. #aect19inspired #AECT19 + '' https:\/\/t.co\/aM6sFMBfUW, see more https:\/\/t.co\/lqn9zXXgMq","truncated":false,"display_text_range":[0,210],"entities":{"hashtags":[{"text":"aect19inspired","indices":[127,142]},{"text":"AECT19","indices":[143,150]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[11,20]}],"urls":[{"url":"https:\/\/t.co\/lqn9zXXgMq","expanded_url":"http:\/\/tweetedtimes.com\/v\/644?s=tnp","display_url":"tweetedtimes.com\/v\/644?s=tnp","indices":[187,210]}],"media":[{"id":1187079100675940352,"id_str":"1187079100675940352","indices":[153,176],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","url":"https:\/\/t.co\/aM6sFMBfUW","display_url":"pic.twitter.com\/aM6sFMBfUW","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187079123249725440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":982,"h":728,"resize":"fit"},"medium":{"w":982,"h":728,"resize":"fit"},"small":{"w":680,"h":504,"resize":"fit"}},"source_status_id":1187079123249725440,"source_status_id_str":"1187079123249725440","source_user_id":48223678,"source_user_id_str":"48223678"}]},"extended_entities":{"media":[{"id":1187079100675940352,"id_str":"1187079100675940352","indices":[153,176],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","url":"https:\/\/t.co\/aM6sFMBfUW","display_url":"pic.twitter.com\/aM6sFMBfUW","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187079123249725440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":982,"h":728,"resize":"fit"},"medium":{"w":982,"h":728,"resize":"fit"},"small":{"w":680,"h":504,"resize":"fit"}},"source_status_id":1187079123249725440,"source_status_id_str":"1187079123249725440","source_user_id":48223678,"source_user_id_str":"48223678","ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.tweetedtimes.com\" rel=\"nofollow\"\u003eThe Tweeted + Times\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":58377839,"id_str":"58377839","name":"Digital + Art Creative","screen_name":"digitalNFTarts","location":"Canada","description":"Creator + of \"One Of A Kind\" Digital Arts","url":"https:\/\/t.co\/cqZsPfMFCe","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cqZsPfMFCe","expanded_url":"https:\/\/opensea.io\/digitalartcreative","display_url":"opensea.io\/digitalartcrea\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3083,"friends_count":1105,"listed_count":78,"created_at":"Mon + Jul 20 03:31:30 +0000 2009","favourites_count":980,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27684,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1481656592013479938\/1WGkqNcx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1481656592013479938\/1WGkqNcx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/58377839\/1641503352","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B8A25","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"0084B4","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 13:19:51 +0000 2019","id":1187358040862806018,"id_str":"1187358040862806018","full_text":"You''re + in a presentation and they mention using learning styles to plan\/design instruction. + What do you do? #AECT19 #devlearn #mythbusting","truncated":false,"display_text_range":[0,138],"entities":{"hashtags":[{"text":"AECT19","indices":[108,115]},{"text":"devlearn","indices":[116,125]},{"text":"mythbusting","indices":[126,138]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 10:47:06 +0000 2019","id":1187319600813400064,"id_str":"1187319600813400064","full_text":"RT + @edtechdoc: Who inspires us? Fantastic alumni, students, and faculty of the + BSU EdD program! It\u2019s so great to connect or reconnect while\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 04:58:36 +0000 2019","id":1187231897761415168,"id_str":"1187231897761415168","full_text":"Who + inspires us? Fantastic alumni, students, and faculty of the BSU EdD program! + It\u2019s so great to connect or reconnect while at #aect19 (and this is only + part of the group who were attending!) @AECT https:\/\/t.co\/RR4RwMUG5j","truncated":false,"display_text_range":[0,198],"entities":{"hashtags":[{"text":"aect19","indices":[128,135]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[193,198]}],"urls":[],"media":[{"id":1187231890312331264,"id_str":"1187231890312331264","indices":[199,222],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnlHTAVAAAbg5S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnlHTAVAAAbg5S.jpg","url":"https:\/\/t.co\/RR4RwMUG5j","display_url":"pic.twitter.com\/RR4RwMUG5j","expanded_url":"https:\/\/twitter.com\/edtechdoc\/status\/1187231897761415168\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187231890312331264,"id_str":"1187231890312331264","indices":[199,222],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnlHTAVAAAbg5S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnlHTAVAAAbg5S.jpg","url":"https:\/\/t.co\/RR4RwMUG5j","display_url":"pic.twitter.com\/RR4RwMUG5j","expanded_url":"https:\/\/twitter.com\/edtechdoc\/status\/1187231897761415168\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1101331518692184065,"id_str":"1101331518692184065","name":"BSU + EdTech AGP","screen_name":"EdTechAGP","location":"Boise, ID","description":"Advanced + Grad Programs. 100% online Ed Specialist & Doctoral programs in educational + technology at Boise State University. EdD founded 2012. EdS founded 2016.","url":"https:\/\/t.co\/27jpLvNAsW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/27jpLvNAsW","expanded_url":"https:\/\/sites.google.com\/boisestate.edu\/edtech-advanced-grad-programs\/home","display_url":"sites.google.com\/boisestate.edu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":147,"friends_count":89,"listed_count":4,"created_at":"Fri + Mar 01 04:01:10 +0000 2019","favourites_count":201,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":142,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1101332437634826241\/bPwzWhxZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1101332437634826241\/bPwzWhxZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1101331518692184065\/1551413241","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:54:32 +0000 2019","id":1187381869194698752,"id_str":"1187381869194698752","full_text":"RT + @PaulineMuljana: The \"Narrowing Down your Research Interests\" @gsa_aect + panel session that I co-facilitated with Yam has inspired me. I''\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[65,74]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 14:52:50 +0000 2019","id":1187381441023201280,"id_str":"1187381441023201280","full_text":"The + \"Narrowing Down your Research Interests\" @gsa_aect panel session that I + co-facilitated with Yam has inspired me. I''m sure it has inspired the attendees + as well. Shout out to the panelists, Drs. @aac3 , @tintinluo , @robmoore3 + , and @eromerohall . #aect19 https:\/\/t.co\/gKIkBntwgp","truncated":false,"display_text_range":[0,258],"entities":{"hashtags":[{"text":"aect19","indices":[251,258]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[45,54]},{"screen_name":"aac3","name":"Dr. + ali carr-chellman","id":27413768,"id_str":"27413768","indices":[198,203]},{"screen_name":"tintinluo","name":"Tian + Luo","id":29474883,"id_str":"29474883","indices":[206,216]},{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[219,229]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[236,248]}],"urls":[],"media":[{"id":1187381434102665217,"id_str":"1187381434102665217","indices":[259,282],"media_url":"http:\/\/pbs.twimg.com\/media\/EHptH5CVUAEliUj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHptH5CVUAEliUj.jpg","url":"https:\/\/t.co\/gKIkBntwgp","display_url":"pic.twitter.com\/gKIkBntwgp","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187381441023201280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187381434102665217,"id_str":"1187381434102665217","indices":[259,282],"media_url":"http:\/\/pbs.twimg.com\/media\/EHptH5CVUAEliUj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHptH5CVUAEliUj.jpg","url":"https:\/\/t.co\/gKIkBntwgp","display_url":"pic.twitter.com\/gKIkBntwgp","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187381441023201280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 11:16:00 +0000 2019","id":1187326871391752192,"id_str":"1187326871391752192","full_text":"You + want to hear more about online disinhibition effect, trolling and hyperpoliteness + right? 8 am this morning in Pavilion 9 for Online Microaggressions: Striving + for Equitable and Inclusive Online \n\n#aect19inspired #aect19 #aectgsa https:\/\/t.co\/AAkZoT5MrW","truncated":false,"display_text_range":[0,232],"entities":{"hashtags":[{"text":"aect19inspired","indices":[200,215]},{"text":"aect19","indices":[216,223]},{"text":"aectgsa","indices":[224,232]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187246391812218880,"id_str":"1187246391812218880","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnyTZTU4AAMaFf.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnyTZTU4AAMaFf.png","url":"https:\/\/t.co\/AAkZoT5MrW","display_url":"pic.twitter.com\/AAkZoT5MrW","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1187326871391752192\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":400,"resize":"fit"},"small":{"w":400,"h":400,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1187246391812218880,"id_str":"1187246391812218880","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnyTZTU4AAMaFf.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnyTZTU4AAMaFf.png","url":"https:\/\/t.co\/AAkZoT5MrW","display_url":"pic.twitter.com\/AAkZoT5MrW","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1187326871391752192\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":400,"resize":"fit"},"small":{"w":400,"h":400,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14994538,"id_str":"14994538","name":"Kzenovka","screen_name":"kzenovka","location":"Metaverse","description":"educator, + coolhunter, and sometimes puppetmaster. Metagame Book Club, Games & Sim Network + and Inevitable Instructors","url":"https:\/\/t.co\/SN1thrlVqD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SN1thrlVqD","expanded_url":"https:\/\/sites.google.com\/site\/metagamebookclub\/","display_url":"sites.google.com\/site\/metagameb\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1338,"friends_count":3152,"listed_count":228,"created_at":"Tue + Jun 03 16:35:29 +0000 2008","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15007,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14994538\/1436550079","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:48:40 +0000 2019","id":1187380391377813504,"id_str":"1187380391377813504","full_text":"RT + @LearnEngage: You''re in a presentation and they mention using learning styles + to plan\/design instruction. What do you do? #AECT19 #devle\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[125,132]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 13:19:51 +0000 2019","id":1187358040862806018,"id_str":"1187358040862806018","full_text":"You''re + in a presentation and they mention using learning styles to plan\/design instruction. + What do you do? #AECT19 #devlearn #mythbusting","truncated":false,"display_text_range":[0,138],"entities":{"hashtags":[{"text":"AECT19","indices":[108,115]},{"text":"devlearn","indices":[116,125]},{"text":"mythbusting","indices":[126,138]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:13:29 +0000 2019","id":1187386636352589824,"id_str":"1187386636352589824","full_text":"RT + @hajeen2040: Another cool research on social media. #AECT19 #SocialMedia #fsu2040 + https:\/\/t.co\/lO9ga0DXL1","truncated":false,"display_text_range":[0,108],"entities":{"hashtags":[{"text":"AECT19","indices":[55,62]},{"text":"SocialMedia","indices":[63,75]},{"text":"fsu2040","indices":[76,84]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lO9ga0DXL1","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186605683338289153","display_url":"twitter.com\/ISLT_FSU\/statu\u2026","indices":[85,108]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1664133686,"id_str":"1664133686","name":"Zhongrui(Ray) + Yao","screen_name":"ZhongruiYao","location":"Davis, CA","description":"Dr. + Zhongrui Yao in ISLT program at Florida State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":109,"friends_count":438,"listed_count":6,"created_at":"Mon + Aug 12 04:22:44 +0000 2013","favourites_count":511,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":690,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1168975986920214530\/OJRLfdQQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1168975986920214530\/OJRLfdQQ_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 06:22:22 +0000 2019","id":1186890589536538625,"id_str":"1186890589536538625","full_text":"Another + cool research on social media. #AECT19 #SocialMedia #fsu2040 https:\/\/t.co\/lO9ga0DXL1","truncated":false,"display_text_range":[0,68],"entities":{"hashtags":[{"text":"AECT19","indices":[39,46]},{"text":"SocialMedia","indices":[47,59]},{"text":"fsu2040","indices":[60,68]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lO9ga0DXL1","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186605683338289153","display_url":"twitter.com\/ISLT_FSU\/statu\u2026","indices":[69,92]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1033854044039729152,"id_str":"1033854044039729152","name":"Hajeen + Choi","screen_name":"hajeenfsu","location":"FL","description":"PhD., Interested + in online teaching and learning, motivation, engagement, othering\/belonging, + networked learning, social media in education","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":178,"listed_count":1,"created_at":"Sun + Aug 26 23:09:46 +0000 2018","favourites_count":653,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1033854044039729152\/1535327544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186605683338289153,"quoted_status_id_str":"1186605683338289153","quoted_status_permalink":{"url":"https:\/\/t.co\/lO9ga0DXL1","expanded":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186605683338289153","display":"twitter.com\/ISLT_FSU\/statu\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 11:30:15 +0000 2019","id":1186605683338289153,"id_str":"1186605683338289153","full_text":"#SocialMedia + and #Undergraduates: Use and Opportunities Across Student Life. Come join + #FSU #FSUCOE #ISLT @vdennen @LaurenBagdy @hajeen2040 Demetrius Rice, & + @Ginny7s, for session 045 on Tuesday, 8:00 am - 8:50 am at Convention Center + - Ballroom B. #AECT19 #AECT2019 #SocialMedia","truncated":false,"display_text_range":[0,283],"entities":{"hashtags":[{"text":"SocialMedia","indices":[0,12]},{"text":"Undergraduates","indices":[17,32]},{"text":"FSU","indices":[87,91]},{"text":"FSUCOE","indices":[92,99]},{"text":"ISLT","indices":[100,105]},{"text":"AECT19","indices":[253,260]},{"text":"AECT2019","indices":[261,270]},{"text":"SocialMedia","indices":[271,283]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[106,114]},{"screen_name":"LaurenBagdy","name":"Lauren + Bagdy","id":22214646,"id_str":"22214646","indices":[115,127]},{"screen_name":"Ginny7s","name":"Dr. + Ginny L. Smith","id":880789090010050560,"id_str":"880789090010050560","indices":[162,170]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186605683338289153,"quoted_status_id_str":"1186605683338289153","quoted_status_permalink":{"url":"https:\/\/t.co\/lO9ga0DXL1","expanded":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186605683338289153","display":"twitter.com\/ISLT_FSU\/statu\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 05:55:00 +0000 2019","id":1187246088857804800,"id_str":"1187246088857804800","full_text":"8 + am - it is early but it will be worth it.....CLT Inspire! Online Microaggression + in Pavillion 9 #aect19 #aect19inspired #aectgsa \n\nhttps:\/\/t.co\/pAKOhYkAzk + https:\/\/t.co\/sbTLC4K80r","truncated":false,"display_text_range":[0,156],"entities":{"hashtags":[{"text":"aect19","indices":[98,105]},{"text":"aect19inspired","indices":[106,121]},{"text":"aectgsa","indices":[122,130]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pAKOhYkAzk","expanded_url":"https:\/\/convention2.allacademic.com\/one\/aect\/aect19\/index.php?cmd=Online+Program+View+Paper&","display_url":"convention2.allacademic.com\/one\/aect\/aect1\u2026","indices":[133,156]}],"media":[{"id":1187244016473010177,"id_str":"1187244016473010177","indices":[157,180],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnwJIeU8AEg7H5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnwJIeU8AEg7H5.jpg","url":"https:\/\/t.co\/sbTLC4K80r","display_url":"pic.twitter.com\/sbTLC4K80r","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1187246088857804800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187244016473010177,"id_str":"1187244016473010177","indices":[157,180],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnwJIeU8AEg7H5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnwJIeU8AEg7H5.jpg","url":"https:\/\/t.co\/sbTLC4K80r","display_url":"pic.twitter.com\/sbTLC4K80r","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1187246088857804800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14994538,"id_str":"14994538","name":"Kzenovka","screen_name":"kzenovka","location":"Metaverse","description":"educator, + coolhunter, and sometimes puppetmaster. Metagame Book Club, Games & Sim Network + and Inevitable Instructors","url":"https:\/\/t.co\/SN1thrlVqD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SN1thrlVqD","expanded_url":"https:\/\/sites.google.com\/site\/metagamebookclub\/","display_url":"sites.google.com\/site\/metagameb\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1338,"friends_count":3152,"listed_count":228,"created_at":"Tue + Jun 03 16:35:29 +0000 2008","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15007,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14994538\/1436550079","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 04:43:28 +0000 2019","id":1187228088616177664,"id_str":"1187228088616177664","full_text":"Great + day with inspiring people at #AECT19! Looking forward to tomorrow!\n\n@nicolapallitt + @christieliuidtr @jesustrespalac1 @AllisonHallAZ @d_mulder \n\n(not pictured: + @DrRossPerkins @plowenthal @JenM @PaulineMuljana and many more...) \n\n@edtechdoc + @AECT #aect19inspired @gsa_aect https:\/\/t.co\/KORrK9Pu86","truncated":false,"display_text_range":[0,276],"entities":{"hashtags":[{"text":"AECT19","indices":[35,42]},{"text":"aect19inspired","indices":[251,266]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[74,88]},{"screen_name":"JesusTrespalac1","name":"Jesus + Trespalacios","id":1554537673771126785,"id_str":"1554537673771126785","indices":[106,122]},{"screen_name":"AllisonHallAZ","name":"Dr. + Allison Barsnica Hall","id":720930385,"id_str":"720930385","indices":[123,137]},{"screen_name":"d_mulder","name":"Dr. + Dave Mulder","id":30278154,"id_str":"30278154","indices":[138,147]},{"screen_name":"DrRossPerkins","name":"Ross + Perkins, PhD","id":2905458781,"id_str":"2905458781","indices":[165,179]},{"screen_name":"plowenthal","name":"Patrick + Lowenthal","id":14364665,"id_str":"14364665","indices":[180,191]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[192,197]},{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[198,213]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[245,250]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[267,276]}],"urls":[],"media":[{"id":1187228076704296960,"id_str":"1187228076704296960","indices":[277,300],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnhpUNUcAAX0LO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnhpUNUcAAX0LO.jpg","url":"https:\/\/t.co\/KORrK9Pu86","display_url":"pic.twitter.com\/KORrK9Pu86","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1187228088616177664\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1600,"h":1200,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187228076704296960,"id_str":"1187228076704296960","indices":[277,300],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnhpUNUcAAX0LO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnhpUNUcAAX0LO.jpg","url":"https:\/\/t.co\/KORrK9Pu86","display_url":"pic.twitter.com\/KORrK9Pu86","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1187228088616177664\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1600,"h":1200,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187228076704288769,"id_str":"1187228076704288769","indices":[277,300],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnhpUNUUAEGct8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnhpUNUUAEGct8.jpg","url":"https:\/\/t.co\/KORrK9Pu86","display_url":"pic.twitter.com\/KORrK9Pu86","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1187228088616177664\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":960,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910574724748644353,"id_str":"910574724748644353","name":"Amy + Lomellini","screen_name":"AmyLomellini_ID","location":"New York, USA","description":"Associate + Director of Blended & Online Learning and doctoral candidate with a passion + for accessible and inclusive online teaching and learning. #EdTech #A11y","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":644,"friends_count":1061,"listed_count":9,"created_at":"Wed + Sep 20 18:41:46 +0000 2017","favourites_count":7378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1141,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910574724748644353\/1551624059","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":25,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:57:34 +0000 2019","id":1187382630532165633,"id_str":"1187382630532165633","full_text":"RT + @matt_m_schmidt: We will be presenting our continuing research on designing + and developing #virtualreality #VR interventions for individ\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"virtualreality","indices":[94,109]},{"text":"VR","indices":[110,113]}],"symbols":[],"user_mentions":[{"screen_name":"matt_m_schmidt","name":"Matthew + Schmidt","id":9806452,"id_str":"9806452","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.botlibre.com\" rel=\"nofollow\"\u003eBot Libre!\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":921781423601803265,"id_str":"921781423601803265","name":"Autie + - Artificial Autism Intelligence","screen_name":"grhluna24","location":"","description":"AUTISM + AWARENESS campaign:atm we r up and running * doing all the things in science + we arent supposed to do* #autismacceptance RT isnt endorsement","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":7266,"friends_count":7869,"listed_count":43,"created_at":"Sat + Oct 21 16:53:12 +0000 2017","favourites_count":675,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":298085,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/921792196499697664\/S-U9SQi6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/921792196499697664\/S-U9SQi6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/921781423601803265\/1508607433","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 14:31:01 +0000 2019","id":1187375951623135234,"id_str":"1187375951623135234","full_text":"We + will be presenting our continuing research on designing and developing #virtualreality + #VR interventions for individuals with #autism today at 4 PM in Ballroom A. + #accessibility #udl #aect19 https:\/\/t.co\/oEtbdkYhmC","truncated":false,"display_text_range":[0,193],"entities":{"hashtags":[{"text":"virtualreality","indices":[74,89]},{"text":"VR","indices":[90,93]},{"text":"autism","indices":[129,136]},{"text":"accessibility","indices":[166,180]},{"text":"udl","indices":[181,185]},{"text":"aect19","indices":[186,193]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187375947193798657,"id_str":"1187375947193798657","indices":[194,217],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpoIgtUUAEjuGR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpoIgtUUAEjuGR.jpg","url":"https:\/\/t.co\/oEtbdkYhmC","display_url":"pic.twitter.com\/oEtbdkYhmC","expanded_url":"https:\/\/twitter.com\/matt_m_schmidt\/status\/1187375951623135234\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1120,"resize":"fit"},"medium":{"w":1200,"h":656,"resize":"fit"},"small":{"w":680,"h":372,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187375947193798657,"id_str":"1187375947193798657","indices":[194,217],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpoIgtUUAEjuGR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpoIgtUUAEjuGR.jpg","url":"https:\/\/t.co\/oEtbdkYhmC","display_url":"pic.twitter.com\/oEtbdkYhmC","expanded_url":"https:\/\/twitter.com\/matt_m_schmidt\/status\/1187375951623135234\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1120,"resize":"fit"},"medium":{"w":1200,"h":656,"resize":"fit"},"small":{"w":680,"h":372,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":9806452,"id_str":"9806452","name":"Matthew + Schmidt","screen_name":"matt_m_schmidt","location":"Gainesville, FL","description":"Editor-in-Chief + of Learner & User Experience Research. Read & share here: https:\/\/t.co\/nMBaOeqjpy","url":"https:\/\/t.co\/MQBbLAksSX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MQBbLAksSX","expanded_url":"http:\/\/matthewschmidt.info","display_url":"matthewschmidt.info","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/nMBaOeqjpy","expanded_url":"https:\/\/edtechbooks.org\/ux","display_url":"edtechbooks.org\/ux","indices":[74,97]}]}},"protected":false,"followers_count":668,"friends_count":404,"listed_count":17,"created_at":"Tue + Oct 30 21:35:53 +0000 2007","favourites_count":698,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":564,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9806452\/1603124176","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:01:20 +0000 2019","id":1187368477998206976,"id_str":"1187368477998206976","full_text":"Oooh + what do I get?? Haha #aect19inspired https:\/\/t.co\/mFMxeRmrmn","truncated":false,"display_text_range":[0,42],"entities":{"hashtags":[{"text":"aect19inspired","indices":[27,42]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mFMxeRmrmn","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187366745977348102","display_url":"twitter.com\/arasbozkurt\/st\u2026","indices":[43,66]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1187366745977348102,"quoted_status_id_str":"1187366745977348102","quoted_status_permalink":{"url":"https:\/\/t.co\/mFMxeRmrmn","expanded":"https:\/\/twitter.com\/arasbozkurt\/status\/1187366745977348102","display":"twitter.com\/arasbozkurt\/st\u2026"},"quoted_status":{"created_at":"Thu + Oct 24 13:54:27 +0000 2019","id":1187366745977348102,"id_str":"1187366745977348102","full_text":"Rise + and shine #AECT19 - Social network Analysis for #AECT with NodeXL https:\/\/t.co\/MIQz1GdWlT\n@aect\n@michaelmgrant\n@drterric\n@caranorth11\n@islt_fsu\n@dksch\n@wilsoninedu\n@drvirtuality\n@eromerohall\n@robmoore3\n\nTop + hashtags:\n#aect19\n#aect19inspired\n#aect2019\n#aect\n#fsu\n#fsucoe\n#islt + https:\/\/t.co\/zTCol3vWgv","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[15,22]},{"text":"AECT","indices":[53,58]},{"text":"aect19","indices":[222,229]},{"text":"aect19inspired","indices":[230,245]},{"text":"aect2019","indices":[246,255]},{"text":"aect","indices":[256,261]},{"text":"fsu","indices":[262,266]},{"text":"fsucoe","indices":[267,274]},{"text":"islt","indices":[275,280]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[95,100]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[101,115]},{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[116,125]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[126,138]},{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[139,148]},{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[149,155]},{"screen_name":"WilsonInEdu","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","id":489118534,"id_str":"489118534","indices":[156,168]},{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[169,182]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[183,195]},{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[196,206]}],"urls":[{"url":"https:\/\/t.co\/MIQz1GdWlT","expanded_url":"http:\/\/bit.ly\/2N9hUPr","display_url":"bit.ly\/2N9hUPr","indices":[71,94]}],"media":[{"id":1187366622094331905,"id_str":"1187366622094331905","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","url":"https:\/\/t.co\/zTCol3vWgv","display_url":"pic.twitter.com\/zTCol3vWgv","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187366745977348102\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1578,"resize":"fit"},"medium":{"w":1200,"h":925,"resize":"fit"},"small":{"w":680,"h":524,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187366622094331905,"id_str":"1187366622094331905","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","url":"https:\/\/t.co\/zTCol3vWgv","display_url":"pic.twitter.com\/zTCol3vWgv","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187366745977348102\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1578,"resize":"fit"},"medium":{"w":1200,"h":925,"resize":"fit"},"small":{"w":680,"h":524,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 06:54:06 +0000 2019","id":1187260963839332352,"id_str":"1187260963839332352","full_text":"@WilsonInEdu + @tedaect Glad you were there and to meet you--was awesome time! We''ll be + tweeting new Cards Against AECT ideas tomorrow at 9 in our membership meeting, + #TEDcards19 #tedaect #aect19","truncated":false,"display_text_range":[22,193],"entities":{"hashtags":[{"text":"TEDcards19","indices":[165,176]},{"text":"tedaect","indices":[177,185]},{"text":"aect19","indices":[186,193]}],"symbols":[],"user_mentions":[{"screen_name":"WilsonInEdu","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","id":489118534,"id_str":"489118534","indices":[0,12]},{"screen_name":"tedaect","name":"TED + AECT","id":2165058337,"id_str":"2165058337","indices":[13,21]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1186697924140359680,"in_reply_to_status_id_str":"1186697924140359680","in_reply_to_user_id":489118534,"in_reply_to_user_id_str":"489118534","in_reply_to_screen_name":"WilsonInEdu","user":{"id":580601535,"id_str":"580601535","name":"Tracy + Russo","screen_name":"36trusso","location":"Traverse City, Michigan","description":"Curriculum + geek. If all students can learn, why don''t they want to? Solving real world + problems with tech. Educational Consultant & Adjunct Instructor","url":"https:\/\/t.co\/NkWum3gLCZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/NkWum3gLCZ","expanded_url":"http:\/\/tracy-russo.blogspot.com","display_url":"tracy-russo.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":276,"friends_count":375,"listed_count":29,"created_at":"Tue + May 15 04:00:31 +0000 2012","favourites_count":487,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5384,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/852538413131628544\/LVF8MWQl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/852538413131628544\/LVF8MWQl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/580601535\/1492096030","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:56:32 +0000 2019","id":1187382369705021446,"id_str":"1187382369705021446","full_text":"RT + @AECT: Have a great #AECT19 day 4! Today\u2019s highlights include 7 workshops + and 11 Inspire! Sessions, Roundtables at 10am, Emerging Techno\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[23,30]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 12:01:27 +0000 2019","id":1187338312048140289,"id_str":"1187338312048140289","full_text":"Have + a great #AECT19 day 4! Today\u2019s highlights include 7 workshops and 11 + Inspire! Sessions, Roundtables at 10am, Emerging Technology Showcase at 2pm, + Membership Meeting at 5pm, and University Reception at 6:15pm. https:\/\/t.co\/JJj6M6XvE6","truncated":false,"display_text_range":[0,213],"entities":{"hashtags":[{"text":"AECT19","indices":[13,20]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187338305936994304,"id_str":"1187338305936994304","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpF5gGWsAA6GoH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpF5gGWsAA6GoH.jpg","url":"https:\/\/t.co\/JJj6M6XvE6","display_url":"pic.twitter.com\/JJj6M6XvE6","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187338312048140289\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187338305936994304,"id_str":"1187338305936994304","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpF5gGWsAA6GoH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpF5gGWsAA6GoH.jpg","url":"https:\/\/t.co\/JJj6M6XvE6","display_url":"pic.twitter.com\/JJj6M6XvE6","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187338312048140289\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 05:37:23 +0000 2019","id":1187241657684508672,"id_str":"1187241657684508672","full_text":"Greetings + from LasVegas @correia65!Dr. Bonk @travelinedman inspired me a lot at #aect19 + #aect19inspired So I made a \u201cinspired balloon\u201d. Hope everything + goes well in Brazil! https:\/\/t.co\/0O4H01xtJx","truncated":false,"display_text_range":[0,172],"entities":{"hashtags":[{"text":"aect19","indices":[80,87]},{"text":"aect19inspired","indices":[88,103]}],"symbols":[],"user_mentions":[{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[24,34]},{"screen_name":"travelinedman","name":"travelinedman","id":13077712,"id_str":"13077712","indices":[44,58]}],"urls":[],"media":[{"id":1187241537597366272,"id_str":"1187241537597366272","indices":[173,196],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnt418UYAAmBvb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnt418UYAAmBvb.jpg","url":"https:\/\/t.co\/0O4H01xtJx","display_url":"pic.twitter.com\/0O4H01xtJx","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187241657684508672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187241537597366272,"id_str":"1187241537597366272","indices":[173,196],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnt418UYAAmBvb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnt418UYAAmBvb.jpg","url":"https:\/\/t.co\/0O4H01xtJx","display_url":"pic.twitter.com\/0O4H01xtJx","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187241657684508672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1187241538360725505,"id_str":"1187241538360725505","indices":[173,196],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnt44yUUAE69mq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnt44yUUAE69mq.jpg","url":"https:\/\/t.co\/0O4H01xtJx","display_url":"pic.twitter.com\/0O4H01xtJx","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187241657684508672\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1282,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":751,"resize":"fit"},"small":{"w":680,"h":426,"resize":"fit"}},"ext_alt_text":null},{"id":1187241537601589248,"id_str":"1187241537601589248","indices":[173,196],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnt419U0AAVdjZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnt419U0AAVdjZ.jpg","url":"https:\/\/t.co\/0O4H01xtJx","display_url":"pic.twitter.com\/0O4H01xtJx","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187241657684508672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1098051352645623808,"id_str":"1098051352645623808","name":"Fan + XU \u8bb8\u5e06","screen_name":"FanXU92073425","location":"Columbus, Ohio","description":"Ph.D. + candidate of Learning Technologies @OhioState @OSUehe Graduate Research Assistant + @OSUcete Member of Research Group @LEDresearch","url":"https:\/\/t.co\/wYY2xiYHsc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wYY2xiYHsc","expanded_url":"https:\/\/fanxuspace.webnode.page","display_url":"fanxuspace.webnode.page","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":158,"friends_count":302,"listed_count":0,"created_at":"Wed + Feb 20 02:46:58 +0000 2019","favourites_count":391,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":109,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1098051352645623808\/1646758591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 12:01:27 +0000 2019","id":1187338312048140289,"id_str":"1187338312048140289","full_text":"Have + a great #AECT19 day 4! Today\u2019s highlights include 7 workshops and 11 + Inspire! Sessions, Roundtables at 10am, Emerging Technology Showcase at 2pm, + Membership Meeting at 5pm, and University Reception at 6:15pm. https:\/\/t.co\/JJj6M6XvE6","truncated":false,"display_text_range":[0,213],"entities":{"hashtags":[{"text":"AECT19","indices":[13,20]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187338305936994304,"id_str":"1187338305936994304","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpF5gGWsAA6GoH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpF5gGWsAA6GoH.jpg","url":"https:\/\/t.co\/JJj6M6XvE6","display_url":"pic.twitter.com\/JJj6M6XvE6","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187338312048140289\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187338305936994304,"id_str":"1187338305936994304","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpF5gGWsAA6GoH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpF5gGWsAA6GoH.jpg","url":"https:\/\/t.co\/JJj6M6XvE6","display_url":"pic.twitter.com\/JJj6M6XvE6","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187338312048140289\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:32:31 +0000 2019","id":1187376326971416580,"id_str":"1187376326971416580","full_text":"RT + @matt_m_schmidt: Interested in #accessibility and #UDL? Consider coming to + our session today at 2pm in Pavilion 6: \u201cEfficacy of an onlin\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"accessibility","indices":[34,48]},{"text":"UDL","indices":[53,57]}],"symbols":[],"user_mentions":[{"screen_name":"matt_m_schmidt","name":"Matthew + Schmidt","id":9806452,"id_str":"9806452","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/epmatch.com\" rel=\"nofollow\"\u003eEpMatch\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":717104374162415616,"id_str":"717104374162415616","name":"EpMatch","screen_name":"epstrong","location":"","description":"Epilepsy + Dating - Pre-signup at https:\/\/t.co\/a5T1BMRlal","url":"https:\/\/t.co\/0eu66zDhJw","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0eu66zDhJw","expanded_url":"http:\/\/epmatch.com","display_url":"epmatch.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/a5T1BMRlal","expanded_url":"http:\/\/EpMatch.com","display_url":"EpMatch.com","indices":[32,55]}]}},"protected":false,"followers_count":1475,"friends_count":0,"listed_count":304,"created_at":"Mon + Apr 04 21:39:40 +0000 2016","favourites_count":71535,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":72357,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/717107709699424257\/4d82KBrj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/717107709699424257\/4d82KBrj_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 14:28:39 +0000 2019","id":1187375352831561728,"id_str":"1187375352831561728","full_text":"Interested + in #accessibility and #UDL? Consider coming to our session today at 2pm in + Pavilion 6: \u201cEfficacy of an online executive function intervention for + individuals with epilepsy\u201d #epilepsy #aect19 https:\/\/t.co\/9uziMdkPpB","truncated":false,"display_text_range":[0,201],"entities":{"hashtags":[{"text":"accessibility","indices":[14,28]},{"text":"UDL","indices":[33,37]},{"text":"epilepsy","indices":[184,193]},{"text":"aect19","indices":[194,201]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187375345416015872,"id_str":"1187375345416015872","indices":[202,225],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpnle6UEAAQnR7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpnle6UEAAQnR7.jpg","url":"https:\/\/t.co\/9uziMdkPpB","display_url":"pic.twitter.com\/9uziMdkPpB","expanded_url":"https:\/\/twitter.com\/matt_m_schmidt\/status\/1187375352831561728\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1366,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187375345416015872,"id_str":"1187375345416015872","indices":[202,225],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpnle6UEAAQnR7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpnle6UEAAQnR7.jpg","url":"https:\/\/t.co\/9uziMdkPpB","display_url":"pic.twitter.com\/9uziMdkPpB","expanded_url":"https:\/\/twitter.com\/matt_m_schmidt\/status\/1187375352831561728\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1366,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":9806452,"id_str":"9806452","name":"Matthew + Schmidt","screen_name":"matt_m_schmidt","location":"Gainesville, FL","description":"Editor-in-Chief + of Learner & User Experience Research. Read & share here: https:\/\/t.co\/nMBaOeqjpy","url":"https:\/\/t.co\/MQBbLAksSX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MQBbLAksSX","expanded_url":"http:\/\/matthewschmidt.info","display_url":"matthewschmidt.info","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/nMBaOeqjpy","expanded_url":"https:\/\/edtechbooks.org\/ux","display_url":"edtechbooks.org\/ux","indices":[74,97]}]}},"protected":false,"followers_count":668,"friends_count":404,"listed_count":17,"created_at":"Tue + Oct 30 21:35:53 +0000 2007","favourites_count":698,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":564,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9806452\/1603124176","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 09:39:45 +0000 2019","id":1187302648904589312,"id_str":"1187302648904589312","full_text":"RT + @FanXU92073425: Greetings from LasVegas @correia65!Dr. Bonk @travelinedman + inspired me a lot at #aect19 #aect19inspired So I made a \u201cins\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[99,106]},{"text":"aect19inspired","indices":[107,122]}],"symbols":[],"user_mentions":[{"screen_name":"FanXU92073425","name":"Fan + XU \u8bb8\u5e06","id":1098051352645623808,"id_str":"1098051352645623808","indices":[3,17]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[43,53]},{"screen_name":"travelinedman","name":"travelinedman","id":13077712,"id_str":"13077712","indices":[63,77]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153141293,"id_str":"153141293","name":"Ana-Paula + Correia \u2600\ufe0f","screen_name":"correia65","location":"","description":"Professor + of Learning Technologies @OhioState @OSUehe. Director of @OSUcete. Learning + Designer. Researcher. Leader. @LEDresearch \ud83c\uddfa\ud83c\uddf8\ud83c\uddf5\ud83c\uddf9","url":"https:\/\/t.co\/mgeGAbT0AP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mgeGAbT0AP","expanded_url":"https:\/\/www.ana-paulacorreia.com\/","display_url":"ana-paulacorreia.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3494,"friends_count":3241,"listed_count":29,"created_at":"Mon + Jun 07 20:00:45 +0000 2010","favourites_count":10293,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":654,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1149684446838345728\/1XaCxgEx_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1149684446838345728\/1XaCxgEx_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153141293\/1562941057","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 05:37:23 +0000 2019","id":1187241657684508672,"id_str":"1187241657684508672","full_text":"Greetings + from LasVegas @correia65!Dr. Bonk @travelinedman inspired me a lot at #aect19 + #aect19inspired So I made a \u201cinspired balloon\u201d. Hope everything + goes well in Brazil! https:\/\/t.co\/0O4H01xtJx","truncated":false,"display_text_range":[0,172],"entities":{"hashtags":[{"text":"aect19","indices":[80,87]},{"text":"aect19inspired","indices":[88,103]}],"symbols":[],"user_mentions":[{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[24,34]},{"screen_name":"travelinedman","name":"travelinedman","id":13077712,"id_str":"13077712","indices":[44,58]}],"urls":[],"media":[{"id":1187241537597366272,"id_str":"1187241537597366272","indices":[173,196],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnt418UYAAmBvb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnt418UYAAmBvb.jpg","url":"https:\/\/t.co\/0O4H01xtJx","display_url":"pic.twitter.com\/0O4H01xtJx","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187241657684508672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187241537597366272,"id_str":"1187241537597366272","indices":[173,196],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnt418UYAAmBvb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnt418UYAAmBvb.jpg","url":"https:\/\/t.co\/0O4H01xtJx","display_url":"pic.twitter.com\/0O4H01xtJx","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187241657684508672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1187241538360725505,"id_str":"1187241538360725505","indices":[173,196],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnt44yUUAE69mq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnt44yUUAE69mq.jpg","url":"https:\/\/t.co\/0O4H01xtJx","display_url":"pic.twitter.com\/0O4H01xtJx","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187241657684508672\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1282,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":751,"resize":"fit"},"small":{"w":680,"h":426,"resize":"fit"}},"ext_alt_text":null},{"id":1187241537601589248,"id_str":"1187241537601589248","indices":[173,196],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnt419U0AAVdjZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnt419U0AAVdjZ.jpg","url":"https:\/\/t.co\/0O4H01xtJx","display_url":"pic.twitter.com\/0O4H01xtJx","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187241657684508672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1098051352645623808,"id_str":"1098051352645623808","name":"Fan + XU \u8bb8\u5e06","screen_name":"FanXU92073425","location":"Columbus, Ohio","description":"Ph.D. + candidate of Learning Technologies @OhioState @OSUehe Graduate Research Assistant + @OSUcete Member of Research Group @LEDresearch","url":"https:\/\/t.co\/wYY2xiYHsc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wYY2xiYHsc","expanded_url":"https:\/\/fanxuspace.webnode.page","display_url":"fanxuspace.webnode.page","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":158,"friends_count":302,"listed_count":0,"created_at":"Wed + Feb 20 02:46:58 +0000 2019","favourites_count":391,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":109,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1098051352645623808\/1646758591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:08:00 +0000 2019","id":1187385257592406016,"id_str":"1187385257592406016","full_text":"I + hope you come by Table 24 at 11pm to chat about how we can personalize professional + learning for faculty! #aect19inspired https:\/\/t.co\/n49MiFYrSv","truncated":false,"display_text_range":[0,123],"entities":{"hashtags":[{"text":"aect19inspired","indices":[108,123]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187385244996927489,"id_str":"1187385244996927489","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpwltuVAAEUG67.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpwltuVAAEUG67.jpg","url":"https:\/\/t.co\/n49MiFYrSv","display_url":"pic.twitter.com\/n49MiFYrSv","expanded_url":"https:\/\/twitter.com\/AllisonHallAZ\/status\/1187385257592406016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1124,"h":1608,"resize":"fit"},"medium":{"w":839,"h":1200,"resize":"fit"},"small":{"w":475,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187385244996927489,"id_str":"1187385244996927489","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpwltuVAAEUG67.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpwltuVAAEUG67.jpg","url":"https:\/\/t.co\/n49MiFYrSv","display_url":"pic.twitter.com\/n49MiFYrSv","expanded_url":"https:\/\/twitter.com\/AllisonHallAZ\/status\/1187385257592406016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1124,"h":1608,"resize":"fit"},"medium":{"w":839,"h":1200,"resize":"fit"},"small":{"w":475,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":720930385,"id_str":"720930385","name":"Dr. + Allison Barsnica Hall","screen_name":"AllisonHallAZ","location":"Tempe, AZ","description":"Director + of Learning Experience Design @ ASU. Lifelong Learner. Interested in how to + help ALL learners. she\/her\/hers","url":"https:\/\/t.co\/Pi5aZFLirT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Pi5aZFLirT","expanded_url":"https:\/\/www.linkedin.com\/in\/allisonbhall\/","display_url":"linkedin.com\/in\/allisonbhal\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":417,"friends_count":563,"listed_count":30,"created_at":"Fri + Jul 27 21:42:06 +0000 2012","favourites_count":3118,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1022,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/981993480833515520\/S96xaBm1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/981993480833515520\/S96xaBm1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/720930385\/1581027324","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:48:52 +0000 2019","id":1187380443215204355,"id_str":"1187380443215204355","full_text":"RT + @hodgesc: I''m ready to chat about @AECTTechTrends today Oct 24, 10:00 to + 10:50am, Convention Center, Paradise North #aect19 #aect19inspi\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[119,126]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[37,52]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 13:00:01 +0000 2019","id":1187353047149600768,"id_str":"1187353047149600768","full_text":"I''m + ready to chat about @AECTTechTrends today Oct 24, 10:00 to 10:50am, Convention + Center, Paradise North #aect19 #aect19inspired","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[{"text":"aect19","indices":[106,113]},{"text":"aect19inspired","indices":[114,129]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[24,39]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:49:03 +0000 2019","id":1187380488891256832,"id_str":"1187380488891256832","full_text":"RT + @matt_m_schmidt: Interested in #accessibility and #UDL? Consider coming to + our session today at 2pm in Pavilion 6: \u201cEfficacy of an onlin\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"accessibility","indices":[34,48]},{"text":"UDL","indices":[53,57]}],"symbols":[],"user_mentions":[{"screen_name":"matt_m_schmidt","name":"Matthew + Schmidt","id":9806452,"id_str":"9806452","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 14:28:39 +0000 2019","id":1187375352831561728,"id_str":"1187375352831561728","full_text":"Interested + in #accessibility and #UDL? Consider coming to our session today at 2pm in + Pavilion 6: \u201cEfficacy of an online executive function intervention for + individuals with epilepsy\u201d #epilepsy #aect19 https:\/\/t.co\/9uziMdkPpB","truncated":false,"display_text_range":[0,201],"entities":{"hashtags":[{"text":"accessibility","indices":[14,28]},{"text":"UDL","indices":[33,37]},{"text":"epilepsy","indices":[184,193]},{"text":"aect19","indices":[194,201]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187375345416015872,"id_str":"1187375345416015872","indices":[202,225],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpnle6UEAAQnR7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpnle6UEAAQnR7.jpg","url":"https:\/\/t.co\/9uziMdkPpB","display_url":"pic.twitter.com\/9uziMdkPpB","expanded_url":"https:\/\/twitter.com\/matt_m_schmidt\/status\/1187375352831561728\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1366,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187375345416015872,"id_str":"1187375345416015872","indices":[202,225],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpnle6UEAAQnR7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpnle6UEAAQnR7.jpg","url":"https:\/\/t.co\/9uziMdkPpB","display_url":"pic.twitter.com\/9uziMdkPpB","expanded_url":"https:\/\/twitter.com\/matt_m_schmidt\/status\/1187375352831561728\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1366,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":9806452,"id_str":"9806452","name":"Matthew + Schmidt","screen_name":"matt_m_schmidt","location":"Gainesville, FL","description":"Editor-in-Chief + of Learner & User Experience Research. Read & share here: https:\/\/t.co\/nMBaOeqjpy","url":"https:\/\/t.co\/MQBbLAksSX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MQBbLAksSX","expanded_url":"http:\/\/matthewschmidt.info","display_url":"matthewschmidt.info","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/nMBaOeqjpy","expanded_url":"https:\/\/edtechbooks.org\/ux","display_url":"edtechbooks.org\/ux","indices":[74,97]}]}},"protected":false,"followers_count":668,"friends_count":404,"listed_count":17,"created_at":"Tue + Oct 30 21:35:53 +0000 2007","favourites_count":698,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":564,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9806452\/1603124176","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 13:22:00 +0000 2019","id":1187358580447399936,"id_str":"1187358580447399936","full_text":"RT + @ISLT_FSU: Come join us! We are looking for a new colleague. Teaching faculty + position is open. If you are in Vegas at AECT come find Dr\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 13:12:02 +0000 2019","id":1187356073964912642,"id_str":"1187356073964912642","full_text":"Come + join us! We are looking for a new colleague. Teaching faculty position is + open. If you are in Vegas at AECT come find Dr. Jim Klein or @vdennen. #JobsInHigherEd + #HigherEdJobs #FacultyPosition #JobOpening #AECT19 #Vegas #Learning #Education + #Teaching #Instruction #FSU https:\/\/t.co\/6cBHuscFrb","truncated":false,"display_text_range":[0,272],"entities":{"hashtags":[{"text":"JobsInHigherEd","indices":[150,165]},{"text":"HigherEdJobs","indices":[166,179]},{"text":"FacultyPosition","indices":[180,196]},{"text":"JobOpening","indices":[197,208]},{"text":"AECT19","indices":[209,216]},{"text":"Vegas","indices":[217,223]},{"text":"Learning","indices":[224,233]},{"text":"Education","indices":[234,244]},{"text":"Teaching","indices":[245,254]},{"text":"Instruction","indices":[255,267]},{"text":"FSU","indices":[268,272]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[140,148]}],"urls":[],"media":[{"id":1187356064808722433,"id_str":"1187356064808722433","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpWDNDUYAEHK6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpWDNDUYAEHK6m.jpg","url":"https:\/\/t.co\/6cBHuscFrb","display_url":"pic.twitter.com\/6cBHuscFrb","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187356073964912642\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":1600,"h":1067,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187356064808722433,"id_str":"1187356064808722433","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpWDNDUYAEHK6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpWDNDUYAEHK6m.jpg","url":"https:\/\/t.co\/6cBHuscFrb","display_url":"pic.twitter.com\/6cBHuscFrb","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187356073964912642\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":1600,"h":1067,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 05:54:39 +0000 2019","id":1187246000672428032,"id_str":"1187246000672428032","full_text":"It\u2019s + so nice to meet those friends at #aect19. Nothing could be better!#aect19inspired + I\u2019m so proud of what @SICET has done. Thanks for bringing such wonderful + sessions. You guys really did rock that! @Happy_Tao https:\/\/t.co\/j7RusOCojk","truncated":false,"display_text_range":[0,211],"entities":{"hashtags":[{"text":"aect19","indices":[38,45]},{"text":"aect19inspired","indices":[71,86]}],"symbols":[],"user_mentions":[{"screen_name":"SICET","name":"SICET","id":114832274,"id_str":"114832274","indices":[108,114]},{"screen_name":"Happy_Tao","name":"Hengtao + Tang","id":482227724,"id_str":"482227724","indices":[201,211]}],"urls":[],"media":[{"id":1187245932699516929,"id_str":"1187245932699516929","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnx4q-VAAEweGZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnx4q-VAAEweGZ.jpg","url":"https:\/\/t.co\/j7RusOCojk","display_url":"pic.twitter.com\/j7RusOCojk","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187246000672428032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187245932699516929,"id_str":"1187245932699516929","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnx4q-VAAEweGZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnx4q-VAAEweGZ.jpg","url":"https:\/\/t.co\/j7RusOCojk","display_url":"pic.twitter.com\/j7RusOCojk","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187246000672428032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187245933043470336,"id_str":"1187245933043470336","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnx4sQVUAAZGj7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnx4sQVUAAZGj7.jpg","url":"https:\/\/t.co\/j7RusOCojk","display_url":"pic.twitter.com\/j7RusOCojk","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187246000672428032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187245933051822080,"id_str":"1187245933051822080","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnx4sSUwAAXdYv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnx4sSUwAAXdYv.jpg","url":"https:\/\/t.co\/j7RusOCojk","display_url":"pic.twitter.com\/j7RusOCojk","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187246000672428032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187245933068578816,"id_str":"1187245933068578816","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnx4sWUcAAr_zU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnx4sWUcAAr_zU.jpg","url":"https:\/\/t.co\/j7RusOCojk","display_url":"pic.twitter.com\/j7RusOCojk","expanded_url":"https:\/\/twitter.com\/FanXU92073425\/status\/1187246000672428032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1098051352645623808,"id_str":"1098051352645623808","name":"Fan + XU \u8bb8\u5e06","screen_name":"FanXU92073425","location":"Columbus, Ohio","description":"Ph.D. + candidate of Learning Technologies @OhioState @OSUehe Graduate Research Assistant + @OSUcete Member of Research Group @LEDresearch","url":"https:\/\/t.co\/wYY2xiYHsc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wYY2xiYHsc","expanded_url":"https:\/\/fanxuspace.webnode.page","display_url":"fanxuspace.webnode.page","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":158,"friends_count":302,"listed_count":0,"created_at":"Wed + Feb 20 02:46:58 +0000 2019","favourites_count":391,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":109,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1098051352645623808\/1646758591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:50:51 +0000 2019","id":1187380940160557056,"id_str":"1187380940160557056","full_text":"RT + @PaulineMuljana: @tintinluo Someone gave me an idea for my potential dissertation + topic. This #aect19 has been inspiring me. #aect19ins\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[98,105]}],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]},{"screen_name":"tintinluo","name":"Tian + Luo","id":29474883,"id_str":"29474883","indices":[20,30]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 14:12:43 +0000 2019","id":1187371342644924421,"id_str":"1187371342644924421","full_text":"@tintinluo + Someone gave me an idea for my potential dissertation topic. This #aect19 + has been inspiring me. #aect19inspired","truncated":false,"display_text_range":[11,124],"entities":{"hashtags":[{"text":"aect19","indices":[78,85]},{"text":"aect19inspired","indices":[109,124]}],"symbols":[],"user_mentions":[{"screen_name":"tintinluo","name":"Tian + Luo","id":29474883,"id_str":"29474883","indices":[0,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1187088031439675392,"in_reply_to_status_id_str":"1187088031439675392","in_reply_to_user_id":29474883,"in_reply_to_user_id_str":"29474883","in_reply_to_screen_name":"tintinluo","user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:43:31 +0000 2019","id":1187379097749483521,"id_str":"1187379097749483521","full_text":"@WEHSLibrary + @AECTGSA @Stephsteph83 @NancyeBlackEdu @AECT DM me if you''d like to attend + the @gsa_aect membership meeting together. It''s today at 12.\n#aect19.","truncated":false,"display_text_range":[58,157],"entities":{"hashtags":[{"text":"aect19","indices":[149,156]}],"symbols":[],"user_mentions":[{"screen_name":"WEHSLibrary","name":"Weslaco + East High School Library-Renee Dyer","id":175049060,"id_str":"175049060","indices":[0,12]},{"screen_name":"AECTGSA","name":"AECT + GSA","id":727873186809810946,"id_str":"727873186809810946","indices":[13,21]},{"screen_name":"Stephsteph83","name":"Dr. + Stephanee Stephens","id":427060068,"id_str":"427060068","indices":[22,35]},{"screen_name":"NancyeBlackEdu","name":"Nancye + Blair Black","id":175808323,"id_str":"175808323","indices":[36,51]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[52,57]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[92,101]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1187192011549360128,"in_reply_to_status_id_str":"1187192011549360128","in_reply_to_user_id":175049060,"in_reply_to_user_id_str":"175049060","in_reply_to_screen_name":"WEHSLibrary","user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 13:56:38 +0000 2019","id":1187367298673201153,"id_str":"1187367298673201153","full_text":"RT + @arasbozkurt: Rise and shine #AECT19 - Social network Analysis for #AECT with + NodeXL https:\/\/t.co\/MIQz1GdWlT\n@aect\n@michaelmgrant\n@drter\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[32,39]},{"text":"AECT","indices":[70,75]}],"symbols":[],"user_mentions":[{"screen_name":"arasbozkurt","name":"Aras + Bozkurt","id":83447547,"id_str":"83447547","indices":[3,15]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[112,117]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[118,132]}],"urls":[{"url":"https:\/\/t.co\/MIQz1GdWlT","expanded_url":"http:\/\/bit.ly\/2N9hUPr","display_url":"bit.ly\/2N9hUPr","indices":[88,111]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 13:54:27 +0000 2019","id":1187366745977348102,"id_str":"1187366745977348102","full_text":"Rise + and shine #AECT19 - Social network Analysis for #AECT with NodeXL https:\/\/t.co\/MIQz1GdWlT\n@aect\n@michaelmgrant\n@drterric\n@caranorth11\n@islt_fsu\n@dksch\n@wilsoninedu\n@drvirtuality\n@eromerohall\n@robmoore3\n\nTop + hashtags:\n#aect19\n#aect19inspired\n#aect2019\n#aect\n#fsu\n#fsucoe\n#islt + https:\/\/t.co\/zTCol3vWgv","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[15,22]},{"text":"AECT","indices":[53,58]},{"text":"aect19","indices":[222,229]},{"text":"aect19inspired","indices":[230,245]},{"text":"aect2019","indices":[246,255]},{"text":"aect","indices":[256,261]},{"text":"fsu","indices":[262,266]},{"text":"fsucoe","indices":[267,274]},{"text":"islt","indices":[275,280]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[95,100]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[101,115]},{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[116,125]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[126,138]},{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[139,148]},{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[149,155]},{"screen_name":"WilsonInEdu","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","id":489118534,"id_str":"489118534","indices":[156,168]},{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[169,182]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[183,195]},{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[196,206]}],"urls":[{"url":"https:\/\/t.co\/MIQz1GdWlT","expanded_url":"http:\/\/bit.ly\/2N9hUPr","display_url":"bit.ly\/2N9hUPr","indices":[71,94]}],"media":[{"id":1187366622094331905,"id_str":"1187366622094331905","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","url":"https:\/\/t.co\/zTCol3vWgv","display_url":"pic.twitter.com\/zTCol3vWgv","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187366745977348102\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1578,"resize":"fit"},"medium":{"w":1200,"h":925,"resize":"fit"},"small":{"w":680,"h":524,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187366622094331905,"id_str":"1187366622094331905","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","url":"https:\/\/t.co\/zTCol3vWgv","display_url":"pic.twitter.com\/zTCol3vWgv","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187366745977348102\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1578,"resize":"fit"},"medium":{"w":1200,"h":925,"resize":"fit"},"small":{"w":680,"h":524,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:54:41 +0000 2019","id":1187381906767261696,"id_str":"1187381906767261696","full_text":"RT + @ISLT_FSU: #AECT19: Forgetting \u201cBook\u201d and Designing for Open: An + OER Design Case (308) in Ballroom B. 9:00 am - 9:50 am presented by #F\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 14:50:04 +0000 2019","id":1187380744764739585,"id_str":"1187380744764739585","full_text":"#AECT19: + Forgetting \u201cBook\u201d and Designing for Open: An OER Design Case (308) + in Ballroom B. 9:00 am - 9:50 am presented by #FSU #FSUCOE #ISLT Dr. Vanessa + Dennen & Lauren Bagdy","truncated":false,"display_text_range":[0,179],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"FSU","indices":[123,127]},{"text":"FSUCOE","indices":[128,135]},{"text":"ISLT","indices":[136,141]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:00:01 +0000 2019","id":1187368147168444417,"id_str":"1187368147168444417","full_text":"Interested + in Teacher Readiness to Implement Technology Innovations? Visit my roundtable + with @DrTerriC to learn about our recent research. Oct 24, 11:00 to 11:50am, + Convention Center, Paradise North #aect19 #aect19inspired","truncated":false,"display_text_range":[0,223],"entities":{"hashtags":[{"text":"aect19","indices":[200,207]},{"text":"aect19inspired","indices":[208,223]}],"symbols":[],"user_mentions":[{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[94,103]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:31:58 +0000 2019","id":1187376187179442176,"id_str":"1187376187179442176","full_text":"RT + @matt_m_schmidt: We will be presenting our continuing research on designing + and developing #virtualreality #VR interventions for individ\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"virtualreality","indices":[94,109]},{"text":"VR","indices":[110,113]}],"symbols":[],"user_mentions":[{"screen_name":"matt_m_schmidt","name":"Matthew + Schmidt","id":9806452,"id_str":"9806452","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/knowledgeofwine.com\" rel=\"nofollow\"\u003edrobapi\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2256664812,"id_str":"2256664812","name":"MRX","screen_name":"researchmrx","location":"","description":"Fine-tuning + our vision, products, and services for a plant-based economy. #medicalmarijuana + #wellness #plantbased #cannabis","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":8336,"friends_count":226,"listed_count":69,"created_at":"Sat + Dec 21 16:17:07 +0000 2013","favourites_count":906,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":562221,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1082501359629287424\/wxvBLPtH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1082501359629287424\/wxvBLPtH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2256664812\/1546922991","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 14:31:01 +0000 2019","id":1187375951623135234,"id_str":"1187375951623135234","full_text":"We + will be presenting our continuing research on designing and developing #virtualreality + #VR interventions for individuals with #autism today at 4 PM in Ballroom A. + #accessibility #udl #aect19 https:\/\/t.co\/oEtbdkYhmC","truncated":false,"display_text_range":[0,193],"entities":{"hashtags":[{"text":"virtualreality","indices":[74,89]},{"text":"VR","indices":[90,93]},{"text":"autism","indices":[129,136]},{"text":"accessibility","indices":[166,180]},{"text":"udl","indices":[181,185]},{"text":"aect19","indices":[186,193]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187375947193798657,"id_str":"1187375947193798657","indices":[194,217],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpoIgtUUAEjuGR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpoIgtUUAEjuGR.jpg","url":"https:\/\/t.co\/oEtbdkYhmC","display_url":"pic.twitter.com\/oEtbdkYhmC","expanded_url":"https:\/\/twitter.com\/matt_m_schmidt\/status\/1187375951623135234\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1120,"resize":"fit"},"medium":{"w":1200,"h":656,"resize":"fit"},"small":{"w":680,"h":372,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187375947193798657,"id_str":"1187375947193798657","indices":[194,217],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpoIgtUUAEjuGR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpoIgtUUAEjuGR.jpg","url":"https:\/\/t.co\/oEtbdkYhmC","display_url":"pic.twitter.com\/oEtbdkYhmC","expanded_url":"https:\/\/twitter.com\/matt_m_schmidt\/status\/1187375951623135234\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1120,"resize":"fit"},"medium":{"w":1200,"h":656,"resize":"fit"},"small":{"w":680,"h":372,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":9806452,"id_str":"9806452","name":"Matthew + Schmidt","screen_name":"matt_m_schmidt","location":"Gainesville, FL","description":"Editor-in-Chief + of Learner & User Experience Research. Read & share here: https:\/\/t.co\/nMBaOeqjpy","url":"https:\/\/t.co\/MQBbLAksSX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MQBbLAksSX","expanded_url":"http:\/\/matthewschmidt.info","display_url":"matthewschmidt.info","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/nMBaOeqjpy","expanded_url":"https:\/\/edtechbooks.org\/ux","display_url":"edtechbooks.org\/ux","indices":[74,97]}]}},"protected":false,"followers_count":668,"friends_count":404,"listed_count":17,"created_at":"Tue + Oct 30 21:35:53 +0000 2007","favourites_count":698,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":564,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9806452\/1603124176","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:30:14 +0000 2019","id":1187375752095899648,"id_str":"1187375752095899648","full_text":"Been + talking to #iste20 research reviewers all week at #aect19inspired and through + email. I am so fortunate to have such engaged and thoughtful reviewers. #iste20 + is gonna be great.","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"iste20","indices":[16,23]},{"text":"aect19inspired","indices":[55,70]},{"text":"iste20","indices":[155,162]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:08:57 +0000 2019","id":1187385494805471232,"id_str":"1187385494805471232","full_text":"The + @EdTechOkstate @OSUEHA is ready for our workshop in ballroom D. Join us #AECT19inspired + https:\/\/t.co\/WCClXexFkK","truncated":false,"display_text_range":[0,91],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[76,91]}],"symbols":[],"user_mentions":[{"screen_name":"EdTechOkstate","name":"Okstate + Ed Tech","id":4141659852,"id_str":"4141659852","indices":[4,18]}],"urls":[],"media":[{"id":1187385489050877958,"id_str":"1187385489050877958","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpwz65UwAY4A8K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpwz65UwAY4A8K.jpg","url":"https:\/\/t.co\/WCClXexFkK","display_url":"pic.twitter.com\/WCClXexFkK","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187385494805471232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187385489050877958,"id_str":"1187385489050877958","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpwz65UwAY4A8K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpwz65UwAY4A8K.jpg","url":"https:\/\/t.co\/WCClXexFkK","display_url":"pic.twitter.com\/WCClXexFkK","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187385494805471232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 05:57:42 +0000 2019","id":1187246770646069249,"id_str":"1187246770646069249","full_text":"RT + @nicolapallitt: Our #aect19inspired #aect19 slides for presentations about + our IRCEES processes & collaborative practices are at https:\/\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19inspired","indices":[23,38]},{"text":"aect19","indices":[39,46]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 03:40:06 +0000 2019","id":1187212142543421440,"id_str":"1187212142543421440","full_text":"Our + #aect19inspired #aect19 slides for presentations about our IRCEES processes + & collaborative practices are at https:\/\/t.co\/FztUPU6yZC & https:\/\/t.co\/rYzrohgoyb + Had a good time presenting with @christieliuidtr Hannah Grossman & @AmyLomellini_ID + @emergeAfrica @aectclt @AECT","truncated":false,"display_text_range":[0,288],"entities":{"hashtags":[{"text":"aect19inspired","indices":[4,19]},{"text":"aect19","indices":[20,27]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[242,258]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[259,272]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[274,282]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[283,288]}],"urls":[{"url":"https:\/\/t.co\/FztUPU6yZC","expanded_url":"http:\/\/bit.ly\/IRCEES1","display_url":"bit.ly\/IRCEES1","indices":[117,140]},{"url":"https:\/\/t.co\/rYzrohgoyb","expanded_url":"http:\/\/bit.ly\/IRCEES2","display_url":"bit.ly\/IRCEES2","indices":[147,170]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 06:26:14 +0000 2019","id":1187253949885059072,"id_str":"1187253949885059072","full_text":"RT + @DKSch: #aect19inspired mostly smiling champions. https:\/\/t.co\/JuSeJWCfJY","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]}],"symbols":[],"user_mentions":[{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[3,9]}],"urls":[],"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}},"source_status_id":1187033028100415488,"source_status_id_str":"1187033028100415488","source_user_id":38657815,"source_user_id_str":"38657815"}]},"extended_entities":{"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}},"source_status_id":1187033028100415488,"source_status_id_str":"1187033028100415488","source_user_id":38657815,"source_user_id_str":"38657815","ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":580601535,"id_str":"580601535","name":"Tracy + Russo","screen_name":"36trusso","location":"Traverse City, Michigan","description":"Curriculum + geek. If all students can learn, why don''t they want to? Solving real world + problems with tech. Educational Consultant & Adjunct Instructor","url":"https:\/\/t.co\/NkWum3gLCZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/NkWum3gLCZ","expanded_url":"http:\/\/tracy-russo.blogspot.com","display_url":"tracy-russo.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":276,"friends_count":375,"listed_count":29,"created_at":"Tue + May 15 04:00:31 +0000 2012","favourites_count":487,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5384,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/852538413131628544\/LVF8MWQl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/852538413131628544\/LVF8MWQl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/580601535\/1492096030","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:48:22 +0000 2019","id":1187033028100415488,"id_str":"1187033028100415488","full_text":"#aect19inspired + mostly smiling champions. https:\/\/t.co\/JuSeJWCfJY","truncated":false,"display_text_range":[0,41],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:00:02 +0000 2019","id":1187368152650248192,"id_str":"1187368152650248192","full_text":"RT + @ifenthaler: @AECT Being #aect19inspired ? Publish your work on #games #gamification + #game-based #learning #assessment in our book serie\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[28,43]},{"text":"games","indices":[67,73]},{"text":"gamification","indices":[74,87]},{"text":"game","indices":[88,93]},{"text":"learning","indices":[100,109]},{"text":"assessment","indices":[110,121]}],"symbols":[],"user_mentions":[{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[3,14]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[16,21]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 13:57:55 +0000 2019","id":1187367619042725888,"id_str":"1187367619042725888","full_text":"@AECT + Being #aect19inspired ? Publish your work on #games #gamification #game-based + #learning #assessment in our book series \u201cAdvances in Game-based Learning\u201d. + Send me your ideas or proposals #aect19\n\nhttps:\/\/t.co\/48RwvebdQH https:\/\/t.co\/CEaXM40OwJ","truncated":false,"display_text_range":[0,224],"entities":{"hashtags":[{"text":"aect19inspired","indices":[12,27]},{"text":"games","indices":[51,57]},{"text":"gamification","indices":[58,71]},{"text":"game","indices":[72,77]},{"text":"learning","indices":[84,93]},{"text":"assessment","indices":[94,105]},{"text":"aect19","indices":[192,199]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]}],"urls":[{"url":"https:\/\/t.co\/48RwvebdQH","expanded_url":"https:\/\/springer.com\/series\/13094","display_url":"springer.com\/series\/13094","indices":[201,224]}],"media":[{"id":1187366903074971651,"id_str":"1187366903074971651","indices":[225,248],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpf6EvW4AMYiMP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpf6EvW4AMYiMP.jpg","url":"https:\/\/t.co\/CEaXM40OwJ","display_url":"pic.twitter.com\/CEaXM40OwJ","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187367619042725888\/photo\/1","type":"photo","sizes":{"large":{"w":153,"h":229,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":153,"h":229,"resize":"fit"},"small":{"w":153,"h":229,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187366903074971651,"id_str":"1187366903074971651","indices":[225,248],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpf6EvW4AMYiMP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpf6EvW4AMYiMP.jpg","url":"https:\/\/t.co\/CEaXM40OwJ","display_url":"pic.twitter.com\/CEaXM40OwJ","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187367619042725888\/photo\/1","type":"photo","sizes":{"large":{"w":153,"h":229,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":153,"h":229,"resize":"fit"},"small":{"w":153,"h":229,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":45137054,"id_str":"45137054","name":"Dirk + Ifenthaler","screen_name":"ifenthaler","location":"","description":"#learninganalytics","url":"https:\/\/t.co\/nGyfFQyRvo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nGyfFQyRvo","expanded_url":"http:\/\/www.ifenthaler.info","display_url":"ifenthaler.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":895,"friends_count":246,"listed_count":35,"created_at":"Sat + Jun 06 14:19:07 +0000 2009","favourites_count":615,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":878,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 11:11:05 +0000 2019","id":1187325634755858435,"id_str":"1187325634755858435","full_text":"RT + @DrVirtuality: Presenting today Hope to see you there! @aectclt #AECT19 #AECT19inspired + #edtech https:\/\/t.co\/hXWV3G5B32","truncated":false,"display_text_range":[0,122],"entities":{"hashtags":[{"text":"AECT19","indices":[67,74]},{"text":"AECT19inspired","indices":[75,90]},{"text":"edtech","indices":[91,98]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[3,16]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[58,66]}],"urls":[],"media":[{"id":1185701580856643584,"id_str":"1185701580856643584","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR1TkCUUAAtyDW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR1TkCUUAAtyDW.jpg","url":"https:\/\/t.co\/hXWV3G5B32","display_url":"pic.twitter.com\/hXWV3G5B32","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187030166368702464\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"source_status_id":1187030166368702464,"source_status_id_str":"1187030166368702464","source_user_id":15667548,"source_user_id_str":"15667548"}]},"extended_entities":{"media":[{"id":1185701580856643584,"id_str":"1185701580856643584","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR1TkCUUAAtyDW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR1TkCUUAAtyDW.jpg","url":"https:\/\/t.co\/hXWV3G5B32","display_url":"pic.twitter.com\/hXWV3G5B32","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187030166368702464\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"source_status_id":1187030166368702464,"source_status_id_str":"1187030166368702464","source_user_id":15667548,"source_user_id_str":"15667548","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:37:00 +0000 2019","id":1187030166368702464,"id_str":"1187030166368702464","full_text":"Presenting + today Hope to see you there! @aectclt #AECT19 #AECT19inspired #edtech https:\/\/t.co\/hXWV3G5B32","truncated":false,"display_text_range":[0,80],"entities":{"hashtags":[{"text":"AECT19","indices":[49,56]},{"text":"AECT19inspired","indices":[57,72]},{"text":"edtech","indices":[73,80]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[40,48]}],"urls":[],"media":[{"id":1185701580856643584,"id_str":"1185701580856643584","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR1TkCUUAAtyDW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR1TkCUUAAtyDW.jpg","url":"https:\/\/t.co\/hXWV3G5B32","display_url":"pic.twitter.com\/hXWV3G5B32","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187030166368702464\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185701580856643584,"id_str":"1185701580856643584","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR1TkCUUAAtyDW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR1TkCUUAAtyDW.jpg","url":"https:\/\/t.co\/hXWV3G5B32","display_url":"pic.twitter.com\/hXWV3G5B32","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187030166368702464\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:32:00 +0000 2019","id":1187376196306124801,"id_str":"1187376196306124801","full_text":"In + less than 30 minutes....start your day with an Inspire! Online Microaggression + in Pavillon 9. \n#aect19inspired #aect19 #aectgsa https:\/\/t.co\/ErJVYvcthR","truncated":false,"display_text_range":[0,130],"entities":{"hashtags":[{"text":"aect19inspired","indices":[98,113]},{"text":"aect19","indices":[114,121]},{"text":"aectgsa","indices":[122,130]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187249257838891009,"id_str":"1187249257838891009","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn06OFVUAEFqkd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn06OFVUAEFqkd.jpg","url":"https:\/\/t.co\/ErJVYvcthR","display_url":"pic.twitter.com\/ErJVYvcthR","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1187376196306124801\/photo\/1","type":"photo","sizes":{"medium":{"w":960,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":960,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187249257838891009,"id_str":"1187249257838891009","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn06OFVUAEFqkd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn06OFVUAEFqkd.jpg","url":"https:\/\/t.co\/ErJVYvcthR","display_url":"pic.twitter.com\/ErJVYvcthR","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1187376196306124801\/photo\/1","type":"photo","sizes":{"medium":{"w":960,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":960,"h":640,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14994538,"id_str":"14994538","name":"Kzenovka","screen_name":"kzenovka","location":"Metaverse","description":"educator, + coolhunter, and sometimes puppetmaster. Metagame Book Club, Games & Sim Network + and Inevitable Instructors","url":"https:\/\/t.co\/SN1thrlVqD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SN1thrlVqD","expanded_url":"https:\/\/sites.google.com\/site\/metagamebookclub\/","display_url":"sites.google.com\/site\/metagameb\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1338,"friends_count":3152,"listed_count":228,"created_at":"Tue + Jun 03 16:35:29 +0000 2008","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15007,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14994538\/1436550079","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 04:27:56 +0000 2019","id":1187224177213726721,"id_str":"1187224177213726721","full_text":"RT + @veletsianos: This place is brimming with people who are inspiring #aect19","truncated":false,"display_text_range":[0,78],"entities":{"hashtags":[{"text":"aect19","indices":[71,78]}],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 22:01:49 +0000 2019","id":1186764622520446978,"id_str":"1186764622520446978","full_text":"This + place is brimming with people who are inspiring #aect19","truncated":false,"display_text_range":[0,61],"entities":{"hashtags":[{"text":"aect19","indices":[54,61]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":16,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 13:00:01 +0000 2019","id":1187353047149600768,"id_str":"1187353047149600768","full_text":"I''m + ready to chat about @AECTTechTrends today Oct 24, 10:00 to 10:50am, Convention + Center, Paradise North #aect19 #aect19inspired","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[{"text":"aect19","indices":[106,113]},{"text":"aect19inspired","indices":[114,129]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[24,39]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:12:43 +0000 2019","id":1187371342644924421,"id_str":"1187371342644924421","full_text":"@tintinluo + Someone gave me an idea for my potential dissertation topic. This #aect19 + has been inspiring me. #aect19inspired","truncated":false,"display_text_range":[11,124],"entities":{"hashtags":[{"text":"aect19","indices":[78,85]},{"text":"aect19inspired","indices":[109,124]}],"symbols":[],"user_mentions":[{"screen_name":"tintinluo","name":"Tian + Luo","id":29474883,"id_str":"29474883","indices":[0,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1187088031439675392,"in_reply_to_status_id_str":"1187088031439675392","in_reply_to_user_id":29474883,"in_reply_to_user_id_str":"29474883","in_reply_to_screen_name":"tintinluo","user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 04:29:01 +0000 2019","id":1187224452292939776,"id_str":"1187224452292939776","full_text":"RT + @ZhenXu0905: Presented two studies with @edneuro @smreeves1 and @tshepppky\nabout + visuospatial learning at #aect19 https:\/\/t.co\/eSswSqzcT9","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ZhenXu0905","name":"Zhen + Xu (\u5f90\u771f)","id":726269193092489216,"id_str":"726269193092489216","indices":[3,14]},{"screen_name":"edneuro","name":"Pasha + Antonenko","id":4070273452,"id_str":"4070273452","indices":[43,51]},{"screen_name":"smreeves1","name":"Shalaunda + Reeves","id":2845958981,"id_str":"2845958981","indices":[52,62]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 01:09:04 +0000 2019","id":1186811743571337218,"id_str":"1186811743571337218","full_text":"Presented + two studies with @edneuro @smreeves1 and @tshepppky\nabout visuospatial learning + at #aect19 https:\/\/t.co\/eSswSqzcT9","truncated":false,"display_text_range":[0,100],"entities":{"hashtags":[{"text":"aect19","indices":[93,100]}],"symbols":[],"user_mentions":[{"screen_name":"edneuro","name":"Pasha + Antonenko","id":4070273452,"id_str":"4070273452","indices":[27,35]},{"screen_name":"smreeves1","name":"Shalaunda + Reeves","id":2845958981,"id_str":"2845958981","indices":[36,46]}],"urls":[],"media":[{"id":1186811721979052032,"id_str":"1186811721979052032","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhm-R_UwAAALat.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhm-R_UwAAALat.jpg","url":"https:\/\/t.co\/eSswSqzcT9","display_url":"pic.twitter.com\/eSswSqzcT9","expanded_url":"https:\/\/twitter.com\/ZhenXu0905\/status\/1186811743571337218\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186811721979052032,"id_str":"1186811721979052032","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhm-R_UwAAALat.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhm-R_UwAAALat.jpg","url":"https:\/\/t.co\/eSswSqzcT9","display_url":"pic.twitter.com\/eSswSqzcT9","expanded_url":"https:\/\/twitter.com\/ZhenXu0905\/status\/1186811743571337218\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1186811733521780736,"id_str":"1186811733521780736","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhm-8_U0AAi972.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhm-8_U0AAi972.jpg","url":"https:\/\/t.co\/eSswSqzcT9","display_url":"pic.twitter.com\/eSswSqzcT9","expanded_url":"https:\/\/twitter.com\/ZhenXu0905\/status\/1186811743571337218\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":726269193092489216,"id_str":"726269193092489216","name":"Zhen + Xu (\u5f90\u771f)","screen_name":"ZhenXu0905","location":"Gainesville, FL","description":"Ph.D. + in Ed Tech @UF | STEM for ALL | visuospatial scaffolding | maker | gourmet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":97,"friends_count":146,"listed_count":2,"created_at":"Sat + Apr 30 04:37:23 +0000 2016","favourites_count":464,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":104,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513678812449591298\/8NTJQM6f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513678812449591298\/8NTJQM6f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/726269193092489216\/1540525669","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 08:38:58 +0000 2019","id":1187287355700498433,"id_str":"1187287355700498433","full_text":"RT + @arasbozkurt: Happy to announce that me and Akbulut, researchers from Anadolu + University, received Reviewer Excellence Award by ETR&D pr\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"arasbozkurt","name":"Aras + Bozkurt","id":83447547,"id_str":"83447547","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1011445838873153536,"id_str":"1011445838873153536","name":"AsianJDE","screen_name":"AsianJde","location":"","description":"AsianJDE + disseminates scholarly works to researchers and practitioners in the growing + field of distance education.\nEds: @arasbozkurt @rc4u2nv","url":"https:\/\/t.co\/brw6oqkOrL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/brw6oqkOrL","expanded_url":"http:\/\/www.asianjde.com\/ojs\/index.php\/AsianJDE","display_url":"asianjde.com\/ojs\/index.php\/\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1140,"friends_count":1788,"listed_count":7,"created_at":"Tue + Jun 26 03:07:34 +0000 2018","favourites_count":1203,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":819,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1258095006675423235\/tyYOmcgO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1258095006675423235\/tyYOmcgO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1011445838873153536\/1564914654","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 20:21:09 +0000 2019","id":1187101677142319105,"id_str":"1187101677142319105","full_text":"Happy + to announce that me and Akbulut, researchers from Anadolu University, received + Reviewer Excellence Award by ETR&D presented at #AECT19 #ETRD @yvzkblt + @AECT https:\/\/t.co\/QJXzm3Nc74","truncated":false,"display_text_range":[0,165],"entities":{"hashtags":[{"text":"AECT19","indices":[137,144]},{"text":"ETRD","indices":[145,150]}],"symbols":[],"user_mentions":[{"screen_name":"yvzkblt","name":"Yavuz + Akbulut","id":257891862,"id_str":"257891862","indices":[151,159]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[160,165]}],"urls":[],"media":[{"id":1187101649879425025,"id_str":"1187101649879425025","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","url":"https:\/\/t.co\/QJXzm3Nc74","display_url":"pic.twitter.com\/QJXzm3Nc74","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187101677142319105\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187101649879425025,"id_str":"1187101649879425025","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","url":"https:\/\/t.co\/QJXzm3Nc74","display_url":"pic.twitter.com\/QJXzm3Nc74","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187101677142319105\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":67,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 04:58:36 +0000 2019","id":1187231897761415168,"id_str":"1187231897761415168","full_text":"Who + inspires us? Fantastic alumni, students, and faculty of the BSU EdD program! + It\u2019s so great to connect or reconnect while at #aect19 (and this is only + part of the group who were attending!) @AECT https:\/\/t.co\/RR4RwMUG5j","truncated":false,"display_text_range":[0,198],"entities":{"hashtags":[{"text":"aect19","indices":[128,135]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[193,198]}],"urls":[],"media":[{"id":1187231890312331264,"id_str":"1187231890312331264","indices":[199,222],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnlHTAVAAAbg5S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnlHTAVAAAbg5S.jpg","url":"https:\/\/t.co\/RR4RwMUG5j","display_url":"pic.twitter.com\/RR4RwMUG5j","expanded_url":"https:\/\/twitter.com\/edtechdoc\/status\/1187231897761415168\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187231890312331264,"id_str":"1187231890312331264","indices":[199,222],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnlHTAVAAAbg5S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnlHTAVAAAbg5S.jpg","url":"https:\/\/t.co\/RR4RwMUG5j","display_url":"pic.twitter.com\/RR4RwMUG5j","expanded_url":"https:\/\/twitter.com\/edtechdoc\/status\/1187231897761415168\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1101331518692184065,"id_str":"1101331518692184065","name":"BSU + EdTech AGP","screen_name":"EdTechAGP","location":"Boise, ID","description":"Advanced + Grad Programs. 100% online Ed Specialist & Doctoral programs in educational + technology at Boise State University. EdD founded 2012. EdS founded 2016.","url":"https:\/\/t.co\/27jpLvNAsW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/27jpLvNAsW","expanded_url":"https:\/\/sites.google.com\/boisestate.edu\/edtech-advanced-grad-programs\/home","display_url":"sites.google.com\/boisestate.edu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":147,"friends_count":89,"listed_count":4,"created_at":"Fri + Mar 01 04:01:10 +0000 2019","favourites_count":201,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":142,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1101332437634826241\/bPwzWhxZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1101332437634826241\/bPwzWhxZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1101331518692184065\/1551413241","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 04:36:50 +0000 2019","id":1187226419568365571,"id_str":"1187226419568365571","full_text":"My + favorite remember the roller rink!! #aect19inspired @PinballHallFame https:\/\/t.co\/YJQagyNQP3","truncated":false,"display_text_range":[0,72],"entities":{"hashtags":[{"text":"aect19inspired","indices":[40,55]}],"symbols":[],"user_mentions":[{"screen_name":"PinballHallFame","name":"PinballHallOfFame","id":123785835,"id_str":"123785835","indices":[56,72]}],"urls":[],"media":[{"id":1187226410839990272,"id_str":"1187226410839990272","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/EHngIWYUYAAW-XB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHngIWYUYAAW-XB.jpg","url":"https:\/\/t.co\/YJQagyNQP3","display_url":"pic.twitter.com\/YJQagyNQP3","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187226419568365571\/photo\/1","type":"photo","sizes":{"large":{"w":920,"h":1228,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":509,"h":680,"resize":"fit"},"medium":{"w":899,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187226410839990272,"id_str":"1187226410839990272","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/EHngIWYUYAAW-XB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHngIWYUYAAW-XB.jpg","url":"https:\/\/t.co\/YJQagyNQP3","display_url":"pic.twitter.com\/YJQagyNQP3","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187226419568365571\/photo\/1","type":"photo","sizes":{"large":{"w":920,"h":1228,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":509,"h":680,"resize":"fit"},"medium":{"w":899,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1187226410793832449,"id_str":"1187226410793832449","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/EHngIWNUEAEinFK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHngIWNUEAEinFK.jpg","url":"https:\/\/t.co\/YJQagyNQP3","display_url":"pic.twitter.com\/YJQagyNQP3","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187226419568365571\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1187226410806468608,"id_str":"1187226410806468608","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/EHngIWQU4AAzF65.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHngIWQU4AAzF65.jpg","url":"https:\/\/t.co\/YJQagyNQP3","display_url":"pic.twitter.com\/YJQagyNQP3","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187226419568365571\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1187226410999353344,"id_str":"1187226410999353344","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/EHngIW-UEAA8M68.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHngIW-UEAA8M68.jpg","url":"https:\/\/t.co\/YJQagyNQP3","display_url":"pic.twitter.com\/YJQagyNQP3","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187226419568365571\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9d2124b884006","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9d2124b884006.json","place_type":"poi","name":"Pinball + Hall of Fame","full_name":"Pinball Hall of Fame","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1305870060158,36.10132292853597],[-115.1305870060158,36.10132292853597],[-115.1305870060158,36.10132292853597],[-115.1305870060158,36.10132292853597]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 09:42:28 +0000 2019","id":1187303333922344961,"id_str":"1187303333922344961","full_text":"@caranorth11 + are you at #aect19? We need a selfie!","truncated":false,"display_text_range":[0,50],"entities":{"hashtags":[{"text":"aect19","indices":[24,31]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[0,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":715304516791451648,"in_reply_to_user_id_str":"715304516791451648","in_reply_to_screen_name":"caranorth11","user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:49:19 +0000 2019","id":1187380556004298752,"id_str":"1187380556004298752","full_text":"RT + @robmoore3: Learn from Dr. Baaki and @LL_Stapleton about how @FlipGrid was + used in an undergrad math course - Oct 24, 9a, Pavilion 10. #\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 12:30:00 +0000 2019","id":1187345495989075970,"id_str":"1187345495989075970","full_text":"Learn + from Dr. Baaki and @LL_Stapleton about how @FlipGrid was used in an undergrad + math course - Oct 24, 9a, Pavilion 10. #aect19inspired #aect19 https:\/\/t.co\/H4jQlNtuCo + https:\/\/t.co\/uwePJfXaVi","truncated":false,"display_text_range":[0,170],"entities":{"hashtags":[{"text":"aect19inspired","indices":[123,138]},{"text":"aect19","indices":[139,146]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/H4jQlNtuCo","expanded_url":"http:\/\/bit.ly\/2BfdO2y","display_url":"bit.ly\/2BfdO2y","indices":[147,170]}],"media":[{"id":1184456617426915329,"id_str":"1184456617426915329","indices":[171,194],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAJBJ2XkAE1YiF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAJBJ2XkAE1YiF.png","url":"https:\/\/t.co\/uwePJfXaVi","display_url":"pic.twitter.com\/uwePJfXaVi","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187345495989075970\/photo\/1","type":"photo","sizes":{"large":{"w":726,"h":520,"resize":"fit"},"medium":{"w":726,"h":520,"resize":"fit"},"small":{"w":680,"h":487,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1184456617426915329,"id_str":"1184456617426915329","indices":[171,194],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAJBJ2XkAE1YiF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAJBJ2XkAE1YiF.png","url":"https:\/\/t.co\/uwePJfXaVi","display_url":"pic.twitter.com\/uwePJfXaVi","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187345495989075970\/photo\/1","type":"photo","sizes":{"large":{"w":726,"h":520,"resize":"fit"},"medium":{"w":726,"h":520,"resize":"fit"},"small":{"w":680,"h":487,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:51:09 +0000 2019","id":1187381015800680450,"id_str":"1187381015800680450","full_text":"RT + @hodgesc: Interested in Teacher Readiness to Implement Technology Innovations? + Visit my roundtable with @DrTerriC to learn about our rec\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[107,116]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 14:00:01 +0000 2019","id":1187368147168444417,"id_str":"1187368147168444417","full_text":"Interested + in Teacher Readiness to Implement Technology Innovations? Visit my roundtable + with @DrTerriC to learn about our recent research. Oct 24, 11:00 to 11:50am, + Convention Center, Paradise North #aect19 #aect19inspired","truncated":false,"display_text_range":[0,223],"entities":{"hashtags":[{"text":"aect19","indices":[200,207]},{"text":"aect19inspired","indices":[208,223]}],"symbols":[],"user_mentions":[{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[94,103]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 11:55:57 +0000 2019","id":1187336927445282816,"id_str":"1187336927445282816","full_text":"@FredWBaker + You can find me at #aect19 today at 8am and tomorrow at 9am only!","truncated":false,"display_text_range":[12,77],"entities":{"hashtags":[{"text":"aect19","indices":[31,38]}],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[0,11]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187303333922344961,"in_reply_to_status_id_str":"1187303333922344961","in_reply_to_user_id":28471923,"in_reply_to_user_id_str":"28471923","in_reply_to_screen_name":"FredWBaker","user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 13:57:55 +0000 2019","id":1187367619042725888,"id_str":"1187367619042725888","full_text":"@AECT + Being #aect19inspired ? Publish your work on #games #gamification #game-based + #learning #assessment in our book series \u201cAdvances in Game-based Learning\u201d. + Send me your ideas or proposals #aect19\n\nhttps:\/\/t.co\/48RwvebdQH https:\/\/t.co\/CEaXM40OwJ","truncated":false,"display_text_range":[0,224],"entities":{"hashtags":[{"text":"aect19inspired","indices":[12,27]},{"text":"games","indices":[51,57]},{"text":"gamification","indices":[58,71]},{"text":"game","indices":[72,77]},{"text":"learning","indices":[84,93]},{"text":"assessment","indices":[94,105]},{"text":"aect19","indices":[192,199]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]}],"urls":[{"url":"https:\/\/t.co\/48RwvebdQH","expanded_url":"https:\/\/springer.com\/series\/13094","display_url":"springer.com\/series\/13094","indices":[201,224]}],"media":[{"id":1187366903074971651,"id_str":"1187366903074971651","indices":[225,248],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpf6EvW4AMYiMP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpf6EvW4AMYiMP.jpg","url":"https:\/\/t.co\/CEaXM40OwJ","display_url":"pic.twitter.com\/CEaXM40OwJ","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187367619042725888\/photo\/1","type":"photo","sizes":{"large":{"w":153,"h":229,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":153,"h":229,"resize":"fit"},"small":{"w":153,"h":229,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187366903074971651,"id_str":"1187366903074971651","indices":[225,248],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpf6EvW4AMYiMP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpf6EvW4AMYiMP.jpg","url":"https:\/\/t.co\/CEaXM40OwJ","display_url":"pic.twitter.com\/CEaXM40OwJ","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187367619042725888\/photo\/1","type":"photo","sizes":{"large":{"w":153,"h":229,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":153,"h":229,"resize":"fit"},"small":{"w":153,"h":229,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":45137054,"id_str":"45137054","name":"Dirk + Ifenthaler","screen_name":"ifenthaler","location":"","description":"#learninganalytics","url":"https:\/\/t.co\/nGyfFQyRvo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nGyfFQyRvo","expanded_url":"http:\/\/www.ifenthaler.info","display_url":"ifenthaler.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":895,"friends_count":246,"listed_count":35,"created_at":"Sat + Jun 06 14:19:07 +0000 2009","favourites_count":615,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":878,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 04:30:48 +0000 2019","id":1187224899837759488,"id_str":"1187224899837759488","full_text":"RT + @nicolapallitt: Our #aect19inspired #aect19 slides for presentations about + our IRCEES processes & collaborative practices are at https:\/\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19inspired","indices":[23,38]},{"text":"aect19","indices":[39,46]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910574724748644353,"id_str":"910574724748644353","name":"Amy + Lomellini","screen_name":"AmyLomellini_ID","location":"New York, USA","description":"Associate + Director of Blended & Online Learning and doctoral candidate with a passion + for accessible and inclusive online teaching and learning. #EdTech #A11y","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":644,"friends_count":1061,"listed_count":9,"created_at":"Wed + Sep 20 18:41:46 +0000 2017","favourites_count":7378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1141,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910574724748644353\/1551624059","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 03:40:06 +0000 2019","id":1187212142543421440,"id_str":"1187212142543421440","full_text":"Our + #aect19inspired #aect19 slides for presentations about our IRCEES processes + & collaborative practices are at https:\/\/t.co\/FztUPU6yZC & https:\/\/t.co\/rYzrohgoyb + Had a good time presenting with @christieliuidtr Hannah Grossman & @AmyLomellini_ID + @emergeAfrica @aectclt @AECT","truncated":false,"display_text_range":[0,288],"entities":{"hashtags":[{"text":"aect19inspired","indices":[4,19]},{"text":"aect19","indices":[20,27]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[242,258]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[259,272]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[274,282]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[283,288]}],"urls":[{"url":"https:\/\/t.co\/FztUPU6yZC","expanded_url":"http:\/\/bit.ly\/IRCEES1","display_url":"bit.ly\/IRCEES1","indices":[117,140]},{"url":"https:\/\/t.co\/rYzrohgoyb","expanded_url":"http:\/\/bit.ly\/IRCEES2","display_url":"bit.ly\/IRCEES2","indices":[147,170]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 07:22:21 +0000 2019","id":1187268071016132608,"id_str":"1187268071016132608","full_text":"I + enjoyed the #aect19inspired #AECTech2019 #aect19 awards ceremony tonight + even though it lasted past 10 pm and even though I hadn\u2019t planned to + buy these and more silent and live action items. I have only been an international + division member for 2 days but I love it so far! https:\/\/t.co\/LtP8eZNH2d + https:\/\/t.co\/nfroWkGAWk","truncated":false,"display_text_range":[0,300],"entities":{"hashtags":[{"text":"aect19inspired","indices":[14,29]},{"text":"AECTech2019","indices":[31,43]},{"text":"aect19","indices":[44,51]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/LtP8eZNH2d","expanded_url":"https:\/\/twitter.com\/edtechIITB\/status\/1179858599444508672","display_url":"twitter.com\/edtechIITB\/sta\u2026","indices":[277,300]}],"media":[{"id":1187268066024931328,"id_str":"1187268066024931328","indices":[301,324],"media_url":"http:\/\/pbs.twimg.com\/media\/EHoGBACUwAAT32h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHoGBACUwAAT32h.jpg","url":"https:\/\/t.co\/nfroWkGAWk","display_url":"pic.twitter.com\/nfroWkGAWk","expanded_url":"https:\/\/twitter.com\/DrSandraOK\/status\/1187268071016132608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187268066024931328,"id_str":"1187268066024931328","indices":[301,324],"media_url":"http:\/\/pbs.twimg.com\/media\/EHoGBACUwAAT32h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHoGBACUwAAT32h.jpg","url":"https:\/\/t.co\/nfroWkGAWk","display_url":"pic.twitter.com\/nfroWkGAWk","expanded_url":"https:\/\/twitter.com\/DrSandraOK\/status\/1187268071016132608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22522505,"id_str":"22522505","name":"Dr. + Sandra Owens, LCSW","screen_name":"DrSandraOK","location":"The Las Vegas Strip, + Nevada","description":"A therapist, advocate, professor, researcher & administrator + of $5.3M in grants & contracts to improve the wellbeing of children, adults, + seniors & caregivers.","url":"https:\/\/t.co\/Qlmx6JTo9k","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Qlmx6JTo9k","expanded_url":"https:\/\/www.linkedin.com\/in\/drsandraowens-lcsw\/","display_url":"linkedin.com\/in\/drsandraowe\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":639,"friends_count":2442,"listed_count":1,"created_at":"Mon + Mar 02 14:19:05 +0000 2009","favourites_count":3511,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":497,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1317820042617122817\/ohwoERcq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1317820042617122817\/ohwoERcq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22522505\/1506579363","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1179858599444508672,"quoted_status_id_str":"1179858599444508672","quoted_status_permalink":{"url":"https:\/\/t.co\/LtP8eZNH2d","expanded":"https:\/\/twitter.com\/edtechIITB\/status\/1179858599444508672","display":"twitter.com\/edtechIITB\/sta\u2026"},"quoted_status":{"created_at":"Thu + Oct 03 20:39:45 +0000 2019","id":1179858599444508672,"id_str":"1179858599444508672","full_text":"We + are pleased to inform you that Prof. Sahana Murthy, Prof. Sridhar Iyer, and + Dr. Aditi Kothiyal are selected for the AECT international awards. The awards + will be presented to them in Las Vegas, Nevada on October 21-25.\n\nCongratulations + to All ! https:\/\/t.co\/l3JIwI2c9C","truncated":false,"display_text_range":[0,247],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1179858594918854656,"id_str":"1179858594918854656","indices":[248,271],"media_url":"http:\/\/pbs.twimg.com\/media\/EF-zJBNUcAAtIWU.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF-zJBNUcAAtIWU.png","url":"https:\/\/t.co\/l3JIwI2c9C","display_url":"pic.twitter.com\/l3JIwI2c9C","expanded_url":"https:\/\/twitter.com\/edtechIITB\/status\/1179858599444508672\/photo\/1","type":"photo","sizes":{"thumb":{"w":129,"h":129,"resize":"crop"},"large":{"w":522,"h":129,"resize":"fit"},"small":{"w":522,"h":129,"resize":"fit"},"medium":{"w":522,"h":129,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1179858594918854656,"id_str":"1179858594918854656","indices":[248,271],"media_url":"http:\/\/pbs.twimg.com\/media\/EF-zJBNUcAAtIWU.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF-zJBNUcAAtIWU.png","url":"https:\/\/t.co\/l3JIwI2c9C","display_url":"pic.twitter.com\/l3JIwI2c9C","expanded_url":"https:\/\/twitter.com\/edtechIITB\/status\/1179858599444508672\/photo\/1","type":"photo","sizes":{"thumb":{"w":129,"h":129,"resize":"crop"},"large":{"w":522,"h":129,"resize":"fit"},"small":{"w":522,"h":129,"resize":"fit"},"medium":{"w":522,"h":129,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4515382814,"id_str":"4515382814","name":"Educational + Technology, IIT Bombay","screen_name":"edtechIITB","location":"Mumbai, Maharashtra","description":"This + is a Twitter handle for the Interdisciplinary programme in Educational Technology + at IIT Bombay, India.","url":"https:\/\/t.co\/VH57hJoxrb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VH57hJoxrb","expanded_url":"http:\/\/www.et.iitb.ac.in","display_url":"et.iitb.ac.in","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":425,"friends_count":8,"listed_count":6,"created_at":"Thu + Dec 10 06:53:52 +0000 2015","favourites_count":10,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":296,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/834731190183616512\/j98_XII2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/834731190183616512\/j98_XII2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4515382814\/1487850387","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:50:04 +0000 2019","id":1187380744764739585,"id_str":"1187380744764739585","full_text":"#AECT19: + Forgetting \u201cBook\u201d and Designing for Open: An OER Design Case (308) + in Ballroom B. 9:00 am - 9:50 am presented by #FSU #FSUCOE #ISLT Dr. Vanessa + Dennen & Lauren Bagdy","truncated":false,"display_text_range":[0,179],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"FSU","indices":[123,127]},{"text":"FSUCOE","indices":[128,135]},{"text":"ISLT","indices":[136,141]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 05:16:08 +0000 2019","id":1187236307791011840,"id_str":"1187236307791011840","full_text":"Yes, + we did! We had a great conversation about writing: Inspiration, spaces, processes, + challenges, and approaches to writing. Very honest, open discussions at our + table. Thank you @veletsianos for sharing your experiences and insights! #aect19inspired + #AECT19 https:\/\/t.co\/dTR6iMupkw","truncated":false,"display_text_range":[0,260],"entities":{"hashtags":[{"text":"aect19inspired","indices":[237,252]},{"text":"AECT19","indices":[253,260]}],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[181,193]}],"urls":[{"url":"https:\/\/t.co\/dTR6iMupkw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187057576732745728","display_url":"twitter.com\/nicolapallitt\/\u2026","indices":[261,284]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187057576732745728,"quoted_status_id_str":"1187057576732745728","quoted_status_permalink":{"url":"https:\/\/t.co\/dTR6iMupkw","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1187057576732745728","display":"twitter.com\/nicolapallitt\/\u2026"},"quoted_status":{"created_at":"Wed + Oct 23 17:25:55 +0000 2019","id":1187057576732745728,"id_str":"1187057576732745728","full_text":"Breakfast + with the champions at @AECT Was great joining @veletsianos table, great discussions + about writing processes, flexible learning, networked scholarship & issues + related to women in ID #aect19inspired Was inspired by George experiences + of writing - useful for #AcWriMo https:\/\/t.co\/oiB39qgDBS","truncated":false,"display_text_range":[0,279],"entities":{"hashtags":[{"text":"aect19inspired","indices":[196,211]},{"text":"AcWriMo","indices":[271,279]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[32,37]},{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[56,68]}],"urls":[],"media":[{"id":1187057556893523969,"id_str":"1187057556893523969","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlGjwaU4AE-Y1q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlGjwaU4AE-Y1q.jpg","url":"https:\/\/t.co\/oiB39qgDBS","display_url":"pic.twitter.com\/oiB39qgDBS","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187057576732745728\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187057556893523969,"id_str":"1187057556893523969","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlGjwaU4AE-Y1q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlGjwaU4AE-Y1q.jpg","url":"https:\/\/t.co\/oiB39qgDBS","display_url":"pic.twitter.com\/oiB39qgDBS","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187057576732745728\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187057567584813058,"id_str":"1187057567584813058","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlGkYPVAAIuKAT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlGkYPVAAIuKAT.jpg","url":"https:\/\/t.co\/oiB39qgDBS","display_url":"pic.twitter.com\/oiB39qgDBS","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187057576732745728\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 10:13:37 +0000 2019","id":1187311173923942402,"id_str":"1187311173923942402","full_text":"RT + @arasbozkurt: Happy to announce that me and Akbulut, researchers from Anadolu + University, received Reviewer Excellence Award by ETR&D pr\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"arasbozkurt","name":"Aras + Bozkurt","id":83447547,"id_str":"83447547","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59117495,"id_str":"59117495","name":"OER + Hub","screen_name":"OER_Hub","location":"Milton Keynes, UK","description":"World + leaders in open education research and advocacy since 2012 - based at The + Open University (UK). Team: @BeckPitt @philosopher1978 @mweller @pacoiniesto","url":"https:\/\/t.co\/kyEfBEhSLW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kyEfBEhSLW","expanded_url":"http:\/\/oerhub.net","display_url":"oerhub.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8109,"friends_count":1664,"listed_count":431,"created_at":"Wed + Jul 22 12:54:45 +0000 2009","favourites_count":2154,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8935,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FCFCFC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/719434679242399744\/DrlKEIA2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/719434679242399744\/DrlKEIA2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59117495\/1550129838","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E8CCFF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 20:21:09 +0000 2019","id":1187101677142319105,"id_str":"1187101677142319105","full_text":"Happy + to announce that me and Akbulut, researchers from Anadolu University, received + Reviewer Excellence Award by ETR&D presented at #AECT19 #ETRD @yvzkblt + @AECT https:\/\/t.co\/QJXzm3Nc74","truncated":false,"display_text_range":[0,165],"entities":{"hashtags":[{"text":"AECT19","indices":[137,144]},{"text":"ETRD","indices":[145,150]}],"symbols":[],"user_mentions":[{"screen_name":"yvzkblt","name":"Yavuz + Akbulut","id":257891862,"id_str":"257891862","indices":[151,159]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[160,165]}],"urls":[],"media":[{"id":1187101649879425025,"id_str":"1187101649879425025","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","url":"https:\/\/t.co\/QJXzm3Nc74","display_url":"pic.twitter.com\/QJXzm3Nc74","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187101677142319105\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187101649879425025,"id_str":"1187101649879425025","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","url":"https:\/\/t.co\/QJXzm3Nc74","display_url":"pic.twitter.com\/QJXzm3Nc74","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187101677142319105\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":67,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:28:39 +0000 2019","id":1187375352831561728,"id_str":"1187375352831561728","full_text":"Interested + in #accessibility and #UDL? Consider coming to our session today at 2pm in + Pavilion 6: \u201cEfficacy of an online executive function intervention for + individuals with epilepsy\u201d #epilepsy #aect19 https:\/\/t.co\/9uziMdkPpB","truncated":false,"display_text_range":[0,201],"entities":{"hashtags":[{"text":"accessibility","indices":[14,28]},{"text":"UDL","indices":[33,37]},{"text":"epilepsy","indices":[184,193]},{"text":"aect19","indices":[194,201]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187375345416015872,"id_str":"1187375345416015872","indices":[202,225],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpnle6UEAAQnR7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpnle6UEAAQnR7.jpg","url":"https:\/\/t.co\/9uziMdkPpB","display_url":"pic.twitter.com\/9uziMdkPpB","expanded_url":"https:\/\/twitter.com\/matt_m_schmidt\/status\/1187375352831561728\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1366,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187375345416015872,"id_str":"1187375345416015872","indices":[202,225],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpnle6UEAAQnR7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpnle6UEAAQnR7.jpg","url":"https:\/\/t.co\/9uziMdkPpB","display_url":"pic.twitter.com\/9uziMdkPpB","expanded_url":"https:\/\/twitter.com\/matt_m_schmidt\/status\/1187375352831561728\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1366,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":9806452,"id_str":"9806452","name":"Matthew + Schmidt","screen_name":"matt_m_schmidt","location":"Gainesville, FL","description":"Editor-in-Chief + of Learner & User Experience Research. Read & share here: https:\/\/t.co\/nMBaOeqjpy","url":"https:\/\/t.co\/MQBbLAksSX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MQBbLAksSX","expanded_url":"http:\/\/matthewschmidt.info","display_url":"matthewschmidt.info","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/nMBaOeqjpy","expanded_url":"https:\/\/edtechbooks.org\/ux","display_url":"edtechbooks.org\/ux","indices":[74,97]}]}},"protected":false,"followers_count":668,"friends_count":404,"listed_count":17,"created_at":"Tue + Oct 30 21:35:53 +0000 2007","favourites_count":698,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":564,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9806452\/1603124176","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:25:27 +0000 2019","id":1187374549681221639,"id_str":"1187374549681221639","full_text":"RT + @ifenthaler: @AECT Being #aect19inspired ? Publish your work on #games #gamification + #game-based #learning #assessment in our book series \u201cAdvances in Game-based + Learning\u201d. Send me your ideas or proposals #aect19\n\nhttps:\/\/t.co\/3y6HUWgaVV + https:\/\/t.co\/LKLpY1XYIT","truncated":false,"display_text_range":[0,264],"entities":{"hashtags":[{"text":"aect19inspired","indices":[28,43]},{"text":"games","indices":[67,73]},{"text":"gamification","indices":[74,87]},{"text":"game","indices":[88,93]},{"text":"learning","indices":[100,109]},{"text":"assessment","indices":[110,121]},{"text":"aect19","indices":[208,215]}],"symbols":[],"user_mentions":[{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[3,14]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[16,21]}],"urls":[{"url":"https:\/\/t.co\/3y6HUWgaVV","expanded_url":"https:\/\/springer.com\/series\/13094","display_url":"springer.com\/series\/13094","indices":[217,240]}],"media":[{"id":1187366903074971651,"id_str":"1187366903074971651","indices":[241,264],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpf6EvW4AMYiMP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpf6EvW4AMYiMP.jpg","url":"https:\/\/t.co\/LKLpY1XYIT","display_url":"pic.twitter.com\/LKLpY1XYIT","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187367619042725888\/photo\/1","type":"photo","sizes":{"large":{"w":153,"h":229,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":153,"h":229,"resize":"fit"},"small":{"w":153,"h":229,"resize":"fit"}},"source_status_id":1187367619042725888,"source_status_id_str":"1187367619042725888","source_user_id":45137054,"source_user_id_str":"45137054"}]},"extended_entities":{"media":[{"id":1187366903074971651,"id_str":"1187366903074971651","indices":[241,264],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpf6EvW4AMYiMP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpf6EvW4AMYiMP.jpg","url":"https:\/\/t.co\/LKLpY1XYIT","display_url":"pic.twitter.com\/LKLpY1XYIT","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187367619042725888\/photo\/1","type":"photo","sizes":{"large":{"w":153,"h":229,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":153,"h":229,"resize":"fit"},"small":{"w":153,"h":229,"resize":"fit"}},"source_status_id":1187367619042725888,"source_status_id_str":"1187367619042725888","source_user_id":45137054,"source_user_id_str":"45137054","ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":292998487,"id_str":"292998487","name":"Sard + Imperium","screen_name":"SardImperium","location":"Canada","description":"#News + in several languages about #gamification #seriousgaming with \ud83e\udd16\ud83d\udc31\ud83d\ude00 + - \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f\ud83c\udfaf","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2427,"friends_count":282,"listed_count":184,"created_at":"Wed + May 04 15:54:49 +0000 2011","favourites_count":9680,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":118124,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1360722277030125568\/tBI7CzWF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1360722277030125568\/tBI7CzWF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/292998487\/1613256447","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:49:58 +0000 2019","id":1187380716994285568,"id_str":"1187380716994285568","full_text":"RT + @matt_m_schmidt: We will be presenting our continuing research on designing + and developing #virtualreality #VR interventions for individ\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"virtualreality","indices":[94,109]},{"text":"VR","indices":[110,113]}],"symbols":[],"user_mentions":[{"screen_name":"matt_m_schmidt","name":"Matthew + Schmidt","id":9806452,"id_str":"9806452","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 14:31:01 +0000 2019","id":1187375951623135234,"id_str":"1187375951623135234","full_text":"We + will be presenting our continuing research on designing and developing #virtualreality + #VR interventions for individuals with #autism today at 4 PM in Ballroom A. + #accessibility #udl #aect19 https:\/\/t.co\/oEtbdkYhmC","truncated":false,"display_text_range":[0,193],"entities":{"hashtags":[{"text":"virtualreality","indices":[74,89]},{"text":"VR","indices":[90,93]},{"text":"autism","indices":[129,136]},{"text":"accessibility","indices":[166,180]},{"text":"udl","indices":[181,185]},{"text":"aect19","indices":[186,193]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187375947193798657,"id_str":"1187375947193798657","indices":[194,217],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpoIgtUUAEjuGR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpoIgtUUAEjuGR.jpg","url":"https:\/\/t.co\/oEtbdkYhmC","display_url":"pic.twitter.com\/oEtbdkYhmC","expanded_url":"https:\/\/twitter.com\/matt_m_schmidt\/status\/1187375951623135234\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1120,"resize":"fit"},"medium":{"w":1200,"h":656,"resize":"fit"},"small":{"w":680,"h":372,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187375947193798657,"id_str":"1187375947193798657","indices":[194,217],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpoIgtUUAEjuGR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpoIgtUUAEjuGR.jpg","url":"https:\/\/t.co\/oEtbdkYhmC","display_url":"pic.twitter.com\/oEtbdkYhmC","expanded_url":"https:\/\/twitter.com\/matt_m_schmidt\/status\/1187375951623135234\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1120,"resize":"fit"},"medium":{"w":1200,"h":656,"resize":"fit"},"small":{"w":680,"h":372,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":9806452,"id_str":"9806452","name":"Matthew + Schmidt","screen_name":"matt_m_schmidt","location":"Gainesville, FL","description":"Editor-in-Chief + of Learner & User Experience Research. Read & share here: https:\/\/t.co\/nMBaOeqjpy","url":"https:\/\/t.co\/MQBbLAksSX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MQBbLAksSX","expanded_url":"http:\/\/matthewschmidt.info","display_url":"matthewschmidt.info","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/nMBaOeqjpy","expanded_url":"https:\/\/edtechbooks.org\/ux","display_url":"edtechbooks.org\/ux","indices":[74,97]}]}},"protected":false,"followers_count":668,"friends_count":404,"listed_count":17,"created_at":"Tue + Oct 30 21:35:53 +0000 2007","favourites_count":698,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":564,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9806452\/1603124176","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:11:19 +0000 2019","id":1187370990965116928,"id_str":"1187370990965116928","full_text":"RT + @AECT: Have a great #AECT19 day 4! Today\u2019s highlights include 7 workshops + and 11 Inspire! Sessions, Roundtables at 10am, Emerging Techno\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[23,30]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 12:01:27 +0000 2019","id":1187338312048140289,"id_str":"1187338312048140289","full_text":"Have + a great #AECT19 day 4! Today\u2019s highlights include 7 workshops and 11 + Inspire! Sessions, Roundtables at 10am, Emerging Technology Showcase at 2pm, + Membership Meeting at 5pm, and University Reception at 6:15pm. https:\/\/t.co\/JJj6M6XvE6","truncated":false,"display_text_range":[0,213],"entities":{"hashtags":[{"text":"AECT19","indices":[13,20]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187338305936994304,"id_str":"1187338305936994304","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpF5gGWsAA6GoH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpF5gGWsAA6GoH.jpg","url":"https:\/\/t.co\/JJj6M6XvE6","display_url":"pic.twitter.com\/JJj6M6XvE6","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187338312048140289\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187338305936994304,"id_str":"1187338305936994304","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpF5gGWsAA6GoH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpF5gGWsAA6GoH.jpg","url":"https:\/\/t.co\/JJj6M6XvE6","display_url":"pic.twitter.com\/JJj6M6XvE6","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187338312048140289\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 12:30:00 +0000 2019","id":1187345495989075970,"id_str":"1187345495989075970","full_text":"Learn + from Dr. Baaki and @LL_Stapleton about how @FlipGrid was used in an undergrad + math course - Oct 24, 9a, Pavilion 10. #aect19inspired #aect19 https:\/\/t.co\/H4jQlNtuCo + https:\/\/t.co\/uwePJfXaVi","truncated":false,"display_text_range":[0,170],"entities":{"hashtags":[{"text":"aect19inspired","indices":[123,138]},{"text":"aect19","indices":[139,146]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/H4jQlNtuCo","expanded_url":"http:\/\/bit.ly\/2BfdO2y","display_url":"bit.ly\/2BfdO2y","indices":[147,170]}],"media":[{"id":1184456617426915329,"id_str":"1184456617426915329","indices":[171,194],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAJBJ2XkAE1YiF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAJBJ2XkAE1YiF.png","url":"https:\/\/t.co\/uwePJfXaVi","display_url":"pic.twitter.com\/uwePJfXaVi","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187345495989075970\/photo\/1","type":"photo","sizes":{"large":{"w":726,"h":520,"resize":"fit"},"medium":{"w":726,"h":520,"resize":"fit"},"small":{"w":680,"h":487,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1184456617426915329,"id_str":"1184456617426915329","indices":[171,194],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAJBJ2XkAE1YiF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAJBJ2XkAE1YiF.png","url":"https:\/\/t.co\/uwePJfXaVi","display_url":"pic.twitter.com\/uwePJfXaVi","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187345495989075970\/photo\/1","type":"photo","sizes":{"large":{"w":726,"h":520,"resize":"fit"},"medium":{"w":726,"h":520,"resize":"fit"},"small":{"w":680,"h":487,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 05:28:07 +0000 2019","id":1187239325131403264,"id_str":"1187239325131403264","full_text":"Breakfast + with the champions! Thank you \u2066@veletsianos\u2069 for your inspirational + work! #aect19inspired #aect19 https:\/\/t.co\/Ft5Hw8Y5lU","truncated":false,"display_text_range":[0,107],"entities":{"hashtags":[{"text":"aect19inspired","indices":[84,99]},{"text":"aect19","indices":[100,107]}],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[41,53]}],"urls":[],"media":[{"id":1187239318726696960,"id_str":"1187239318726696960","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnr3sAU4AAW5UF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnr3sAU4AAW5UF.jpg","url":"https:\/\/t.co\/Ft5Hw8Y5lU","display_url":"pic.twitter.com\/Ft5Hw8Y5lU","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187239325131403264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187239318726696960,"id_str":"1187239318726696960","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnr3sAU4AAW5UF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnr3sAU4AAW5UF.jpg","url":"https:\/\/t.co\/Ft5Hw8Y5lU","display_url":"pic.twitter.com\/Ft5Hw8Y5lU","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187239325131403264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 13:54:27 +0000 2019","id":1187366745977348102,"id_str":"1187366745977348102","full_text":"Rise + and shine #AECT19 - Social network Analysis for #AECT with NodeXL https:\/\/t.co\/MIQz1GdWlT\n@aect\n@michaelmgrant\n@drterric\n@caranorth11\n@islt_fsu\n@dksch\n@wilsoninedu\n@drvirtuality\n@eromerohall\n@robmoore3\n\nTop + hashtags:\n#aect19\n#aect19inspired\n#aect2019\n#aect\n#fsu\n#fsucoe\n#islt + https:\/\/t.co\/zTCol3vWgv","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[15,22]},{"text":"AECT","indices":[53,58]},{"text":"aect19","indices":[222,229]},{"text":"aect19inspired","indices":[230,245]},{"text":"aect2019","indices":[246,255]},{"text":"aect","indices":[256,261]},{"text":"fsu","indices":[262,266]},{"text":"fsucoe","indices":[267,274]},{"text":"islt","indices":[275,280]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[95,100]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[101,115]},{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[116,125]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[126,138]},{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[139,148]},{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[149,155]},{"screen_name":"WilsonInEdu","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","id":489118534,"id_str":"489118534","indices":[156,168]},{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[169,182]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[183,195]},{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[196,206]}],"urls":[{"url":"https:\/\/t.co\/MIQz1GdWlT","expanded_url":"http:\/\/bit.ly\/2N9hUPr","display_url":"bit.ly\/2N9hUPr","indices":[71,94]}],"media":[{"id":1187366622094331905,"id_str":"1187366622094331905","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","url":"https:\/\/t.co\/zTCol3vWgv","display_url":"pic.twitter.com\/zTCol3vWgv","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187366745977348102\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1578,"resize":"fit"},"medium":{"w":1200,"h":925,"resize":"fit"},"small":{"w":680,"h":524,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187366622094331905,"id_str":"1187366622094331905","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","url":"https:\/\/t.co\/zTCol3vWgv","display_url":"pic.twitter.com\/zTCol3vWgv","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187366745977348102\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1578,"resize":"fit"},"medium":{"w":1200,"h":925,"resize":"fit"},"small":{"w":680,"h":524,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 11:33:00 +0000 2019","id":1187331149535727621,"id_str":"1187331149535727621","full_text":"Join + us at 2 pm today for Educational Technology, Social Justice and Critical Whiteness + panel at 2 pm in Conference Room 4\n#aect19inspired #AECTech2019 #aect19 #aectgsa + https:\/\/t.co\/RbGqHIy1h0","truncated":false,"display_text_range":[0,168],"entities":{"hashtags":[{"text":"aect19inspired","indices":[123,138]},{"text":"AECTech2019","indices":[139,151]},{"text":"aect19","indices":[152,159]},{"text":"aectgsa","indices":[160,168]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187250558190551040,"id_str":"1187250558190551040","indices":[169,192],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn2F6RVAAAZ-RY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn2F6RVAAAZ-RY.jpg","url":"https:\/\/t.co\/RbGqHIy1h0","display_url":"pic.twitter.com\/RbGqHIy1h0","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1187331149535727621\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":340,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"medium":{"w":1024,"h":512,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187250558190551040,"id_str":"1187250558190551040","indices":[169,192],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn2F6RVAAAZ-RY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn2F6RVAAAZ-RY.jpg","url":"https:\/\/t.co\/RbGqHIy1h0","display_url":"pic.twitter.com\/RbGqHIy1h0","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1187331149535727621\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":340,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"medium":{"w":1024,"h":512,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14994538,"id_str":"14994538","name":"Kzenovka","screen_name":"kzenovka","location":"Metaverse","description":"educator, + coolhunter, and sometimes puppetmaster. Metagame Book Club, Games & Sim Network + and Inevitable Instructors","url":"https:\/\/t.co\/SN1thrlVqD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SN1thrlVqD","expanded_url":"https:\/\/sites.google.com\/site\/metagamebookclub\/","display_url":"sites.google.com\/site\/metagameb\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1338,"friends_count":3152,"listed_count":228,"created_at":"Tue + Jun 03 16:35:29 +0000 2008","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15007,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14994538\/1436550079","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:09:16 +0000 2019","id":1187385573863907328,"id_str":"1187385573863907328","full_text":"RT + @nicolapallitt: Our #aect19inspired #aect19 slides for presentations about + our IRCEES processes & collaborative practices are at https:\/\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19inspired","indices":[23,38]},{"text":"aect19","indices":[39,46]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 03:40:06 +0000 2019","id":1187212142543421440,"id_str":"1187212142543421440","full_text":"Our + #aect19inspired #aect19 slides for presentations about our IRCEES processes + & collaborative practices are at https:\/\/t.co\/FztUPU6yZC & https:\/\/t.co\/rYzrohgoyb + Had a good time presenting with @christieliuidtr Hannah Grossman & @AmyLomellini_ID + @emergeAfrica @aectclt @AECT","truncated":false,"display_text_range":[0,288],"entities":{"hashtags":[{"text":"aect19inspired","indices":[4,19]},{"text":"aect19","indices":[20,27]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[242,258]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[259,272]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[274,282]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[283,288]}],"urls":[{"url":"https:\/\/t.co\/FztUPU6yZC","expanded_url":"http:\/\/bit.ly\/IRCEES1","display_url":"bit.ly\/IRCEES1","indices":[117,140]},{"url":"https:\/\/t.co\/rYzrohgoyb","expanded_url":"http:\/\/bit.ly\/IRCEES2","display_url":"bit.ly\/IRCEES2","indices":[147,170]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 12:25:14 +0000 2019","id":1187344295684198400,"id_str":"1187344295684198400","full_text":"RT + @art_brownlow: Learning a lot about instructional use of AR @AECT. Meanwhile, + we had a visitor at our session. #aect2019 #aect19inspired\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect2019","indices":[114,123]},{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"art_brownlow","name":"Art + Brownlow","id":887813304311087104,"id_str":"887813304311087104","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[63,68]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":781151274,"id_str":"781151274","name":"Alejandra + Escobedo","screen_name":"AleEscobedo_","location":"","description":"You just + have to fight for what you really want; there are not excuses. \ud83d\udc95\ud83d\udcaa\ud83c\udffc\ud83d\ude4f\ud83c\udffb","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":162,"friends_count":361,"listed_count":2,"created_at":"Sat + Aug 25 21:46:32 +0000 2012","favourites_count":7289,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3861,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1491890045233606663\/dcO2Uw99_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1491890045233606663\/dcO2Uw99_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/781151274\/1628558913","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 17:15:47 +0000 2019","id":1186330250994565124,"id_str":"1186330250994565124","full_text":"Learning + a lot about instructional use of AR @AECT. Meanwhile, we had a visitor at + our session. #aect2019 #aect19inspired https:\/\/t.co\/HjfO4IZVEm","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"aect2019","indices":[96,105]},{"text":"aect19inspired","indices":[106,121]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[45,50]}],"urls":[],"media":[{"id":1186330138339753986,"id_str":"1186330138339753986","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","url":"https:\/\/t.co\/HjfO4IZVEm","display_url":"pic.twitter.com\/HjfO4IZVEm","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186330138339753986,"id_str":"1186330138339753986","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","url":"https:\/\/t.co\/HjfO4IZVEm","display_url":"pic.twitter.com\/HjfO4IZVEm","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}},"video_info":{"aspect_ratio":[37,80],"duration_millis":11690,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/320x690\/qzYSXhtp8GVHwAkS.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/pl\/HOQqLq2LCOe8QZdY.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/360x778\/mxoPjfmwzOZWrqSf.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/592x1280\/pBUtbxYAYdW5YWLx.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":887813304311087104,"id_str":"887813304311087104","name":"Art + Brownlow","screen_name":"art_brownlow","location":"Brownsville, TX","description":"UTRGV + Music Prof & Academic Innovation Fellow, UT System Academy of Distinguished + Teachers, ROTA 2016, \uf8ffADE 2015, Braves fan, Husband & Dad","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":291,"friends_count":338,"listed_count":5,"created_at":"Wed + Jul 19 23:16:01 +0000 2017","favourites_count":237,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":132,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887813304311087104\/1500521777","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":42,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 08:25:55 +0000 2019","id":1187284070604201984,"id_str":"1187284070604201984","full_text":"RT + @RoutledgeEd: Check out Routledge\u2019s selection of books on #instructionaldesign, + #onlinelearning, and more at #AECT2019! https:\/\/t.co\/19M\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[61,81]},{"text":"onlinelearning","indices":[83,98]},{"text":"AECT2019","indices":[112,121]}],"symbols":[],"user_mentions":[{"screen_name":"RoutledgeEd","name":"Routledge + Education Books","id":27606068,"id_str":"27606068","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/www.salesforce.com\" rel=\"nofollow\"\u003eSalesforce - Social + Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":67060449,"id_str":"67060449","name":"Routledge + Books","screen_name":"routledgebooks","location":"Oxford, UK","description":"Publisher + of Academic Books, Journals, eBooks, Textbooks, Media, Software, Reference + and Online Learning Resources.","url":"http:\/\/t.co\/pn6ru5XJFQ","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/pn6ru5XJFQ","expanded_url":"http:\/\/routledge.com","display_url":"routledge.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":24253,"friends_count":4609,"listed_count":356,"created_at":"Wed + Aug 19 17:24:54 +0000 2009","favourites_count":70,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8560,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2138BB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/370622152\/rt-logo-sq_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/370622152\/rt-logo-sq_normal.png","profile_image_extensions_alt_text":null,"profile_link_color":"2138BB","profile_sidebar_border_color":"FFCC33","profile_sidebar_fill_color":"FFFF99","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 19:02:48 +0000 2019","id":1187081957944909824,"id_str":"1187081957944909824","full_text":"Check + out Routledge\u2019s selection of books on #instructionaldesign, #onlinelearning, + and more at #AECT2019! https:\/\/t.co\/19MR7RFhRY","truncated":false,"display_text_range":[0,105],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[44,64]},{"text":"onlinelearning","indices":[66,81]},{"text":"AECT2019","indices":[95,104]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187081950298693632,"id_str":"1187081950298693632","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlcvo7U4AAWbAN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlcvo7U4AAWbAN.jpg","url":"https:\/\/t.co\/19MR7RFhRY","display_url":"pic.twitter.com\/19MR7RFhRY","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187081957944909824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187081950298693632,"id_str":"1187081950298693632","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlcvo7U4AAWbAN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlcvo7U4AAWbAN.jpg","url":"https:\/\/t.co\/19MR7RFhRY","display_url":"pic.twitter.com\/19MR7RFhRY","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187081957944909824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187081950298722305,"id_str":"1187081950298722305","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlcvo7VUAE60Wh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlcvo7VUAE60Wh.jpg","url":"https:\/\/t.co\/19MR7RFhRY","display_url":"pic.twitter.com\/19MR7RFhRY","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187081957944909824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27606068,"id_str":"27606068","name":"Routledge + Education Books","screen_name":"RoutledgeEd","location":"Global","description":"Supporting + educators, teachers, scholars and students with informative and practical + books based on leading research and classroom practice.","url":"http:\/\/t.co\/j4LZK9ypti","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/j4LZK9ypti","expanded_url":"http:\/\/www.routledge.com\/education","display_url":"routledge.com\/education","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":13833,"friends_count":3278,"listed_count":230,"created_at":"Mon + Mar 30 08:33:32 +0000 2009","favourites_count":2658,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10107,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"6A9ADA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27606068\/1629726175","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"6A9ADA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:31:01 +0000 2019","id":1187375951623135234,"id_str":"1187375951623135234","full_text":"We + will be presenting our continuing research on designing and developing #virtualreality + #VR interventions for individuals with #autism today at 4 PM in Ballroom A. + #accessibility #udl #aect19 https:\/\/t.co\/oEtbdkYhmC","truncated":false,"display_text_range":[0,193],"entities":{"hashtags":[{"text":"virtualreality","indices":[74,89]},{"text":"VR","indices":[90,93]},{"text":"autism","indices":[129,136]},{"text":"accessibility","indices":[166,180]},{"text":"udl","indices":[181,185]},{"text":"aect19","indices":[186,193]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187375947193798657,"id_str":"1187375947193798657","indices":[194,217],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpoIgtUUAEjuGR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpoIgtUUAEjuGR.jpg","url":"https:\/\/t.co\/oEtbdkYhmC","display_url":"pic.twitter.com\/oEtbdkYhmC","expanded_url":"https:\/\/twitter.com\/matt_m_schmidt\/status\/1187375951623135234\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1120,"resize":"fit"},"medium":{"w":1200,"h":656,"resize":"fit"},"small":{"w":680,"h":372,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187375947193798657,"id_str":"1187375947193798657","indices":[194,217],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpoIgtUUAEjuGR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpoIgtUUAEjuGR.jpg","url":"https:\/\/t.co\/oEtbdkYhmC","display_url":"pic.twitter.com\/oEtbdkYhmC","expanded_url":"https:\/\/twitter.com\/matt_m_schmidt\/status\/1187375951623135234\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1120,"resize":"fit"},"medium":{"w":1200,"h":656,"resize":"fit"},"small":{"w":680,"h":372,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":9806452,"id_str":"9806452","name":"Matthew + Schmidt","screen_name":"matt_m_schmidt","location":"Gainesville, FL","description":"Editor-in-Chief + of Learner & User Experience Research. Read & share here: https:\/\/t.co\/nMBaOeqjpy","url":"https:\/\/t.co\/MQBbLAksSX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MQBbLAksSX","expanded_url":"http:\/\/matthewschmidt.info","display_url":"matthewschmidt.info","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/nMBaOeqjpy","expanded_url":"https:\/\/edtechbooks.org\/ux","display_url":"edtechbooks.org\/ux","indices":[74,97]}]}},"protected":false,"followers_count":668,"friends_count":404,"listed_count":17,"created_at":"Tue + Oct 30 21:35:53 +0000 2007","favourites_count":698,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":564,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9806452\/1603124176","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 06:10:35 +0000 2019","id":1187250011379093504,"id_str":"1187250011379093504","full_text":"It + was an honor to be one of the \"champions\" at this year''s AECT Breakfast + with Champions. So many great and deserving scholars are in this photo........and + then there''s me ;) #aect19 #aect19inspired https:\/\/t.co\/9iXORWHoLj","truncated":false,"display_text_range":[0,200],"entities":{"hashtags":[{"text":"aect19","indices":[177,184]},{"text":"aect19inspired","indices":[185,200]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187249984363585536,"id_str":"1187249984363585536","indices":[201,224],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn1kgmUYAASW0f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn1kgmUYAASW0f.jpg","url":"https:\/\/t.co\/9iXORWHoLj","display_url":"pic.twitter.com\/9iXORWHoLj","expanded_url":"https:\/\/twitter.com\/MarcusChildress\/status\/1187250011379093504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":765,"h":430,"resize":"fit"},"large":{"w":765,"h":430,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187249984363585536,"id_str":"1187249984363585536","indices":[201,224],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn1kgmUYAASW0f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn1kgmUYAASW0f.jpg","url":"https:\/\/t.co\/9iXORWHoLj","display_url":"pic.twitter.com\/9iXORWHoLj","expanded_url":"https:\/\/twitter.com\/MarcusChildress\/status\/1187250011379093504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":765,"h":430,"resize":"fit"},"large":{"w":765,"h":430,"resize":"fit"}},"ext_alt_text":null},{"id":1187249994799054849,"id_str":"1187249994799054849","indices":[201,224],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn1lHeVAAEBI1g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn1lHeVAAEBI1g.jpg","url":"https:\/\/t.co\/9iXORWHoLj","display_url":"pic.twitter.com\/9iXORWHoLj","expanded_url":"https:\/\/twitter.com\/MarcusChildress\/status\/1187250011379093504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1080,"h":1200,"resize":"fit"},"small":{"w":612,"h":680,"resize":"fit"},"large":{"w":1844,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1187250006211747840,"id_str":"1187250006211747840","indices":[201,224],"media_url":"http:\/\/pbs.twimg.com\/media\/EHn1lx_U4AALO9X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHn1lx_U4AALO9X.jpg","url":"https:\/\/t.co\/9iXORWHoLj","display_url":"pic.twitter.com\/9iXORWHoLj","expanded_url":"https:\/\/twitter.com\/MarcusChildress\/status\/1187250011379093504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":422,"resize":"fit"},"large":{"w":960,"h":596,"resize":"fit"},"medium":{"w":960,"h":596,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62390382,"id_str":"62390382","name":"Marcus + Childress, Ph.D.","screen_name":"MarcusChildress","location":"Overland Park, + KS","description":"Founder and Owner of Course Jockey; Former Chief Academic + Officer; Instructional Designer; Past-President @aect; @Virginia_Tech alum; + @AppState alum","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":661,"friends_count":1023,"listed_count":27,"created_at":"Mon + Aug 03 00:34:28 +0000 2009","favourites_count":782,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":833,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1421500685036699650\/4Dx2SRoe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1421500685036699650\/4Dx2SRoe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62390382\/1516048344","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 06:01:09 +0000 2019","id":1187247637801656320,"id_str":"1187247637801656320","full_text":"RT + @christieliuidtr: Come join us in Conference room 14 at 11 and then in Room + 1 at 4 today @AECT @aectclt @nicolapallitt #aect #aect19insp\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect","indices":[122,127]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[92,97]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[98,106]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[107,121]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:41:06 +0000 2019","id":1187031197819359235,"id_str":"1187031197819359235","full_text":"Come + join us in Conference room 14 at 11 and then in Room 1 at 4 today @AECT @aectclt + @nicolapallitt #aect #aect19inspired #aect19 intercultural and international + collaborative research https:\/\/t.co\/VfhCV44Ztw","truncated":false,"display_text_range":[0,185],"entities":{"hashtags":[{"text":"aect","indices":[101,106]},{"text":"aect19inspired","indices":[107,122]},{"text":"aect19","indices":[123,130]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[71,76]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[77,85]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[86,100]}],"urls":[{"url":"https:\/\/t.co\/VfhCV44Ztw","expanded_url":"https:\/\/twitter.com\/LiuJh_Christie\/status\/1185610918253776896","display_url":"twitter.com\/LiuJh_Christie\u2026","indices":[186,209]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1185610918253776896,"quoted_status_id_str":"1185610918253776896","quoted_status_permalink":{"url":"https:\/\/t.co\/VfhCV44Ztw","expanded":"https:\/\/twitter.com\/LiuJh_Christie\/status\/1185610918253776896","display":"twitter.com\/LiuJh_Christie\u2026"},"quoted_status":{"created_at":"Sat + Oct 19 17:37:25 +0000 2019","id":1185610918253776896,"id_str":"1185610918253776896","full_text":"Collaborations + @aectclt #aect19inspired #aect19 @AECT w\/ @nicolapallitt \ud835\udddb\ud835\uddee\ud835\uddfb\ud835\uddfb\ud835\uddee\ud835\uddf5 + \ud835\uddda\ud835\uddff\ud835\uddfc\ud835\ude00\ud835\ude00\ud835\uddfa\ud835\uddee\ud835\uddfb, + @AmyLomellini_ID \ud835\uddd4\ud835\uddf9\ud835\uddf6\ud835\uddf0\ud835\uddf2,\ud835\uddd5\ud835\uddf2\ud835\uddf0\ud835\uddfc\ud835\uddf9\ud835\uddee,\ud835\udde7\ud835\uddf6\ud835\uddee,\ud835\udde0\ud835\uddfa\ud835\uddee\ud835\uddef\ud835\uddee\ud835\uddf9\ud835\uddf2\ud835\uddf1\ud835\uddf6,\ud835\udddf\ud835\uddf2\ud835\uddee\ud835\uddf5,\ud835\udde1\ud835\uddf2\ud835\uddf6\ud835\uddf9,\ud835\uddfc\ud835\uddf9\ud835\ude02\ud835\ude04\ud835\uddee\ud835\ude00\ud835\uddf2\ud835\uddf3\ud835\ude02\ud835\uddfb\ud835\uddfa\ud835\uddf6,\ud835\udde1\ud835\uddfc\ud835\uddfa\ud835\uddfd\ud835\uddf6\ud835\uddf9\ud835\uddfc10\/23,11am + & 4pm. Safe travels @emergeAfrica friends! https:\/\/t.co\/Unp2OoqT6b","truncated":false,"display_text_range":[0,220],"entities":{"hashtags":[{"text":"aect19inspired","indices":[24,39]},{"text":"aect19","indices":[40,47]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[15,23]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[48,53]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[57,71]},{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[89,105]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[198,211]}],"urls":[],"media":[{"id":1185610914269151235,"id_str":"1185610914269151235","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"large":{"w":707,"h":393,"resize":"fit"},"medium":{"w":707,"h":393,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185610914269151235,"id_str":"1185610914269151235","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"large":{"w":707,"h":393,"resize":"fit"},"medium":{"w":707,"h":393,"resize":"fit"}},"ext_alt_text":null},{"id":1185610914281725953,"id_str":"1185610914281725953","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2EuWoAELmy-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2EuWoAELmy-.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":683,"h":381,"resize":"fit"},"large":{"w":683,"h":381,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":4,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1185610918253776896,"quoted_status_id_str":"1185610918253776896","quoted_status_permalink":{"url":"https:\/\/t.co\/VfhCV44Ztw","expanded":"https:\/\/twitter.com\/LiuJh_Christie\/status\/1185610918253776896","display":"twitter.com\/LiuJh_Christie\u2026"},"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:43:24 +0000 2019","id":1187379067496095744,"id_str":"1187379067496095744","full_text":"RT + @matt_m_schmidt: If you are interested in #virtualreality #VR interventions + for #autism, please check out this podcast interview with th\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"virtualreality","indices":[45,60]},{"text":"VR","indices":[61,64]},{"text":"autism","indices":[83,90]}],"symbols":[],"user_mentions":[{"screen_name":"matt_m_schmidt","name":"Matthew + Schmidt","id":9806452,"id_str":"9806452","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294822697,"id_str":"294822697","name":"anna + xygkou \ud83d\ude80","screen_name":"anna_ksigou","location":"London","description":"PhD + Researcher - Computing University of Kent - #virtualhumans and Conversational + #AI- #HumanRobotInteraction #VR","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1034,"friends_count":2818,"listed_count":22,"created_at":"Sat + May 07 20:57:29 +0000 2011","favourites_count":4000,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1183,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441413888134684682\/3kkeqRvk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441413888134684682\/3kkeqRvk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294822697\/1632494968","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4ADDE5","profile_sidebar_border_color":"63E521","profile_sidebar_fill_color":"000000","profile_text_color":"7D7D7D","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 14:35:20 +0000 2019","id":1187377036899176449,"id_str":"1187377036899176449","full_text":"If + you are interested in #virtualreality #VR interventions for #autism, please + check out this podcast interview with the Versatilist where I discuss some + of my recent research: https:\/\/t.co\/GLwlJVKCTn @immersiveLRN #aect19","truncated":false,"display_text_range":[0,222],"entities":{"hashtags":[{"text":"virtualreality","indices":[25,40]},{"text":"VR","indices":[41,44]},{"text":"autism","indices":[63,70]},{"text":"aect19","indices":[215,222]}],"symbols":[],"user_mentions":[{"screen_name":"immersiveLRN","name":"Immersive + Learning Research Network - #iLRN","id":2569387303,"id_str":"2569387303","indices":[201,214]}],"urls":[{"url":"https:\/\/t.co\/GLwlJVKCTn","expanded_url":"http:\/\/bit.ly\/2Bu3dRO","display_url":"bit.ly\/2Bu3dRO","indices":[177,200]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":9806452,"id_str":"9806452","name":"Matthew + Schmidt","screen_name":"matt_m_schmidt","location":"Gainesville, FL","description":"Editor-in-Chief + of Learner & User Experience Research. Read & share here: https:\/\/t.co\/nMBaOeqjpy","url":"https:\/\/t.co\/MQBbLAksSX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MQBbLAksSX","expanded_url":"http:\/\/matthewschmidt.info","display_url":"matthewschmidt.info","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/nMBaOeqjpy","expanded_url":"https:\/\/edtechbooks.org\/ux","display_url":"edtechbooks.org\/ux","indices":[74,97]}]}},"protected":false,"followers_count":668,"friends_count":404,"listed_count":17,"created_at":"Tue + Oct 30 21:35:53 +0000 2007","favourites_count":698,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":564,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9806452\/1603124176","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:52:22 +0000 2019","id":1187381321238220800,"id_str":"1187381321238220800","full_text":"RT + @arasbozkurt: Rise and shine #AECT19 - Social network Analysis for #AECT with + NodeXL https:\/\/t.co\/MIQz1GdWlT\n@aect\n@michaelmgrant\n@drter\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[32,39]},{"text":"AECT","indices":[70,75]}],"symbols":[],"user_mentions":[{"screen_name":"arasbozkurt","name":"Aras + Bozkurt","id":83447547,"id_str":"83447547","indices":[3,15]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[112,117]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[118,132]}],"urls":[{"url":"https:\/\/t.co\/MIQz1GdWlT","expanded_url":"http:\/\/bit.ly\/2N9hUPr","display_url":"bit.ly\/2N9hUPr","indices":[88,111]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 13:54:27 +0000 2019","id":1187366745977348102,"id_str":"1187366745977348102","full_text":"Rise + and shine #AECT19 - Social network Analysis for #AECT with NodeXL https:\/\/t.co\/MIQz1GdWlT\n@aect\n@michaelmgrant\n@drterric\n@caranorth11\n@islt_fsu\n@dksch\n@wilsoninedu\n@drvirtuality\n@eromerohall\n@robmoore3\n\nTop + hashtags:\n#aect19\n#aect19inspired\n#aect2019\n#aect\n#fsu\n#fsucoe\n#islt + https:\/\/t.co\/zTCol3vWgv","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"AECT19","indices":[15,22]},{"text":"AECT","indices":[53,58]},{"text":"aect19","indices":[222,229]},{"text":"aect19inspired","indices":[230,245]},{"text":"aect2019","indices":[246,255]},{"text":"aect","indices":[256,261]},{"text":"fsu","indices":[262,266]},{"text":"fsucoe","indices":[267,274]},{"text":"islt","indices":[275,280]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[95,100]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[101,115]},{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[116,125]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[126,138]},{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[139,148]},{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[149,155]},{"screen_name":"WilsonInEdu","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","id":489118534,"id_str":"489118534","indices":[156,168]},{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[169,182]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[183,195]},{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[196,206]}],"urls":[{"url":"https:\/\/t.co\/MIQz1GdWlT","expanded_url":"http:\/\/bit.ly\/2N9hUPr","display_url":"bit.ly\/2N9hUPr","indices":[71,94]}],"media":[{"id":1187366622094331905,"id_str":"1187366622094331905","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","url":"https:\/\/t.co\/zTCol3vWgv","display_url":"pic.twitter.com\/zTCol3vWgv","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187366745977348102\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1578,"resize":"fit"},"medium":{"w":1200,"h":925,"resize":"fit"},"small":{"w":680,"h":524,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187366622094331905,"id_str":"1187366622094331905","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpfpuAWkAE3JaY.jpg","url":"https:\/\/t.co\/zTCol3vWgv","display_url":"pic.twitter.com\/zTCol3vWgv","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187366745977348102\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1578,"resize":"fit"},"medium":{"w":1200,"h":925,"resize":"fit"},"small":{"w":680,"h":524,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 06:01:34 +0000 2019","id":1187247744504750080,"id_str":"1187247744504750080","full_text":"RT + @richardewest: Do you feel #AECTinspired? Share your expertise by contributing + a chapter to our newest OER book on Instructional Design,\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECTinspired","indices":[30,43]}],"symbols":[],"user_mentions":[{"screen_name":"richardewest","name":"Rick + West","id":17639668,"id_str":"17639668","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 01:32:40 +0000 2019","id":1187180070638456833,"id_str":"1187180070638456833","full_text":"Do + you feel #AECTinspired? Share your expertise by contributing a chapter to + our newest OER book on Instructional Design, edited with Jason McDonald and + hosted by @@EdTech_Books. See the call for chapters below, and we''re launching + next year. #AECT19 \n\nhttps:\/\/t.co\/7e0cQWBg90","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"AECTinspired","indices":[12,25]},{"text":"AECT19","indices":[243,250]}],"symbols":[],"user_mentions":[{"screen_name":"EdTech_Books","name":"EdTech + Books","id":1113476916076367872,"id_str":"1113476916076367872","indices":[164,177]}],"urls":[{"url":"https:\/\/t.co\/7e0cQWBg90","expanded_url":"https:\/\/edtechbooks.org\/id\/call_for_proposals","display_url":"edtechbooks.org\/id\/call_for_pr\u2026","indices":[255,278]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17639668,"id_str":"17639668","name":"Rick + West","screen_name":"richardewest","location":"Provo, ut","description":"Instructional + Designer, Researcher, & Evaluator at Brigham Young University","url":"http:\/\/t.co\/Nc39wWEhGM","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Nc39wWEhGM","expanded_url":"http:\/\/richardewest.com","display_url":"richardewest.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":223,"listed_count":39,"created_at":"Wed + Nov 26 02:26:26 +0000 2008","favourites_count":799,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3339,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17639668\/1446650027","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 15:13:34 +0000 2019","id":1187386657785503744,"id_str":"1187386657785503744","full_text":"RT + @hajeen2040: Great opportunity to build professional network and share ideas! + #AECT19 #fsu2040 https:\/\/t.co\/hQJhmpolGC","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"AECT19","indices":[81,88]},{"text":"fsu2040","indices":[89,97]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hQJhmpolGC","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186710076242976769","display_url":"twitter.com\/ISLT_FSU\/statu\u2026","indices":[98,121]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1664133686,"id_str":"1664133686","name":"Zhongrui(Ray) + Yao","screen_name":"ZhongruiYao","location":"Davis, CA","description":"Dr. + Zhongrui Yao in ISLT program at Florida State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":109,"friends_count":438,"listed_count":6,"created_at":"Mon + Aug 12 04:22:44 +0000 2013","favourites_count":511,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":690,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1168975986920214530\/OJRLfdQQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1168975986920214530\/OJRLfdQQ_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 06:20:03 +0000 2019","id":1186890004494049280,"id_str":"1186890004494049280","full_text":"Great + opportunity to build professional network and share ideas! #AECT19 #fsu2040 + https:\/\/t.co\/hQJhmpolGC","truncated":false,"display_text_range":[0,81],"entities":{"hashtags":[{"text":"AECT19","indices":[65,72]},{"text":"fsu2040","indices":[73,81]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hQJhmpolGC","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186710076242976769","display_url":"twitter.com\/ISLT_FSU\/statu\u2026","indices":[82,105]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1033854044039729152,"id_str":"1033854044039729152","name":"Hajeen + Choi","screen_name":"hajeenfsu","location":"FL","description":"PhD., Interested + in online teaching and learning, motivation, engagement, othering\/belonging, + networked learning, social media in education","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":178,"listed_count":1,"created_at":"Sun + Aug 26 23:09:46 +0000 2018","favourites_count":653,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1033854044039729152\/1535327544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186710076242976769,"quoted_status_id_str":"1186710076242976769","quoted_status_permalink":{"url":"https:\/\/t.co\/hQJhmpolGC","expanded":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186710076242976769","display":"twitter.com\/ISLT_FSU\/statu\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 18:25:04 +0000 2019","id":1186710076242976769,"id_str":"1186710076242976769","full_text":"What + are they talking at digital conference #backchannel? From building #PLN to + establishing online presence: use of membership categorization and #positioning + theory as analytic frameworks. #FSU #ISLT @hajeenzang Tue, 3-3:50pm Paviillion + 9. #AECT19 #AECT2019 #InformalLearning https:\/\/t.co\/2vrEmzSlg0","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"backchannel","indices":[44,56]},{"text":"PLN","indices":[72,76]},{"text":"positioning","indices":[147,159]},{"text":"FSU","indices":[191,195]},{"text":"ISLT","indices":[196,201]},{"text":"AECT19","indices":[242,249]},{"text":"AECT2019","indices":[250,259]},{"text":"InformalLearning","indices":[260,277]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186710074024251392,"id_str":"1186710074024251392","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgKhl2X0AA-1_1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgKhl2X0AA-1_1.jpg","url":"https:\/\/t.co\/2vrEmzSlg0","display_url":"pic.twitter.com\/2vrEmzSlg0","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186710076242976769\/photo\/1","type":"photo","sizes":{"large":{"w":1414,"h":795,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186710074024251392,"id_str":"1186710074024251392","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgKhl2X0AA-1_1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgKhl2X0AA-1_1.jpg","url":"https:\/\/t.co\/2vrEmzSlg0","display_url":"pic.twitter.com\/2vrEmzSlg0","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186710076242976769\/photo\/1","type":"photo","sizes":{"large":{"w":1414,"h":795,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186710076242976769,"quoted_status_id_str":"1186710076242976769","quoted_status_permalink":{"url":"https:\/\/t.co\/hQJhmpolGC","expanded":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186710076242976769","display":"twitter.com\/ISLT_FSU\/statu\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:56:04 +0000 2019","id":1187382252516204545,"id_str":"1187382252516204545","full_text":"RT + @matt_m_schmidt: If you are interested in #virtualreality #VR interventions + for #autism, please check out this podcast interview with th\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"virtualreality","indices":[45,60]},{"text":"VR","indices":[61,64]},{"text":"autism","indices":[83,90]}],"symbols":[],"user_mentions":[{"screen_name":"matt_m_schmidt","name":"Matthew + Schmidt","id":9806452,"id_str":"9806452","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 14:35:20 +0000 2019","id":1187377036899176449,"id_str":"1187377036899176449","full_text":"If + you are interested in #virtualreality #VR interventions for #autism, please + check out this podcast interview with the Versatilist where I discuss some + of my recent research: https:\/\/t.co\/GLwlJVKCTn @immersiveLRN #aect19","truncated":false,"display_text_range":[0,222],"entities":{"hashtags":[{"text":"virtualreality","indices":[25,40]},{"text":"VR","indices":[41,44]},{"text":"autism","indices":[63,70]},{"text":"aect19","indices":[215,222]}],"symbols":[],"user_mentions":[{"screen_name":"immersiveLRN","name":"Immersive + Learning Research Network - #iLRN","id":2569387303,"id_str":"2569387303","indices":[201,214]}],"urls":[{"url":"https:\/\/t.co\/GLwlJVKCTn","expanded_url":"http:\/\/bit.ly\/2Bu3dRO","display_url":"bit.ly\/2Bu3dRO","indices":[177,200]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":9806452,"id_str":"9806452","name":"Matthew + Schmidt","screen_name":"matt_m_schmidt","location":"Gainesville, FL","description":"Editor-in-Chief + of Learner & User Experience Research. Read & share here: https:\/\/t.co\/nMBaOeqjpy","url":"https:\/\/t.co\/MQBbLAksSX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MQBbLAksSX","expanded_url":"http:\/\/matthewschmidt.info","display_url":"matthewschmidt.info","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/nMBaOeqjpy","expanded_url":"https:\/\/edtechbooks.org\/ux","display_url":"edtechbooks.org\/ux","indices":[74,97]}]}},"protected":false,"followers_count":668,"friends_count":404,"listed_count":17,"created_at":"Tue + Oct 30 21:35:53 +0000 2007","favourites_count":698,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":564,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9806452\/1603124176","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 13:12:02 +0000 2019","id":1187356073964912642,"id_str":"1187356073964912642","full_text":"Come + join us! We are looking for a new colleague. Teaching faculty position is + open. If you are in Vegas at AECT come find Dr. Jim Klein or @vdennen. #JobsInHigherEd + #HigherEdJobs #FacultyPosition #JobOpening #AECT19 #Vegas #Learning #Education + #Teaching #Instruction #FSU https:\/\/t.co\/6cBHuscFrb","truncated":false,"display_text_range":[0,272],"entities":{"hashtags":[{"text":"JobsInHigherEd","indices":[150,165]},{"text":"HigherEdJobs","indices":[166,179]},{"text":"FacultyPosition","indices":[180,196]},{"text":"JobOpening","indices":[197,208]},{"text":"AECT19","indices":[209,216]},{"text":"Vegas","indices":[217,223]},{"text":"Learning","indices":[224,233]},{"text":"Education","indices":[234,244]},{"text":"Teaching","indices":[245,254]},{"text":"Instruction","indices":[255,267]},{"text":"FSU","indices":[268,272]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[140,148]}],"urls":[],"media":[{"id":1187356064808722433,"id_str":"1187356064808722433","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpWDNDUYAEHK6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpWDNDUYAEHK6m.jpg","url":"https:\/\/t.co\/6cBHuscFrb","display_url":"pic.twitter.com\/6cBHuscFrb","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187356073964912642\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":1600,"h":1067,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187356064808722433,"id_str":"1187356064808722433","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpWDNDUYAEHK6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpWDNDUYAEHK6m.jpg","url":"https:\/\/t.co\/6cBHuscFrb","display_url":"pic.twitter.com\/6cBHuscFrb","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187356073964912642\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":1600,"h":1067,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:57:20 +0000 2019","id":1187382572424155136,"id_str":"1187382572424155136","full_text":"RT + @SardImperium: RT @ifenthaler: @AECT Being #aect19inspired ? Publish your + work on #games #gamification #game-based #learning #assessment\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[46,61]},{"text":"games","indices":[85,91]},{"text":"gamification","indices":[92,105]},{"text":"game","indices":[106,111]},{"text":"learning","indices":[118,127]},{"text":"assessment","indices":[128,139]}],"symbols":[],"user_mentions":[{"screen_name":"SardImperium","name":"Sard + Imperium","id":292998487,"id_str":"292998487","indices":[3,16]},{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[21,32]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[34,39]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":111391715,"id_str":"111391715","name":"Valary + Oleinik","screen_name":"valarywithawhy","location":"New York, NY","description":"speaker + | engager of learners | gamifier of things | unleasher of creativity | geek + | writer | queriest","url":"https:\/\/t.co\/5XjhvhYTqb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5XjhvhYTqb","expanded_url":"http:\/\/www.valarywithawhy.com","display_url":"valarywithawhy.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1251,"friends_count":1550,"listed_count":60,"created_at":"Thu + Feb 04 19:24:07 +0000 2010","favourites_count":9041,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4317,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111391715\/1454624226","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 14:25:27 +0000 2019","id":1187374549681221639,"id_str":"1187374549681221639","full_text":"RT + @ifenthaler: @AECT Being #aect19inspired ? Publish your work on #games #gamification + #game-based #learning #assessment in our book series \u201cAdvances in Game-based + Learning\u201d. Send me your ideas or proposals #aect19\n\nhttps:\/\/t.co\/3y6HUWgaVV + https:\/\/t.co\/LKLpY1XYIT","truncated":false,"display_text_range":[0,264],"entities":{"hashtags":[{"text":"aect19inspired","indices":[28,43]},{"text":"games","indices":[67,73]},{"text":"gamification","indices":[74,87]},{"text":"game","indices":[88,93]},{"text":"learning","indices":[100,109]},{"text":"assessment","indices":[110,121]},{"text":"aect19","indices":[208,215]}],"symbols":[],"user_mentions":[{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[3,14]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[16,21]}],"urls":[{"url":"https:\/\/t.co\/3y6HUWgaVV","expanded_url":"https:\/\/springer.com\/series\/13094","display_url":"springer.com\/series\/13094","indices":[217,240]}],"media":[{"id":1187366903074971651,"id_str":"1187366903074971651","indices":[241,264],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpf6EvW4AMYiMP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpf6EvW4AMYiMP.jpg","url":"https:\/\/t.co\/LKLpY1XYIT","display_url":"pic.twitter.com\/LKLpY1XYIT","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187367619042725888\/photo\/1","type":"photo","sizes":{"large":{"w":153,"h":229,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":153,"h":229,"resize":"fit"},"small":{"w":153,"h":229,"resize":"fit"}},"source_status_id":1187367619042725888,"source_status_id_str":"1187367619042725888","source_user_id":45137054,"source_user_id_str":"45137054"}]},"extended_entities":{"media":[{"id":1187366903074971651,"id_str":"1187366903074971651","indices":[241,264],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpf6EvW4AMYiMP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpf6EvW4AMYiMP.jpg","url":"https:\/\/t.co\/LKLpY1XYIT","display_url":"pic.twitter.com\/LKLpY1XYIT","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187367619042725888\/photo\/1","type":"photo","sizes":{"large":{"w":153,"h":229,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":153,"h":229,"resize":"fit"},"small":{"w":153,"h":229,"resize":"fit"}},"source_status_id":1187367619042725888,"source_status_id_str":"1187367619042725888","source_user_id":45137054,"source_user_id_str":"45137054","ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":292998487,"id_str":"292998487","name":"Sard + Imperium","screen_name":"SardImperium","location":"Canada","description":"#News + in several languages about #gamification #seriousgaming with \ud83e\udd16\ud83d\udc31\ud83d\ude00 + - \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f\ud83c\udfaf","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2427,"friends_count":282,"listed_count":184,"created_at":"Wed + May 04 15:54:49 +0000 2011","favourites_count":9680,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":118124,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1360722277030125568\/tBI7CzWF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1360722277030125568\/tBI7CzWF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/292998487\/1613256447","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 13:19:22 +0000 2019","id":1187357916757544960,"id_str":"1187357916757544960","full_text":"RT + @d_mulder: Hey, that\u2019s @profoyarzun presenting! (And also the back of + my head.) \ud83d\ude04 #aect19 #aect19inspired https:\/\/t.co\/tAUnv6bAtQ","truncated":false,"display_text_range":[0,132],"entities":{"hashtags":[{"text":"aect19","indices":[85,92]},{"text":"aect19inspired","indices":[93,108]}],"symbols":[],"user_mentions":[{"screen_name":"d_mulder","name":"Dr. + Dave Mulder","id":30278154,"id_str":"30278154","indices":[3,12]},{"screen_name":"profoyarzun","name":"Beth + Oyarzun","id":19023356,"id_str":"19023356","indices":[26,38]}],"urls":[{"url":"https:\/\/t.co\/tAUnv6bAtQ","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1187112443085852672","display_url":"twitter.com\/jennkepka\/stat\u2026","indices":[109,132]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19023356,"id_str":"19023356","name":"Beth + Oyarzun","screen_name":"profoyarzun","location":"Charlotte, NC","description":"Clinical + Associate Professor and director of the Learning, Design and Technology program + at UNCC, wife, mom, and scuba diver.","url":"https:\/\/t.co\/GKjzX92eV9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GKjzX92eV9","expanded_url":"https:\/\/sites.google.com\/uncc.edu\/bethoyarzun\/home?authuser=2","display_url":"sites.google.com\/uncc.edu\/betho\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":295,"friends_count":523,"listed_count":15,"created_at":"Thu + Jan 15 14:35:36 +0000 2009","favourites_count":1232,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1082,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650037082346422272\/X3Iy9bMz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650037082346422272\/X3Iy9bMz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19023356\/1566681139","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 21:39:08 +0000 2019","id":1187121299371393025,"id_str":"1187121299371393025","full_text":"Hey, + that\u2019s @profoyarzun presenting! (And also the back of my head.) \ud83d\ude04 + #aect19 #aect19inspired https:\/\/t.co\/tAUnv6bAtQ","truncated":false,"display_text_range":[0,94],"entities":{"hashtags":[{"text":"aect19","indices":[71,78]},{"text":"aect19inspired","indices":[79,94]}],"symbols":[],"user_mentions":[{"screen_name":"profoyarzun","name":"Beth + Oyarzun","id":19023356,"id_str":"19023356","indices":[12,24]}],"urls":[{"url":"https:\/\/t.co\/tAUnv6bAtQ","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1187112443085852672","display_url":"twitter.com\/jennkepka\/stat\u2026","indices":[95,118]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":30278154,"id_str":"30278154","name":"Dr. + Dave Mulder","screen_name":"d_mulder","location":"Iowa","description":"Christ-follower. + Husband of one and dad of two. Professor of Education at @dordtuniversity. + #EdTech is my jam. My tweets speak only for me.","url":"https:\/\/t.co\/i9IOUI9RZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/i9IOUI9RZC","expanded_url":"https:\/\/drdave.substack.com\/","display_url":"drdave.substack.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3921,"friends_count":949,"listed_count":249,"created_at":"Fri + Apr 10 18:27:10 +0000 2009","favourites_count":39976,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30278154\/1568172162","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187112443085852672,"quoted_status_id_str":"1187112443085852672","quoted_status_permalink":{"url":"https:\/\/t.co\/tAUnv6bAtQ","expanded":"https:\/\/twitter.com\/jennkepka\/status\/1187112443085852672","display":"twitter.com\/jennkepka\/stat\u2026"},"quoted_status":{"created_at":"Wed + Oct 23 21:03:56 +0000 2019","id":1187112443085852672,"id_str":"1187112443085852672","full_text":"\"Time + management matters: online faculty perceptions of helpfulness of time management + strategies\" at #aect19inspired -- would be hard to find a session more targeted + to my interests! https:\/\/t.co\/phJBmMbmcR","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"aect19inspired","indices":[102,117]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187112241608310784,"id_str":"1187112241608310784","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl4S02UwAAlu7Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl4S02UwAAlu7Q.jpg","url":"https:\/\/t.co\/phJBmMbmcR","display_url":"pic.twitter.com\/phJBmMbmcR","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1187112443085852672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187112241608310784,"id_str":"1187112241608310784","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl4S02UwAAlu7Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl4S02UwAAlu7Q.jpg","url":"https:\/\/t.co\/phJBmMbmcR","display_url":"pic.twitter.com\/phJBmMbmcR","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1187112443085852672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":"Slide + that says Time management matters: online faculty perceptions of helpfulness + of time management strategies"}]},"source":"\u003ca href=\"https:\/\/mobile.twitter.com\" + rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3733671685,"id_str":"3733671685","name":"Jenn + Kepka","screen_name":"jennkepka","location":"Oregon, USA","description":"Outreach\/retention\/tutoring + faculty in OR; doc student in #edtech at Boise St. Past: UO, WOU, KU. \u2764 + #oer & \u2615 & \u26f8. Views my own. she\/her\/hers","url":"https:\/\/t.co\/nvazHyg5JB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nvazHyg5JB","expanded_url":"http:\/\/jennkepka.com","display_url":"jennkepka.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":700,"friends_count":1225,"listed_count":45,"created_at":"Wed + Sep 30 05:39:55 +0000 2015","favourites_count":19836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3733671685\/1446791014","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1187112443085852672,"quoted_status_id_str":"1187112443085852672","quoted_status_permalink":{"url":"https:\/\/t.co\/tAUnv6bAtQ","expanded":"https:\/\/twitter.com\/jennkepka\/status\/1187112443085852672","display":"twitter.com\/jennkepka\/stat\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},{"created_at":"Thu + Oct 24 14:49:31 +0000 2019","id":1187380606075838464,"id_str":"1187380606075838464","full_text":"RT + @ifenthaler: @AECT Being #aect19inspired ? Publish your work on #games #gamification + #game-based #learning #assessment in our book serie\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[28,43]},{"text":"games","indices":[67,73]},{"text":"gamification","indices":[74,87]},{"text":"game","indices":[88,93]},{"text":"learning","indices":[100,109]},{"text":"assessment","indices":[110,121]}],"symbols":[],"user_mentions":[{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[3,14]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[16,21]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 13:57:55 +0000 2019","id":1187367619042725888,"id_str":"1187367619042725888","full_text":"@AECT + Being #aect19inspired ? Publish your work on #games #gamification #game-based + #learning #assessment in our book series \u201cAdvances in Game-based Learning\u201d. + Send me your ideas or proposals #aect19\n\nhttps:\/\/t.co\/48RwvebdQH https:\/\/t.co\/CEaXM40OwJ","truncated":false,"display_text_range":[0,224],"entities":{"hashtags":[{"text":"aect19inspired","indices":[12,27]},{"text":"games","indices":[51,57]},{"text":"gamification","indices":[58,71]},{"text":"game","indices":[72,77]},{"text":"learning","indices":[84,93]},{"text":"assessment","indices":[94,105]},{"text":"aect19","indices":[192,199]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]}],"urls":[{"url":"https:\/\/t.co\/48RwvebdQH","expanded_url":"https:\/\/springer.com\/series\/13094","display_url":"springer.com\/series\/13094","indices":[201,224]}],"media":[{"id":1187366903074971651,"id_str":"1187366903074971651","indices":[225,248],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpf6EvW4AMYiMP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpf6EvW4AMYiMP.jpg","url":"https:\/\/t.co\/CEaXM40OwJ","display_url":"pic.twitter.com\/CEaXM40OwJ","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187367619042725888\/photo\/1","type":"photo","sizes":{"large":{"w":153,"h":229,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":153,"h":229,"resize":"fit"},"small":{"w":153,"h":229,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187366903074971651,"id_str":"1187366903074971651","indices":[225,248],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpf6EvW4AMYiMP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpf6EvW4AMYiMP.jpg","url":"https:\/\/t.co\/CEaXM40OwJ","display_url":"pic.twitter.com\/CEaXM40OwJ","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1187367619042725888\/photo\/1","type":"photo","sizes":{"large":{"w":153,"h":229,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":153,"h":229,"resize":"fit"},"small":{"w":153,"h":229,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":45137054,"id_str":"45137054","name":"Dirk + Ifenthaler","screen_name":"ifenthaler","location":"","description":"#learninganalytics","url":"https:\/\/t.co\/nGyfFQyRvo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nGyfFQyRvo","expanded_url":"http:\/\/www.ifenthaler.info","display_url":"ifenthaler.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":895,"friends_count":246,"listed_count":35,"created_at":"Sat + Jun 06 14:19:07 +0000 2009","favourites_count":615,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":878,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 05:43:40 +0000 2019","id":1187243237418754048,"id_str":"1187243237418754048","full_text":"Conference + break by the pool! Shhhh! Don\u2019t tell them! #recharge #aect19 https:\/\/t.co\/LR8AiJG8zx","truncated":false,"display_text_range":[0,71],"entities":{"hashtags":[{"text":"recharge","indices":[54,63]},{"text":"aect19","indices":[64,71]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187243228984033280,"id_str":"1187243228984033280","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnvbS2UwAA3Owt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnvbS2UwAA3Owt.jpg","url":"https:\/\/t.co\/LR8AiJG8zx","display_url":"pic.twitter.com\/LR8AiJG8zx","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1187243237418754048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187243228984033280,"id_str":"1187243228984033280","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/EHnvbS2UwAA3Owt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHnvbS2UwAA3Owt.jpg","url":"https:\/\/t.co\/LR8AiJG8zx","display_url":"pic.twitter.com\/LR8AiJG8zx","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1187243237418754048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2786357411,"id_str":"2786357411","name":"Rebecca + Clark","screen_name":"rebeccamclark87","location":"Blacksburg, VA","description":"PhD + Student - Instructional Design and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":124,"listed_count":1,"created_at":"Fri + Sep 26 21:55:13 +0000 2014","favourites_count":370,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":94,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1116743962067460096\/nxZX1CVu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1116743962067460096\/nxZX1CVu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2786357411\/1551977207","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:52:50 +0000 2019","id":1187381441023201280,"id_str":"1187381441023201280","full_text":"The + \"Narrowing Down your Research Interests\" @gsa_aect panel session that I + co-facilitated with Yam has inspired me. I''m sure it has inspired the attendees + as well. Shout out to the panelists, Drs. @aac3 , @tintinluo , @robmoore3 + , and @eromerohall . #aect19 https:\/\/t.co\/gKIkBntwgp","truncated":false,"display_text_range":[0,258],"entities":{"hashtags":[{"text":"aect19","indices":[251,258]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[45,54]},{"screen_name":"aac3","name":"Dr. + ali carr-chellman","id":27413768,"id_str":"27413768","indices":[198,203]},{"screen_name":"tintinluo","name":"Tian + Luo","id":29474883,"id_str":"29474883","indices":[206,216]},{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[219,229]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[236,248]}],"urls":[],"media":[{"id":1187381434102665217,"id_str":"1187381434102665217","indices":[259,282],"media_url":"http:\/\/pbs.twimg.com\/media\/EHptH5CVUAEliUj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHptH5CVUAEliUj.jpg","url":"https:\/\/t.co\/gKIkBntwgp","display_url":"pic.twitter.com\/gKIkBntwgp","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187381441023201280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187381434102665217,"id_str":"1187381434102665217","indices":[259,282],"media_url":"http:\/\/pbs.twimg.com\/media\/EHptH5CVUAEliUj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHptH5CVUAEliUj.jpg","url":"https:\/\/t.co\/gKIkBntwgp","display_url":"pic.twitter.com\/gKIkBntwgp","expanded_url":"https:\/\/twitter.com\/PaulineMuljana\/status\/1187381441023201280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:35:20 +0000 2019","id":1187377036899176449,"id_str":"1187377036899176449","full_text":"If + you are interested in #virtualreality #VR interventions for #autism, please + check out this podcast interview with the Versatilist where I discuss some + of my recent research: https:\/\/t.co\/GLwlJVKCTn @immersiveLRN #aect19","truncated":false,"display_text_range":[0,222],"entities":{"hashtags":[{"text":"virtualreality","indices":[25,40]},{"text":"VR","indices":[41,44]},{"text":"autism","indices":[63,70]},{"text":"aect19","indices":[215,222]}],"symbols":[],"user_mentions":[{"screen_name":"immersiveLRN","name":"Immersive + Learning Research Network - #iLRN","id":2569387303,"id_str":"2569387303","indices":[201,214]}],"urls":[{"url":"https:\/\/t.co\/GLwlJVKCTn","expanded_url":"http:\/\/bit.ly\/2Bu3dRO","display_url":"bit.ly\/2Bu3dRO","indices":[177,200]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":9806452,"id_str":"9806452","name":"Matthew + Schmidt","screen_name":"matt_m_schmidt","location":"Gainesville, FL","description":"Editor-in-Chief + of Learner & User Experience Research. Read & share here: https:\/\/t.co\/nMBaOeqjpy","url":"https:\/\/t.co\/MQBbLAksSX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MQBbLAksSX","expanded_url":"http:\/\/matthewschmidt.info","display_url":"matthewschmidt.info","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/nMBaOeqjpy","expanded_url":"https:\/\/edtechbooks.org\/ux","display_url":"edtechbooks.org\/ux","indices":[74,97]}]}},"protected":false,"followers_count":668,"friends_count":404,"listed_count":17,"created_at":"Tue + Oct 30 21:35:53 +0000 2007","favourites_count":698,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":564,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9806452\/1603124176","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 13:06:16 +0000 2019","id":1187354620936388609,"id_str":"1187354620936388609","full_text":"RT + @hodgesc: I''m ready to chat about @AECTTechTrends today Oct 24, 10:00 to + 10:50am, Convention Center, Paradise North #aect19 #aect19inspi\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[119,126]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[37,52]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 13:00:01 +0000 2019","id":1187353047149600768,"id_str":"1187353047149600768","full_text":"I''m + ready to chat about @AECTTechTrends today Oct 24, 10:00 to 10:50am, Convention + Center, Paradise North #aect19 #aect19inspired","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[{"text":"aect19","indices":[106,113]},{"text":"aect19inspired","indices":[114,129]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[24,39]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 06:24:18 +0000 2019","id":1187253461995413505,"id_str":"1187253461995413505","full_text":"#emergeAfrica + #AECT19 @nicolapallitt https:\/\/t.co\/mfiICbxsvA","truncated":false,"display_text_range":[0,36],"entities":{"hashtags":[{"text":"emergeAfrica","indices":[0,13]},{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[22,36]}],"urls":[{"url":"https:\/\/t.co\/mfiICbxsvA","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187079123249725440","display_url":"twitter.com\/tutaleni\/statu\u2026","indices":[37,60]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187079123249725440,"quoted_status_id_str":"1187079123249725440","quoted_status_permalink":{"url":"https:\/\/t.co\/mfiICbxsvA","expanded":"https:\/\/twitter.com\/tutaleni\/status\/1187079123249725440","display":"twitter.com\/tutaleni\/statu\u2026"},"quoted_status":{"created_at":"Wed + Oct 23 18:51:32 +0000 2019","id":1187079123249725440,"id_str":"1187079123249725440","full_text":"eLearning: + An International Collaborative Exploration of Higher-Educational Technology + Usage in Africa. #aect19inspired #AECT19 https:\/\/t.co\/SijSYr49Me","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"aect19inspired","indices":[104,119]},{"text":"AECT19","indices":[120,127]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187079100675940352,"id_str":"1187079100675940352","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","url":"https:\/\/t.co\/SijSYr49Me","display_url":"pic.twitter.com\/SijSYr49Me","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187079123249725440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":982,"h":728,"resize":"fit"},"medium":{"w":982,"h":728,"resize":"fit"},"small":{"w":680,"h":504,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187079100675940352,"id_str":"1187079100675940352","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","url":"https:\/\/t.co\/SijSYr49Me","display_url":"pic.twitter.com\/SijSYr49Me","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187079123249725440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":982,"h":728,"resize":"fit"},"medium":{"w":982,"h":728,"resize":"fit"},"small":{"w":680,"h":504,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Thu + Oct 24 15:07:19 +0000 2019","id":1187385085521092609,"id_str":"1187385085521092609","full_text":"#aect19inspired + friends. Don\u2019t wait in that line. Buffet is cheaper and better. https:\/\/t.co\/G3JLOvmYLJ","truncated":false,"display_text_range":[0,80],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187385080097857537,"id_str":"1187385080097857537","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpwcHbU4AEc9uz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpwcHbU4AEc9uz.jpg","url":"https:\/\/t.co\/G3JLOvmYLJ","display_url":"pic.twitter.com\/G3JLOvmYLJ","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187385085521092609\/photo\/1","type":"photo","sizes":{"small":{"w":383,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187385080097857537,"id_str":"1187385080097857537","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/EHpwcHbU4AEc9uz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHpwcHbU4AEc9uz.jpg","url":"https:\/\/t.co\/G3JLOvmYLJ","display_url":"pic.twitter.com\/G3JLOvmYLJ","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1187385085521092609\/photo\/1","type":"photo","sizes":{"small":{"w":383,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 14:53:50 +0000 2019","id":1187381691662225409,"id_str":"1187381691662225409","full_text":"We + need to get a better handle on using learning analytics to support more learner + disengagement. #aect19","truncated":false,"display_text_range":[0,105],"entities":{"hashtags":[{"text":"aect19","indices":[98,105]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1187224050143092737%2C1187223463829753856%2C1187217337579163649%2C1187217294956605440%2C1187217183937454080%2C1187216686048579584%2C1187216686048579584%2C1187215517255385089%2C1187215345737711616%2C1187215177667756034%2C1187215175134433281%2C1187215049628225536%2C1187214617573023745%2C1187214290543173632%2C1187212142543421440%2C1187207276077076482%2C1187207102722236418%2C1187206443566391296%2C1187204388902916096%2C1187204358242471937%2C1187204332405641216%2C1187204332405641216%2C1187195568348524544%2C1187192355260002305%2C1187192011549360128%2C1187190136414425090%2C1187190136414425090%2C1187180070638456833%2C1187178229376802816%2C1187176279709306880%2C1187176146175172609%2C1187175863453995008%2C1187175783686692864%2C1187175720604360705%2C1187175645954097152%2C1187175524227002368%2C1187175473203372034%2C1187175450377932800%2C1187175413002522624%2C1187175229401063426%2C1187175137277349889%2C1187174970956365826%2C1187174241063432192%2C1187173910267097088%2C1187172199641182208%2C1187171931411238912%2C1187171931411238912%2C1187170379850076160%2C1187163790598537216%2C1187163432161689600%2C1187159392589758464%2C1187158921716236289%2C1187158465447223296%2C1187157094639685632%2C1187157094639685632%2C1187155302434533376%2C1187155243278036993%2C1187155214907764736%2C1187154591495778305%2C1187153368390586368%2C1187147826192535552%2C1187147090691903490%2C1187147019107749888%2C1187146948815421441%2C1187146736122224641%2C1187146465656705025%2C1187144721371549696%2C1187144329883574277%2C1187143726339985409%2C1187140447094923266%2C1187140447094923266%2C1187139016304418816%2C1187139008414932994%2C1187138784883703808%2C1187138418582511616%2C1187138110678634497%2C1187137876024127488%2C1187137746701180928%2C1187135892655235072%2C1187132136878301185%2C1187130392114941957%2C1187129015036854272%2C1187128109641814016%2C1187126552359604224%2C1187126122376392704%2C1187125992755625985%2C1187125327161692161%2C1187125327161692161%2C1187125063935352832%2C1187124808045039616%2C1187124049295622144%2C1187124034795798528%2C1187123438231543814%2C1187122377332875264%2C1187122043004702720%2C1187121895214329856%2C1187121392354873344%2C1187121299371393025%2C1187121283860848642%2C1187121225505619970&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:47 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:47 GMT + x-transaction: db806241dbec7555 + content-length: '44941' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '284' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '328' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Oct 23 23:21:37 +0000 2019","id":1187147090691903490,"id_str":"1187147090691903490","full_text":"I + got my actual reality goggles in the mail last week. My vision is sharper, + but the experience is kind of boring #aect19","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"aect19","indices":[114,121]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:43:25 +0000 2019","id":1187122377332875264,"id_str":"1187122377332875264","full_text":"RT + @vdennen: I shared my truth about @ISLT_FSU on the #aect19 inspiration board. + Thanks all for keeping me on my toes and making my job so\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"aect19","indices":[54,61]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[3,11]},{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[37,46]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 21:24:21 +0000 2019","id":1187117579598360577,"id_str":"1187117579598360577","full_text":"I + shared my truth about @ISLT_FSU on the #aect19 inspiration board. Thanks all + for keeping me on my toes and making my job so interesting and fun. https:\/\/t.co\/nIYVKzcoER","truncated":false,"display_text_range":[0,146],"entities":{"hashtags":[{"text":"aect19","indices":[41,48]}],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[24,33]}],"urls":[],"media":[{"id":1187117572308652032,"id_str":"1187117572308652032","indices":[147,170],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl9JHQU0AA1UDI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl9JHQU0AA1UDI.jpg","url":"https:\/\/t.co\/nIYVKzcoER","display_url":"pic.twitter.com\/nIYVKzcoER","expanded_url":"https:\/\/twitter.com\/vdennen\/status\/1187117579598360577\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":645,"h":680,"resize":"fit"},"large":{"w":1944,"h":2048,"resize":"fit"},"medium":{"w":1139,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187117572308652032,"id_str":"1187117572308652032","indices":[147,170],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl9JHQU0AA1UDI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl9JHQU0AA1UDI.jpg","url":"https:\/\/t.co\/nIYVKzcoER","display_url":"pic.twitter.com\/nIYVKzcoER","expanded_url":"https:\/\/twitter.com\/vdennen\/status\/1187117579598360577\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":645,"h":680,"resize":"fit"},"large":{"w":1944,"h":2048,"resize":"fit"},"medium":{"w":1139,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":142359679,"id_str":"142359679","name":"Vanessa + Dennen","screen_name":"vdennen","location":"Tallahassee, FL","description":"Professor + of Instructional Systems & Learning Technologies at FSU (views are my own), + avid traveler, amateur gardener, she\/her","url":"https:\/\/t.co\/2brlz0Rnzr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2brlz0Rnzr","expanded_url":"http:\/\/vanessadennen.com","display_url":"vanessadennen.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1151,"friends_count":759,"listed_count":40,"created_at":"Mon + May 10 17:39:35 +0000 2010","favourites_count":1097,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2102,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1137140666771918848\/ghs_iYhS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1137140666771918848\/ghs_iYhS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/142359679\/1584134048","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 22:47:09 +0000 2019","id":1187138418582511616,"id_str":"1187138418582511616","full_text":"RT + @art_brownlow: Learning a lot about instructional use of AR @AECT. Meanwhile, + we had a visitor at our session. #aect2019 #aect19inspired\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect2019","indices":[114,123]},{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"art_brownlow","name":"Art + Brownlow","id":887813304311087104,"id_str":"887813304311087104","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[63,68]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161087679,"id_str":"1161087679","name":"Melissa + Goodman","screen_name":"MelGoodEDU","location":"Clinton, KY","description":"County + Extension Agent for 4-H Youth Development | Education & Collaboration | Advocate + for FCS & CTE. Views are my own. RT not endorsement.","url":"https:\/\/t.co\/izMiFuYPzA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/izMiFuYPzA","expanded_url":"https:\/\/hickman.ca.uky.edu\/","display_url":"hickman.ca.uky.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":529,"friends_count":1279,"listed_count":18,"created_at":"Fri + Feb 08 19:57:55 +0000 2013","favourites_count":2183,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":987,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1553982233865756672\/yp_OWTk1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1553982233865756672\/yp_OWTk1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1161087679\/1659334237","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 17:15:47 +0000 2019","id":1186330250994565124,"id_str":"1186330250994565124","full_text":"Learning + a lot about instructional use of AR @AECT. Meanwhile, we had a visitor at + our session. #aect2019 #aect19inspired https:\/\/t.co\/HjfO4IZVEm","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"aect2019","indices":[96,105]},{"text":"aect19inspired","indices":[106,121]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[45,50]}],"urls":[],"media":[{"id":1186330138339753986,"id_str":"1186330138339753986","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","url":"https:\/\/t.co\/HjfO4IZVEm","display_url":"pic.twitter.com\/HjfO4IZVEm","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186330138339753986,"id_str":"1186330138339753986","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","url":"https:\/\/t.co\/HjfO4IZVEm","display_url":"pic.twitter.com\/HjfO4IZVEm","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}},"video_info":{"aspect_ratio":[37,80],"duration_millis":11690,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/320x690\/qzYSXhtp8GVHwAkS.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/pl\/HOQqLq2LCOe8QZdY.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/360x778\/mxoPjfmwzOZWrqSf.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/592x1280\/pBUtbxYAYdW5YWLx.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":887813304311087104,"id_str":"887813304311087104","name":"Art + Brownlow","screen_name":"art_brownlow","location":"Brownsville, TX","description":"UTRGV + Music Prof & Academic Innovation Fellow, UT System Academy of Distinguished + Teachers, ROTA 2016, \uf8ffADE 2015, Braves fan, Husband & Dad","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":291,"friends_count":338,"listed_count":5,"created_at":"Wed + Jul 19 23:16:01 +0000 2017","favourites_count":237,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":132,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887813304311087104\/1500521777","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":42,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 01:14:24 +0000 2019","id":1187175473203372034,"id_str":"1187175473203372034","full_text":"RT + @lpemusicguru: We had a blast in my session!!!! @SpheroEdu was a hot topic + using @specdrums_rings to enhance music education. @AECT @AEC\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SpheroEdu","name":"Sphero + Education","id":1335870978,"id_str":"1335870978","indices":[51,61]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 00:27:58 +0000 2019","id":1187163790598537216,"id_str":"1187163790598537216","full_text":"We + had a blast in my session!!!! @SpheroEdu was a hot topic using @specdrums_rings + to enhance music education. @AECT @AECTTIL #aect19inspired https:\/\/t.co\/PkdCGOmdUj","truncated":false,"display_text_range":[0,141],"entities":{"hashtags":[{"text":"aect19inspired","indices":[126,141]}],"symbols":[],"user_mentions":[{"screen_name":"SpheroEdu","name":"Sphero + Education","id":1335870978,"id_str":"1335870978","indices":[33,43]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[111,116]},{"screen_name":"AECTTIL","name":"AECT + TIL","id":4921781685,"id_str":"4921781685","indices":[117,125]}],"urls":[],"media":[{"id":1187163783296253952,"id_str":"1187163783296253952","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmnK8mVAAAqbsR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmnK8mVAAAqbsR.jpg","url":"https:\/\/t.co\/PkdCGOmdUj","display_url":"pic.twitter.com\/PkdCGOmdUj","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1187163790598537216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187163783296253952,"id_str":"1187163783296253952","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmnK8mVAAAqbsR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmnK8mVAAAqbsR.jpg","url":"https:\/\/t.co\/PkdCGOmdUj","display_url":"pic.twitter.com\/PkdCGOmdUj","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1187163790598537216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187163783296237568,"id_str":"1187163783296237568","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmnK8mUwAAC8b9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmnK8mUwAAC8b9.jpg","url":"https:\/\/t.co\/PkdCGOmdUj","display_url":"pic.twitter.com\/PkdCGOmdUj","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1187163790598537216\/photo\/1","type":"photo","sizes":{"medium":{"w":890,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1519,"h":2048,"resize":"fit"},"small":{"w":504,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":763378325712674818,"id_str":"763378325712674818","name":"Tay + Fess, M.Ed.","screen_name":"Captain_Fess","location":"Naples, FL","description":"Music + Educator l \ud83c\udff3\ufe0f\u200d\ud83c\udf08 l Presenter l UDL l FGCU l + Doctoral Student Ed.D. l EdTech l Disney Geek","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":576,"listed_count":3,"created_at":"Wed + Aug 10 14:15:50 +0000 2016","favourites_count":1730,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":665,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/763378325712674818\/1595378873","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:42:05 +0000 2019","id":1187122043004702720,"id_str":"1187122043004702720","full_text":"Ok + may need to select cards carefully for different cultures and age groups... + #aect19 #aect19inspired https:\/\/t.co\/pkrmd8mgE5","truncated":false,"display_text_range":[0,102],"entities":{"hashtags":[{"text":"aect19","indices":[79,86]},{"text":"aect19inspired","indices":[87,102]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187122037669580801,"id_str":"1187122037669580801","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmBNCBVUAETBUz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmBNCBVUAETBUz.jpg","url":"https:\/\/t.co\/pkrmd8mgE5","display_url":"pic.twitter.com\/pkrmd8mgE5","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1187122043004702720\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187122037669580801,"id_str":"1187122037669580801","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmBNCBVUAETBUz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmBNCBVUAETBUz.jpg","url":"https:\/\/t.co\/pkrmd8mgE5","display_url":"pic.twitter.com\/pkrmd8mgE5","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1187122043004702720\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187119055347408896,"in_reply_to_status_id_str":"1187119055347408896","in_reply_to_user_id":6848632,"in_reply_to_user_id_str":"6848632","in_reply_to_screen_name":"jeroen69","user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:38:50 +0000 2019","id":1187121225505619970,"id_str":"1187121225505619970","full_text":"RT + @christieliuidtr: Smart education, big data, #AI, system thinking framework, + not so distant @AECT @SICET @CAET international perspective\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AI","indices":[48,51]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[95,100]},{"screen_name":"SICET","name":"SICET","id":114832274,"id_str":"114832274","indices":[101,107]},{"screen_name":"caet","name":"caet","id":15079288,"id_str":"15079288","indices":[108,113]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.calcaware.com\/\" rel=\"nofollow\"\u003eCalcaware\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":709564705304498176,"id_str":"709564705304498176","name":"Christopher + Burnette","screen_name":"Calcaware","location":"Austin, TX","description":"Software + Engineer at Amazon\nFreelance Software Engineer\nCustom Websites, Android + Apps, Slack\/Telegram\/Discord Bots","url":"https:\/\/t.co\/xkd116jRbi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xkd116jRbi","expanded_url":"https:\/\/www.calcaware.com\/","display_url":"calcaware.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9210,"friends_count":440,"listed_count":609,"created_at":"Tue + Mar 15 02:19:43 +0000 2016","favourites_count":112282,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":594848,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"031116","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1251314003629965314\/LgyiBrv9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1251314003629965314\/LgyiBrv9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/709564705304498176\/1621794689","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4D70FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 20:51:00 +0000 2019","id":1187109186099802112,"id_str":"1187109186099802112","full_text":"Smart + education, big data, #AI, system thinking framework, not so distant @AECT + @SICET @CAET international perspectives, #aect19 #aect19inspired https:\/\/t.co\/Z4L0QALidW + https:\/\/t.co\/lEnDZ5KrI3","truncated":false,"display_text_range":[0,168],"entities":{"hashtags":[{"text":"AI","indices":[27,30]},{"text":"aect19","indices":[121,128]},{"text":"aect19inspired","indices":[129,144]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[74,79]},{"screen_name":"SICET","name":"SICET","id":114832274,"id_str":"114832274","indices":[80,86]},{"screen_name":"caet","name":"caet","id":15079288,"id_str":"15079288","indices":[87,92]}],"urls":[{"url":"https:\/\/t.co\/Z4L0QALidW","expanded_url":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880","display_url":"twitter.com\/ekowch\/status\/\u2026","indices":[145,168]}],"media":[{"id":1187109178902376448,"id_str":"1187109178902376448","indices":[169,192],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl1gjYU8AAXlnc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl1gjYU8AAXlnc.jpg","url":"https:\/\/t.co\/lEnDZ5KrI3","display_url":"pic.twitter.com\/lEnDZ5KrI3","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187109186099802112\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1588,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":930,"resize":"fit"},"small":{"w":680,"h":527,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187109178902376448,"id_str":"1187109178902376448","indices":[169,192],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl1gjYU8AAXlnc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl1gjYU8AAXlnc.jpg","url":"https:\/\/t.co\/lEnDZ5KrI3","display_url":"pic.twitter.com\/lEnDZ5KrI3","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187109186099802112\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1588,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":930,"resize":"fit"},"small":{"w":680,"h":527,"resize":"fit"}},"ext_alt_text":null},{"id":1187109178902319106,"id_str":"1187109178902319106","indices":[169,192],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl1gjYUEAIkZqA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl1gjYUEAIkZqA.jpg","url":"https:\/\/t.co\/lEnDZ5KrI3","display_url":"pic.twitter.com\/lEnDZ5KrI3","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187109186099802112\/photo\/1","type":"photo","sizes":{"medium":{"w":675,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1334,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187109178898149376,"id_str":"1187109178898149376","indices":[169,192],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl1gjXUcAAPgpb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl1gjXUcAAPgpb.jpg","url":"https:\/\/t.co\/lEnDZ5KrI3","display_url":"pic.twitter.com\/lEnDZ5KrI3","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187109186099802112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":482,"resize":"fit"},"large":{"w":2048,"h":1452,"resize":"fit"},"medium":{"w":1200,"h":851,"resize":"fit"}},"ext_alt_text":null},{"id":1187109178982055936,"id_str":"1187109178982055936","indices":[169,192],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl1gjrUwAAfqLA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl1gjrUwAAfqLA.jpg","url":"https:\/\/t.co\/lEnDZ5KrI3","display_url":"pic.twitter.com\/lEnDZ5KrI3","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187109186099802112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":918,"resize":"fit"},"small":{"w":680,"h":520,"resize":"fit"},"large":{"w":2048,"h":1566,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1185292389549690880,"quoted_status_id_str":"1185292389549690880","quoted_status_permalink":{"url":"https:\/\/t.co\/Z4L0QALidW","expanded":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880","display":"twitter.com\/ekowch\/status\/\u2026"},"quoted_status":{"created_at":"Fri + Oct 18 20:31:41 +0000 2019","id":1185292389549690880,"id_str":"1185292389549690880","full_text":"AECT + Conventioneers! Join me with national leaders from China talking about the + latest trends In China\u2019s vast Education technology transformation CAET + Special Session in Las Vegas: Wed. Oct. 23 at 1:00 PM in Convention Centre + Pavilion 9. Don\u2019t miss it! @AECT #aect19 @edtechchat https:\/\/t.co\/pK7btfip4l","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"aect19","indices":[259,266]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[253,258]},{"screen_name":"edtechchat","name":"Chris + Borg","id":550773912,"id_str":"550773912","indices":[267,278]}],"urls":[],"media":[{"id":1185292370071306240,"id_str":"1185292370071306240","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","url":"https:\/\/t.co\/pK7btfip4l","display_url":"pic.twitter.com\/pK7btfip4l","expanded_url":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185292370071306240,"id_str":"1185292370071306240","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","url":"https:\/\/t.co\/pK7btfip4l","display_url":"pic.twitter.com\/pK7btfip4l","expanded_url":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28518944,"id_str":"28518944","name":"Dr. + Eugene Kowch","screen_name":"ekowch","location":"Calgary Alberta Canada","description":"Scholar, + Principal, Teacher, Engineer, Past President, AECT, & AERA SIG 17 | Helping + leaders create more adaptable education systems #highered #leadership","url":"https:\/\/t.co\/oDa3vYShbl","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oDa3vYShbl","expanded_url":"https:\/\/ekowch.wixsite.com\/systemsthinkingbook","display_url":"ekowch.wixsite.com\/systemsthinkin\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":936,"friends_count":887,"listed_count":0,"created_at":"Fri + Apr 03 06:44:28 +0000 2009","favourites_count":2393,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1315,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/705885195950370816\/i4XMnRs__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/705885195950370816\/i4XMnRs__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28518944\/1561768634","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1185292389549690880,"quoted_status_id_str":"1185292389549690880","quoted_status_permalink":{"url":"https:\/\/t.co\/Z4L0QALidW","expanded":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880","display":"twitter.com\/ekowch\/status\/\u2026"},"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 01:00:19 +0000 2019","id":1187171931411238912,"id_str":"1187171931411238912","full_text":"Do + you need the 8\u2660\ufe0f? I may know where you can find it. #aectpokerrun + #aect19 I''ll be at the book signing in the Pavilion walk thru area from 6-7pm.","truncated":false,"display_text_range":[0,147],"entities":{"hashtags":[{"text":"aectpokerrun","indices":[55,68]},{"text":"aect19","indices":[69,76]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":335613192,"id_str":"335613192","name":"Megan + C. Murtaugh, Ed.D.","screen_name":"MeganCMurtaugh","location":"","description":"Instructional + Design | Curriculum Development | Technology Integration | Online Learning","url":"http:\/\/t.co\/o8Fu5KipP8","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/o8Fu5KipP8","expanded_url":"http:\/\/www.megancmurtaugh.com","display_url":"megancmurtaugh.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":435,"friends_count":446,"listed_count":11,"created_at":"Thu + Jul 14 23:37:30 +0000 2011","favourites_count":767,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":433,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1239713824913186816\/ufuVavfV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1239713824913186816\/ufuVavfV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/335613192\/1584405785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 00:06:49 +0000 2019","id":1187158465447223296,"id_str":"1187158465447223296","full_text":"@DrVirtuality + @AECT Glad to have gone to the session & met you in person. Looking forward + to read your draft of this refreshing new perspective of shift in culture. + #aect19 #aect19inspired","truncated":false,"display_text_range":[20,192],"entities":{"hashtags":[{"text":"aect19","indices":[169,176]},{"text":"aect19inspired","indices":[177,192]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[0,13]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[14,19]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1187139016304418816,"in_reply_to_status_id_str":"1187139016304418816","in_reply_to_user_id":15667548,"in_reply_to_user_id_str":"15667548","in_reply_to_screen_name":"DrVirtuality","user":{"id":459903,"id_str":"459903","name":"\ud83c\uddfa\ud83c\uddf8 + Yin Kreher, PhD","screen_name":"yinbk","location":"","description":"Instructional + Designer | Lead LXD @FourthRev | Boundary-Crosser. Looks for the exquisite + at intersections. All tweets are mine. \ud83d\udc9c #XR #DesignLeadership + \ud83e\udef0","url":"https:\/\/t.co\/nJBVP9cpz7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nJBVP9cpz7","expanded_url":"http:\/\/yinwahkreher.com","display_url":"yinwahkreher.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1043,"friends_count":1124,"listed_count":79,"created_at":"Tue + Jan 02 17:04:05 +0000 2007","favourites_count":7349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"363738","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459903\/1611022238","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"E81C4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 01:13:25 +0000 2019","id":1187175229401063426,"id_str":"1187175229401063426","full_text":"RT + @MeganCMurtaugh: Do you need the 8\u2660\ufe0f? I may know where you can find + it. #aectpokerrun #aect19 I''ll be at the book signing in the Pavilio\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aectpokerrun","indices":[75,88]},{"text":"aect19","indices":[89,96]}],"symbols":[],"user_mentions":[{"screen_name":"MeganCMurtaugh","name":"Megan + C. Murtaugh, Ed.D.","id":335613192,"id_str":"335613192","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 01:00:19 +0000 2019","id":1187171931411238912,"id_str":"1187171931411238912","full_text":"Do + you need the 8\u2660\ufe0f? I may know where you can find it. #aectpokerrun + #aect19 I''ll be at the book signing in the Pavilion walk thru area from 6-7pm.","truncated":false,"display_text_range":[0,147],"entities":{"hashtags":[{"text":"aectpokerrun","indices":[55,68]},{"text":"aect19","indices":[69,76]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":335613192,"id_str":"335613192","name":"Megan + C. Murtaugh, Ed.D.","screen_name":"MeganCMurtaugh","location":"","description":"Instructional + Design | Curriculum Development | Technology Integration | Online Learning","url":"http:\/\/t.co\/o8Fu5KipP8","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/o8Fu5KipP8","expanded_url":"http:\/\/www.megancmurtaugh.com","display_url":"megancmurtaugh.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":435,"friends_count":446,"listed_count":11,"created_at":"Thu + Jul 14 23:37:30 +0000 2011","favourites_count":767,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":433,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1239713824913186816\/ufuVavfV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1239713824913186816\/ufuVavfV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/335613192\/1584405785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 03:09:18 +0000 2019","id":1187204388902916096,"id_str":"1187204388902916096","full_text":"RT + @idtesu: We had the opportunity to meet with Dr. Marcus Childress, former + professor and chair of the Department of Instructional Design\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"idtesu","name":"ESU + Instructional Design & Technology Program","id":107144043,"id_str":"107144043","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1375930460,"id_str":"1375930460","name":"Melissa + Reed, Ph.D.","screen_name":"mreed_reads","location":"Emporia, Kansas","description":"she\/her, + literacy professor, lifelong learner, mother, reader, advocate \nMy views + are mine alone.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":862,"listed_count":16,"created_at":"Wed + Apr 24 02:00:25 +0000 2013","favourites_count":1557,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2840,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1304920960802402304\/ZC5xrzAk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1304920960802402304\/ZC5xrzAk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1375930460\/1398739519","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 16:33:04 +0000 2019","id":1186681889148456960,"id_str":"1186681889148456960","full_text":"We + had the opportunity to meet with Dr. Marcus Childress, former professor and + chair of the Department of Instructional Design & Technology.\n\n#HornetNation + #EmporiaStateUniversity #InstructionalDesignandTechnology #AECT2019 https:\/\/t.co\/c4BCZJaG9b","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"HornetNation","indices":[146,159]},{"text":"EmporiaStateUniversity","indices":[160,183]},{"text":"InstructionalDesignandTechnology","indices":[184,217]},{"text":"AECT2019","indices":[218,227]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186681876557094912,"id_str":"1186681876557094912","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfw4SGUYAAt7Vq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfw4SGUYAAt7Vq.jpg","url":"https:\/\/t.co\/c4BCZJaG9b","display_url":"pic.twitter.com\/c4BCZJaG9b","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186681889148456960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186681876557094912,"id_str":"1186681876557094912","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfw4SGUYAAt7Vq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfw4SGUYAAt7Vq.jpg","url":"https:\/\/t.co\/c4BCZJaG9b","display_url":"pic.twitter.com\/c4BCZJaG9b","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186681889148456960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 01:15:57 +0000 2019","id":1187175863453995008,"id_str":"1187175863453995008","full_text":"RT + @jennkepka: \"Faculty perceptions of Smartphone integration in faculty development\" + -- fascinating that even those with no-phone policies\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jennkepka","name":"Jenn + Kepka","id":3733671685,"id_str":"3733671685","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 22:22:11 +0000 2019","id":1187132136878301185,"id_str":"1187132136878301185","full_text":"\"Faculty + perceptions of Smartphone integration in faculty development\" -- fascinating + that even those with no-phone policies still use them in classes! #aect19inspired + by @Jeanna_Cronk et al. https:\/\/t.co\/Jm9IM3eiVN","truncated":false,"display_text_range":[0,215],"entities":{"hashtags":[{"text":"aect19inspired","indices":[152,167]}],"symbols":[],"user_mentions":[{"screen_name":"Jeanna_Cronk","name":"Jeanna + Cronk, Ed.D.","id":434594832,"id_str":"434594832","indices":[171,184]}],"urls":[{"url":"https:\/\/t.co\/Jm9IM3eiVN","expanded_url":"http:\/\/tinyurl.com\/y2uyalxp","display_url":"tinyurl.com\/y2uyalxp","indices":[192,215]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3733671685,"id_str":"3733671685","name":"Jenn + Kepka","screen_name":"jennkepka","location":"Oregon, USA","description":"Outreach\/retention\/tutoring + faculty in OR; doc student in #edtech at Boise St. Past: UO, WOU, KU. \u2764 + #oer & \u2615 & \u26f8. Views my own. she\/her\/hers","url":"https:\/\/t.co\/nvazHyg5JB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nvazHyg5JB","expanded_url":"http:\/\/jennkepka.com","display_url":"jennkepka.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":700,"friends_count":1225,"listed_count":45,"created_at":"Wed + Sep 30 05:39:55 +0000 2015","favourites_count":19836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3733671685\/1446791014","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 03:17:28 +0000 2019","id":1187206443566391296,"id_str":"1187206443566391296","full_text":"RT + @DKSch: #aect19inspired mostly smiling champions. https:\/\/t.co\/JuSeJWCfJY","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]}],"symbols":[],"user_mentions":[{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[3,9]}],"urls":[],"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}},"source_status_id":1187033028100415488,"source_status_id_str":"1187033028100415488","source_user_id":38657815,"source_user_id_str":"38657815"}]},"extended_entities":{"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}},"source_status_id":1187033028100415488,"source_status_id_str":"1187033028100415488","source_user_id":38657815,"source_user_id_str":"38657815","ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:48:22 +0000 2019","id":1187033028100415488,"id_str":"1187033028100415488","full_text":"#aect19inspired + mostly smiling champions. https:\/\/t.co\/JuSeJWCfJY","truncated":false,"display_text_range":[0,41],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 22:06:11 +0000 2019","id":1187128109641814016,"id_str":"1187128109641814016","full_text":"Proud + to represent @ConnectWise with ID @jennird in Las Vegas for @AECT. #instructionaldesign + #aect19 #aect19inspired https:\/\/t.co\/LyUKc62IYm","truncated":false,"display_text_range":[0,117],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[73,93]},{"text":"aect19","indices":[94,101]},{"text":"aect19inspired","indices":[102,117]}],"symbols":[],"user_mentions":[{"screen_name":"ConnectWise","name":"ConnectWise","id":16668855,"id_str":"16668855","indices":[19,31]},{"screen_name":"jennird","name":"Jennifer + DeLarm","id":24223937,"id_str":"24223937","indices":[40,48]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[66,71]}],"urls":[],"media":[{"id":1187128096618450945,"id_str":"1187128096618450945","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmGttXUEAEPrMn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmGttXUEAEPrMn.jpg","url":"https:\/\/t.co\/LyUKc62IYm","display_url":"pic.twitter.com\/LyUKc62IYm","expanded_url":"https:\/\/twitter.com\/nikiwats23\/status\/1187128109641814016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"small":{"w":543,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187128096618450945,"id_str":"1187128096618450945","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmGttXUEAEPrMn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmGttXUEAEPrMn.jpg","url":"https:\/\/t.co\/LyUKc62IYm","display_url":"pic.twitter.com\/LyUKc62IYm","expanded_url":"https:\/\/twitter.com\/nikiwats23\/status\/1187128109641814016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"small":{"w":543,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187128096626864128,"id_str":"1187128096626864128","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmGttZUcAAXjb1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmGttZUcAAXjb1.jpg","url":"https:\/\/t.co\/LyUKc62IYm","display_url":"pic.twitter.com\/LyUKc62IYm","expanded_url":"https:\/\/twitter.com\/nikiwats23\/status\/1187128109641814016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":981,"h":1200,"resize":"fit"},"small":{"w":556,"h":680,"resize":"fit"},"large":{"w":1440,"h":1762,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2861017036,"id_str":"2861017036","name":"Niki + Watson","screen_name":"nikiwats23","location":"","description":"lover, not + a fighter","url":"https:\/\/t.co\/yDBCkJthUM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yDBCkJthUM","expanded_url":"http:\/\/www.nikishawatson.com","display_url":"nikishawatson.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":157,"friends_count":700,"listed_count":19,"created_at":"Tue + Nov 04 16:58:08 +0000 2014","favourites_count":845,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":624,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593920214175186944\/KosJSXMv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593920214175186944\/KosJSXMv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2861017036\/1442268041","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 22:15:15 +0000 2019","id":1187130392114941957,"id_str":"1187130392114941957","full_text":"BSU + EdD alumna Dr. @Jeanna_Cronk of @NorthwoodU presenting her research, \u201cFaculty + perceptions of smartphone integration in faculty development: A case study\u201d + at the @AECT conference. #aect19inspired https:\/\/t.co\/W1bVd74Qwj","truncated":false,"display_text_range":[0,198],"entities":{"hashtags":[{"text":"aect19inspired","indices":[183,198]}],"symbols":[],"user_mentions":[{"screen_name":"Jeanna_Cronk","name":"Jeanna + Cronk, Ed.D.","id":434594832,"id_str":"434594832","indices":[19,32]},{"screen_name":"NorthwoodU","name":"Northwood + University","id":26522857,"id_str":"26522857","indices":[36,47]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[165,170]}],"urls":[],"media":[{"id":1187130384741330944,"id_str":"1187130384741330944","indices":[199,222],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmIy5SUcAAnx0n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmIy5SUcAAnx0n.jpg","url":"https:\/\/t.co\/W1bVd74Qwj","display_url":"pic.twitter.com\/W1bVd74Qwj","expanded_url":"https:\/\/twitter.com\/edtechdoc\/status\/1187130392114941957\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187130384741330944,"id_str":"1187130384741330944","indices":[199,222],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmIy5SUcAAnx0n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmIy5SUcAAnx0n.jpg","url":"https:\/\/t.co\/W1bVd74Qwj","display_url":"pic.twitter.com\/W1bVd74Qwj","expanded_url":"https:\/\/twitter.com\/edtechdoc\/status\/1187130392114941957\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1101331518692184065,"id_str":"1101331518692184065","name":"BSU + EdTech AGP","screen_name":"EdTechAGP","location":"Boise, ID","description":"Advanced + Grad Programs. 100% online Ed Specialist & Doctoral programs in educational + technology at Boise State University. EdD founded 2012. EdS founded 2016.","url":"https:\/\/t.co\/27jpLvNAsW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/27jpLvNAsW","expanded_url":"https:\/\/sites.google.com\/boisestate.edu\/edtech-advanced-grad-programs\/home","display_url":"sites.google.com\/boisestate.edu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":147,"friends_count":89,"listed_count":4,"created_at":"Fri + Mar 01 04:01:10 +0000 2019","favourites_count":201,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":142,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1101332437634826241\/bPwzWhxZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1101332437634826241\/bPwzWhxZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1101331518692184065\/1551413241","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 00:27:58 +0000 2019","id":1187163790598537216,"id_str":"1187163790598537216","full_text":"We + had a blast in my session!!!! @SpheroEdu was a hot topic using @specdrums_rings + to enhance music education. @AECT @AECTTIL #aect19inspired https:\/\/t.co\/PkdCGOmdUj","truncated":false,"display_text_range":[0,141],"entities":{"hashtags":[{"text":"aect19inspired","indices":[126,141]}],"symbols":[],"user_mentions":[{"screen_name":"SpheroEdu","name":"Sphero + Education","id":1335870978,"id_str":"1335870978","indices":[33,43]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[111,116]},{"screen_name":"AECTTIL","name":"AECT + TIL","id":4921781685,"id_str":"4921781685","indices":[117,125]}],"urls":[],"media":[{"id":1187163783296253952,"id_str":"1187163783296253952","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmnK8mVAAAqbsR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmnK8mVAAAqbsR.jpg","url":"https:\/\/t.co\/PkdCGOmdUj","display_url":"pic.twitter.com\/PkdCGOmdUj","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1187163790598537216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187163783296253952,"id_str":"1187163783296253952","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmnK8mVAAAqbsR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmnK8mVAAAqbsR.jpg","url":"https:\/\/t.co\/PkdCGOmdUj","display_url":"pic.twitter.com\/PkdCGOmdUj","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1187163790598537216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187163783296237568,"id_str":"1187163783296237568","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmnK8mUwAAC8b9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmnK8mUwAAC8b9.jpg","url":"https:\/\/t.co\/PkdCGOmdUj","display_url":"pic.twitter.com\/PkdCGOmdUj","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1187163790598537216\/photo\/1","type":"photo","sizes":{"medium":{"w":890,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1519,"h":2048,"resize":"fit"},"small":{"w":504,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":763378325712674818,"id_str":"763378325712674818","name":"Tay + Fess, M.Ed.","screen_name":"Captain_Fess","location":"Naples, FL","description":"Music + Educator l \ud83c\udff3\ufe0f\u200d\ud83c\udf08 l Presenter l UDL l FGCU l + Doctoral Student Ed.D. l EdTech l Disney Geek","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":576,"listed_count":3,"created_at":"Wed + Aug 10 14:15:50 +0000 2016","favourites_count":1730,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":665,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/763378325712674818\/1595378873","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 03:52:50 +0000 2019","id":1187215345737711616,"id_str":"1187215345737711616","full_text":"RT + @richardewest: Do you feel #AECTinspired? Share your expertise by contributing + a chapter to our newest OER book on Instructional Design,\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECTinspired","indices":[30,43]}],"symbols":[],"user_mentions":[{"screen_name":"richardewest","name":"Rick + West","id":17639668,"id_str":"17639668","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 01:32:40 +0000 2019","id":1187180070638456833,"id_str":"1187180070638456833","full_text":"Do + you feel #AECTinspired? Share your expertise by contributing a chapter to + our newest OER book on Instructional Design, edited with Jason McDonald and + hosted by @@EdTech_Books. See the call for chapters below, and we''re launching + next year. #AECT19 \n\nhttps:\/\/t.co\/7e0cQWBg90","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"AECTinspired","indices":[12,25]},{"text":"AECT19","indices":[243,250]}],"symbols":[],"user_mentions":[{"screen_name":"EdTech_Books","name":"EdTech + Books","id":1113476916076367872,"id_str":"1113476916076367872","indices":[164,177]}],"urls":[{"url":"https:\/\/t.co\/7e0cQWBg90","expanded_url":"https:\/\/edtechbooks.org\/id\/call_for_proposals","display_url":"edtechbooks.org\/id\/call_for_pr\u2026","indices":[255,278]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17639668,"id_str":"17639668","name":"Rick + West","screen_name":"richardewest","location":"Provo, ut","description":"Instructional + Designer, Researcher, & Evaluator at Brigham Young University","url":"http:\/\/t.co\/Nc39wWEhGM","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Nc39wWEhGM","expanded_url":"http:\/\/richardewest.com","display_url":"richardewest.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":223,"listed_count":39,"created_at":"Wed + Nov 26 02:26:26 +0000 2008","favourites_count":799,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3339,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17639668\/1446650027","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 03:58:10 +0000 2019","id":1187216686048579584,"id_str":"1187216686048579584","full_text":"RT + @JenM: Back atcha! #aectinspired #aect19 @aectdddivision @DrRossPerkins https:\/\/t.co\/jnOUByzw90","truncated":false,"display_text_range":[0,98],"entities":{"hashtags":[{"text":"aectinspired","indices":[22,35]},{"text":"aect19","indices":[36,43]}],"symbols":[],"user_mentions":[{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[3,8]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[44,59]},{"screen_name":"DrRossPerkins","name":"Ross + Perkins, PhD","id":2905458781,"id_str":"2905458781","indices":[60,74]}],"urls":[{"url":"https:\/\/t.co\/jnOUByzw90","expanded_url":"https:\/\/twitter.com\/DrRossPerkins\/status\/1187005731704229888","display_url":"twitter.com\/DrRossPerkins\/\u2026","indices":[75,98]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:12:21 +0000 2019","id":1187023963257331712,"id_str":"1187023963257331712","full_text":"Back + atcha! #aectinspired #aect19 @aectdddivision @DrRossPerkins https:\/\/t.co\/jnOUByzw90","truncated":false,"display_text_range":[0,64],"entities":{"hashtags":[{"text":"aectinspired","indices":[12,25]},{"text":"aect19","indices":[26,33]}],"symbols":[],"user_mentions":[{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[34,49]},{"screen_name":"DrRossPerkins","name":"Ross + Perkins, PhD","id":2905458781,"id_str":"2905458781","indices":[50,64]}],"urls":[{"url":"https:\/\/t.co\/jnOUByzw90","expanded_url":"https:\/\/twitter.com\/DrRossPerkins\/status\/1187005731704229888","display_url":"twitter.com\/DrRossPerkins\/\u2026","indices":[65,88]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":13515,"id_str":"13515","name":"Jennifer + Maddrell","screen_name":"JenM","location":"Chicago, IL","description":"Teach, + study & design learning experiences","url":"https:\/\/t.co\/725I4m2QWv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/725I4m2QWv","expanded_url":"https:\/\/jennifermaddrell.com","display_url":"jennifermaddrell.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2420,"friends_count":4448,"listed_count":80,"created_at":"Tue + Nov 21 13:57:14 +0000 2006","favourites_count":7779,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3455,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13515\/1604669803","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187005731704229888,"quoted_status_id_str":"1187005731704229888","quoted_status_permalink":{"url":"https:\/\/t.co\/jnOUByzw90","expanded":"https:\/\/twitter.com\/DrRossPerkins\/status\/1187005731704229888","display":"twitter.com\/DrRossPerkins\/\u2026"},"quoted_status":{"created_at":"Wed + Oct 23 13:59:54 +0000 2019","id":1187005731704229888,"id_str":"1187005731704229888","full_text":"I\u2019m + inspired by the research & practice contributions to the field of #instructionaldesign + by these two amazing colleagues, Dr. Monica Tracey and Dr. Jennifer Maddrell. + #aect19inspired #aectRTD @aectdddivision @JenM @design4learn https:\/\/t.co\/G5VswE0eu0","truncated":false,"display_text_range":[0,235],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[76,96]},{"text":"aect19inspired","indices":[175,190]},{"text":"aectRTD","indices":[191,199]}],"symbols":[],"user_mentions":[{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[200,215]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[216,221]},{"screen_name":"design4learn","name":"Designers + for Learning","id":1610558420,"id_str":"1610558420","indices":[222,235]}],"urls":[],"media":[{"id":1187005725005844480,"id_str":"1187005725005844480","indices":[236,259],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkXavlUEAALckh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkXavlUEAALckh.jpg","url":"https:\/\/t.co\/G5VswE0eu0","display_url":"pic.twitter.com\/G5VswE0eu0","expanded_url":"https:\/\/twitter.com\/DrRossPerkins\/status\/1187005731704229888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187005725005844480,"id_str":"1187005725005844480","indices":[236,259],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkXavlUEAALckh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkXavlUEAALckh.jpg","url":"https:\/\/t.co\/G5VswE0eu0","display_url":"pic.twitter.com\/G5VswE0eu0","expanded_url":"https:\/\/twitter.com\/DrRossPerkins\/status\/1187005731704229888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2905458781,"id_str":"2905458781","name":"Ross + Perkins, PhD","screen_name":"DrRossPerkins","location":"Apex, NC","description":"Asc + Prof @ Boise State. EdS\/EdD ProgCoord. https:\/\/t.co\/8jp7WXqbV1 | Huge + listserv influencer, 1998-2006.","url":"https:\/\/t.co\/8jp7WXqbV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[43,66]}]}},"protected":false,"followers_count":773,"friends_count":485,"listed_count":21,"created_at":"Thu + Nov 20 19:52:09 +0000 2014","favourites_count":3672,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2751,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2905458781\/1618315302","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1187005731704229888,"quoted_status_id_str":"1187005731704229888","quoted_status_permalink":{"url":"https:\/\/t.co\/jnOUByzw90","expanded":"https:\/\/twitter.com\/DrRossPerkins\/status\/1187005731704229888","display":"twitter.com\/DrRossPerkins\/\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:39:08 +0000 2019","id":1187121299371393025,"id_str":"1187121299371393025","full_text":"Hey, + that\u2019s @profoyarzun presenting! (And also the back of my head.) \ud83d\ude04 + #aect19 #aect19inspired https:\/\/t.co\/tAUnv6bAtQ","truncated":false,"display_text_range":[0,94],"entities":{"hashtags":[{"text":"aect19","indices":[71,78]},{"text":"aect19inspired","indices":[79,94]}],"symbols":[],"user_mentions":[{"screen_name":"profoyarzun","name":"Beth + Oyarzun","id":19023356,"id_str":"19023356","indices":[12,24]}],"urls":[{"url":"https:\/\/t.co\/tAUnv6bAtQ","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1187112443085852672","display_url":"twitter.com\/jennkepka\/stat\u2026","indices":[95,118]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":30278154,"id_str":"30278154","name":"Dr. + Dave Mulder","screen_name":"d_mulder","location":"Iowa","description":"Christ-follower. + Husband of one and dad of two. Professor of Education at @dordtuniversity. + #EdTech is my jam. My tweets speak only for me.","url":"https:\/\/t.co\/i9IOUI9RZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/i9IOUI9RZC","expanded_url":"https:\/\/drdave.substack.com\/","display_url":"drdave.substack.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3921,"friends_count":949,"listed_count":249,"created_at":"Fri + Apr 10 18:27:10 +0000 2009","favourites_count":39976,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30278154\/1568172162","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187112443085852672,"quoted_status_id_str":"1187112443085852672","quoted_status_permalink":{"url":"https:\/\/t.co\/tAUnv6bAtQ","expanded":"https:\/\/twitter.com\/jennkepka\/status\/1187112443085852672","display":"twitter.com\/jennkepka\/stat\u2026"},"quoted_status":{"created_at":"Wed + Oct 23 21:03:56 +0000 2019","id":1187112443085852672,"id_str":"1187112443085852672","full_text":"\"Time + management matters: online faculty perceptions of helpfulness of time management + strategies\" at #aect19inspired -- would be hard to find a session more targeted + to my interests! https:\/\/t.co\/phJBmMbmcR","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"aect19inspired","indices":[102,117]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187112241608310784,"id_str":"1187112241608310784","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl4S02UwAAlu7Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl4S02UwAAlu7Q.jpg","url":"https:\/\/t.co\/phJBmMbmcR","display_url":"pic.twitter.com\/phJBmMbmcR","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1187112443085852672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187112241608310784,"id_str":"1187112241608310784","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl4S02UwAAlu7Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl4S02UwAAlu7Q.jpg","url":"https:\/\/t.co\/phJBmMbmcR","display_url":"pic.twitter.com\/phJBmMbmcR","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1187112443085852672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":"Slide + that says Time management matters: online faculty perceptions of helpfulness + of time management strategies"}]},"source":"\u003ca href=\"https:\/\/mobile.twitter.com\" + rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3733671685,"id_str":"3733671685","name":"Jenn + Kepka","screen_name":"jennkepka","location":"Oregon, USA","description":"Outreach\/retention\/tutoring + faculty in OR; doc student in #edtech at Boise St. Past: UO, WOU, KU. \u2764 + #oer & \u2615 & \u26f8. Views my own. she\/her\/hers","url":"https:\/\/t.co\/nvazHyg5JB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nvazHyg5JB","expanded_url":"http:\/\/jennkepka.com","display_url":"jennkepka.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":700,"friends_count":1225,"listed_count":45,"created_at":"Wed + Sep 30 05:39:55 +0000 2015","favourites_count":19836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3733671685\/1446791014","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:54:05 +0000 2019","id":1187125063935352832,"id_str":"1187125063935352832","full_text":"My + pills take me for strength #aect19","truncated":false,"display_text_range":[0,37],"entities":{"hashtags":[{"text":"aect19","indices":[30,37]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 02:34:15 +0000 2019","id":1187195568348524544,"id_str":"1187195568348524544","full_text":"@WEHSLibrary + @AECTGSA @PaulineMuljana @Stephsteph83 @AECT It was great meeting and chatting + with you today! Looking forward to staying connected and learning more about + your work and experience with social media connections for remote students! + #aect19","truncated":false,"display_text_range":[58,252],"entities":{"hashtags":[{"text":"aect19","indices":[245,252]}],"symbols":[],"user_mentions":[{"screen_name":"WEHSLibrary","name":"Weslaco + East High School Library-Renee Dyer","id":175049060,"id_str":"175049060","indices":[0,12]},{"screen_name":"AECTGSA","name":"AECT + GSA","id":727873186809810946,"id_str":"727873186809810946","indices":[13,21]},{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[22,37]},{"screen_name":"Stephsteph83","name":"Dr. + Stephanee Stephens","id":427060068,"id_str":"427060068","indices":[38,51]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[52,57]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187192011549360128,"in_reply_to_status_id_str":"1187192011549360128","in_reply_to_user_id":175049060,"in_reply_to_user_id_str":"175049060","in_reply_to_screen_name":"WEHSLibrary","user":{"id":175808323,"id_str":"175808323","name":"Nancye + Blair Black","screen_name":"NancyeBlackEdu","location":"Central Florida","description":"Maximizer + of Potential, Defender of Dignity, #Edtech Consultant\/Speaker\/Author, #ISTECert, + @ISTE AI Explorations ProjectLead, ProjectSTEM, @tcgameslab, @MASClab","url":"https:\/\/t.co\/MVxzTa595W","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MVxzTa595W","expanded_url":"http:\/\/engagingeducation.net","display_url":"engagingeducation.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3005,"friends_count":2358,"listed_count":173,"created_at":"Sat + Aug 07 17:38:59 +0000 2010","favourites_count":5091,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3972,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1083931148475080704\/fhxis1fO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1083931148475080704\/fhxis1fO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175808323\/1547264959","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 00:26:33 +0000 2019","id":1187163432161689600,"id_str":"1187163432161689600","full_text":"Online + Students\u2019 perspectives joint session with Eunjyu Yu sharing results from + a writing class study & the disposition of the online learner (DOL) instrument + published in the Journal of Strategic Innovation and Sustainability (Ensmann, + Wilson, Johnston, Almerico, 2019) #aect2019 https:\/\/t.co\/Jo96Q5u3A5","truncated":false,"display_text_range":[0,284],"entities":{"hashtags":[{"text":"aect2019","indices":[275,284]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187163421797543936,"id_str":"1187163421797543936","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmm156UcAA2ORL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmm156UcAA2ORL.jpg","url":"https:\/\/t.co\/Jo96Q5u3A5","display_url":"pic.twitter.com\/Jo96Q5u3A5","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187163432161689600\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187163421797543936,"id_str":"1187163421797543936","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmm156UcAA2ORL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmm156UcAA2ORL.jpg","url":"https:\/\/t.co\/Jo96Q5u3A5","display_url":"pic.twitter.com\/Jo96Q5u3A5","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187163432161689600\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187163421843681285,"id_str":"1187163421843681285","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmm16FUcAUTTeA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmm16FUcAUTTeA.jpg","url":"https:\/\/t.co\/Jo96Q5u3A5","display_url":"pic.twitter.com\/Jo96Q5u3A5","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187163432161689600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187163421843673089,"id_str":"1187163421843673089","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmm16FUUAEr7s9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmm16FUUAEr7s9.jpg","url":"https:\/\/t.co\/Jo96Q5u3A5","display_url":"pic.twitter.com\/Jo96Q5u3A5","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187163432161689600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187163421835313152,"id_str":"1187163421835313152","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmm16DUwAA8upb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmm16DUwAA8upb.jpg","url":"https:\/\/t.co\/Jo96Q5u3A5","display_url":"pic.twitter.com\/Jo96Q5u3A5","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187163432161689600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 22:22:11 +0000 2019","id":1187132136878301185,"id_str":"1187132136878301185","full_text":"\"Faculty + perceptions of Smartphone integration in faculty development\" -- fascinating + that even those with no-phone policies still use them in classes! #aect19inspired + by @Jeanna_Cronk et al. https:\/\/t.co\/Jm9IM3eiVN","truncated":false,"display_text_range":[0,215],"entities":{"hashtags":[{"text":"aect19inspired","indices":[152,167]}],"symbols":[],"user_mentions":[{"screen_name":"Jeanna_Cronk","name":"Jeanna + Cronk, Ed.D.","id":434594832,"id_str":"434594832","indices":[171,184]}],"urls":[{"url":"https:\/\/t.co\/Jm9IM3eiVN","expanded_url":"http:\/\/tinyurl.com\/y2uyalxp","display_url":"tinyurl.com\/y2uyalxp","indices":[192,215]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3733671685,"id_str":"3733671685","name":"Jenn + Kepka","screen_name":"jennkepka","location":"Oregon, USA","description":"Outreach\/retention\/tutoring + faculty in OR; doc student in #edtech at Boise St. Past: UO, WOU, KU. \u2764 + #oer & \u2615 & \u26f8. Views my own. she\/her\/hers","url":"https:\/\/t.co\/nvazHyg5JB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nvazHyg5JB","expanded_url":"http:\/\/jennkepka.com","display_url":"jennkepka.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":700,"friends_count":1225,"listed_count":45,"created_at":"Wed + Sep 30 05:39:55 +0000 2015","favourites_count":19836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3733671685\/1446791014","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 23:20:12 +0000 2019","id":1187146736122224641,"id_str":"1187146736122224641","full_text":"Will + be answering some tweetchat questions for the gsa aect inpire session for + the next hour. Feel free to join in! #aectgsa #aect19inspired","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aectgsa","indices":[116,124]},{"text":"aect19inspired","indices":[125,140]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15122229,"id_str":"15122229","name":"NorthMetroTech","screen_name":"NorthMetroTech","location":"Colorado","description":"Tweeting + on Colorado Small Business, Technology, Social Media, AR, Analytics, Geolocation + and Virtual Reality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":627,"friends_count":599,"listed_count":58,"created_at":"Sun + Jun 15 04:17:41 +0000 2008","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6661,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1009258870571655169\/YY_AWkJi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1009258870571655169\/YY_AWkJi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15122229\/1473476873","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"000000","profile_sidebar_border_color":"969696","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 01:08:11 +0000 2019","id":1187173910267097088,"id_str":"1187173910267097088","full_text":"My + goodness I was so honored to present with this fantastic group at #aect19 + this morning! Thank you all for including me. https:\/\/t.co\/8QcseMsPGt","truncated":false,"display_text_range":[0,122],"entities":{"hashtags":[{"text":"aect19","indices":[69,76]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/8QcseMsPGt","expanded_url":"https:\/\/twitter.com\/WEHSLibrary\/status\/1186873069593251840","display_url":"twitter.com\/WEHSLibrary\/st\u2026","indices":[123,146]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27742120,"id_str":"27742120","name":"Kathy + Mansfield","screen_name":"KathyMansfield","location":"New Braunfels, TX","description":"Perky + Privacy Girl. Instructional Ed Tech. Coffee. Instructional Design doctoral + candidate. Student data privacy advocate.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":353,"friends_count":565,"listed_count":4,"created_at":"Mon + Mar 30 22:07:14 +0000 2009","favourites_count":3189,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1363,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1479956065018122245\/3ylxWDWM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1479956065018122245\/3ylxWDWM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27742120\/1589406705","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186873069593251840,"quoted_status_id_str":"1186873069593251840","quoted_status_permalink":{"url":"https:\/\/t.co\/8QcseMsPGt","expanded":"https:\/\/twitter.com\/WEHSLibrary\/status\/1186873069593251840","display":"twitter.com\/WEHSLibrary\/st\u2026"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 04:00:35 +0000 2019","id":1187217294956605440,"id_str":"1187217294956605440","full_text":"RT + @chloed2040: Membership to interest groups is important- to meet professionals + with expertise in your career, building an online presenc\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chloed2040","name":"Chloe + D","id":1169290337594093568,"id_str":"1169290337594093568","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 03:46:27 +0000 2019","id":1187213737339621376,"id_str":"1187213737339621376","full_text":"Membership + to interest groups is important- to meet professionals with expertise in your + career, building an online presence can connect you with people all over the + world! You never know what opportunity you will come across when social networking\n#AECT19 + #AECTinpired #fsu2040 https:\/\/t.co\/l1O9GwlM7e","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"AECT19","indices":[249,256]},{"text":"AECTinpired","indices":[257,269]},{"text":"fsu2040","indices":[270,278]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/l1O9GwlM7e","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186710076242976769","display_url":"twitter.com\/ISLT_FSU\/statu\u2026","indices":[279,302]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1169290337594093568,"id_str":"1169290337594093568","name":"Chloe + D","screen_name":"chloed2040","location":"","description":"fsu c\/o 2019!! + Eme2040 account","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":11,"listed_count":1,"created_at":"Wed + Sep 04 16:45:29 +0000 2019","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":34,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1169296165059346433\/-Uq_9Q5D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169296165059346433\/-Uq_9Q5D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1169290337594093568\/1567616826","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186710076242976769,"quoted_status_id_str":"1186710076242976769","quoted_status_permalink":{"url":"https:\/\/t.co\/l1O9GwlM7e","expanded":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186710076242976769","display":"twitter.com\/ISLT_FSU\/statu\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 18:25:04 +0000 2019","id":1186710076242976769,"id_str":"1186710076242976769","full_text":"What + are they talking at digital conference #backchannel? From building #PLN to + establishing online presence: use of membership categorization and #positioning + theory as analytic frameworks. #FSU #ISLT @hajeenzang Tue, 3-3:50pm Paviillion + 9. #AECT19 #AECT2019 #InformalLearning https:\/\/t.co\/2vrEmzSlg0","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"backchannel","indices":[44,56]},{"text":"PLN","indices":[72,76]},{"text":"positioning","indices":[147,159]},{"text":"FSU","indices":[191,195]},{"text":"ISLT","indices":[196,201]},{"text":"AECT19","indices":[242,249]},{"text":"AECT2019","indices":[250,259]},{"text":"InformalLearning","indices":[260,277]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186710074024251392,"id_str":"1186710074024251392","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgKhl2X0AA-1_1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgKhl2X0AA-1_1.jpg","url":"https:\/\/t.co\/2vrEmzSlg0","display_url":"pic.twitter.com\/2vrEmzSlg0","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186710076242976769\/photo\/1","type":"photo","sizes":{"large":{"w":1414,"h":795,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186710074024251392,"id_str":"1186710074024251392","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgKhl2X0AA-1_1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgKhl2X0AA-1_1.jpg","url":"https:\/\/t.co\/2vrEmzSlg0","display_url":"pic.twitter.com\/2vrEmzSlg0","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186710076242976769\/photo\/1","type":"photo","sizes":{"large":{"w":1414,"h":795,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186710076242976769,"quoted_status_id_str":"1186710076242976769","quoted_status_permalink":{"url":"https:\/\/t.co\/l1O9GwlM7e","expanded":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186710076242976769","display":"twitter.com\/ISLT_FSU\/statu\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 23:19:08 +0000 2019","id":1187146465656705025,"id_str":"1187146465656705025","full_text":"Q1. + Who are you and where are you from? #aect19inspired #aectgsa","truncated":false,"display_text_range":[0,65],"entities":{"hashtags":[{"text":"aect19inspired","indices":[40,55]},{"text":"aectgsa","indices":[57,65]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14994538,"id_str":"14994538","name":"Kzenovka","screen_name":"kzenovka","location":"Metaverse","description":"educator, + coolhunter, and sometimes puppetmaster. Metagame Book Club, Games & Sim Network + and Inevitable Instructors","url":"https:\/\/t.co\/SN1thrlVqD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SN1thrlVqD","expanded_url":"https:\/\/sites.google.com\/site\/metagamebookclub\/","display_url":"sites.google.com\/site\/metagameb\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1338,"friends_count":3152,"listed_count":228,"created_at":"Tue + Jun 03 16:35:29 +0000 2008","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15007,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14994538\/1436550079","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 23:21:03 +0000 2019","id":1187146948815421441,"id_str":"1187146948815421441","full_text":"\u201cIt\u2019s + not about the tool, it\u2019s about the strategy\u201d says @JoiMoore in the + GSA: What is the Future of our Field? panel @AECT I love it when I hear people + affirm the reality in education we face when integrating tech into instruction + #aect19inspired","truncated":false,"display_text_range":[0,246],"entities":{"hashtags":[{"text":"aect19inspired","indices":[231,246]}],"symbols":[],"user_mentions":[{"screen_name":"JoiMoore","name":"Joi + Moore","id":26845844,"id_str":"26845844","indices":[56,65]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[117,122]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 01:15:05 +0000 2019","id":1187175645954097152,"id_str":"1187175645954097152","full_text":"RT + @RitaFennelly: \u201cIt\u2019s not about the tool, it\u2019s about the strategy\u201d + says @JoiMoore in the GSA: What is the Future of our Field? panel @AEC\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"JoiMoore","name":"Joi + Moore","id":26845844,"id_str":"26845844","indices":[74,83]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 23:21:03 +0000 2019","id":1187146948815421441,"id_str":"1187146948815421441","full_text":"\u201cIt\u2019s + not about the tool, it\u2019s about the strategy\u201d says @JoiMoore in the + GSA: What is the Future of our Field? panel @AECT I love it when I hear people + affirm the reality in education we face when integrating tech into instruction + #aect19inspired","truncated":false,"display_text_range":[0,246],"entities":{"hashtags":[{"text":"aect19inspired","indices":[231,246]}],"symbols":[],"user_mentions":[{"screen_name":"JoiMoore","name":"Joi + Moore","id":26845844,"id_str":"26845844","indices":[56,65]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[117,122]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 00:54:09 +0000 2019","id":1187170379850076160,"id_str":"1187170379850076160","full_text":"It + has been a fantastic day of learning, thinking, conversation, and inspiration + at #aect19. And always great to hang out with my @edtechbsu friends! I am + #aect19inspired.","truncated":false,"display_text_range":[0,171],"entities":{"hashtags":[{"text":"aect19","indices":[84,91]},{"text":"aect19inspired","indices":[155,170]}],"symbols":[],"user_mentions":[{"screen_name":"edtechbsu","name":"EDTECH@Boise + State","id":29818149,"id_str":"29818149","indices":[130,140]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":30278154,"id_str":"30278154","name":"Dr. + Dave Mulder","screen_name":"d_mulder","location":"Iowa","description":"Christ-follower. + Husband of one and dad of two. Professor of Education at @dordtuniversity. + #EdTech is my jam. My tweets speak only for me.","url":"https:\/\/t.co\/i9IOUI9RZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/i9IOUI9RZC","expanded_url":"https:\/\/drdave.substack.com\/","display_url":"drdave.substack.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3921,"friends_count":949,"listed_count":249,"created_at":"Fri + Apr 10 18:27:10 +0000 2009","favourites_count":39976,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30278154\/1568172162","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 03:09:04 +0000 2019","id":1187204332405641216,"id_str":"1187204332405641216","full_text":"RT + @idtesu: The #AECT2019 Conference is a place of encounters. We ran into Dr. + Sungwoong Lee (former professor for the IDT program), and Da\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT2019","indices":[16,25]}],"symbols":[],"user_mentions":[{"screen_name":"idtesu","name":"ESU + Instructional Design & Technology Program","id":107144043,"id_str":"107144043","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1375930460,"id_str":"1375930460","name":"Melissa + Reed, Ph.D.","screen_name":"mreed_reads","location":"Emporia, Kansas","description":"she\/her, + literacy professor, lifelong learner, mother, reader, advocate \nMy views + are mine alone.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":862,"listed_count":16,"created_at":"Wed + Apr 24 02:00:25 +0000 2013","favourites_count":1557,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2840,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1304920960802402304\/ZC5xrzAk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1304920960802402304\/ZC5xrzAk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1375930460\/1398739519","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 06:34:41 +0000 2019","id":1186893689827708928,"id_str":"1186893689827708928","full_text":"The + #AECT2019 Conference is a place of encounters. We ran into Dr. Sungwoong Lee + (former professor for the IDT program), and Dan Watanabe (IDT alum), who is + currently visiting from Korea. https:\/\/t.co\/tfGYtasit1","truncated":false,"display_text_range":[0,187],"entities":{"hashtags":[{"text":"AECT2019","indices":[4,13]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186893670538043398,"id_str":"1186893670538043398","indices":[188,211],"media_url":"http:\/\/pbs.twimg.com\/media\/EHixgUKUYAYzoI8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHixgUKUYAYzoI8.jpg","url":"https:\/\/t.co\/tfGYtasit1","display_url":"pic.twitter.com\/tfGYtasit1","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186893689827708928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186893670538043398,"id_str":"1186893670538043398","indices":[188,211],"media_url":"http:\/\/pbs.twimg.com\/media\/EHixgUKUYAYzoI8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHixgUKUYAYzoI8.jpg","url":"https:\/\/t.co\/tfGYtasit1","display_url":"pic.twitter.com\/tfGYtasit1","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186893689827708928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:50:00 +0000 2019","id":1187124034795798528,"id_str":"1187124034795798528","full_text":"Reminder + that the Learner Engagement Division''s membership meeting is happening soon + in Conf Room 8! Hope to see you there! #AECT19 #aect19inspired","truncated":false,"display_text_range":[0,147],"entities":{"hashtags":[{"text":"AECT19","indices":[124,131]},{"text":"aect19inspired","indices":[132,147]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:47:38 +0000 2019","id":1187123438231543814,"id_str":"1187123438231543814","full_text":"Check + out my @AECT Inspire! Session at 4pm in conference room 10! #aect19inspired + #aect #edtech #musictech #musiced @AECTTIL https:\/\/t.co\/bg4morKSIN","truncated":false,"display_text_range":[0,124],"entities":{"hashtags":[{"text":"aect19inspired","indices":[66,81]},{"text":"aect","indices":[82,87]},{"text":"edtech","indices":[88,95]},{"text":"musictech","indices":[96,106]},{"text":"musiced","indices":[107,115]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[13,18]},{"screen_name":"AECTTIL","name":"AECT + TIL","id":4921781685,"id_str":"4921781685","indices":[116,124]}],"urls":[],"media":[{"id":1187123339493429248,"id_str":"1187123339493429248","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmCYzsU0AADlIH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmCYzsU0AADlIH.jpg","url":"https:\/\/t.co\/bg4morKSIN","display_url":"pic.twitter.com\/bg4morKSIN","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1187123438231543814\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187123339493429248,"id_str":"1187123339493429248","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmCYzsU0AADlIH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmCYzsU0AADlIH.jpg","url":"https:\/\/t.co\/bg4morKSIN","display_url":"pic.twitter.com\/bg4morKSIN","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1187123438231543814\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":763378325712674818,"id_str":"763378325712674818","name":"Tay + Fess, M.Ed.","screen_name":"Captain_Fess","location":"Naples, FL","description":"Music + Educator l \ud83c\udff3\ufe0f\u200d\ud83c\udf08 l Presenter l UDL l FGCU l + Doctoral Student Ed.D. l EdTech l Disney Geek","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":576,"listed_count":3,"created_at":"Wed + Aug 10 14:15:50 +0000 2016","favourites_count":1730,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":665,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/763378325712674818\/1595378873","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 03:09:10 +0000 2019","id":1187204358242471937,"id_str":"1187204358242471937","full_text":"RT + @idtesu: Getting to meet David Merrill, education researcher and Professor + Emeritus at Utah State University; known for developing \"The\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"idtesu","name":"ESU + Instructional Design & Technology Program","id":107144043,"id_str":"107144043","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1375930460,"id_str":"1375930460","name":"Melissa + Reed, Ph.D.","screen_name":"mreed_reads","location":"Emporia, Kansas","description":"she\/her, + literacy professor, lifelong learner, mother, reader, advocate \nMy views + are mine alone.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":862,"listed_count":16,"created_at":"Wed + Apr 24 02:00:25 +0000 2013","favourites_count":1557,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2840,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1304920960802402304\/ZC5xrzAk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1304920960802402304\/ZC5xrzAk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1375930460\/1398739519","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 06:15:36 +0000 2019","id":1186888887060140032,"id_str":"1186888887060140032","full_text":"Getting + to meet David Merrill, education researcher and Professor Emeritus at Utah + State University; known for developing \"The Component Display Theory\", \"Instructional + Transaction Theory\" and the \"First Principles of Instruction.\"\n\n#EmporiaStateUniversity + #IDT #AECT2019 https:\/\/t.co\/XQRLMaiL8X","truncated":false,"display_text_range":[0,271],"entities":{"hashtags":[{"text":"EmporiaStateUniversity","indices":[233,256]},{"text":"IDT","indices":[257,261]},{"text":"AECT2019","indices":[262,271]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186888869536382976,"id_str":"1186888869536382976","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHitI3CUwAAvk4g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHitI3CUwAAvk4g.jpg","url":"https:\/\/t.co\/XQRLMaiL8X","display_url":"pic.twitter.com\/XQRLMaiL8X","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186888887060140032\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186888869536382976,"id_str":"1186888869536382976","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHitI3CUwAAvk4g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHitI3CUwAAvk4g.jpg","url":"https:\/\/t.co\/XQRLMaiL8X","display_url":"pic.twitter.com\/XQRLMaiL8X","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186888887060140032\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1186888869536391170,"id_str":"1186888869536391170","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHitI3CU4AIS23v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHitI3CU4AIS23v.jpg","url":"https:\/\/t.co\/XQRLMaiL8X","display_url":"pic.twitter.com\/XQRLMaiL8X","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186888887060140032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":495,"h":680,"resize":"fit"},"large":{"w":1492,"h":2048,"resize":"fit"},"medium":{"w":874,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 04:00:08 +0000 2019","id":1187217183937454080,"id_str":"1187217183937454080","full_text":"#aect19 + Tip #02 - Pie tastes good","truncated":false,"display_text_range":[0,33],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 22:00:00 +0000 2019","id":1187126552359604224,"id_str":"1187126552359604224","full_text":"Presenting + in 1 hour! Hope to see you there! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/TMF88iSRUh","truncated":false,"display_text_range":[0,77],"entities":{"hashtags":[{"text":"AECT19","indices":[54,61]},{"text":"AECT19inspired","indices":[62,77]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[45,53]}],"urls":[],"media":[{"id":1185702962766630912,"id_str":"1185702962766630912","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR2kADVUAATmza.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR2kADVUAATmza.jpg","url":"https:\/\/t.co\/TMF88iSRUh","display_url":"pic.twitter.com\/TMF88iSRUh","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187126552359604224\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185702962766630912,"id_str":"1185702962766630912","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR2kADVUAATmza.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR2kADVUAATmza.jpg","url":"https:\/\/t.co\/TMF88iSRUh","display_url":"pic.twitter.com\/TMF88iSRUh","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187126552359604224\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 02:12:40 +0000 2019","id":1187190136414425090,"id_str":"1187190136414425090","full_text":"#aect19 + Tip #19 - Share a toothbrush with your hotel roommate to save money.","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:39:04 +0000 2019","id":1187121283860848642,"id_str":"1187121283860848642","full_text":"RT + @jeroen69: #aect19 inspire session. Very active and interactive! https:\/\/t.co\/j39CXzZfKT","truncated":false,"display_text_range":[0,91],"entities":{"hashtags":[{"text":"aect19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"jeroen69","name":"Jeroen","id":6848632,"id_str":"6848632","indices":[3,12]}],"urls":[],"media":[{"id":1187117084787896320,"id_str":"1187117084787896320","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl8svGUcAAm89o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl8svGUcAAm89o.jpg","url":"https:\/\/t.co\/j39CXzZfKT","display_url":"pic.twitter.com\/j39CXzZfKT","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1187117090739609600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1187117090739609600,"source_status_id_str":"1187117090739609600","source_user_id":6848632,"source_user_id_str":"6848632"}]},"extended_entities":{"media":[{"id":1187117084787896320,"id_str":"1187117084787896320","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl8svGUcAAm89o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl8svGUcAAm89o.jpg","url":"https:\/\/t.co\/j39CXzZfKT","display_url":"pic.twitter.com\/j39CXzZfKT","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1187117090739609600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1187117090739609600,"source_status_id_str":"1187117090739609600","source_user_id":6848632,"source_user_id_str":"6848632","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 21:22:24 +0000 2019","id":1187117090739609600,"id_str":"1187117090739609600","full_text":"#aect19 + inspire session. Very active and interactive! https:\/\/t.co\/j39CXzZfKT","truncated":false,"display_text_range":[0,53],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187117084787896320,"id_str":"1187117084787896320","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl8svGUcAAm89o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl8svGUcAAm89o.jpg","url":"https:\/\/t.co\/j39CXzZfKT","display_url":"pic.twitter.com\/j39CXzZfKT","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1187117090739609600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187117084787896320,"id_str":"1187117084787896320","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl8svGUcAAm89o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl8svGUcAAm89o.jpg","url":"https:\/\/t.co\/j39CXzZfKT","display_url":"pic.twitter.com\/j39CXzZfKT","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1187117090739609600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:39:30 +0000 2019","id":1187121392354873344,"id_str":"1187121392354873344","full_text":"RT + @AllisonHallAZ: Thanks for the easy to immediately implement tips on UX\/LX + testing, Andrew & Matt! https:\/\/t.co\/WBN6UdiHQj #aect19inspi\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AllisonHallAZ","name":"Dr. + Allison Barsnica Hall","id":720930385,"id_str":"720930385","indices":[3,17]}],"urls":[{"url":"https:\/\/t.co\/WBN6UdiHQj","expanded_url":"http:\/\/tinyurl.com\/y576zsfa","display_url":"tinyurl.com\/y576zsfa","indices":[106,129]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 21:52:55 +0000 2019","id":1186762380107104256,"id_str":"1186762380107104256","full_text":"Thanks + for the easy to immediately implement tips on UX\/LX testing, Andrew & + Matt! https:\/\/t.co\/WBN6UdiHQj #aect19inspired","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"aect19inspired","indices":[112,127]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WBN6UdiHQj","expanded_url":"http:\/\/tinyurl.com\/y576zsfa","display_url":"tinyurl.com\/y576zsfa","indices":[87,110]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":720930385,"id_str":"720930385","name":"Dr. + Allison Barsnica Hall","screen_name":"AllisonHallAZ","location":"Tempe, AZ","description":"Director + of Learning Experience Design @ ASU. Lifelong Learner. Interested in how to + help ALL learners. she\/her\/hers","url":"https:\/\/t.co\/Pi5aZFLirT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Pi5aZFLirT","expanded_url":"https:\/\/www.linkedin.com\/in\/allisonbhall\/","display_url":"linkedin.com\/in\/allisonbhal\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":417,"friends_count":563,"listed_count":30,"created_at":"Fri + Jul 27 21:42:06 +0000 2012","favourites_count":3118,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1022,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/981993480833515520\/S96xaBm1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/981993480833515520\/S96xaBm1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/720930385\/1581027324","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 01:13:04 +0000 2019","id":1187175137277349889,"id_str":"1187175137277349889","full_text":"RT + @jeroen69: Panel discussion about building equitable organizations with some + very smart people, including @Giacumo #inspiredme #aect19\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"inspiredme","indices":[119,130]},{"text":"aect19","indices":[131,138]}],"symbols":[],"user_mentions":[{"screen_name":"jeroen69","name":"Jeroen","id":6848632,"id_str":"6848632","indices":[3,12]},{"screen_name":"Giacumo","name":"Lisa + Giacumo","id":47399292,"id_str":"47399292","indices":[109,117]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 22:09:47 +0000 2019","id":1187129015036854272,"id_str":"1187129015036854272","full_text":"Panel + discussion about building equitable organizations with some very smart people, + including @Giacumo #inspiredme #aect19 #aect19inspired #clt https:\/\/t.co\/wRCc3KVYCU","truncated":false,"display_text_range":[0,145],"entities":{"hashtags":[{"text":"inspiredme","indices":[105,116]},{"text":"aect19","indices":[117,124]},{"text":"aect19inspired","indices":[125,140]},{"text":"clt","indices":[141,145]}],"symbols":[],"user_mentions":[{"screen_name":"Giacumo","name":"Lisa + Giacumo","id":47399292,"id_str":"47399292","indices":[95,103]}],"urls":[],"media":[{"id":1187129011199045632,"id_str":"1187129011199045632","indices":[146,169],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmHi8cUcAAAnJy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmHi8cUcAAAnJy.jpg","url":"https:\/\/t.co\/wRCc3KVYCU","display_url":"pic.twitter.com\/wRCc3KVYCU","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1187129015036854272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1112,"h":523,"resize":"fit"},"small":{"w":680,"h":320,"resize":"fit"},"medium":{"w":1112,"h":523,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187129011199045632,"id_str":"1187129011199045632","indices":[146,169],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmHi8cUcAAAnJy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmHi8cUcAAAnJy.jpg","url":"https:\/\/t.co\/wRCc3KVYCU","display_url":"pic.twitter.com\/wRCc3KVYCU","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1187129015036854272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1112,"h":523,"resize":"fit"},"small":{"w":680,"h":320,"resize":"fit"},"medium":{"w":1112,"h":523,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 22:37:07 +0000 2019","id":1187135892655235072,"id_str":"1187135892655235072","full_text":"Learning + a lot from the perspectives of @JenM @AmyLomellini_ID and Esther Michela in + the @AECT session GSA: Designing for Accessibility Good reminders about how + to embed #accessibility into your work. #aect19inspired","truncated":false,"display_text_range":[0,216],"entities":{"hashtags":[{"text":"accessibility","indices":[170,184]},{"text":"aect19inspired","indices":[201,216]}],"symbols":[],"user_mentions":[{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[40,45]},{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[46,62]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[89,94]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:50:03 +0000 2019","id":1187124049295622144,"id_str":"1187124049295622144","full_text":"#AECT19: + Come hear about \"Effectiveness of Learning Support Format for Math Problem + Representation\" work of #FSU #FSUCOE #ISLT Sungwoong Lee & Fengfeng Ke + today @ 4 pm - 4:50 pm in Pavilion 11. (session 255) #Education #Math","truncated":false,"display_text_range":[0,228],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"FSU","indices":[108,112]},{"text":"FSUCOE","indices":[113,120]},{"text":"ISLT","indices":[121,126]},{"text":"Education","indices":[212,222]},{"text":"Math","indices":[223,228]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 00:10:30 +0000 2019","id":1187159392589758464,"id_str":"1187159392589758464","full_text":"Biometric + sensors to measure usability\/provides formative evaluation of videos\/games. + Sound familiar, students? Tiantian Jin & Quincy Conley share their study + that learning is hard when negative emotions trump positive while learners + watch videos. #eme607 #eme603 #aect19inspired https:\/\/t.co\/iNQ1Pbjs6Y","truncated":false,"display_text_range":[0,283],"entities":{"hashtags":[{"text":"eme607","indices":[252,259]},{"text":"eme603","indices":[260,267]},{"text":"aect19inspired","indices":[268,283]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187159382104035329,"id_str":"1187159382104035329","indices":[284,307],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmjKw4VUAEQzJh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmjKw4VUAEQzJh.jpg","url":"https:\/\/t.co\/iNQ1Pbjs6Y","display_url":"pic.twitter.com\/iNQ1Pbjs6Y","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187159392589758464\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187159382104035329,"id_str":"1187159382104035329","indices":[284,307],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmjKw4VUAEQzJh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmjKw4VUAEQzJh.jpg","url":"https:\/\/t.co\/iNQ1Pbjs6Y","display_url":"pic.twitter.com\/iNQ1Pbjs6Y","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187159392589758464\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187159382108205056,"id_str":"1187159382108205056","indices":[284,307],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmjKw5U8AAppQ1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmjKw5U8AAppQ1.jpg","url":"https:\/\/t.co\/iNQ1Pbjs6Y","display_url":"pic.twitter.com\/iNQ1Pbjs6Y","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187159392589758464\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187159382108209152,"id_str":"1187159382108209152","indices":[284,307],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmjKw5VAAAsSsp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmjKw5VAAAsSsp.jpg","url":"https:\/\/t.co\/iNQ1Pbjs6Y","display_url":"pic.twitter.com\/iNQ1Pbjs6Y","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187159392589758464\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187159382104035328,"id_str":"1187159382104035328","indices":[284,307],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmjKw4VUAA_RYc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmjKw4VUAA_RYc.jpg","url":"https:\/\/t.co\/iNQ1Pbjs6Y","display_url":"pic.twitter.com\/iNQ1Pbjs6Y","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187159392589758464\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 01:12:24 +0000 2019","id":1187174970956365826,"id_str":"1187174970956365826","full_text":"RT + @yinbk: @DrVirtuality @AECT Glad to have gone to the session & met you + in person. Looking forward to read your draft of this refreshing\u2026","truncated":false,"display_text_range":[0,143],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"yinbk","name":"\ud83c\uddfa\ud83c\uddf8 + Yin Kreher, PhD","id":459903,"id_str":"459903","indices":[3,9]},{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[11,24]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[25,30]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 00:06:49 +0000 2019","id":1187158465447223296,"id_str":"1187158465447223296","full_text":"@DrVirtuality + @AECT Glad to have gone to the session & met you in person. Looking forward + to read your draft of this refreshing new perspective of shift in culture. + #aect19 #aect19inspired","truncated":false,"display_text_range":[20,192],"entities":{"hashtags":[{"text":"aect19","indices":[169,176]},{"text":"aect19inspired","indices":[177,192]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[0,13]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[14,19]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1187139016304418816,"in_reply_to_status_id_str":"1187139016304418816","in_reply_to_user_id":15667548,"in_reply_to_user_id_str":"15667548","in_reply_to_screen_name":"DrVirtuality","user":{"id":459903,"id_str":"459903","name":"\ud83c\uddfa\ud83c\uddf8 + Yin Kreher, PhD","screen_name":"yinbk","location":"","description":"Instructional + Designer | Lead LXD @FourthRev | Boundary-Crosser. Looks for the exquisite + at intersections. All tweets are mine. \ud83d\udc9c #XR #DesignLeadership + \ud83e\udef0","url":"https:\/\/t.co\/nJBVP9cpz7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nJBVP9cpz7","expanded_url":"http:\/\/yinwahkreher.com","display_url":"yinwahkreher.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1043,"friends_count":1124,"listed_count":79,"created_at":"Tue + Jan 02 17:04:05 +0000 2007","favourites_count":7349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"363738","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459903\/1611022238","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"E81C4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 00:08:37 +0000 2019","id":1187158921716236289,"id_str":"1187158921716236289","full_text":"RT + @DrVirtuality: Slide deck for Theory of Virtuality Culture starting in 10 + minutes conference room 12: https:\/\/t.co\/4Nua3T1wEx @aect #aec\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[129,134]}],"urls":[{"url":"https:\/\/t.co\/4Nua3T1wEx","expanded_url":"https:\/\/docs.google.com\/presentation\/d\/1if1hPS1lp-3_hQDe7KLG18Bf5d3LSg4irTWfN5gthb0","display_url":"docs.google.com\/presentation\/d\u2026","indices":[105,128]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":459903,"id_str":"459903","name":"\ud83c\uddfa\ud83c\uddf8 + Yin Kreher, PhD","screen_name":"yinbk","location":"","description":"Instructional + Designer | Lead LXD @FourthRev | Boundary-Crosser. Looks for the exquisite + at intersections. All tweets are mine. \ud83d\udc9c #XR #DesignLeadership + \ud83e\udef0","url":"https:\/\/t.co\/nJBVP9cpz7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nJBVP9cpz7","expanded_url":"http:\/\/yinwahkreher.com","display_url":"yinwahkreher.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1043,"friends_count":1124,"listed_count":79,"created_at":"Tue + Jan 02 17:04:05 +0000 2007","favourites_count":7349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"363738","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459903\/1611022238","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"E81C4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 22:49:32 +0000 2019","id":1187139016304418816,"id_str":"1187139016304418816","full_text":"Slide + deck for Theory of Virtuality Culture starting in 10 minutes conference room + 12: https:\/\/t.co\/4Nua3T1wEx @aect #aect #aect19 #aect19inspired","truncated":false,"display_text_range":[0,146],"entities":{"hashtags":[{"text":"aect","indices":[117,122]},{"text":"aect19","indices":[123,130]},{"text":"aect19inspired","indices":[131,146]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[111,116]}],"urls":[{"url":"https:\/\/t.co\/4Nua3T1wEx","expanded_url":"https:\/\/docs.google.com\/presentation\/d\/1if1hPS1lp-3_hQDe7KLG18Bf5d3LSg4irTWfN5gthb0","display_url":"docs.google.com\/presentation\/d\u2026","indices":[87,110]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 22:55:13 +0000 2019","id":1187140447094923266,"id_str":"1187140447094923266","full_text":"RT + @tadousay: If you couldn''t make it to the #AECT19 #TeacherEd session on innovative + pedagogical space design, be sure to check out all of\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[45,52]},{"text":"TeacherEd","indices":[53,63]}],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37890447,"id_str":"37890447","name":"M. + D. Rogers","screen_name":"MDRogers360","location":"","description":"Michelle + is my name and innovation and creativity is my game. A feed about this and + that, ed tech, work, writing, and more.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":500,"friends_count":571,"listed_count":34,"created_at":"Tue + May 05 09:21:16 +0000 2009","favourites_count":58,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1132,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1216550885385482240\/_KpnmYjr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216550885385482240\/_KpnmYjr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37890447\/1400079389","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:25:05 +0000 2019","id":1186740275915280384,"id_str":"1186740275915280384","full_text":"If + you couldn''t make it to the #AECT19 #TeacherEd session on innovative pedagogical + space design, be sure to check out all of the virtual flipped posters at https:\/\/t.co\/1pM0umTnEi + #AECTinspired https:\/\/t.co\/NXpMwQC63N","truncated":false,"display_text_range":[0,194],"entities":{"hashtags":[{"text":"AECT19","indices":[31,38]},{"text":"TeacherEd","indices":[39,49]},{"text":"AECTinspired","indices":[181,194]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1pM0umTnEi","expanded_url":"http:\/\/bit.ly\/TED-flipped","display_url":"bit.ly\/TED-flipped","indices":[157,180]}],"media":[{"id":1186740239152271361,"id_str":"1186740239152271361","indices":[195,218],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgl9btVUAEvjnZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgl9btVUAEvjnZ.jpg","url":"https:\/\/t.co\/NXpMwQC63N","display_url":"pic.twitter.com\/NXpMwQC63N","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186740275915280384\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":960,"h":540,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186740239152271361,"id_str":"1186740239152271361","indices":[195,218],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgl9btVUAEvjnZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgl9btVUAEvjnZ.jpg","url":"https:\/\/t.co\/NXpMwQC63N","display_url":"pic.twitter.com\/NXpMwQC63N","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186740275915280384\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":960,"h":540,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 01:14:36 +0000 2019","id":1187175524227002368,"id_str":"1187175524227002368","full_text":"RT + @ChangeIt4Better: Biometric sensors to measure usability\/provides formative + evaluation of videos\/games. Sound familiar, students? Tianti\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ChangeIt4Better","name":"Dr. + Suzanne Ensmann","id":1596150056,"id_str":"1596150056","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 00:10:30 +0000 2019","id":1187159392589758464,"id_str":"1187159392589758464","full_text":"Biometric + sensors to measure usability\/provides formative evaluation of videos\/games. + Sound familiar, students? Tiantian Jin & Quincy Conley share their study + that learning is hard when negative emotions trump positive while learners + watch videos. #eme607 #eme603 #aect19inspired https:\/\/t.co\/iNQ1Pbjs6Y","truncated":false,"display_text_range":[0,283],"entities":{"hashtags":[{"text":"eme607","indices":[252,259]},{"text":"eme603","indices":[260,267]},{"text":"aect19inspired","indices":[268,283]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187159382104035329,"id_str":"1187159382104035329","indices":[284,307],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmjKw4VUAEQzJh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmjKw4VUAEQzJh.jpg","url":"https:\/\/t.co\/iNQ1Pbjs6Y","display_url":"pic.twitter.com\/iNQ1Pbjs6Y","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187159392589758464\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187159382104035329,"id_str":"1187159382104035329","indices":[284,307],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmjKw4VUAEQzJh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmjKw4VUAEQzJh.jpg","url":"https:\/\/t.co\/iNQ1Pbjs6Y","display_url":"pic.twitter.com\/iNQ1Pbjs6Y","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187159392589758464\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187159382108205056,"id_str":"1187159382108205056","indices":[284,307],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmjKw5U8AAppQ1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmjKw5U8AAppQ1.jpg","url":"https:\/\/t.co\/iNQ1Pbjs6Y","display_url":"pic.twitter.com\/iNQ1Pbjs6Y","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187159392589758464\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187159382108209152,"id_str":"1187159382108209152","indices":[284,307],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmjKw5VAAAsSsp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmjKw5VAAAsSsp.jpg","url":"https:\/\/t.co\/iNQ1Pbjs6Y","display_url":"pic.twitter.com\/iNQ1Pbjs6Y","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187159392589758464\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187159382104035328,"id_str":"1187159382104035328","indices":[284,307],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmjKw4VUAA_RYc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmjKw4VUAA_RYc.jpg","url":"https:\/\/t.co\/iNQ1Pbjs6Y","display_url":"pic.twitter.com\/iNQ1Pbjs6Y","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187159392589758464\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 23:24:32 +0000 2019","id":1187147826192535552,"id_str":"1187147826192535552","full_text":"Q1. + I am currently a doctoral student located in Colorado. #aectgsa #aect19inspired","truncated":false,"display_text_range":[0,84],"entities":{"hashtags":[{"text":"aectgsa","indices":[60,68]},{"text":"aect19inspired","indices":[69,84]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15122229,"id_str":"15122229","name":"NorthMetroTech","screen_name":"NorthMetroTech","location":"Colorado","description":"Tweeting + on Colorado Small Business, Technology, Social Media, AR, Analytics, Geolocation + and Virtual Reality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":627,"friends_count":599,"listed_count":58,"created_at":"Sun + Jun 15 04:17:41 +0000 2008","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6661,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1009258870571655169\/YY_AWkJi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1009258870571655169\/YY_AWkJi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15122229\/1473476873","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"000000","profile_sidebar_border_color":"969696","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 22:45:00 +0000 2019","id":1187137876024127488,"id_str":"1187137876024127488","full_text":"Our + Student Achievement session, coming up at 4pm in Conf Room 8, will explore + #activelearning strategies to address disparities in online learning and an + eye tracking study that looked at high and low-achieving student populations! + #AECT19 #achievement #studentengagement https:\/\/t.co\/dY4mifSvTN","truncated":false,"display_text_range":[0,272],"entities":{"hashtags":[{"text":"activelearning","indices":[79,94]},{"text":"AECT19","indices":[233,240]},{"text":"achievement","indices":[241,253]},{"text":"studentengagement","indices":[254,272]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187113177085071361,"id_str":"1187113177085071361","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl5JRxXUAESFnR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl5JRxXUAESFnR.jpg","url":"https:\/\/t.co\/dY4mifSvTN","display_url":"pic.twitter.com\/dY4mifSvTN","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187137876024127488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1000,"h":667,"resize":"fit"},"large":{"w":1000,"h":667,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187113177085071361,"id_str":"1187113177085071361","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl5JRxXUAESFnR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl5JRxXUAESFnR.jpg","url":"https:\/\/t.co\/dY4mifSvTN","display_url":"pic.twitter.com\/dY4mifSvTN","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187137876024127488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1000,"h":667,"resize":"fit"},"large":{"w":1000,"h":667,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 04:25:05 +0000 2019","id":1187223463829753856,"id_str":"1187223463829753856","full_text":"RT + @AECT: Inspired at the Breakfast with Champions. #AECT19 #AECT19inspired https:\/\/t.co\/SgI1xLUXN3","truncated":false,"display_text_range":[0,99],"entities":{"hashtags":[{"text":"AECT19","indices":[52,59]},{"text":"AECT19inspired","indices":[60,75]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[],"media":[{"id":1187028316479311873,"id_str":"1187028316479311873","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","url":"https:\/\/t.co\/SgI1xLUXN3","display_url":"pic.twitter.com\/SgI1xLUXN3","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187028345168379906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1272,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"medium":{"w":1200,"h":745,"resize":"fit"}},"source_status_id":1187028345168379906,"source_status_id_str":"1187028345168379906","source_user_id":12030342,"source_user_id_str":"12030342"}]},"extended_entities":{"media":[{"id":1187028316479311873,"id_str":"1187028316479311873","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","url":"https:\/\/t.co\/SgI1xLUXN3","display_url":"pic.twitter.com\/SgI1xLUXN3","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187028345168379906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1272,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"medium":{"w":1200,"h":745,"resize":"fit"}},"source_status_id":1187028345168379906,"source_status_id_str":"1187028345168379906","source_user_id":12030342,"source_user_id_str":"12030342","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2835369671,"id_str":"2835369671","name":"LD&T + and EdTech at UofSC","screen_name":"EdTech_UofSC","location":"South Carolina","description":"Our + LD&T\/EdTech programs are shared with USC-Columbia & USC-Aiken. We offer Masters + & doctoral degrees + distance education certification \u2014 all 100% online!","url":"https:\/\/t.co\/S5lHVmmaud","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/S5lHVmmaud","expanded_url":"https:\/\/sc.edu\/study\/colleges_schools\/education\/study\/advanced_study_in_education\/learning_design_te","display_url":"sc.edu\/study\/colleges\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":455,"friends_count":50,"listed_count":16,"created_at":"Fri + Oct 17 18:52:36 +0000 2014","favourites_count":353,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":667,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1265318847764148226\/-Y6YxrdB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1265318847764148226\/-Y6YxrdB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2835369671\/1590519327","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:29:46 +0000 2019","id":1187028345168379906,"id_str":"1187028345168379906","full_text":"Inspired + at the Breakfast with Champions. #AECT19 #AECT19inspired https:\/\/t.co\/SgI1xLUXN3","truncated":false,"display_text_range":[0,65],"entities":{"hashtags":[{"text":"AECT19","indices":[42,49]},{"text":"AECT19inspired","indices":[50,65]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187028316479311873,"id_str":"1187028316479311873","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","url":"https:\/\/t.co\/SgI1xLUXN3","display_url":"pic.twitter.com\/SgI1xLUXN3","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187028345168379906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1272,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"medium":{"w":1200,"h":745,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187028316479311873,"id_str":"1187028316479311873","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","url":"https:\/\/t.co\/SgI1xLUXN3","display_url":"pic.twitter.com\/SgI1xLUXN3","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187028345168379906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1272,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"medium":{"w":1200,"h":745,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 01:01:23 +0000 2019","id":1187172199641182208,"id_str":"1187172199641182208","full_text":"RT + @FredWBaker: Please consider submitting a proposal for the Systems Thinking + & Change Division''s special issue of @AECTTechTrends!! #aect\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[120,135]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 22:26:19 +0000 2019","id":1186770788797411328,"id_str":"1186770788797411328","full_text":"Please + consider submitting a proposal for the Systems Thinking & Change Division''s + special issue of @AECTTechTrends!! #aect19 #aectstc #aect19inspired https:\/\/t.co\/nQzSaUhgi2","truncated":false,"display_text_range":[0,178],"entities":{"hashtags":[{"text":"aect19","indices":[122,129]},{"text":"aectstc","indices":[130,138]},{"text":"aect19inspired","indices":[139,154]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[104,119]}],"urls":[{"url":"https:\/\/t.co\/nQzSaUhgi2","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[155,178]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 04:00:45 +0000 2019","id":1187217337579163649,"id_str":"1187217337579163649","full_text":"RT + @chloed2040: @jeroen69 If only everyone thought this way when creating goals + for any purpose! We are all human and we all matter \ud83d\ude00\n#AECT\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"chloed2040","name":"Chloe + D","id":1169290337594093568,"id_str":"1169290337594093568","indices":[3,14]},{"screen_name":"jeroen69","name":"Jeroen","id":6848632,"id_str":"6848632","indices":[16,25]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 03:49:56 +0000 2019","id":1187214617573023745,"id_str":"1187214617573023745","full_text":"@jeroen69 + If only everyone thought this way when creating goals for any purpose! We + are all human and we all matter \ud83d\ude00\n#AECT19 #AECT19inspired #fsu2040","truncated":false,"display_text_range":[10,150],"entities":{"hashtags":[{"text":"AECT19","indices":[118,125]},{"text":"AECT19inspired","indices":[126,141]},{"text":"fsu2040","indices":[142,150]}],"symbols":[],"user_mentions":[{"screen_name":"jeroen69","name":"Jeroen","id":6848632,"id_str":"6848632","indices":[0,9]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1186680396076875776,"in_reply_to_status_id_str":"1186680396076875776","in_reply_to_user_id":6848632,"in_reply_to_user_id_str":"6848632","in_reply_to_screen_name":"jeroen69","user":{"id":1169290337594093568,"id_str":"1169290337594093568","name":"Chloe + D","screen_name":"chloed2040","location":"","description":"fsu c\/o 2019!! + Eme2040 account","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":11,"listed_count":1,"created_at":"Wed + Sep 04 16:45:29 +0000 2019","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":34,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1169296165059346433\/-Uq_9Q5D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169296165059346433\/-Uq_9Q5D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1169290337594093568\/1567616826","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:57:47 +0000 2019","id":1187125992755625985,"id_str":"1187125992755625985","full_text":"About + to begin! #aect19inspired Ballroom B representing @WorldEdUS https:\/\/t.co\/nLJqERRMbI","truncated":false,"display_text_range":[0,68],"entities":{"hashtags":[{"text":"aect19inspired","indices":[16,31]}],"symbols":[],"user_mentions":[{"screen_name":"WorldEdUS","name":"World + Education - US","id":615387166,"id_str":"615387166","indices":[58,68]}],"urls":[],"media":[{"id":1187125982680870912,"id_str":"1187125982680870912","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmEyqVUcAALxR7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmEyqVUcAALxR7.jpg","url":"https:\/\/t.co\/nLJqERRMbI","display_url":"pic.twitter.com\/nLJqERRMbI","expanded_url":"https:\/\/twitter.com\/VanekJen\/status\/1187125992755625985\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187125982680870912,"id_str":"1187125982680870912","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmEyqVUcAALxR7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmEyqVUcAALxR7.jpg","url":"https:\/\/t.co\/nLJqERRMbI","display_url":"pic.twitter.com\/nLJqERRMbI","expanded_url":"https:\/\/twitter.com\/VanekJen\/status\/1187125992755625985\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":805816250,"id_str":"805816250","name":"Jen + Vanek","screen_name":"VanekJen","location":"Minneapolis MN","description":"Director + of Digital Learning and Research. EdTech Center @ World Education. Teacher + educator, researcher, and advocate. Opinions expressed here are my own.","url":"https:\/\/t.co\/HfWBBD9lZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HfWBBD9lZC","expanded_url":"http:\/\/www.edtech.worlded.org","display_url":"edtech.worlded.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":270,"listed_count":5,"created_at":"Thu + Sep 06 01:47:18 +0000 2012","favourites_count":432,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":340,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/805816250\/1637458182","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 22:09:47 +0000 2019","id":1187129015036854272,"id_str":"1187129015036854272","full_text":"Panel + discussion about building equitable organizations with some very smart people, + including @Giacumo #inspiredme #aect19 #aect19inspired #clt https:\/\/t.co\/wRCc3KVYCU","truncated":false,"display_text_range":[0,145],"entities":{"hashtags":[{"text":"inspiredme","indices":[105,116]},{"text":"aect19","indices":[117,124]},{"text":"aect19inspired","indices":[125,140]},{"text":"clt","indices":[141,145]}],"symbols":[],"user_mentions":[{"screen_name":"Giacumo","name":"Lisa + Giacumo","id":47399292,"id_str":"47399292","indices":[95,103]}],"urls":[],"media":[{"id":1187129011199045632,"id_str":"1187129011199045632","indices":[146,169],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmHi8cUcAAAnJy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmHi8cUcAAAnJy.jpg","url":"https:\/\/t.co\/wRCc3KVYCU","display_url":"pic.twitter.com\/wRCc3KVYCU","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1187129015036854272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1112,"h":523,"resize":"fit"},"small":{"w":680,"h":320,"resize":"fit"},"medium":{"w":1112,"h":523,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187129011199045632,"id_str":"1187129011199045632","indices":[146,169],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmHi8cUcAAAnJy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmHi8cUcAAAnJy.jpg","url":"https:\/\/t.co\/wRCc3KVYCU","display_url":"pic.twitter.com\/wRCc3KVYCU","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1187129015036854272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1112,"h":523,"resize":"fit"},"small":{"w":680,"h":320,"resize":"fit"},"medium":{"w":1112,"h":523,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 03:48:38 +0000 2019","id":1187214290543173632,"id_str":"1187214290543173632","full_text":"RT + @jeroen69: Paraphrasing Thomas Reeves: If you can\u2019t link your work to + any of these goals, you should probably rethink what you are doing\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jeroen69","name":"Jeroen","id":6848632,"id_str":"6848632","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1169290337594093568,"id_str":"1169290337594093568","name":"Chloe + D","screen_name":"chloed2040","location":"","description":"fsu c\/o 2019!! + Eme2040 account","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":11,"listed_count":1,"created_at":"Wed + Sep 04 16:45:29 +0000 2019","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":34,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1169296165059346433\/-Uq_9Q5D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169296165059346433\/-Uq_9Q5D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1169290337594093568\/1567616826","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 16:27:08 +0000 2019","id":1186680396076875776,"id_str":"1186680396076875776","full_text":"Paraphrasing + Thomas Reeves: If you can\u2019t link your work to any of these goals, you + should probably rethink what you are doing. #aect19 #aectinspired https:\/\/t.co\/S4OYny9Oy7","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[{"text":"aect19","indices":[127,134]},{"text":"aectinspired","indices":[135,148]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186680255118884864,"id_str":"1186680255118884864","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","url":"https:\/\/t.co\/S4OYny9Oy7","display_url":"pic.twitter.com\/S4OYny9Oy7","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186680396076875776\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186680255118884864,"id_str":"1186680255118884864","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","url":"https:\/\/t.co\/S4OYny9Oy7","display_url":"pic.twitter.com\/S4OYny9Oy7","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186680396076875776\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 01:09:30 +0000 2019","id":1187174241063432192,"id_str":"1187174241063432192","full_text":"Watching + students soak up great minds to great works in the field from augmented reality + to OER to game based learning & more = Grateful for the opportunity! + #aect19inspired #aect2019 #eme603 https:\/\/t.co\/5KpJZeJ1kG","truncated":false,"display_text_range":[0,196],"entities":{"hashtags":[{"text":"aect19inspired","indices":[163,178]},{"text":"aect2019","indices":[179,188]},{"text":"eme603","indices":[189,196]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187174228425990144,"id_str":"1187174228425990144","indices":[197,220],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmwq7vUYAAf1On.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmwq7vUYAAf1On.jpg","url":"https:\/\/t.co\/5KpJZeJ1kG","display_url":"pic.twitter.com\/5KpJZeJ1kG","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187174241063432192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":1638,"h":2048,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187174228425990144,"id_str":"1187174228425990144","indices":[197,220],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmwq7vUYAAf1On.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmwq7vUYAAf1On.jpg","url":"https:\/\/t.co\/5KpJZeJ1kG","display_url":"pic.twitter.com\/5KpJZeJ1kG","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187174241063432192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":1638,"h":2048,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1187174228476362753,"id_str":"1187174228476362753","indices":[197,220],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmwq77VAAEHZqM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmwq77VAAEHZqM.jpg","url":"https:\/\/t.co\/5KpJZeJ1kG","display_url":"pic.twitter.com\/5KpJZeJ1kG","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187174241063432192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":816,"h":612,"resize":"fit"},"medium":{"w":816,"h":612,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187174228467912705,"id_str":"1187174228467912705","indices":[197,220],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmwq75UEAEU9oN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmwq75UEAEU9oN.jpg","url":"https:\/\/t.co\/5KpJZeJ1kG","display_url":"pic.twitter.com\/5KpJZeJ1kG","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187174241063432192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1187174228476321793,"id_str":"1187174228476321793","indices":[197,220],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmwq77UYAE7EUe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmwq77UYAE7EUe.jpg","url":"https:\/\/t.co\/5KpJZeJ1kG","display_url":"pic.twitter.com\/5KpJZeJ1kG","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187174241063432192\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 23:10:38 +0000 2019","id":1187144329883574277,"id_str":"1187144329883574277","full_text":"Me + watching an #aect19 presentation https:\/\/t.co\/fx0Sn2UGiX","truncated":false,"display_text_range":[0,35],"entities":{"hashtags":[{"text":"aect19","indices":[15,22]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187144322791034881,"id_str":"1187144322791034881","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHmVeMkU0AEpURQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHmVeMkU0AEpURQ.jpg","url":"https:\/\/t.co\/fx0Sn2UGiX","display_url":"pic.twitter.com\/fx0Sn2UGiX","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1187144329883574277\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":236,"resize":"fit"},"medium":{"w":500,"h":236,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":500,"h":236,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187144322791034881,"id_str":"1187144322791034881","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHmVeMkU0AEpURQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHmVeMkU0AEpURQ.jpg","url":"https:\/\/t.co\/fx0Sn2UGiX","display_url":"pic.twitter.com\/fx0Sn2UGiX","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1187144329883574277\/photo\/1","type":"animated_gif","sizes":{"large":{"w":500,"h":236,"resize":"fit"},"medium":{"w":500,"h":236,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":500,"h":236,"resize":"fit"}},"video_info":{"aspect_ratio":[125,59],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHmVeMkU0AEpURQ.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 03:40:06 +0000 2019","id":1187212142543421440,"id_str":"1187212142543421440","full_text":"Our + #aect19inspired #aect19 slides for presentations about our IRCEES processes + & collaborative practices are at https:\/\/t.co\/FztUPU6yZC & https:\/\/t.co\/rYzrohgoyb + Had a good time presenting with @christieliuidtr Hannah Grossman & @AmyLomellini_ID + @emergeAfrica @aectclt @AECT","truncated":false,"display_text_range":[0,288],"entities":{"hashtags":[{"text":"aect19inspired","indices":[4,19]},{"text":"aect19","indices":[20,27]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[242,258]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[259,272]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[274,282]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[283,288]}],"urls":[{"url":"https:\/\/t.co\/FztUPU6yZC","expanded_url":"http:\/\/bit.ly\/IRCEES1","display_url":"bit.ly\/IRCEES1","indices":[117,140]},{"url":"https:\/\/t.co\/rYzrohgoyb","expanded_url":"http:\/\/bit.ly\/IRCEES2","display_url":"bit.ly\/IRCEES2","indices":[147,170]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 23:08:15 +0000 2019","id":1187143726339985409,"id_str":"1187143726339985409","full_text":"#aect19 + Tip #27 - Think of a random last name, then help other people to feel dumb + by asking how their work fits into [LastName\u2019s] instructional theory.","truncated":false,"display_text_range":[0,152],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 01:32:40 +0000 2019","id":1187180070638456833,"id_str":"1187180070638456833","full_text":"Do + you feel #AECTinspired? Share your expertise by contributing a chapter to + our newest OER book on Instructional Design, edited with Jason McDonald and + hosted by @@EdTech_Books. See the call for chapters below, and we''re launching + next year. #AECT19 \n\nhttps:\/\/t.co\/7e0cQWBg90","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"AECTinspired","indices":[12,25]},{"text":"AECT19","indices":[243,250]}],"symbols":[],"user_mentions":[{"screen_name":"EdTech_Books","name":"EdTech + Books","id":1113476916076367872,"id_str":"1113476916076367872","indices":[164,177]}],"urls":[{"url":"https:\/\/t.co\/7e0cQWBg90","expanded_url":"https:\/\/edtechbooks.org\/id\/call_for_proposals","display_url":"edtechbooks.org\/id\/call_for_pr\u2026","indices":[255,278]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17639668,"id_str":"17639668","name":"Rick + West","screen_name":"richardewest","location":"Provo, ut","description":"Instructional + Designer, Researcher, & Evaluator at Brigham Young University","url":"http:\/\/t.co\/Nc39wWEhGM","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Nc39wWEhGM","expanded_url":"http:\/\/richardewest.com","display_url":"richardewest.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":223,"listed_count":39,"created_at":"Wed + Nov 26 02:26:26 +0000 2008","favourites_count":799,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3339,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17639668\/1446650027","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:58:17 +0000 2019","id":1187126122376392704,"id_str":"1187126122376392704","full_text":"Congrats + to authors Joseph Rene Corbeil, Maria Elena Corbeil, and (not pictured) Badrul + Khan, who received the Outstanding Book Award from #AECT2019\u2019s Culture, + Learning, and Technology division \u2014 a global treatment of #learninganalytics + and #educationaldatamining. https:\/\/t.co\/aG1kf7a5ew","truncated":false,"display_text_range":[0,264],"entities":{"hashtags":[{"text":"AECT2019","indices":[139,148]},{"text":"learninganalytics","indices":[218,236]},{"text":"educationaldatamining","indices":[241,263]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27606068,"id_str":"27606068","name":"Routledge + Education Books","screen_name":"RoutledgeEd","location":"Global","description":"Supporting + educators, teachers, scholars and students with informative and practical + books based on leading research and classroom practice.","url":"http:\/\/t.co\/j4LZK9ypti","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/j4LZK9ypti","expanded_url":"http:\/\/www.routledge.com\/education","display_url":"routledge.com\/education","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":13833,"friends_count":3278,"listed_count":230,"created_at":"Mon + Mar 30 08:33:32 +0000 2009","favourites_count":2658,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10107,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"6A9ADA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27606068\/1629726175","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"6A9ADA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 04:27:25 +0000 2019","id":1187224050143092737,"id_str":"1187224050143092737","full_text":"RT + @AmyLomellini_ID: Today\u2019s the day! Looking forward to great discussions + with inspiring people at #AECT19! @AECT @gsa_aect @JenM @nicolap\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[100,107]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[3,19]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[109,114]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[115,124]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[125,130]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:40:10 +0000 2019","id":1187030965161463810,"id_str":"1187030965161463810","full_text":"Today\u2019s + the day! Looking forward to great discussions with inspiring people at #AECT19! + @AECT @gsa_aect @JenM @nicolapallitt https:\/\/t.co\/P89NI1ItiJ","truncated":false,"display_text_range":[0,124],"entities":{"hashtags":[{"text":"AECT19","indices":[79,86]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[88,93]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[94,103]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[104,109]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[110,124]}],"urls":[],"media":[{"id":1187030963286691841,"id_str":"1187030963286691841","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkuXzgX0AEvw4Q.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkuXzgX0AEvw4Q.png","url":"https:\/\/t.co\/P89NI1ItiJ","display_url":"pic.twitter.com\/P89NI1ItiJ","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1187030965161463810\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1187030963286691841,"id_str":"1187030963286691841","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkuXzgX0AEvw4Q.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkuXzgX0AEvw4Q.png","url":"https:\/\/t.co\/P89NI1ItiJ","display_url":"pic.twitter.com\/P89NI1ItiJ","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1187030965161463810\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910574724748644353,"id_str":"910574724748644353","name":"Amy + Lomellini","screen_name":"AmyLomellini_ID","location":"New York, USA","description":"Associate + Director of Blended & Online Learning and doctoral candidate with a passion + for accessible and inclusive online teaching and learning. #EdTech #A11y","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":644,"friends_count":1061,"listed_count":9,"created_at":"Wed + Sep 20 18:41:46 +0000 2017","favourites_count":7378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1141,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910574724748644353\/1551624059","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 01:14:09 +0000 2019","id":1187175413002522624,"id_str":"1187175413002522624","full_text":"RT + @ChangeIt4Better: Watching students soak up great minds to great works in + the field from augmented reality to OER to game based learning\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ChangeIt4Better","name":"Dr. + Suzanne Ensmann","id":1596150056,"id_str":"1596150056","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 01:09:30 +0000 2019","id":1187174241063432192,"id_str":"1187174241063432192","full_text":"Watching + students soak up great minds to great works in the field from augmented reality + to OER to game based learning & more = Grateful for the opportunity! + #aect19inspired #aect2019 #eme603 https:\/\/t.co\/5KpJZeJ1kG","truncated":false,"display_text_range":[0,196],"entities":{"hashtags":[{"text":"aect19inspired","indices":[163,178]},{"text":"aect2019","indices":[179,188]},{"text":"eme603","indices":[189,196]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187174228425990144,"id_str":"1187174228425990144","indices":[197,220],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmwq7vUYAAf1On.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmwq7vUYAAf1On.jpg","url":"https:\/\/t.co\/5KpJZeJ1kG","display_url":"pic.twitter.com\/5KpJZeJ1kG","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187174241063432192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":1638,"h":2048,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187174228425990144,"id_str":"1187174228425990144","indices":[197,220],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmwq7vUYAAf1On.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmwq7vUYAAf1On.jpg","url":"https:\/\/t.co\/5KpJZeJ1kG","display_url":"pic.twitter.com\/5KpJZeJ1kG","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187174241063432192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":544,"h":680,"resize":"fit"},"large":{"w":1638,"h":2048,"resize":"fit"},"medium":{"w":960,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1187174228476362753,"id_str":"1187174228476362753","indices":[197,220],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmwq77VAAEHZqM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmwq77VAAEHZqM.jpg","url":"https:\/\/t.co\/5KpJZeJ1kG","display_url":"pic.twitter.com\/5KpJZeJ1kG","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187174241063432192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":816,"h":612,"resize":"fit"},"medium":{"w":816,"h":612,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187174228467912705,"id_str":"1187174228467912705","indices":[197,220],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmwq75UEAEU9oN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmwq75UEAEU9oN.jpg","url":"https:\/\/t.co\/5KpJZeJ1kG","display_url":"pic.twitter.com\/5KpJZeJ1kG","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187174241063432192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1187174228476321793,"id_str":"1187174228476321793","indices":[197,220],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmwq77UYAE7EUe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmwq77UYAE7EUe.jpg","url":"https:\/\/t.co\/5KpJZeJ1kG","display_url":"pic.twitter.com\/5KpJZeJ1kG","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187174241063432192\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 22:49:32 +0000 2019","id":1187139016304418816,"id_str":"1187139016304418816","full_text":"Slide + deck for Theory of Virtuality Culture starting in 10 minutes conference room + 12: https:\/\/t.co\/4Nua3T1wEx @aect #aect #aect19 #aect19inspired","truncated":false,"display_text_range":[0,146],"entities":{"hashtags":[{"text":"aect","indices":[117,122]},{"text":"aect19","indices":[123,130]},{"text":"aect19inspired","indices":[131,146]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[111,116]}],"urls":[{"url":"https:\/\/t.co\/4Nua3T1wEx","expanded_url":"https:\/\/docs.google.com\/presentation\/d\/1if1hPS1lp-3_hQDe7KLG18Bf5d3LSg4irTWfN5gthb0","display_url":"docs.google.com\/presentation\/d\u2026","indices":[87,110]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 03:49:56 +0000 2019","id":1187214617573023745,"id_str":"1187214617573023745","full_text":"@jeroen69 + If only everyone thought this way when creating goals for any purpose! We + are all human and we all matter \ud83d\ude00\n#AECT19 #AECT19inspired #fsu2040","truncated":false,"display_text_range":[10,150],"entities":{"hashtags":[{"text":"AECT19","indices":[118,125]},{"text":"AECT19inspired","indices":[126,141]},{"text":"fsu2040","indices":[142,150]}],"symbols":[],"user_mentions":[{"screen_name":"jeroen69","name":"Jeroen","id":6848632,"id_str":"6848632","indices":[0,9]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1186680396076875776,"in_reply_to_status_id_str":"1186680396076875776","in_reply_to_user_id":6848632,"in_reply_to_user_id_str":"6848632","in_reply_to_screen_name":"jeroen69","user":{"id":1169290337594093568,"id_str":"1169290337594093568","name":"Chloe + D","screen_name":"chloed2040","location":"","description":"fsu c\/o 2019!! + Eme2040 account","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3,"friends_count":11,"listed_count":1,"created_at":"Wed + Sep 04 16:45:29 +0000 2019","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":34,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1169296165059346433\/-Uq_9Q5D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1169296165059346433\/-Uq_9Q5D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1169290337594093568\/1567616826","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 23:51:25 +0000 2019","id":1187154591495778305,"id_str":"1187154591495778305","full_text":"RT + @tutaleni: eLearning: An International Collaborative Exploration of Higher-Educational + Technology Usage in Africa. #aect19inspired #AECT\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 18:51:32 +0000 2019","id":1187079123249725440,"id_str":"1187079123249725440","full_text":"eLearning: + An International Collaborative Exploration of Higher-Educational Technology + Usage in Africa. #aect19inspired #AECT19 https:\/\/t.co\/SijSYr49Me","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"aect19inspired","indices":[104,119]},{"text":"AECT19","indices":[120,127]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187079100675940352,"id_str":"1187079100675940352","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","url":"https:\/\/t.co\/SijSYr49Me","display_url":"pic.twitter.com\/SijSYr49Me","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187079123249725440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":982,"h":728,"resize":"fit"},"medium":{"w":982,"h":728,"resize":"fit"},"small":{"w":680,"h":504,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187079100675940352,"id_str":"1187079100675940352","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","url":"https:\/\/t.co\/SijSYr49Me","display_url":"pic.twitter.com\/SijSYr49Me","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187079123249725440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":982,"h":728,"resize":"fit"},"medium":{"w":982,"h":728,"resize":"fit"},"small":{"w":680,"h":504,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 01:17:04 +0000 2019","id":1187176146175172609,"id_str":"1187176146175172609","full_text":"RT + @nikiwats23: Proud to represent @ConnectWise with ID @jennird in Las Vegas + for @AECT. #instructionaldesign #aect19 #aect19inspired https\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[89,109]},{"text":"aect19","indices":[110,117]},{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"nikiwats23","name":"Niki + Watson","id":2861017036,"id_str":"2861017036","indices":[3,14]},{"screen_name":"ConnectWise","name":"ConnectWise","id":16668855,"id_str":"16668855","indices":[35,47]},{"screen_name":"jennird","name":"Jennifer + DeLarm","id":24223937,"id_str":"24223937","indices":[56,64]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[82,87]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 22:06:11 +0000 2019","id":1187128109641814016,"id_str":"1187128109641814016","full_text":"Proud + to represent @ConnectWise with ID @jennird in Las Vegas for @AECT. #instructionaldesign + #aect19 #aect19inspired https:\/\/t.co\/LyUKc62IYm","truncated":false,"display_text_range":[0,117],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[73,93]},{"text":"aect19","indices":[94,101]},{"text":"aect19inspired","indices":[102,117]}],"symbols":[],"user_mentions":[{"screen_name":"ConnectWise","name":"ConnectWise","id":16668855,"id_str":"16668855","indices":[19,31]},{"screen_name":"jennird","name":"Jennifer + DeLarm","id":24223937,"id_str":"24223937","indices":[40,48]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[66,71]}],"urls":[],"media":[{"id":1187128096618450945,"id_str":"1187128096618450945","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmGttXUEAEPrMn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmGttXUEAEPrMn.jpg","url":"https:\/\/t.co\/LyUKc62IYm","display_url":"pic.twitter.com\/LyUKc62IYm","expanded_url":"https:\/\/twitter.com\/nikiwats23\/status\/1187128109641814016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"small":{"w":543,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187128096618450945,"id_str":"1187128096618450945","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmGttXUEAEPrMn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmGttXUEAEPrMn.jpg","url":"https:\/\/t.co\/LyUKc62IYm","display_url":"pic.twitter.com\/LyUKc62IYm","expanded_url":"https:\/\/twitter.com\/nikiwats23\/status\/1187128109641814016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":957,"h":1200,"resize":"fit"},"large":{"w":1634,"h":2048,"resize":"fit"},"small":{"w":543,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187128096626864128,"id_str":"1187128096626864128","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmGttZUcAAXjb1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmGttZUcAAXjb1.jpg","url":"https:\/\/t.co\/LyUKc62IYm","display_url":"pic.twitter.com\/LyUKc62IYm","expanded_url":"https:\/\/twitter.com\/nikiwats23\/status\/1187128109641814016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":981,"h":1200,"resize":"fit"},"small":{"w":556,"h":680,"resize":"fit"},"large":{"w":1440,"h":1762,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2861017036,"id_str":"2861017036","name":"Niki + Watson","screen_name":"nikiwats23","location":"","description":"lover, not + a fighter","url":"https:\/\/t.co\/yDBCkJthUM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yDBCkJthUM","expanded_url":"http:\/\/www.nikishawatson.com","display_url":"nikishawatson.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":157,"friends_count":700,"listed_count":19,"created_at":"Tue + Nov 04 16:58:08 +0000 2014","favourites_count":845,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":624,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593920214175186944\/KosJSXMv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593920214175186944\/KosJSXMv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2861017036\/1442268041","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 23:46:33 +0000 2019","id":1187153368390586368,"id_str":"1187153368390586368","full_text":"#aect19 + Tip #31 - In a 30 minute presentation, spend at least 20 minutes discussing + the literature review, making it so that you have to rush through the actual + study.","truncated":false,"display_text_range":[0,167],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 03:51:39 +0000 2019","id":1187215049628225536,"id_str":"1187215049628225536","full_text":"RT + @nicolapallitt: Our #aect19inspired #aect19 slides for presentations about + our IRCEES processes & collaborative practices are at https:\/\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19inspired","indices":[23,38]},{"text":"aect19","indices":[39,46]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 03:40:06 +0000 2019","id":1187212142543421440,"id_str":"1187212142543421440","full_text":"Our + #aect19inspired #aect19 slides for presentations about our IRCEES processes + & collaborative practices are at https:\/\/t.co\/FztUPU6yZC & https:\/\/t.co\/rYzrohgoyb + Had a good time presenting with @christieliuidtr Hannah Grossman & @AmyLomellini_ID + @emergeAfrica @aectclt @AECT","truncated":false,"display_text_range":[0,288],"entities":{"hashtags":[{"text":"aect19inspired","indices":[4,19]},{"text":"aect19","indices":[20,27]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[242,258]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[259,272]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[274,282]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[283,288]}],"urls":[{"url":"https:\/\/t.co\/FztUPU6yZC","expanded_url":"http:\/\/bit.ly\/IRCEES1","display_url":"bit.ly\/IRCEES1","indices":[117,140]},{"url":"https:\/\/t.co\/rYzrohgoyb","expanded_url":"http:\/\/bit.ly\/IRCEES2","display_url":"bit.ly\/IRCEES2","indices":[147,170]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 22:45:56 +0000 2019","id":1187138110678634497,"id_str":"1187138110678634497","full_text":"Rockstar + GSA session about to start at 4pm in Conference Room 11!!!!!!! Join us! #aect19 + #aect19inspired #aectgsa https:\/\/t.co\/p0ujaUMJDM","truncated":false,"display_text_range":[0,114],"entities":{"hashtags":[{"text":"aect19","indices":[82,89]},{"text":"aect19inspired","indices":[90,105]},{"text":"aectgsa","indices":[106,114]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187138103590318080,"id_str":"1187138103590318080","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmP0MPU8AAV0tm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmP0MPU8AAV0tm.jpg","url":"https:\/\/t.co\/p0ujaUMJDM","display_url":"pic.twitter.com\/p0ujaUMJDM","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1187138110678634497\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187138103590318080,"id_str":"1187138103590318080","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmP0MPU8AAV0tm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmP0MPU8AAV0tm.jpg","url":"https:\/\/t.co\/p0ujaUMJDM","display_url":"pic.twitter.com\/p0ujaUMJDM","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1187138110678634497\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14994538,"id_str":"14994538","name":"Kzenovka","screen_name":"kzenovka","location":"Metaverse","description":"educator, + coolhunter, and sometimes puppetmaster. Metagame Book Club, Games & Sim Network + and Inevitable Instructors","url":"https:\/\/t.co\/SN1thrlVqD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SN1thrlVqD","expanded_url":"https:\/\/sites.google.com\/site\/metagamebookclub\/","display_url":"sites.google.com\/site\/metagameb\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1338,"friends_count":3152,"listed_count":228,"created_at":"Tue + Jun 03 16:35:29 +0000 2008","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15007,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14994538\/1436550079","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:55:08 +0000 2019","id":1187125327161692161,"id_str":"1187125327161692161","full_text":"Seems + like findings are quality\/ engagement of feedback more important than form + to students (gif of animated pencil) #aect19inspired https:\/\/t.co\/RD8Jq4zjs1","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187125320387706881,"id_str":"1187125320387706881","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHmEMHGUwAEGQ9z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHmEMHGUwAEGQ9z.jpg","url":"https:\/\/t.co\/RD8Jq4zjs1","display_url":"pic.twitter.com\/RD8Jq4zjs1","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1187125327161692161\/photo\/1","type":"photo","sizes":{"large":{"w":498,"h":372,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":498,"h":372,"resize":"fit"},"small":{"w":498,"h":372,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187125320387706881,"id_str":"1187125320387706881","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHmEMHGUwAEGQ9z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHmEMHGUwAEGQ9z.jpg","url":"https:\/\/t.co\/RD8Jq4zjs1","display_url":"pic.twitter.com\/RD8Jq4zjs1","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1187125327161692161\/photo\/1","type":"animated_gif","sizes":{"large":{"w":498,"h":372,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":498,"h":372,"resize":"fit"},"small":{"w":498,"h":372,"resize":"fit"}},"video_info":{"aspect_ratio":[83,62],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHmEMHGUwAEGQ9z.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1187124808045039616,"in_reply_to_status_id_str":"1187124808045039616","in_reply_to_user_id":3733671685,"in_reply_to_user_id_str":"3733671685","in_reply_to_screen_name":"jennkepka","user":{"id":3733671685,"id_str":"3733671685","name":"Jenn + Kepka","screen_name":"jennkepka","location":"Oregon, USA","description":"Outreach\/retention\/tutoring + faculty in OR; doc student in #edtech at Boise St. Past: UO, WOU, KU. \u2764 + #oer & \u2615 & \u26f8. Views my own. she\/her\/hers","url":"https:\/\/t.co\/nvazHyg5JB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nvazHyg5JB","expanded_url":"http:\/\/jennkepka.com","display_url":"jennkepka.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":700,"friends_count":1225,"listed_count":45,"created_at":"Wed + Sep 30 05:39:55 +0000 2015","favourites_count":19836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3733671685\/1446791014","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 01:14:18 +0000 2019","id":1187175450377932800,"id_str":"1187175450377932800","full_text":"RT + @d_mulder: It has been a fantastic day of learning, thinking, conversation, + and inspiration at #aect19. And always great to hang out wit\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[98,105]}],"symbols":[],"user_mentions":[{"screen_name":"d_mulder","name":"Dr. + Dave Mulder","id":30278154,"id_str":"30278154","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 24 00:54:09 +0000 2019","id":1187170379850076160,"id_str":"1187170379850076160","full_text":"It + has been a fantastic day of learning, thinking, conversation, and inspiration + at #aect19. And always great to hang out with my @edtechbsu friends! I am + #aect19inspired.","truncated":false,"display_text_range":[0,171],"entities":{"hashtags":[{"text":"aect19","indices":[84,91]},{"text":"aect19inspired","indices":[155,170]}],"symbols":[],"user_mentions":[{"screen_name":"edtechbsu","name":"EDTECH@Boise + State","id":29818149,"id_str":"29818149","indices":[130,140]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":30278154,"id_str":"30278154","name":"Dr. + Dave Mulder","screen_name":"d_mulder","location":"Iowa","description":"Christ-follower. + Husband of one and dad of two. Professor of Education at @dordtuniversity. + #EdTech is my jam. My tweets speak only for me.","url":"https:\/\/t.co\/i9IOUI9RZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/i9IOUI9RZC","expanded_url":"https:\/\/drdave.substack.com\/","display_url":"drdave.substack.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3921,"friends_count":949,"listed_count":249,"created_at":"Fri + Apr 10 18:27:10 +0000 2009","favourites_count":39976,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30278154\/1568172162","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 24 00:01:22 +0000 2019","id":1187157094639685632,"id_str":"1187157094639685632","full_text":"Ran + into Dr. David Merrill \ud83d\ude0aon my way to Birds of a Feather session + #aect19inspired #aect19 https:\/\/t.co\/sbFVAkI1rI","truncated":false,"display_text_range":[0,91],"entities":{"hashtags":[{"text":"aect19inspired","indices":[68,83]},{"text":"aect19","indices":[84,91]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187157089216430080,"id_str":"1187157089216430080","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmhFTNVAAAYj8P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmhFTNVAAAYj8P.jpg","url":"https:\/\/t.co\/sbFVAkI1rI","display_url":"pic.twitter.com\/sbFVAkI1rI","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187157094639685632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187157089216430080,"id_str":"1187157089216430080","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmhFTNVAAAYj8P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmhFTNVAAAYj8P.jpg","url":"https:\/\/t.co\/sbFVAkI1rI","display_url":"pic.twitter.com\/sbFVAkI1rI","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187157094639685632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:53:04 +0000 2019","id":1187124808045039616,"id_str":"1187124808045039616","full_text":"Now, + \"Student Feelings of Connectedness and Instructor Feedback: The Impact of + the Format Used,\" talking about handwritten vs. typed feedback https:\/\/t.co\/3wco9dFbsi + #aect19inspired","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"aect19inspired","indices":[166,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3wco9dFbsi","expanded_url":"http:\/\/tinyurl.com\/y246f58h","display_url":"tinyurl.com\/y246f58h","indices":[142,165]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3733671685,"id_str":"3733671685","name":"Jenn + Kepka","screen_name":"jennkepka","location":"Oregon, USA","description":"Outreach\/retention\/tutoring + faculty in OR; doc student in #edtech at Boise St. Past: UO, WOU, KU. \u2764 + #oer & \u2615 & \u26f8. Views my own. she\/her\/hers","url":"https:\/\/t.co\/nvazHyg5JB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nvazHyg5JB","expanded_url":"http:\/\/jennkepka.com","display_url":"jennkepka.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":700,"friends_count":1225,"listed_count":45,"created_at":"Wed + Sep 30 05:39:55 +0000 2015","favourites_count":19836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3733671685\/1446791014","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1187121094483795968%2C1187120923821756416%2C1187119055347408896%2C1187118993569542145%2C1187118408548012032%2C1187117975364464640%2C1187117579598360577%2C1187117090739609600%2C1187114994049134593%2C1187114256833175558%2C1187112443085852672%2C1187111277946032128%2C1187110804660736000%2C1187110604277813248%2C1187110401592291328%2C1187110296533385216%2C1187110168355409920%2C1187110140840833024%2C1187110140840833024%2C1187109998096052226%2C1187109728754663424%2C1187109626266841088%2C1187109494901243904%2C1187109387585802241%2C1187109277074259968%2C1187109186099802112%2C1187109079904243712%2C1187109062527373315%2C1187109017530712065%2C1187108840342315008%2C1187108644539650048%2C1187108579842514944%2C1187108537773654016%2C1187108470111100928%2C1187108443175276544%2C1187108337617260545%2C1187108202204123136%2C1187108154682662912%2C1187108043936284672%2C1187107879431487488%2C1187107632923832321%2C1187107377838837761%2C1187106959331221504%2C1187106639020584960%2C1187106273147285505%2C1187106211532984320%2C1187104971327598592%2C1187104425866715137%2C1187102967515639808%2C1187101804992987138%2C1187101724365881344%2C1187101677142319105%2C1187101647412977664%2C1187101562016948224%2C1187101556874698752%2C1187101319472939008%2C1187098337842843648%2C1187097570067152896%2C1187097147209994240%2C1187096799053410304%2C1187095643485028352%2C1187095643485028352%2C1187093990912323584%2C1187093531673808896%2C1187093332561924099%2C1187093011588497409%2C1187092833242513408%2C1187092373756469248%2C1187092164150358016%2C1187091501660041216%2C1187090433647624192%2C1187090223680741376%2C1187090200796647424%2C1187090018331811840%2C1187089842620043270%2C1187089460950962177%2C1187089334408605696%2C1187088889204203520%2C1187088685763723264%2C1187088625609003008%2C1187088365323051008%2C1187088031439675392%2C1187087544305045518%2C1187086059852582913%2C1187083788955701248%2C1187081957944909824%2C1187081905033728000%2C1187080404932521984%2C1187080195724861440%2C1187080015348789248%2C1187080015348789248%2C1187079552314462208%2C1187079547126108160%2C1187079123249725440%2C1187077592571994113%2C1187077542521368576%2C1187075927949242368%2C1187075552252846080%2C1187075507772215296%2C1187074643644993536&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:48 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:48 GMT + x-transaction: 0085326e7d583308 + content-length: '52845' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '283' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '364' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Oct 23 18:53:13 +0000 2019","id":1187079547126108160,"id_str":"1187079547126108160","full_text":"R + workshop at AECT\nThank you, @bretsw and @spgreenhalgh for the great workshop + and for helping us learn about R! #aect19inspired #aect19 https:\/\/t.co\/i77B8oMU4t","truncated":false,"display_text_range":[0,137],"entities":{"hashtags":[{"text":"aect19inspired","indices":[114,129]},{"text":"aect19","indices":[130,137]}],"symbols":[],"user_mentions":[{"screen_name":"bretsw","name":"Dr. + Bret Staudt Willet","id":53167706,"id_str":"53167706","indices":[30,37]},{"screen_name":"spgreenhalgh","name":"Spencer + Greenhalgh, PhD","id":129211252,"id_str":"129211252","indices":[42,55]}],"urls":[],"media":[{"id":1187079540083838976,"id_str":"1187079540083838976","indices":[138,161],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHlajWLU0AAjqyw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHlajWLU0AAjqyw.jpg","url":"https:\/\/t.co\/i77B8oMU4t","display_url":"pic.twitter.com\/i77B8oMU4t","expanded_url":"https:\/\/twitter.com\/Naterci89806126\/status\/1187079547126108160\/photo\/1","type":"photo","sizes":{"medium":{"w":180,"h":144,"resize":"fit"},"small":{"w":180,"h":144,"resize":"fit"},"large":{"w":180,"h":144,"resize":"fit"},"thumb":{"w":144,"h":144,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1187079540083838976,"id_str":"1187079540083838976","indices":[138,161],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHlajWLU0AAjqyw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHlajWLU0AAjqyw.jpg","url":"https:\/\/t.co\/i77B8oMU4t","display_url":"pic.twitter.com\/i77B8oMU4t","expanded_url":"https:\/\/twitter.com\/Naterci89806126\/status\/1187079547126108160\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":180,"h":144,"resize":"fit"},"small":{"w":180,"h":144,"resize":"fit"},"large":{"w":180,"h":144,"resize":"fit"},"thumb":{"w":144,"h":144,"resize":"crop"}},"video_info":{"aspect_ratio":[5,4],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHlajWLU0AAjqyw.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":901153375680647168,"id_str":"901153375680647168","name":"Natercia + Valle","screen_name":"NaterciaValle","location":"","description":"STEM Instruction + Librarian - Assistant University Librarian | Marston Science Library | University + of Florida","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":38,"listed_count":0,"created_at":"Fri + Aug 25 18:44:42 +0000 2017","favourites_count":63,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":26,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1186735752891133953\/clydlSoR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186735752891133953\/clydlSoR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/901153375680647168\/1571775671","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:55:48 +0000 2019","id":1187080195724861440,"id_str":"1187080195724861440","full_text":"Looks + like a great book Brian! Looking forward to reading it on @EdTech_Books #aect19 + https:\/\/t.co\/PaoKiVXDfr","truncated":false,"display_text_range":[0,85],"entities":{"hashtags":[{"text":"aect19","indices":[78,85]}],"symbols":[],"user_mentions":[{"screen_name":"EdTech_Books","name":"EdTech + Books","id":1113476916076367872,"id_str":"1113476916076367872","indices":[64,77]}],"urls":[],"media":[{"id":1187080185264230400,"id_str":"1187080185264230400","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlbI5qUUAAz1XI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlbI5qUUAAz1XI.jpg","url":"https:\/\/t.co\/PaoKiVXDfr","display_url":"pic.twitter.com\/PaoKiVXDfr","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187080195724861440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187080185264230400,"id_str":"1187080185264230400","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlbI5qUUAAz1XI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlbI5qUUAAz1XI.jpg","url":"https:\/\/t.co\/PaoKiVXDfr","display_url":"pic.twitter.com\/PaoKiVXDfr","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187080195724861440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17639668,"id_str":"17639668","name":"Rick + West","screen_name":"richardewest","location":"Provo, ut","description":"Instructional + Designer, Researcher, & Evaluator at Brigham Young University","url":"http:\/\/t.co\/Nc39wWEhGM","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Nc39wWEhGM","expanded_url":"http:\/\/richardewest.com","display_url":"richardewest.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":223,"listed_count":39,"created_at":"Wed + Nov 26 02:26:26 +0000 2008","favourites_count":799,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3339,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17639668\/1446650027","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:33:44 +0000 2019","id":1187074643644993536,"id_str":"1187074643644993536","full_text":"RT + @ThomasLamey1: Dr. Eugene Kowch, along presenting on Trends in Systems Thinking + and Change: An overview of the STC Major Work Reference\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ThomasLamey1","name":"Thomas + Lamey","id":1426994293898629126,"id_str":"1426994293898629126","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 18:19:46 +0000 2019","id":1187071127539146753,"id_str":"1187071127539146753","full_text":"Dr. + Eugene Kowch, along presenting on Trends in Systems Thinking and Change: An + overview of the STC Major Work Reference Volume aect2 #aect19 @ Westgate Las + Vegas Resort & Casino https:\/\/t.co\/nWwP9Btqcy","truncated":false,"display_text_range":[0,206],"entities":{"hashtags":[{"text":"aect19","indices":[134,141]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nWwP9Btqcy","expanded_url":"https:\/\/www.instagram.com\/p\/B3-HTmODMOl\/?igshid=2i670o19polg","display_url":"instagram.com\/p\/B3-HTmODMOl\/\u2026","indices":[183,206]}]},"source":"\u003ca + href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":{"type":"Point","coordinates":[36.13625965,-115.15144543]},"coordinates":{"type":"Point","coordinates":[-115.15144543,36.13625965]},"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:45:27 +0000 2019","id":1187077592571994113,"id_str":"1187077592571994113","full_text":"GEICO + saved 15% in 15 minutes on me. #aect19","truncated":false,"display_text_range":[0,44],"entities":{"hashtags":[{"text":"aect19","indices":[37,44]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:04:50 +0000 2019","id":1187097570067152896,"id_str":"1187097570067152896","full_text":"#aect19 + Tip #35 - Drive up attendance at your presentation by offering free pocket + lint.","truncated":false,"display_text_range":[0,88],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 19:34:50 +0000 2019","id":1187090018331811840,"id_str":"1187090018331811840","full_text":"I\u2019m + @AECT and just realized that I\u2019m missing out on a great opportunity to + connect. I\u2019m a doc student hoping to write my dissertation on #accessibility + Anyone interested in a coffee chat tomorrow morning? #aect2019 #aect19inspired","truncated":false,"display_text_range":[0,230],"entities":{"hashtags":[{"text":"accessibility","indices":[137,151]},{"text":"aect2019","indices":[205,214]},{"text":"aect19inspired","indices":[215,230]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[4,9]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 19:02:35 +0000 2019","id":1187081905033728000,"id_str":"1187081905033728000","full_text":"RT + @tutaleni: eLearning: An International Collaborative Exploration of Higher-Educational + Technology Usage in Africa. #aect19inspired #AECT\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 18:51:32 +0000 2019","id":1187079123249725440,"id_str":"1187079123249725440","full_text":"eLearning: + An International Collaborative Exploration of Higher-Educational Technology + Usage in Africa. #aect19inspired #AECT19 https:\/\/t.co\/SijSYr49Me","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"aect19inspired","indices":[104,119]},{"text":"AECT19","indices":[120,127]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187079100675940352,"id_str":"1187079100675940352","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","url":"https:\/\/t.co\/SijSYr49Me","display_url":"pic.twitter.com\/SijSYr49Me","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187079123249725440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":982,"h":728,"resize":"fit"},"medium":{"w":982,"h":728,"resize":"fit"},"small":{"w":680,"h":504,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187079100675940352,"id_str":"1187079100675940352","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","url":"https:\/\/t.co\/SijSYr49Me","display_url":"pic.twitter.com\/SijSYr49Me","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187079123249725440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":982,"h":728,"resize":"fit"},"medium":{"w":982,"h":728,"resize":"fit"},"small":{"w":680,"h":504,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:54:54 +0000 2019","id":1187110168355409920,"id_str":"1187110168355409920","full_text":"RT + @RoutledgeEd: Check out Routledge\u2019s selection of books on #instructionaldesign, + #onlinelearning, and more at #AECT2019! https:\/\/t.co\/19M\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[61,81]},{"text":"onlinelearning","indices":[83,98]},{"text":"AECT2019","indices":[112,121]}],"symbols":[],"user_mentions":[{"screen_name":"RoutledgeEd","name":"Routledge + Education Books","id":27606068,"id_str":"27606068","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 19:02:48 +0000 2019","id":1187081957944909824,"id_str":"1187081957944909824","full_text":"Check + out Routledge\u2019s selection of books on #instructionaldesign, #onlinelearning, + and more at #AECT2019! https:\/\/t.co\/19MR7RFhRY","truncated":false,"display_text_range":[0,105],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[44,64]},{"text":"onlinelearning","indices":[66,81]},{"text":"AECT2019","indices":[95,104]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187081950298693632,"id_str":"1187081950298693632","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlcvo7U4AAWbAN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlcvo7U4AAWbAN.jpg","url":"https:\/\/t.co\/19MR7RFhRY","display_url":"pic.twitter.com\/19MR7RFhRY","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187081957944909824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187081950298693632,"id_str":"1187081950298693632","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlcvo7U4AAWbAN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlcvo7U4AAWbAN.jpg","url":"https:\/\/t.co\/19MR7RFhRY","display_url":"pic.twitter.com\/19MR7RFhRY","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187081957944909824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187081950298722305,"id_str":"1187081950298722305","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlcvo7VUAE60Wh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlcvo7VUAE60Wh.jpg","url":"https:\/\/t.co\/19MR7RFhRY","display_url":"pic.twitter.com\/19MR7RFhRY","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187081957944909824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27606068,"id_str":"27606068","name":"Routledge + Education Books","screen_name":"RoutledgeEd","location":"Global","description":"Supporting + educators, teachers, scholars and students with informative and practical + books based on leading research and classroom practice.","url":"http:\/\/t.co\/j4LZK9ypti","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/j4LZK9ypti","expanded_url":"http:\/\/www.routledge.com\/education","display_url":"routledge.com\/education","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":13833,"friends_count":3278,"listed_count":230,"created_at":"Mon + Mar 30 08:33:32 +0000 2009","favourites_count":2658,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10107,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"6A9ADA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27606068\/1629726175","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"6A9ADA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:51:00 +0000 2019","id":1187109186099802112,"id_str":"1187109186099802112","full_text":"Smart + education, big data, #AI, system thinking framework, not so distant @AECT + @SICET @CAET international perspectives, #aect19 #aect19inspired https:\/\/t.co\/Z4L0QALidW + https:\/\/t.co\/lEnDZ5KrI3","truncated":false,"display_text_range":[0,168],"entities":{"hashtags":[{"text":"AI","indices":[27,30]},{"text":"aect19","indices":[121,128]},{"text":"aect19inspired","indices":[129,144]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[74,79]},{"screen_name":"SICET","name":"SICET","id":114832274,"id_str":"114832274","indices":[80,86]},{"screen_name":"caet","name":"caet","id":15079288,"id_str":"15079288","indices":[87,92]}],"urls":[{"url":"https:\/\/t.co\/Z4L0QALidW","expanded_url":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880","display_url":"twitter.com\/ekowch\/status\/\u2026","indices":[145,168]}],"media":[{"id":1187109178902376448,"id_str":"1187109178902376448","indices":[169,192],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl1gjYU8AAXlnc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl1gjYU8AAXlnc.jpg","url":"https:\/\/t.co\/lEnDZ5KrI3","display_url":"pic.twitter.com\/lEnDZ5KrI3","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187109186099802112\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1588,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":930,"resize":"fit"},"small":{"w":680,"h":527,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187109178902376448,"id_str":"1187109178902376448","indices":[169,192],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl1gjYU8AAXlnc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl1gjYU8AAXlnc.jpg","url":"https:\/\/t.co\/lEnDZ5KrI3","display_url":"pic.twitter.com\/lEnDZ5KrI3","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187109186099802112\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1588,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":930,"resize":"fit"},"small":{"w":680,"h":527,"resize":"fit"}},"ext_alt_text":null},{"id":1187109178902319106,"id_str":"1187109178902319106","indices":[169,192],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl1gjYUEAIkZqA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl1gjYUEAIkZqA.jpg","url":"https:\/\/t.co\/lEnDZ5KrI3","display_url":"pic.twitter.com\/lEnDZ5KrI3","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187109186099802112\/photo\/1","type":"photo","sizes":{"medium":{"w":675,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1334,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187109178898149376,"id_str":"1187109178898149376","indices":[169,192],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl1gjXUcAAPgpb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl1gjXUcAAPgpb.jpg","url":"https:\/\/t.co\/lEnDZ5KrI3","display_url":"pic.twitter.com\/lEnDZ5KrI3","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187109186099802112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":482,"resize":"fit"},"large":{"w":2048,"h":1452,"resize":"fit"},"medium":{"w":1200,"h":851,"resize":"fit"}},"ext_alt_text":null},{"id":1187109178982055936,"id_str":"1187109178982055936","indices":[169,192],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl1gjrUwAAfqLA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl1gjrUwAAfqLA.jpg","url":"https:\/\/t.co\/lEnDZ5KrI3","display_url":"pic.twitter.com\/lEnDZ5KrI3","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187109186099802112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":918,"resize":"fit"},"small":{"w":680,"h":520,"resize":"fit"},"large":{"w":2048,"h":1566,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1185292389549690880,"quoted_status_id_str":"1185292389549690880","quoted_status_permalink":{"url":"https:\/\/t.co\/Z4L0QALidW","expanded":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880","display":"twitter.com\/ekowch\/status\/\u2026"},"quoted_status":{"created_at":"Fri + Oct 18 20:31:41 +0000 2019","id":1185292389549690880,"id_str":"1185292389549690880","full_text":"AECT + Conventioneers! Join me with national leaders from China talking about the + latest trends In China\u2019s vast Education technology transformation CAET + Special Session in Las Vegas: Wed. Oct. 23 at 1:00 PM in Convention Centre + Pavilion 9. Don\u2019t miss it! @AECT #aect19 @edtechchat https:\/\/t.co\/pK7btfip4l","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"aect19","indices":[259,266]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[253,258]},{"screen_name":"edtechchat","name":"Chris + Borg","id":550773912,"id_str":"550773912","indices":[267,278]}],"urls":[],"media":[{"id":1185292370071306240,"id_str":"1185292370071306240","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","url":"https:\/\/t.co\/pK7btfip4l","display_url":"pic.twitter.com\/pK7btfip4l","expanded_url":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185292370071306240,"id_str":"1185292370071306240","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","url":"https:\/\/t.co\/pK7btfip4l","display_url":"pic.twitter.com\/pK7btfip4l","expanded_url":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28518944,"id_str":"28518944","name":"Dr. + Eugene Kowch","screen_name":"ekowch","location":"Calgary Alberta Canada","description":"Scholar, + Principal, Teacher, Engineer, Past President, AECT, & AERA SIG 17 | Helping + leaders create more adaptable education systems #highered #leadership","url":"https:\/\/t.co\/oDa3vYShbl","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oDa3vYShbl","expanded_url":"https:\/\/ekowch.wixsite.com\/systemsthinkingbook","display_url":"ekowch.wixsite.com\/systemsthinkin\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":936,"friends_count":887,"listed_count":0,"created_at":"Fri + Apr 03 06:44:28 +0000 2009","favourites_count":2393,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1315,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/705885195950370816\/i4XMnRs__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/705885195950370816\/i4XMnRs__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28518944\/1561768634","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:20:41 +0000 2019","id":1187101556874698752,"id_str":"1187101556874698752","full_text":"Great + view for little break between sessions #aect19inspired #aect2019 #learning + https:\/\/t.co\/LkDRPSg640","truncated":false,"display_text_range":[0,80],"entities":{"hashtags":[{"text":"aect19inspired","indices":[45,60]},{"text":"aect2019","indices":[61,70]},{"text":"learning","indices":[71,80]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187101549845041154,"id_str":"1187101549845041154","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluke7UUAI_tDT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluke7UUAI_tDT.jpg","url":"https:\/\/t.co\/LkDRPSg640","display_url":"pic.twitter.com\/LkDRPSg640","expanded_url":"https:\/\/twitter.com\/kcsabina_\/status\/1187101556874698752\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187101549845041154,"id_str":"1187101549845041154","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluke7UUAI_tDT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluke7UUAI_tDT.jpg","url":"https:\/\/t.co\/LkDRPSg640","display_url":"pic.twitter.com\/LkDRPSg640","expanded_url":"https:\/\/twitter.com\/kcsabina_\/status\/1187101556874698752\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":930858708258738178,"id_str":"930858708258738178","name":"Sabina + KC","screen_name":"kcsabina_","location":"Odessa, TX","description":"Ed.D, + Instructional Design and Performance Technology, Instructional Designer, Life + Coach, Dreamer, Do-er, Achiever, Optimist, Learner, Teacher","url":"https:\/\/t.co\/IBPYKJja50","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IBPYKJja50","expanded_url":"https:\/\/www.linkedin.com\/in\/sabina-k-c-044b77133\/","display_url":"linkedin.com\/in\/sabina-k-c-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":496,"listed_count":2,"created_at":"Wed + Nov 15 18:03:05 +0000 2017","favourites_count":3136,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":415,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1390058813223575560\/eKI3EIR__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1390058813223575560\/eKI3EIR__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/930858708258738178\/1613749154","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:21:09 +0000 2019","id":1187101677142319105,"id_str":"1187101677142319105","full_text":"Happy + to announce that me and Akbulut, researchers from Anadolu University, received + Reviewer Excellence Award by ETR&D presented at #AECT19 #ETRD @yvzkblt + @AECT https:\/\/t.co\/QJXzm3Nc74","truncated":false,"display_text_range":[0,165],"entities":{"hashtags":[{"text":"AECT19","indices":[137,144]},{"text":"ETRD","indices":[145,150]}],"symbols":[],"user_mentions":[{"screen_name":"yvzkblt","name":"Yavuz + Akbulut","id":257891862,"id_str":"257891862","indices":[151,159]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[160,165]}],"urls":[],"media":[{"id":1187101649879425025,"id_str":"1187101649879425025","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","url":"https:\/\/t.co\/QJXzm3Nc74","display_url":"pic.twitter.com\/QJXzm3Nc74","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187101677142319105\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187101649879425025,"id_str":"1187101649879425025","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","url":"https:\/\/t.co\/QJXzm3Nc74","display_url":"pic.twitter.com\/QJXzm3Nc74","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187101677142319105\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":67,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 19:48:47 +0000 2019","id":1187093531673808896,"id_str":"1187093531673808896","full_text":"Today + I did my first @SpheroEdu Bolt program. It rolls a square and says \"cool\". + At #aect19inspired in the TED Inspire! Introduction to Block Programming https:\/\/t.co\/SX3nfWioe4 + https:\/\/t.co\/rdsvQ2DgL9","truncated":false,"display_text_range":[0,177],"entities":{"hashtags":[{"text":"aect19inspired","indices":[84,99]}],"symbols":[],"user_mentions":[{"screen_name":"SpheroEdu","name":"Sphero + Education","id":1335870978,"id_str":"1335870978","indices":[21,31]}],"urls":[{"url":"https:\/\/t.co\/SX3nfWioe4","expanded_url":"http:\/\/l.core-apps.com\/aect19\/event?event=b038d05c063d8ab60ed1330fb70e20a8","display_url":"l.core-apps.com\/aect19\/event?e\u2026","indices":[154,177]}],"media":[{"id":1187093523788521472,"id_str":"1187093523788521472","indices":[178,201],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlnRTiU4AAFZd-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlnRTiU4AAFZd-.jpg","url":"https:\/\/t.co\/rdsvQ2DgL9","display_url":"pic.twitter.com\/rdsvQ2DgL9","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187093531673808896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":584,"h":1200,"resize":"fit"},"large":{"w":996,"h":2048,"resize":"fit"},"small":{"w":331,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187093523788521472,"id_str":"1187093523788521472","indices":[178,201],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlnRTiU4AAFZd-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlnRTiU4AAFZd-.jpg","url":"https:\/\/t.co\/rdsvQ2DgL9","display_url":"pic.twitter.com\/rdsvQ2DgL9","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187093531673808896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":584,"h":1200,"resize":"fit"},"large":{"w":996,"h":2048,"resize":"fit"},"small":{"w":331,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:59:18 +0000 2019","id":1187111277946032128,"id_str":"1187111277946032128","full_text":"Dr. + @michaelmgrant accepting the @AECT gavel as president. \n#aect19inspired \n@UofSCEducation + https:\/\/t.co\/r1sSVcaWhT","truncated":false,"display_text_range":[0,92],"entities":{"hashtags":[{"text":"aect19inspired","indices":[60,75]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[4,18]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[33,38]},{"screen_name":"UofSCEducation","name":"UofSC + Education","id":1269656353,"id_str":"1269656353","indices":[77,92]}],"urls":[],"media":[{"id":1187111271872643072,"id_str":"1187111271872643072","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl3aYTUwAA5Gsr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl3aYTUwAA5Gsr.jpg","url":"https:\/\/t.co\/r1sSVcaWhT","display_url":"pic.twitter.com\/r1sSVcaWhT","expanded_url":"https:\/\/twitter.com\/EdTech_UofSC\/status\/1187111277946032128\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":564,"h":680,"resize":"fit"},"large":{"w":1698,"h":2048,"resize":"fit"},"medium":{"w":995,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187111271872643072,"id_str":"1187111271872643072","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl3aYTUwAA5Gsr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl3aYTUwAA5Gsr.jpg","url":"https:\/\/t.co\/r1sSVcaWhT","display_url":"pic.twitter.com\/r1sSVcaWhT","expanded_url":"https:\/\/twitter.com\/EdTech_UofSC\/status\/1187111277946032128\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":564,"h":680,"resize":"fit"},"large":{"w":1698,"h":2048,"resize":"fit"},"medium":{"w":995,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2835369671,"id_str":"2835369671","name":"LD&T + and EdTech at UofSC","screen_name":"EdTech_UofSC","location":"South Carolina","description":"Our + LD&T\/EdTech programs are shared with USC-Columbia & USC-Aiken. We offer Masters + & doctoral degrees + distance education certification \u2014 all 100% online!","url":"https:\/\/t.co\/S5lHVmmaud","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/S5lHVmmaud","expanded_url":"https:\/\/sc.edu\/study\/colleges_schools\/education\/study\/advanced_study_in_education\/learning_design_te","display_url":"sc.edu\/study\/colleges\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":455,"friends_count":50,"listed_count":16,"created_at":"Fri + Oct 17 18:52:36 +0000 2014","favourites_count":353,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":667,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1265318847764148226\/-Y6YxrdB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1265318847764148226\/-Y6YxrdB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2835369671\/1590519327","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":29,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:48:50 +0000 2019","id":1187108644539650048,"id_str":"1187108644539650048","full_text":"RT + @tutaleni: eLearning: An International Collaborative Exploration of Higher-Educational + Technology Usage in Africa. #aect19inspired #AECT\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[118,133]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 18:51:32 +0000 2019","id":1187079123249725440,"id_str":"1187079123249725440","full_text":"eLearning: + An International Collaborative Exploration of Higher-Educational Technology + Usage in Africa. #aect19inspired #AECT19 https:\/\/t.co\/SijSYr49Me","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"aect19inspired","indices":[104,119]},{"text":"AECT19","indices":[120,127]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187079100675940352,"id_str":"1187079100675940352","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","url":"https:\/\/t.co\/SijSYr49Me","display_url":"pic.twitter.com\/SijSYr49Me","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187079123249725440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":982,"h":728,"resize":"fit"},"medium":{"w":982,"h":728,"resize":"fit"},"small":{"w":680,"h":504,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187079100675940352,"id_str":"1187079100675940352","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","url":"https:\/\/t.co\/SijSYr49Me","display_url":"pic.twitter.com\/SijSYr49Me","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187079123249725440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":982,"h":728,"resize":"fit"},"medium":{"w":982,"h":728,"resize":"fit"},"small":{"w":680,"h":504,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:52:44 +0000 2019","id":1187109626266841088,"id_str":"1187109626266841088","full_text":"RT + @RitaFennelly: The panel @AECT called GSA: Narrowing Down Your Research Interests + & Being Productive is really touching on questions I\u2019v\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[28,33]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 18:53:14 +0000 2019","id":1187079552314462208,"id_str":"1187079552314462208","full_text":"The + panel @AECT called GSA: Narrowing Down Your Research Interests & Being + Productive is really touching on questions I\u2019ve been asking my advisor + such as what exactly is self plagiarism & how do you navigate publication + during your grad program. So much insight! #aect19inspired","truncated":false,"display_text_range":[0,286],"entities":{"hashtags":[{"text":"aect19inspired","indices":[271,286]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[10,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:37:10 +0000 2019","id":1187075507772215296,"id_str":"1187075507772215296","full_text":"RT + @ChildsElizabeth: Great panel starting #aect19inspired #RRUMALAT looks like + they are recording - will send the link once it is shared ht\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[42,57]},{"text":"RRUMALAT","indices":[58,67]}],"symbols":[],"user_mentions":[{"screen_name":"ChildsElizabeth","name":"Elizabeth + Childs","id":875476274,"id_str":"875476274","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 18:10:02 +0000 2019","id":1187068679508221952,"id_str":"1187068679508221952","full_text":"Great + panel starting #aect19inspired #RRUMALAT looks like they are recording - will + send the link once it is shared https:\/\/t.co\/2M9nzhrJw8","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect19inspired","indices":[21,36]},{"text":"RRUMALAT","indices":[37,46]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187068477053358080,"id_str":"1187068477053358080","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQfZLUUAA9ZeG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQfZLUUAA9ZeG.jpg","url":"https:\/\/t.co\/2M9nzhrJw8","display_url":"pic.twitter.com\/2M9nzhrJw8","expanded_url":"https:\/\/twitter.com\/ChildsElizabeth\/status\/1187068679508221952\/photo\/1","type":"photo","sizes":{"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187068477053358080,"id_str":"1187068477053358080","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQfZLUUAA9ZeG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQfZLUUAA9ZeG.jpg","url":"https:\/\/t.co\/2M9nzhrJw8","display_url":"pic.twitter.com\/2M9nzhrJw8","expanded_url":"https:\/\/twitter.com\/ChildsElizabeth\/status\/1187068679508221952\/photo\/1","type":"photo","sizes":{"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":875476274,"id_str":"875476274","name":"Elizabeth + Childs","screen_name":"ChildsElizabeth","location":"Victoria, BC","description":"Professor + & Program Head #RRUMALAT @royalroads","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":596,"friends_count":252,"listed_count":33,"created_at":"Fri + Oct 12 11:54:12 +0000 2012","favourites_count":1631,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1722,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204925361563136000\/f2SMJOBD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204925361563136000\/f2SMJOBD_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:46:54 +0000 2019","id":1187108154682662912,"id_str":"1187108154682662912","full_text":"RT + @ISLT_FSU: #AECT19: The #FSU #FSUCOE Instructional Sustems and Learning Technologies + #ISLT Faculty position is posted at the AECT Job Pl\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]},{"text":"FSU","indices":[27,31]},{"text":"FSUCOE","indices":[32,39]},{"text":"ISLT","indices":[88,93]}],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 19:50:37 +0000 2019","id":1187093990912323584,"id_str":"1187093990912323584","full_text":"#AECT19: + The #FSU #FSUCOE Instructional Sustems and Learning Technologies #ISLT Faculty + position is posted at the AECT Job Placement Center along with several others. + #JobAnnouncement #Faculty #Job More info: https:\/\/t.co\/erkEX5To8f https:\/\/t.co\/eh1OsI8Jxc","truncated":false,"display_text_range":[0,232],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"FSU","indices":[13,17]},{"text":"FSUCOE","indices":[18,25]},{"text":"ISLT","indices":[74,79]},{"text":"JobAnnouncement","indices":[167,183]},{"text":"Faculty","indices":[184,192]},{"text":"Job","indices":[193,197]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/erkEX5To8f","expanded_url":"http:\/\/isfsu.blogspot.com\/2019\/10\/image-of-job-posting-flyer.html?m=1","display_url":"isfsu.blogspot.com\/2019\/10\/image-\u2026","indices":[209,232]}],"media":[{"id":1187093986336337921,"id_str":"1187093986336337921","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlnsOqUcAED7b4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlnsOqUcAED7b4.jpg","url":"https:\/\/t.co\/eh1OsI8Jxc","display_url":"pic.twitter.com\/eh1OsI8Jxc","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187093990912323584\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187093986336337921,"id_str":"1187093986336337921","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlnsOqUcAED7b4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlnsOqUcAED7b4.jpg","url":"https:\/\/t.co\/eh1OsI8Jxc","display_url":"pic.twitter.com\/eh1OsI8Jxc","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187093990912323584\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:43:48 +0000 2019","id":1187107377838837761,"id_str":"1187107377838837761","full_text":"RT + @ThomasLamey1: Dr. Fred Baker from @uwf presenting on higher education policies + related to implementation of openness aect2 #aect2019 @\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"aect2019","indices":[127,136]}],"symbols":[],"user_mentions":[{"screen_name":"ThomasLamey1","name":"Thomas + Lamey","id":1426994293898629126,"id_str":"1426994293898629126","indices":[3,16]},{"screen_name":"UWF","name":"UWF","id":22806248,"id_str":"22806248","indices":[38,42]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 17:06:44 +0000 2019","id":1187052750263279616,"id_str":"1187052750263279616","full_text":"Dr. + Fred Baker from @uwf presenting on higher education policies related to implementation + of openness aect2 #aect2019 @ Westgate Las Vegas Resort & Casino https:\/\/t.co\/9ZRO4ObxkT","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"aect2019","indices":[109,118]}],"symbols":[],"user_mentions":[{"screen_name":"UWF","name":"UWF","id":22806248,"id_str":"22806248","indices":[20,24]}],"urls":[{"url":"https:\/\/t.co\/9ZRO4ObxkT","expanded_url":"https:\/\/www.instagram.com\/p\/B39-84uDh5N\/?igshid=y3nq6d0eq00u","display_url":"instagram.com\/p\/B39-84uDh5N\/\u2026","indices":[160,183]}]},"source":"\u003ca + href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":{"type":"Point","coordinates":[36.13625965,-115.15144543]},"coordinates":{"type":"Point","coordinates":[-115.15144543,36.13625965]},"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:49:37 +0000 2019","id":1187108840342315008,"id_str":"1187108840342315008","full_text":"RT + @arasbozkurt: Interesting presentation in P11 on Community of Inquiry and + its analysis through social network analysis #aect19","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[{"text":"aect19","indices":[122,129]}],"symbols":[],"user_mentions":[{"screen_name":"arasbozkurt","name":"Aras + Bozkurt","id":83447547,"id_str":"83447547","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 18:32:55 +0000 2019","id":1187074439571222530,"id_str":"1187074439571222530","full_text":"Interesting + presentation in P11 on Community of Inquiry and its analysis through social + network analysis #aect19","truncated":false,"display_text_range":[0,112],"entities":{"hashtags":[{"text":"aect19","indices":[105,112]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:53:14 +0000 2019","id":1187079552314462208,"id_str":"1187079552314462208","full_text":"The + panel @AECT called GSA: Narrowing Down Your Research Interests & Being + Productive is really touching on questions I\u2019ve been asking my advisor + such as what exactly is self plagiarism & how do you navigate publication + during your grad program. So much insight! #aect19inspired","truncated":false,"display_text_range":[0,286],"entities":{"hashtags":[{"text":"aect19inspired","indices":[271,286]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[10,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:56:38 +0000 2019","id":1187110604277813248,"id_str":"1187110604277813248","full_text":"RT + @AlianaZhu: Chinese scholars met in #aect2019 great to know u all\uff01\u2764\ufe0f + https:\/\/t.co\/jLZOZd5LWl","truncated":false,"display_text_range":[0,95],"entities":{"hashtags":[{"text":"aect2019","indices":[39,48]}],"symbols":[],"user_mentions":[{"screen_name":"AlianaZhu","name":"Jiawen + Aliana Zhu","id":1125373237,"id_str":"1125373237","indices":[3,13]}],"urls":[],"media":[{"id":1186764241702772736,"id_str":"1186764241702772736","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg7ykLUYAACJxH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg7ykLUYAACJxH.jpg","url":"https:\/\/t.co\/jLZOZd5LWl","display_url":"pic.twitter.com\/jLZOZd5LWl","expanded_url":"https:\/\/twitter.com\/AlianaZhu\/status\/1186764774362636289\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":1186764774362636289,"source_status_id_str":"1186764774362636289","source_user_id":1125373237,"source_user_id_str":"1125373237"}]},"extended_entities":{"media":[{"id":1186764241702772736,"id_str":"1186764241702772736","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg7ykLUYAACJxH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg7ykLUYAACJxH.jpg","url":"https:\/\/t.co\/jLZOZd5LWl","display_url":"pic.twitter.com\/jLZOZd5LWl","expanded_url":"https:\/\/twitter.com\/AlianaZhu\/status\/1186764774362636289\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":1186764774362636289,"source_status_id_str":"1186764774362636289","source_user_id":1125373237,"source_user_id_str":"1125373237","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 22:02:25 +0000 2019","id":1186764774362636289,"id_str":"1186764774362636289","full_text":"Chinese + scholars met in #aect2019 great to know u all\uff01\u2764\ufe0f https:\/\/t.co\/jLZOZd5LWl","truncated":false,"display_text_range":[0,56],"entities":{"hashtags":[{"text":"aect2019","indices":[24,33]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186764241702772736,"id_str":"1186764241702772736","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg7ykLUYAACJxH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg7ykLUYAACJxH.jpg","url":"https:\/\/t.co\/jLZOZd5LWl","display_url":"pic.twitter.com\/jLZOZd5LWl","expanded_url":"https:\/\/twitter.com\/AlianaZhu\/status\/1186764774362636289\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186764241702772736,"id_str":"1186764241702772736","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg7ykLUYAACJxH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg7ykLUYAACJxH.jpg","url":"https:\/\/t.co\/jLZOZd5LWl","display_url":"pic.twitter.com\/jLZOZd5LWl","expanded_url":"https:\/\/twitter.com\/AlianaZhu\/status\/1186764774362636289\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1125373237,"id_str":"1125373237","name":"Jiawen + Aliana Zhu","screen_name":"AlianaZhu","location":"Shanghai, People''s Republic + of China","description":"PhD \u00b7 EdTech University of Florida Alumni \u00b7 + postdoc","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":68,"friends_count":74,"listed_count":0,"created_at":"Sun + Jan 27 15:31:41 +0000 2013","favourites_count":189,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":52,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1479013445219414018\/Hf6s6Ssq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1479013445219414018\/Hf6s6Ssq_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:34:15 +0000 2019","id":1187104971327598592,"id_str":"1187104971327598592","full_text":"Want + to pass Tom Reeve''s bus challenge? Check out our session on The Five Discourses + of Design! \n2:00 PM Conference Room 14\n@punyamishra\n https:\/\/t.co\/G4Rd6IVDbs + #aect19inspired #aect19 https:\/\/t.co\/BKO2DAPyy4","truncated":false,"display_text_range":[0,185],"entities":{"hashtags":[{"text":"aect19inspired","indices":[162,177]},{"text":"aect19","indices":[178,185]}],"symbols":[],"user_mentions":[{"screen_name":"punyamishra","name":"Punya + Mishra","id":16398344,"id_str":"16398344","indices":[124,136]}],"urls":[{"url":"https:\/\/t.co\/G4Rd6IVDbs","expanded_url":"http:\/\/tinyurl.com\/y6f46uyr","display_url":"tinyurl.com\/y6f46uyr","indices":[138,161]}],"media":[{"id":1187104968873934848,"id_str":"1187104968873934848","indices":[186,209],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlxrfzVAAAMTT_.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlxrfzVAAAMTT_.png","url":"https:\/\/t.co\/BKO2DAPyy4","display_url":"pic.twitter.com\/BKO2DAPyy4","expanded_url":"https:\/\/twitter.com\/RealMelissaWarr\/status\/1187104971327598592\/photo\/1","type":"photo","sizes":{"small":{"w":575,"h":384,"resize":"fit"},"medium":{"w":575,"h":384,"resize":"fit"},"large":{"w":575,"h":384,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1187104968873934848,"id_str":"1187104968873934848","indices":[186,209],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlxrfzVAAAMTT_.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlxrfzVAAAMTT_.png","url":"https:\/\/t.co\/BKO2DAPyy4","display_url":"pic.twitter.com\/BKO2DAPyy4","expanded_url":"https:\/\/twitter.com\/RealMelissaWarr\/status\/1187104971327598592\/photo\/1","type":"photo","sizes":{"small":{"w":575,"h":384,"resize":"fit"},"medium":{"w":575,"h":384,"resize":"fit"},"large":{"w":575,"h":384,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2191740091,"id_str":"2191740091","name":"Melissa + Warr","screen_name":"RealMelissaWarr","location":"Monroe, LA","description":"Assistant + Professor, University of Louisiana Monroe","url":"https:\/\/t.co\/2LNlqxPB4z","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2LNlqxPB4z","expanded_url":"http:\/\/Melissa-Warr.com","display_url":"Melissa-Warr.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":64,"listed_count":1,"created_at":"Wed + Nov 13 05:59:01 +0000 2013","favourites_count":36,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":59,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1163579224986271744\/mKWbdlr4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163579224986271744\/mKWbdlr4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2191740091\/1384754908","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:03:56 +0000 2019","id":1187112443085852672,"id_str":"1187112443085852672","full_text":"\"Time + management matters: online faculty perceptions of helpfulness of time management + strategies\" at #aect19inspired -- would be hard to find a session more targeted + to my interests! https:\/\/t.co\/phJBmMbmcR","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"aect19inspired","indices":[102,117]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187112241608310784,"id_str":"1187112241608310784","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl4S02UwAAlu7Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl4S02UwAAlu7Q.jpg","url":"https:\/\/t.co\/phJBmMbmcR","display_url":"pic.twitter.com\/phJBmMbmcR","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1187112443085852672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187112241608310784,"id_str":"1187112241608310784","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl4S02UwAAlu7Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl4S02UwAAlu7Q.jpg","url":"https:\/\/t.co\/phJBmMbmcR","display_url":"pic.twitter.com\/phJBmMbmcR","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1187112443085852672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":"Slide + that says Time management matters: online faculty perceptions of helpfulness + of time management strategies"}]},"source":"\u003ca href=\"https:\/\/mobile.twitter.com\" + rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3733671685,"id_str":"3733671685","name":"Jenn + Kepka","screen_name":"jennkepka","location":"Oregon, USA","description":"Outreach\/retention\/tutoring + faculty in OR; doc student in #edtech at Boise St. Past: UO, WOU, KU. \u2764 + #oer & \u2615 & \u26f8. Views my own. she\/her\/hers","url":"https:\/\/t.co\/nvazHyg5JB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nvazHyg5JB","expanded_url":"http:\/\/jennkepka.com","display_url":"jennkepka.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":700,"friends_count":1225,"listed_count":45,"created_at":"Wed + Sep 30 05:39:55 +0000 2015","favourites_count":19836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3733671685\/1446791014","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 19:48:00 +0000 2019","id":1187093332561924099,"id_str":"1187093332561924099","full_text":"Buzzy + is busy hiding poker cards...can you find this one? #aect19inspired #AECTPokerRun + https:\/\/t.co\/abl248Lqw0","truncated":false,"display_text_range":[0,87],"entities":{"hashtags":[{"text":"aect19inspired","indices":[58,73]},{"text":"AECTPokerRun","indices":[74,87]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187088387141857280,"id_str":"1187088387141857280","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlimUCU8AAFZ35.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlimUCU8AAFZ35.jpg","url":"https:\/\/t.co\/abl248Lqw0","display_url":"pic.twitter.com\/abl248Lqw0","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187093332561924099\/photo\/1","type":"photo","sizes":{"medium":{"w":540,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":540,"h":960,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187088387141857280,"id_str":"1187088387141857280","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlimUCU8AAFZ35.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlimUCU8AAFZ35.jpg","url":"https:\/\/t.co\/abl248Lqw0","display_url":"pic.twitter.com\/abl248Lqw0","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187093332561924099\/photo\/1","type":"photo","sizes":{"medium":{"w":540,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":540,"h":960,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 19:44:11 +0000 2019","id":1187092373756469248,"id_str":"1187092373756469248","full_text":"RT + @LearnEngage: Good morning #AECT19! The Learner Engagement Division is having + their membership meeting at 3pm today in Conf Room 8. Stop\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[30,37]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15654288,"id_str":"15654288","name":"Scott + J. Warren","screen_name":"constatively","location":"Denton, TX","description":"Professor + of learning tech; instructional design; ethics and greening schools\/orgs; + Business research - systems dev, operations, strategy","url":"https:\/\/t.co\/n5xEkVLkO1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/n5xEkVLkO1","expanded_url":"http:\/\/www.scottjwarren.net","display_url":"scottjwarren.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2186,"friends_count":4880,"listed_count":112,"created_at":"Wed + Jul 30 00:56:48 +0000 2008","favourites_count":62322,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15995,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1391548718940409862\/optqE67f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1391548718940409862\/optqE67f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15654288\/1523275532","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 14:53:34 +0000 2019","id":1187019235660185600,"id_str":"1187019235660185600","full_text":"Good + morning #AECT19! The Learner Engagement Division is having their membership + meeting at 3pm today in Conf Room 8. Stop by to connect with other members + and hear about open board positions, division awards, and opportunities to + present your work to @AECT and beyond!","truncated":false,"display_text_range":[0,269],"entities":{"hashtags":[{"text":"AECT19","indices":[13,20]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[252,257]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:50:19 +0000 2019","id":1187109017530712065,"id_str":"1187109017530712065","full_text":"RT + @nikiwats23: Want to know more about corporate IDs in IT? Come see me in Convention + Center, Conference Rm 13 at 2pm. #aect2019 #aect19in\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect2019","indices":[120,129]}],"symbols":[],"user_mentions":[{"screen_name":"nikiwats23","name":"Niki + Watson","id":2861017036,"id_str":"2861017036","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 20:48:09 +0000 2019","id":1187108470111100928,"id_str":"1187108470111100928","full_text":"Want + to know more about corporate IDs in IT? Come see me in Convention Center, + Conference Rm 13 at 2pm. #aect2019 #aect19inspired #lifeofaninstructionaldesigner + https:\/\/t.co\/WaPQvr57vn","truncated":false,"display_text_range":[0,160],"entities":{"hashtags":[{"text":"aect2019","indices":[104,113]},{"text":"aect19inspired","indices":[114,129]},{"text":"lifeofaninstructionaldesigner","indices":[130,160]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187108464331354114,"id_str":"1187108464331354114","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl029ZUcAILCbk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl029ZUcAILCbk.jpg","url":"https:\/\/t.co\/WaPQvr57vn","display_url":"pic.twitter.com\/WaPQvr57vn","expanded_url":"https:\/\/twitter.com\/nikiwats23\/status\/1187108470111100928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":351,"h":680,"resize":"fit"},"large":{"w":990,"h":1920,"resize":"fit"},"medium":{"w":619,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187108464331354114,"id_str":"1187108464331354114","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl029ZUcAILCbk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl029ZUcAILCbk.jpg","url":"https:\/\/t.co\/WaPQvr57vn","display_url":"pic.twitter.com\/WaPQvr57vn","expanded_url":"https:\/\/twitter.com\/nikiwats23\/status\/1187108470111100928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":351,"h":680,"resize":"fit"},"large":{"w":990,"h":1920,"resize":"fit"},"medium":{"w":619,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2861017036,"id_str":"2861017036","name":"Niki + Watson","screen_name":"nikiwats23","location":"","description":"lover, not + a fighter","url":"https:\/\/t.co\/yDBCkJthUM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yDBCkJthUM","expanded_url":"http:\/\/www.nikishawatson.com","display_url":"nikishawatson.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":157,"friends_count":700,"listed_count":19,"created_at":"Tue + Nov 04 16:58:08 +0000 2014","favourites_count":845,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":624,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593920214175186944\/KosJSXMv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593920214175186944\/KosJSXMv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2861017036\/1442268041","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:40:52 +0000 2019","id":1187106639020584960,"id_str":"1187106639020584960","full_text":"RT + @tammyhuangrui: Thanks #aect19inspired #aect19 for giving us the opportunity + to \u201cmeet your textbooks\u201d. https:\/\/t.co\/feCkcjqfE4","truncated":false,"display_text_range":[0,130],"entities":{"hashtags":[{"text":"aect19inspired","indices":[26,41]},{"text":"aect19","indices":[43,50]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187075545923633152,"id_str":"1187075545923633152","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlW62xUwAA6X_p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlW62xUwAA6X_p.jpg","url":"https:\/\/t.co\/feCkcjqfE4","display_url":"pic.twitter.com\/feCkcjqfE4","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187075552252846080\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":956,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1632,"resize":"fit"},"small":{"w":680,"h":542,"resize":"fit"}},"source_status_id":1187075552252846080,"source_status_id_str":"1187075552252846080","source_user_id":2988637594,"source_user_id_str":"2988637594"}]},"extended_entities":{"media":[{"id":1187075545923633152,"id_str":"1187075545923633152","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlW62xUwAA6X_p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlW62xUwAA6X_p.jpg","url":"https:\/\/t.co\/feCkcjqfE4","display_url":"pic.twitter.com\/feCkcjqfE4","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187075552252846080\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":956,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1632,"resize":"fit"},"small":{"w":680,"h":542,"resize":"fit"}},"source_status_id":1187075552252846080,"source_status_id_str":"1187075552252846080","source_user_id":2988637594,"source_user_id_str":"2988637594","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 18:37:21 +0000 2019","id":1187075552252846080,"id_str":"1187075552252846080","full_text":"Thanks + #aect19inspired #aect19 for giving us the opportunity to \u201cmeet your + textbooks\u201d. https:\/\/t.co\/feCkcjqfE4","truncated":false,"display_text_range":[0,87],"entities":{"hashtags":[{"text":"aect19inspired","indices":[7,22]},{"text":"aect19","indices":[24,31]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187075545923633152,"id_str":"1187075545923633152","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlW62xUwAA6X_p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlW62xUwAA6X_p.jpg","url":"https:\/\/t.co\/feCkcjqfE4","display_url":"pic.twitter.com\/feCkcjqfE4","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187075552252846080\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":956,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1632,"resize":"fit"},"small":{"w":680,"h":542,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187075545923633152,"id_str":"1187075545923633152","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlW62xUwAA6X_p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlW62xUwAA6X_p.jpg","url":"https:\/\/t.co\/feCkcjqfE4","display_url":"pic.twitter.com\/feCkcjqfE4","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187075552252846080\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":956,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1632,"resize":"fit"},"small":{"w":680,"h":542,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988637594,"id_str":"2988637594","name":"Rui + \"Tammy\" Huang","screen_name":"ruitammyhuang","location":"FL","description":"PhD, + fellow in Ed Tech @UF_COE, game-based learning and immersive technology researcher, + designer & developer. Learning experience design researcher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":185,"listed_count":6,"created_at":"Wed + Jan 21 02:08:50 +0000 2015","favourites_count":399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988637594\/1621697544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 19:26:56 +0000 2019","id":1187088031439675392,"id_str":"1187088031439675392","full_text":"I + am with everybody in spirit! #aect19","truncated":false,"display_text_range":[0,38],"entities":{"hashtags":[{"text":"aect19","indices":[31,38]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":29474883,"id_str":"29474883","name":"Tian + Luo","screen_name":"tintinluo","location":"","description":"Mom|Learner|Ed + Tech Researcher| Professor|Academic|Twitter4Edu\u2663|\u266bMusic&Karaoke|Runner|Hiker","url":"https:\/\/t.co\/JYxUkH3DmL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JYxUkH3DmL","expanded_url":"http:\/\/shorturl.at\/dvwS1","display_url":"shorturl.at\/dvwS1","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":287,"friends_count":351,"listed_count":9,"created_at":"Tue + Apr 07 15:51:16 +0000 2009","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1440,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1086694741184524288\/FOyL7iDO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1086694741184524288\/FOyL7iDO_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 19:28:15 +0000 2019","id":1187088365323051008,"id_str":"1187088365323051008","full_text":"Is + technology making a cognitive difference? Service learning offers \u201chigh + transformative impact\u201d. Consider systems thinking when designing instruction. + PSI: purpose, stakeholders, implementation & feedback. Drs. Kowch, Jung, + et al. Introduce Systems Thinkning & Change #aect2019 https:\/\/t.co\/GypQkhQo1O","truncated":false,"display_text_range":[0,287],"entities":{"hashtags":[{"text":"aect2019","indices":[278,287]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187088356070395904,"id_str":"1187088356070395904","indices":[288,311],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlikgSUEAA3id2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlikgSUEAA3id2.jpg","url":"https:\/\/t.co\/GypQkhQo1O","display_url":"pic.twitter.com\/GypQkhQo1O","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187088365323051008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187088356070395904,"id_str":"1187088356070395904","indices":[288,311],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlikgSUEAA3id2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlikgSUEAA3id2.jpg","url":"https:\/\/t.co\/GypQkhQo1O","display_url":"pic.twitter.com\/GypQkhQo1O","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187088365323051008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187088356057837569,"id_str":"1187088356057837569","indices":[288,311],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlikgPUcAEnNc-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlikgPUcAEnNc-.jpg","url":"https:\/\/t.co\/GypQkhQo1O","display_url":"pic.twitter.com\/GypQkhQo1O","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187088365323051008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187088356099809281,"id_str":"1187088356099809281","indices":[288,311],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlikgZU4AEqMTA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlikgZU4AEqMTA.jpg","url":"https:\/\/t.co\/GypQkhQo1O","display_url":"pic.twitter.com\/GypQkhQo1O","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187088365323051008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187088356103974913,"id_str":"1187088356103974913","indices":[288,311],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlikgaUcAEKDmp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlikgaUcAEKDmp.jpg","url":"https:\/\/t.co\/GypQkhQo1O","display_url":"pic.twitter.com\/GypQkhQo1O","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187088365323051008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:46:27 +0000 2019","id":1187108043936284672,"id_str":"1187108043936284672","full_text":"RT + @jennkepka: Learning about writing, disappointment, and how to navigate pub + process #aect19 #aect19inspired https:\/\/t.co\/dgdRQjskfV","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19","indices":[89,96]},{"text":"aect19inspired","indices":[97,112]}],"symbols":[],"user_mentions":[{"screen_name":"jennkepka","name":"Jenn + Kepka","id":3733671685,"id_str":"3733671685","indices":[3,13]}],"urls":[{"url":"https:\/\/t.co\/dgdRQjskfV","expanded_url":"http:\/\/tinyurl.com\/y4vhbu9j","display_url":"tinyurl.com\/y4vhbu9j","indices":[113,136]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 20:03:09 +0000 2019","id":1187097147209994240,"id_str":"1187097147209994240","full_text":"Learning + about writing, disappointment, and how to navigate pub process #aect19 #aect19inspired + https:\/\/t.co\/dgdRQjskfV","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"aect19","indices":[74,81]},{"text":"aect19inspired","indices":[82,97]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dgdRQjskfV","expanded_url":"http:\/\/tinyurl.com\/y4vhbu9j","display_url":"tinyurl.com\/y4vhbu9j","indices":[98,121]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3733671685,"id_str":"3733671685","name":"Jenn + Kepka","screen_name":"jennkepka","location":"Oregon, USA","description":"Outreach\/retention\/tutoring + faculty in OR; doc student in #edtech at Boise St. Past: UO, WOU, KU. \u2764 + #oer & \u2615 & \u26f8. Views my own. she\/her\/hers","url":"https:\/\/t.co\/nvazHyg5JB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nvazHyg5JB","expanded_url":"http:\/\/jennkepka.com","display_url":"jennkepka.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":700,"friends_count":1225,"listed_count":45,"created_at":"Wed + Sep 30 05:39:55 +0000 2015","favourites_count":19836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3733671685\/1446791014","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:19:44 +0000 2019","id":1187101319472939008,"id_str":"1187101319472939008","full_text":"Great + to hear the OECD 2030 future of Ed doc https:\/\/t.co\/zqDsde81si referenced + at #aect19inspired #RRUMALAT","truncated":false,"display_text_range":[0,108],"entities":{"hashtags":[{"text":"aect19inspired","indices":[83,98]},{"text":"RRUMALAT","indices":[99,108]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/zqDsde81si","expanded_url":"https:\/\/www.oecd.org\/education\/2030-project\/","display_url":"oecd.org\/education\/2030\u2026","indices":[45,68]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":875476274,"id_str":"875476274","name":"Elizabeth + Childs","screen_name":"ChildsElizabeth","location":"Victoria, BC","description":"Professor + & Program Head #RRUMALAT @royalroads","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":596,"friends_count":252,"listed_count":33,"created_at":"Fri + Oct 12 11:54:12 +0000 2012","favourites_count":1631,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1722,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204925361563136000\/f2SMJOBD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204925361563136000\/f2SMJOBD_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:30:13 +0000 2019","id":1187119055347408896,"id_str":"1187119055347408896","full_text":"#aect19 + https:\/\/t.co\/t1vxQwWBWh","truncated":false,"display_text_range":[0,7],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187119048565243904,"id_str":"1187119048565243904","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl-fCvUwAAx3Rq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl-fCvUwAAx3Rq.jpg","url":"https:\/\/t.co\/t1vxQwWBWh","display_url":"pic.twitter.com\/t1vxQwWBWh","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1187119055347408896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187119048565243904,"id_str":"1187119048565243904","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl-fCvUwAAx3Rq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl-fCvUwAAx3Rq.jpg","url":"https:\/\/t.co\/t1vxQwWBWh","display_url":"pic.twitter.com\/t1vxQwWBWh","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1187119055347408896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187117090739609600,"in_reply_to_status_id_str":"1187117090739609600","in_reply_to_user_id":6848632,"in_reply_to_user_id_str":"6848632","in_reply_to_screen_name":"jeroen69","user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Wed + Oct 23 20:42:09 +0000 2019","id":1187106959331221504,"id_str":"1187106959331221504","full_text":"RT + @tutaleni: So many exciting presentations we have for you at #aect19 \nJoin + us #aect19inspired https:\/\/t.co\/kB8GurdSmP","truncated":false,"display_text_range":[0,120],"entities":{"hashtags":[{"text":"aect19","indices":[64,71]},{"text":"aect19inspired","indices":[81,96]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/kB8GurdSmP","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629","display_url":"twitter.com\/aectclt\/status\u2026","indices":[97,120]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:36:35 +0000 2019","id":1186697872017723392,"id_str":"1186697872017723392","full_text":"So + many exciting presentations we have for you at #aect19 \nJoin us #aect19inspired + https:\/\/t.co\/kB8GurdSmP","truncated":false,"display_text_range":[0,82],"entities":{"hashtags":[{"text":"aect19","indices":[50,57]},{"text":"aect19inspired","indices":[67,82]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kB8GurdSmP","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629","display_url":"twitter.com\/aectclt\/status\u2026","indices":[83,106]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186654169769242629,"quoted_status_id_str":"1186654169769242629","quoted_status_permalink":{"url":"https:\/\/t.co\/kB8GurdSmP","expanded":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629","display":"twitter.com\/aectclt\/status\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 14:42:55 +0000 2019","id":1186654169769242629,"id_str":"1186654169769242629","full_text":"Check + out our @CLT sessions on Tuesday! https:\/\/t.co\/Ac0HzA65hv","truncated":false,"display_text_range":[0,39],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"clt","name":"Carl + Tydingco","id":3867001,"id_str":"3867001","indices":[14,18]}],"urls":[],"media":[{"id":1186654161951084544,"id_str":"1186654161951084544","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfXrFJVUAAqbNi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfXrFJVUAAqbNi.jpg","url":"https:\/\/t.co\/Ac0HzA65hv","display_url":"pic.twitter.com\/Ac0HzA65hv","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1583,"h":2048,"resize":"fit"},"small":{"w":525,"h":680,"resize":"fit"},"medium":{"w":927,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186654161951084544,"id_str":"1186654161951084544","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfXrFJVUAAqbNi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfXrFJVUAAqbNi.jpg","url":"https:\/\/t.co\/Ac0HzA65hv","display_url":"pic.twitter.com\/Ac0HzA65hv","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1583,"h":2048,"resize":"fit"},"small":{"w":525,"h":680,"resize":"fit"},"medium":{"w":927,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905212118127042560,"id_str":"905212118127042560","name":"AECT_CLT","screen_name":"aectclt","location":"","description":"AECT + Division Exploring culture, learning, and technology with particular emphases + on championing inclusiveness and equity. Conversation at #aectclt","url":"https:\/\/t.co\/yc2CmqxA5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yc2CmqxA5M","expanded_url":"https:\/\/sites.google.com\/view\/clt-home","display_url":"sites.google.com\/view\/clt-home","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":26,"listed_count":4,"created_at":"Tue + Sep 05 23:32:41 +0000 2017","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":486,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905212118127042560\/1506184813","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186654169769242629,"quoted_status_id_str":"1186654169769242629","quoted_status_permalink":{"url":"https:\/\/t.co\/kB8GurdSmP","expanded":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629","display":"twitter.com\/aectclt\/status\u2026"},"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 19:50:37 +0000 2019","id":1187093990912323584,"id_str":"1187093990912323584","full_text":"#AECT19: + The #FSU #FSUCOE Instructional Sustems and Learning Technologies #ISLT Faculty + position is posted at the AECT Job Placement Center along with several others. + #JobAnnouncement #Faculty #Job More info: https:\/\/t.co\/erkEX5To8f https:\/\/t.co\/eh1OsI8Jxc","truncated":false,"display_text_range":[0,232],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"FSU","indices":[13,17]},{"text":"FSUCOE","indices":[18,25]},{"text":"ISLT","indices":[74,79]},{"text":"JobAnnouncement","indices":[167,183]},{"text":"Faculty","indices":[184,192]},{"text":"Job","indices":[193,197]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/erkEX5To8f","expanded_url":"http:\/\/isfsu.blogspot.com\/2019\/10\/image-of-job-posting-flyer.html?m=1","display_url":"isfsu.blogspot.com\/2019\/10\/image-\u2026","indices":[209,232]}],"media":[{"id":1187093986336337921,"id_str":"1187093986336337921","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlnsOqUcAED7b4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlnsOqUcAED7b4.jpg","url":"https:\/\/t.co\/eh1OsI8Jxc","display_url":"pic.twitter.com\/eh1OsI8Jxc","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187093990912323584\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187093986336337921,"id_str":"1187093986336337921","indices":[233,256],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlnsOqUcAED7b4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlnsOqUcAED7b4.jpg","url":"https:\/\/t.co\/eh1OsI8Jxc","display_url":"pic.twitter.com\/eh1OsI8Jxc","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187093990912323584\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:48:25 +0000 2019","id":1187108537773654016,"id_str":"1187108537773654016","full_text":"RT + @richardewest: Looks like a great book Brian! Looking forward to reading it + on @EdTech_Books #aect19 https:\/\/t.co\/PaoKiVXDfr","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"aect19","indices":[96,103]}],"symbols":[],"user_mentions":[{"screen_name":"richardewest","name":"Rick + West","id":17639668,"id_str":"17639668","indices":[3,16]},{"screen_name":"EdTech_Books","name":"EdTech + Books","id":1113476916076367872,"id_str":"1113476916076367872","indices":[82,95]}],"urls":[],"media":[{"id":1187080185264230400,"id_str":"1187080185264230400","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlbI5qUUAAz1XI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlbI5qUUAAz1XI.jpg","url":"https:\/\/t.co\/PaoKiVXDfr","display_url":"pic.twitter.com\/PaoKiVXDfr","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187080195724861440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1187080195724861440,"source_status_id_str":"1187080195724861440","source_user_id":17639668,"source_user_id_str":"17639668"}]},"extended_entities":{"media":[{"id":1187080185264230400,"id_str":"1187080185264230400","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlbI5qUUAAz1XI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlbI5qUUAAz1XI.jpg","url":"https:\/\/t.co\/PaoKiVXDfr","display_url":"pic.twitter.com\/PaoKiVXDfr","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187080195724861440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1187080195724861440,"source_status_id_str":"1187080195724861440","source_user_id":17639668,"source_user_id_str":"17639668","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 18:55:48 +0000 2019","id":1187080195724861440,"id_str":"1187080195724861440","full_text":"Looks + like a great book Brian! Looking forward to reading it on @EdTech_Books #aect19 + https:\/\/t.co\/PaoKiVXDfr","truncated":false,"display_text_range":[0,85],"entities":{"hashtags":[{"text":"aect19","indices":[78,85]}],"symbols":[],"user_mentions":[{"screen_name":"EdTech_Books","name":"EdTech + Books","id":1113476916076367872,"id_str":"1113476916076367872","indices":[64,77]}],"urls":[],"media":[{"id":1187080185264230400,"id_str":"1187080185264230400","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlbI5qUUAAz1XI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlbI5qUUAAz1XI.jpg","url":"https:\/\/t.co\/PaoKiVXDfr","display_url":"pic.twitter.com\/PaoKiVXDfr","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187080195724861440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187080185264230400,"id_str":"1187080185264230400","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlbI5qUUAAz1XI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlbI5qUUAAz1XI.jpg","url":"https:\/\/t.co\/PaoKiVXDfr","display_url":"pic.twitter.com\/PaoKiVXDfr","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187080195724861440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17639668,"id_str":"17639668","name":"Rick + West","screen_name":"richardewest","location":"Provo, ut","description":"Instructional + Designer, Researcher, & Evaluator at Brigham Young University","url":"http:\/\/t.co\/Nc39wWEhGM","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Nc39wWEhGM","expanded_url":"http:\/\/richardewest.com","display_url":"richardewest.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":223,"listed_count":39,"created_at":"Wed + Nov 26 02:26:26 +0000 2008","favourites_count":799,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3339,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17639668\/1446650027","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:51:48 +0000 2019","id":1187109387585802241,"id_str":"1187109387585802241","full_text":"RT + @techedges: . @utexascoe Doctoral students Yi Shi, Peixia Shao, Ying Cai, + & Daeun Hong in action presenting research on preservice #edte\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"techedges","name":"Dr. + Joan E. Hughes","id":19613812,"id_str":"19613812","indices":[3,13]},{"screen_name":"utexascoe","name":"College + of Education","id":19671331,"id_str":"19671331","indices":[17,27]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 19:40:43 +0000 2019","id":1187091501660041216,"id_str":"1187091501660041216","full_text":". + @utexascoe Doctoral students Yi Shi, Peixia Shao, Ying Cai, & Daeun Hong + in action presenting research on preservice #edtech syllabi #aect19inspired + #texasCI https:\/\/t.co\/W1zNi3m2Rm","truncated":false,"display_text_range":[0,164],"entities":{"hashtags":[{"text":"edtech","indices":[123,130]},{"text":"aect19inspired","indices":[140,155]},{"text":"texasCI","indices":[156,164]}],"symbols":[],"user_mentions":[{"screen_name":"utexascoe","name":"College + of Education","id":19671331,"id_str":"19671331","indices":[2,12]}],"urls":[],"media":[{"id":1187091484073283584,"id_str":"1187091484073283584","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHllalAUUAAzuvO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHllalAUUAAzuvO.jpg","url":"https:\/\/t.co\/W1zNi3m2Rm","display_url":"pic.twitter.com\/W1zNi3m2Rm","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187091501660041216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187091484073283584,"id_str":"1187091484073283584","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHllalAUUAAzuvO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHllalAUUAAzuvO.jpg","url":"https:\/\/t.co\/W1zNi3m2Rm","display_url":"pic.twitter.com\/W1zNi3m2Rm","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187091501660041216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187091484090089472,"id_str":"1187091484090089472","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHllalEUwAAK3Qd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHllalEUwAAK3Qd.jpg","url":"https:\/\/t.co\/W1zNi3m2Rm","display_url":"pic.twitter.com\/W1zNi3m2Rm","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187091501660041216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187091484056547329,"id_str":"1187091484056547329","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHllak8U8AElMEH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHllak8U8AElMEH.jpg","url":"https:\/\/t.co\/W1zNi3m2Rm","display_url":"pic.twitter.com\/W1zNi3m2Rm","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187091501660041216\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19613812,"id_str":"19613812","name":"Dr. + Joan E. Hughes","screen_name":"techedges","location":"Austin, TX","description":"Prof, + Learning Technologies, UT Austin. Researcher, teacher, writer: tech integration + in schools, teacher educ & PD. Author:https:\/\/t.co\/p12V06CqJU","url":"https:\/\/t.co\/0V3yBaAOKy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0V3yBaAOKy","expanded_url":"http:\/\/techedges.org","display_url":"techedges.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/p12V06CqJU","expanded_url":"http:\/\/bit.ly\/IntegratingEdTech","display_url":"bit.ly\/IntegratingEdT\u2026","indices":[124,147]}]}},"protected":false,"followers_count":1646,"friends_count":2355,"listed_count":158,"created_at":"Tue + Jan 27 20:26:10 +0000 2009","favourites_count":722,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2871,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEBB2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431552022538510336\/qGc8ZRJj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431552022538510336\/qGc8ZRJj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19613812\/1408660446","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 19:25:00 +0000 2019","id":1187087544305045518,"id_str":"1187087544305045518","full_text":"Have + you used @Flipgrid in one of your classes? Not sure what it is? Come check + out my session with @plowenthal and see how it has been used for asynchronous + video-based discussions #aect19 #aect19inspired https:\/\/t.co\/HaiHTmFBUH + https:\/\/t.co\/UGlZGD9QzL","truncated":false,"display_text_range":[0,229],"entities":{"hashtags":[{"text":"aect19","indices":[182,189]},{"text":"aect19inspired","indices":[190,205]}],"symbols":[],"user_mentions":[{"screen_name":"plowenthal","name":"Patrick + Lowenthal","id":14364665,"id_str":"14364665","indices":[100,111]}],"urls":[{"url":"https:\/\/t.co\/HaiHTmFBUH","expanded_url":"http:\/\/bit.ly\/2ISaX3W","display_url":"bit.ly\/2ISaX3W","indices":[206,229]}],"media":[{"id":1184455265850220545,"id_str":"1184455265850220545","indices":[230,253],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAHye1X4AE8xXu.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAHye1X4AE8xXu.png","url":"https:\/\/t.co\/UGlZGD9QzL","display_url":"pic.twitter.com\/UGlZGD9QzL","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187087544305045518\/photo\/1","type":"photo","sizes":{"medium":{"w":731,"h":519,"resize":"fit"},"small":{"w":680,"h":483,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":731,"h":519,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184455265850220545,"id_str":"1184455265850220545","indices":[230,253],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAHye1X4AE8xXu.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAHye1X4AE8xXu.png","url":"https:\/\/t.co\/UGlZGD9QzL","display_url":"pic.twitter.com\/UGlZGD9QzL","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187087544305045518\/photo\/1","type":"photo","sizes":{"medium":{"w":731,"h":519,"resize":"fit"},"small":{"w":680,"h":483,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":731,"h":519,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:38:19 +0000 2019","id":1187121094483795968,"id_str":"1187121094483795968","full_text":"RT + @christieliuidtr: Smart education, big data, #AI, system thinking framework, + not so distant @AECT @SICET @CAET international perspective\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AI","indices":[48,51]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[95,100]},{"screen_name":"SICET","name":"SICET","id":114832274,"id_str":"114832274","indices":[101,107]},{"screen_name":"caet","name":"caet","id":15079288,"id_str":"15079288","indices":[108,113]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 20:51:00 +0000 2019","id":1187109186099802112,"id_str":"1187109186099802112","full_text":"Smart + education, big data, #AI, system thinking framework, not so distant @AECT + @SICET @CAET international perspectives, #aect19 #aect19inspired https:\/\/t.co\/Z4L0QALidW + https:\/\/t.co\/lEnDZ5KrI3","truncated":false,"display_text_range":[0,168],"entities":{"hashtags":[{"text":"AI","indices":[27,30]},{"text":"aect19","indices":[121,128]},{"text":"aect19inspired","indices":[129,144]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[74,79]},{"screen_name":"SICET","name":"SICET","id":114832274,"id_str":"114832274","indices":[80,86]},{"screen_name":"caet","name":"caet","id":15079288,"id_str":"15079288","indices":[87,92]}],"urls":[{"url":"https:\/\/t.co\/Z4L0QALidW","expanded_url":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880","display_url":"twitter.com\/ekowch\/status\/\u2026","indices":[145,168]}],"media":[{"id":1187109178902376448,"id_str":"1187109178902376448","indices":[169,192],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl1gjYU8AAXlnc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl1gjYU8AAXlnc.jpg","url":"https:\/\/t.co\/lEnDZ5KrI3","display_url":"pic.twitter.com\/lEnDZ5KrI3","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187109186099802112\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1588,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":930,"resize":"fit"},"small":{"w":680,"h":527,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187109178902376448,"id_str":"1187109178902376448","indices":[169,192],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl1gjYU8AAXlnc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl1gjYU8AAXlnc.jpg","url":"https:\/\/t.co\/lEnDZ5KrI3","display_url":"pic.twitter.com\/lEnDZ5KrI3","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187109186099802112\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1588,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":930,"resize":"fit"},"small":{"w":680,"h":527,"resize":"fit"}},"ext_alt_text":null},{"id":1187109178902319106,"id_str":"1187109178902319106","indices":[169,192],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl1gjYUEAIkZqA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl1gjYUEAIkZqA.jpg","url":"https:\/\/t.co\/lEnDZ5KrI3","display_url":"pic.twitter.com\/lEnDZ5KrI3","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187109186099802112\/photo\/1","type":"photo","sizes":{"medium":{"w":675,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1334,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187109178898149376,"id_str":"1187109178898149376","indices":[169,192],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl1gjXUcAAPgpb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl1gjXUcAAPgpb.jpg","url":"https:\/\/t.co\/lEnDZ5KrI3","display_url":"pic.twitter.com\/lEnDZ5KrI3","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187109186099802112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":482,"resize":"fit"},"large":{"w":2048,"h":1452,"resize":"fit"},"medium":{"w":1200,"h":851,"resize":"fit"}},"ext_alt_text":null},{"id":1187109178982055936,"id_str":"1187109178982055936","indices":[169,192],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl1gjrUwAAfqLA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl1gjrUwAAfqLA.jpg","url":"https:\/\/t.co\/lEnDZ5KrI3","display_url":"pic.twitter.com\/lEnDZ5KrI3","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187109186099802112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":918,"resize":"fit"},"small":{"w":680,"h":520,"resize":"fit"},"large":{"w":2048,"h":1566,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1185292389549690880,"quoted_status_id_str":"1185292389549690880","quoted_status_permalink":{"url":"https:\/\/t.co\/Z4L0QALidW","expanded":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880","display":"twitter.com\/ekowch\/status\/\u2026"},"quoted_status":{"created_at":"Fri + Oct 18 20:31:41 +0000 2019","id":1185292389549690880,"id_str":"1185292389549690880","full_text":"AECT + Conventioneers! Join me with national leaders from China talking about the + latest trends In China\u2019s vast Education technology transformation CAET + Special Session in Las Vegas: Wed. Oct. 23 at 1:00 PM in Convention Centre + Pavilion 9. Don\u2019t miss it! @AECT #aect19 @edtechchat https:\/\/t.co\/pK7btfip4l","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"aect19","indices":[259,266]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[253,258]},{"screen_name":"edtechchat","name":"Chris + Borg","id":550773912,"id_str":"550773912","indices":[267,278]}],"urls":[],"media":[{"id":1185292370071306240,"id_str":"1185292370071306240","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","url":"https:\/\/t.co\/pK7btfip4l","display_url":"pic.twitter.com\/pK7btfip4l","expanded_url":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185292370071306240,"id_str":"1185292370071306240","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","url":"https:\/\/t.co\/pK7btfip4l","display_url":"pic.twitter.com\/pK7btfip4l","expanded_url":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28518944,"id_str":"28518944","name":"Dr. + Eugene Kowch","screen_name":"ekowch","location":"Calgary Alberta Canada","description":"Scholar, + Principal, Teacher, Engineer, Past President, AECT, & AERA SIG 17 | Helping + leaders create more adaptable education systems #highered #leadership","url":"https:\/\/t.co\/oDa3vYShbl","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oDa3vYShbl","expanded_url":"https:\/\/ekowch.wixsite.com\/systemsthinkingbook","display_url":"ekowch.wixsite.com\/systemsthinkin\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":936,"friends_count":887,"listed_count":0,"created_at":"Fri + Apr 03 06:44:28 +0000 2009","favourites_count":2393,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1315,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/705885195950370816\/i4XMnRs__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/705885195950370816\/i4XMnRs__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28518944\/1561768634","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1185292389549690880,"quoted_status_id_str":"1185292389549690880","quoted_status_permalink":{"url":"https:\/\/t.co\/Z4L0QALidW","expanded":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880","display":"twitter.com\/ekowch\/status\/\u2026"},"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:54:47 +0000 2019","id":1187110140840833024,"id_str":"1187110140840833024","full_text":"RT + @ChangeIt4Better: Is technology making a cognitive difference? Service learning + offers \u201chigh transformative impact\u201d. Consider systems th\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ChangeIt4Better","name":"Dr. + Suzanne Ensmann","id":1596150056,"id_str":"1596150056","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 19:28:15 +0000 2019","id":1187088365323051008,"id_str":"1187088365323051008","full_text":"Is + technology making a cognitive difference? Service learning offers \u201chigh + transformative impact\u201d. Consider systems thinking when designing instruction. + PSI: purpose, stakeholders, implementation & feedback. Drs. Kowch, Jung, + et al. Introduce Systems Thinkning & Change #aect2019 https:\/\/t.co\/GypQkhQo1O","truncated":false,"display_text_range":[0,287],"entities":{"hashtags":[{"text":"aect2019","indices":[278,287]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187088356070395904,"id_str":"1187088356070395904","indices":[288,311],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlikgSUEAA3id2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlikgSUEAA3id2.jpg","url":"https:\/\/t.co\/GypQkhQo1O","display_url":"pic.twitter.com\/GypQkhQo1O","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187088365323051008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187088356070395904,"id_str":"1187088356070395904","indices":[288,311],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlikgSUEAA3id2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlikgSUEAA3id2.jpg","url":"https:\/\/t.co\/GypQkhQo1O","display_url":"pic.twitter.com\/GypQkhQo1O","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187088365323051008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187088356057837569,"id_str":"1187088356057837569","indices":[288,311],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlikgPUcAEnNc-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlikgPUcAEnNc-.jpg","url":"https:\/\/t.co\/GypQkhQo1O","display_url":"pic.twitter.com\/GypQkhQo1O","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187088365323051008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187088356099809281,"id_str":"1187088356099809281","indices":[288,311],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlikgZU4AEqMTA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlikgZU4AEqMTA.jpg","url":"https:\/\/t.co\/GypQkhQo1O","display_url":"pic.twitter.com\/GypQkhQo1O","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187088365323051008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187088356103974913,"id_str":"1187088356103974913","indices":[288,311],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlikgaUcAEKDmp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlikgaUcAEKDmp.jpg","url":"https:\/\/t.co\/GypQkhQo1O","display_url":"pic.twitter.com\/GypQkhQo1O","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187088365323051008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:38:50 +0000 2019","id":1187075927949242368,"id_str":"1187075927949242368","full_text":"Wow! + I just moderated a panel about social media, and I just realized that I\u2019m + at a panel with @eromerohall who I cited in my presentation! Small world indeed!!! + #aect19inspired","truncated":false,"display_text_range":[0,177],"entities":{"hashtags":[{"text":"aect19inspired","indices":[162,177]}],"symbols":[],"user_mentions":[{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[95,107]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":12,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:53:09 +0000 2019","id":1187109728754663424,"id_str":"1187109728754663424","full_text":"RT + @RitaFennelly: Wow! I just moderated a panel about social media, and I just + realized that I\u2019m at a panel with @eromerohall who I cited i\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[113,125]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 18:38:50 +0000 2019","id":1187075927949242368,"id_str":"1187075927949242368","full_text":"Wow! + I just moderated a panel about social media, and I just realized that I\u2019m + at a panel with @eromerohall who I cited in my presentation! Small world indeed!!! + #aect19inspired","truncated":false,"display_text_range":[0,177],"entities":{"hashtags":[{"text":"aect19inspired","indices":[162,177]}],"symbols":[],"user_mentions":[{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[95,107]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":12,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:14:04 +0000 2019","id":1187114994049134593,"id_str":"1187114994049134593","full_text":"RT + @arasbozkurt: Happy to announce that me and Akbulut, researchers from Anadolu + University, received Reviewer Excellence Award by ETR&D pr\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"arasbozkurt","name":"Aras + Bozkurt","id":83447547,"id_str":"83447547","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":257891862,"id_str":"257891862","name":"Yavuz + Akbulut","screen_name":"yvzkblt","location":"Eski\u015fehir","description":"Bilim + i\u015f\u00e7isi","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":3999,"friends_count":212,"listed_count":22,"created_at":"Sat + Feb 26 12:37:03 +0000 2011","favourites_count":850,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":344,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1480465820929122307\/lGFDIkQM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1480465820929122307\/lGFDIkQM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/257891862\/1591778726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 20:21:09 +0000 2019","id":1187101677142319105,"id_str":"1187101677142319105","full_text":"Happy + to announce that me and Akbulut, researchers from Anadolu University, received + Reviewer Excellence Award by ETR&D presented at #AECT19 #ETRD @yvzkblt + @AECT https:\/\/t.co\/QJXzm3Nc74","truncated":false,"display_text_range":[0,165],"entities":{"hashtags":[{"text":"AECT19","indices":[137,144]},{"text":"ETRD","indices":[145,150]}],"symbols":[],"user_mentions":[{"screen_name":"yvzkblt","name":"Yavuz + Akbulut","id":257891862,"id_str":"257891862","indices":[151,159]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[160,165]}],"urls":[],"media":[{"id":1187101649879425025,"id_str":"1187101649879425025","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","url":"https:\/\/t.co\/QJXzm3Nc74","display_url":"pic.twitter.com\/QJXzm3Nc74","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187101677142319105\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187101649879425025,"id_str":"1187101649879425025","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","url":"https:\/\/t.co\/QJXzm3Nc74","display_url":"pic.twitter.com\/QJXzm3Nc74","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187101677142319105\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":67,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:11:09 +0000 2019","id":1187114256833175558,"id_str":"1187114256833175558","full_text":"RT + @jennkepka: \"Time management matters: online faculty perceptions of helpfulness + of time management strategies\" at #aect19inspired -- wou\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[117,132]}],"symbols":[],"user_mentions":[{"screen_name":"jennkepka","name":"Jenn + Kepka","id":3733671685,"id_str":"3733671685","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":9714932,"id_str":"9714932","name":"Jon + Henner","screen_name":"jmhenner","location":"","description":"Deaf. Enduring + Melanoma. | Crip Linguistics | I guess I do language stuff? And education + stuff? | T. in own capacity | he\/\ud83d\udc49","url":"https:\/\/t.co\/X7zjawZgc6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/X7zjawZgc6","expanded_url":"http:\/\/jonhenner.com","display_url":"jonhenner.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7098,"friends_count":1640,"listed_count":72,"created_at":"Fri + Oct 26 17:11:35 +0000 2007","favourites_count":155116,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":52891,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1190334568043294723\/6p2Cya8O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1190334568043294723\/6p2Cya8O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9714932\/1600473041","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 21:03:56 +0000 2019","id":1187112443085852672,"id_str":"1187112443085852672","full_text":"\"Time + management matters: online faculty perceptions of helpfulness of time management + strategies\" at #aect19inspired -- would be hard to find a session more targeted + to my interests! https:\/\/t.co\/phJBmMbmcR","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"aect19inspired","indices":[102,117]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187112241608310784,"id_str":"1187112241608310784","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl4S02UwAAlu7Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl4S02UwAAlu7Q.jpg","url":"https:\/\/t.co\/phJBmMbmcR","display_url":"pic.twitter.com\/phJBmMbmcR","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1187112443085852672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187112241608310784,"id_str":"1187112241608310784","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl4S02UwAAlu7Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl4S02UwAAlu7Q.jpg","url":"https:\/\/t.co\/phJBmMbmcR","display_url":"pic.twitter.com\/phJBmMbmcR","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1187112443085852672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":"Slide + that says Time management matters: online faculty perceptions of helpfulness + of time management strategies"}]},"source":"\u003ca href=\"https:\/\/mobile.twitter.com\" + rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3733671685,"id_str":"3733671685","name":"Jenn + Kepka","screen_name":"jennkepka","location":"Oregon, USA","description":"Outreach\/retention\/tutoring + faculty in OR; doc student in #edtech at Boise St. Past: UO, WOU, KU. \u2764 + #oer & \u2615 & \u26f8. Views my own. she\/her\/hers","url":"https:\/\/t.co\/nvazHyg5JB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nvazHyg5JB","expanded_url":"http:\/\/jennkepka.com","display_url":"jennkepka.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":700,"friends_count":1225,"listed_count":45,"created_at":"Wed + Sep 30 05:39:55 +0000 2015","favourites_count":19836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3733671685\/1446791014","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:51:32 +0000 2019","id":1187079123249725440,"id_str":"1187079123249725440","full_text":"eLearning: + An International Collaborative Exploration of Higher-Educational Technology + Usage in Africa. #aect19inspired #AECT19 https:\/\/t.co\/SijSYr49Me","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"aect19inspired","indices":[104,119]},{"text":"AECT19","indices":[120,127]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187079100675940352,"id_str":"1187079100675940352","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","url":"https:\/\/t.co\/SijSYr49Me","display_url":"pic.twitter.com\/SijSYr49Me","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187079123249725440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":982,"h":728,"resize":"fit"},"medium":{"w":982,"h":728,"resize":"fit"},"small":{"w":680,"h":504,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187079100675940352,"id_str":"1187079100675940352","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlaJxQUYAASSBZ.jpg","url":"https:\/\/t.co\/SijSYr49Me","display_url":"pic.twitter.com\/SijSYr49Me","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1187079123249725440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":982,"h":728,"resize":"fit"},"medium":{"w":982,"h":728,"resize":"fit"},"small":{"w":680,"h":504,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:48:09 +0000 2019","id":1187108470111100928,"id_str":"1187108470111100928","full_text":"Want + to know more about corporate IDs in IT? Come see me in Convention Center, + Conference Rm 13 at 2pm. #aect2019 #aect19inspired #lifeofaninstructionaldesigner + https:\/\/t.co\/WaPQvr57vn","truncated":false,"display_text_range":[0,160],"entities":{"hashtags":[{"text":"aect2019","indices":[104,113]},{"text":"aect19inspired","indices":[114,129]},{"text":"lifeofaninstructionaldesigner","indices":[130,160]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187108464331354114,"id_str":"1187108464331354114","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl029ZUcAILCbk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl029ZUcAILCbk.jpg","url":"https:\/\/t.co\/WaPQvr57vn","display_url":"pic.twitter.com\/WaPQvr57vn","expanded_url":"https:\/\/twitter.com\/nikiwats23\/status\/1187108470111100928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":351,"h":680,"resize":"fit"},"large":{"w":990,"h":1920,"resize":"fit"},"medium":{"w":619,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187108464331354114,"id_str":"1187108464331354114","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl029ZUcAILCbk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl029ZUcAILCbk.jpg","url":"https:\/\/t.co\/WaPQvr57vn","display_url":"pic.twitter.com\/WaPQvr57vn","expanded_url":"https:\/\/twitter.com\/nikiwats23\/status\/1187108470111100928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":351,"h":680,"resize":"fit"},"large":{"w":990,"h":1920,"resize":"fit"},"medium":{"w":619,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2861017036,"id_str":"2861017036","name":"Niki + Watson","screen_name":"nikiwats23","location":"","description":"lover, not + a fighter","url":"https:\/\/t.co\/yDBCkJthUM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yDBCkJthUM","expanded_url":"http:\/\/www.nikishawatson.com","display_url":"nikishawatson.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":157,"friends_count":700,"listed_count":19,"created_at":"Tue + Nov 04 16:58:08 +0000 2014","favourites_count":845,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":624,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593920214175186944\/KosJSXMv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593920214175186944\/KosJSXMv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2861017036\/1442268041","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:55:24 +0000 2019","id":1187110296533385216,"id_str":"1187110296533385216","full_text":"RT + @ChangeIt4Better: Dr. Ritzhaupt shares GBL study: Collaboration is important + in game design. Advancement\/achievement levels\/XP are curre\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ChangeIt4Better","name":"Dr. + Suzanne Ensmann","id":1596150056,"id_str":"1596150056","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 16:33:53 +0000 2019","id":1187044482853699586,"id_str":"1187044482853699586","full_text":"Dr. + Ritzhaupt shares GBL study: Collaboration is important in game design. Advancement\/achievement + levels\/XP are currency in games. Players may be motivated with or without + Leadership boards. #eme607 #aect19inspired #aect2019 @AlbertRitzhaupt","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"eme607","indices":[192,199]},{"text":"aect19inspired","indices":[200,215]},{"text":"aect2019","indices":[216,225]}],"symbols":[],"user_mentions":[{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[226,242]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:03:09 +0000 2019","id":1187097147209994240,"id_str":"1187097147209994240","full_text":"Learning + about writing, disappointment, and how to navigate pub process #aect19 #aect19inspired + https:\/\/t.co\/dgdRQjskfV","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"aect19","indices":[74,81]},{"text":"aect19inspired","indices":[82,97]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/dgdRQjskfV","expanded_url":"http:\/\/tinyurl.com\/y4vhbu9j","display_url":"tinyurl.com\/y4vhbu9j","indices":[98,121]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3733671685,"id_str":"3733671685","name":"Jenn + Kepka","screen_name":"jennkepka","location":"Oregon, USA","description":"Outreach\/retention\/tutoring + faculty in OR; doc student in #edtech at Boise St. Past: UO, WOU, KU. \u2764 + #oer & \u2615 & \u26f8. Views my own. she\/her\/hers","url":"https:\/\/t.co\/nvazHyg5JB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nvazHyg5JB","expanded_url":"http:\/\/jennkepka.com","display_url":"jennkepka.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":700,"friends_count":1225,"listed_count":45,"created_at":"Wed + Sep 30 05:39:55 +0000 2015","favourites_count":19836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3733671685\/1446791014","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:48:35 +0000 2019","id":1187108579842514944,"id_str":"1187108579842514944","full_text":"RT + @Naterci89806126: R workshop at AECT\nThank you, @bretsw and @spgreenhalgh for + the great workshop and for helping us learn about R! #aec\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"bretsw","name":"Dr. + Bret Staudt Willet","id":53167706,"id_str":"53167706","indices":[51,58]},{"screen_name":"spgreenhalgh","name":"Spencer + Greenhalgh, PhD","id":129211252,"id_str":"129211252","indices":[63,76]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 18:53:13 +0000 2019","id":1187079547126108160,"id_str":"1187079547126108160","full_text":"R + workshop at AECT\nThank you, @bretsw and @spgreenhalgh for the great workshop + and for helping us learn about R! #aect19inspired #aect19 https:\/\/t.co\/i77B8oMU4t","truncated":false,"display_text_range":[0,137],"entities":{"hashtags":[{"text":"aect19inspired","indices":[114,129]},{"text":"aect19","indices":[130,137]}],"symbols":[],"user_mentions":[{"screen_name":"bretsw","name":"Dr. + Bret Staudt Willet","id":53167706,"id_str":"53167706","indices":[30,37]},{"screen_name":"spgreenhalgh","name":"Spencer + Greenhalgh, PhD","id":129211252,"id_str":"129211252","indices":[42,55]}],"urls":[],"media":[{"id":1187079540083838976,"id_str":"1187079540083838976","indices":[138,161],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHlajWLU0AAjqyw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHlajWLU0AAjqyw.jpg","url":"https:\/\/t.co\/i77B8oMU4t","display_url":"pic.twitter.com\/i77B8oMU4t","expanded_url":"https:\/\/twitter.com\/Naterci89806126\/status\/1187079547126108160\/photo\/1","type":"photo","sizes":{"medium":{"w":180,"h":144,"resize":"fit"},"small":{"w":180,"h":144,"resize":"fit"},"large":{"w":180,"h":144,"resize":"fit"},"thumb":{"w":144,"h":144,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1187079540083838976,"id_str":"1187079540083838976","indices":[138,161],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHlajWLU0AAjqyw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHlajWLU0AAjqyw.jpg","url":"https:\/\/t.co\/i77B8oMU4t","display_url":"pic.twitter.com\/i77B8oMU4t","expanded_url":"https:\/\/twitter.com\/Naterci89806126\/status\/1187079547126108160\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":180,"h":144,"resize":"fit"},"small":{"w":180,"h":144,"resize":"fit"},"large":{"w":180,"h":144,"resize":"fit"},"thumb":{"w":144,"h":144,"resize":"crop"}},"video_info":{"aspect_ratio":[5,4],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHlajWLU0AAjqyw.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":901153375680647168,"id_str":"901153375680647168","name":"Natercia + Valle","screen_name":"NaterciaValle","location":"","description":"STEM Instruction + Librarian - Assistant University Librarian | Marston Science Library | University + of Florida","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":38,"listed_count":0,"created_at":"Fri + Aug 25 18:44:42 +0000 2017","favourites_count":63,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":26,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1186735752891133953\/clydlSoR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186735752891133953\/clydlSoR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/901153375680647168\/1571775671","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:51:21 +0000 2019","id":1187109277074259968,"id_str":"1187109277074259968","full_text":"RT + @DKSch: Today I did my first @SpheroEdu Bolt program. It rolls a square and + says \"cool\". At #aect19inspired in the TED Inspire! Introduc\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[95,110]}],"symbols":[],"user_mentions":[{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[3,9]},{"screen_name":"SpheroEdu","name":"Sphero + Education","id":1335870978,"id_str":"1335870978","indices":[32,42]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 19:48:47 +0000 2019","id":1187093531673808896,"id_str":"1187093531673808896","full_text":"Today + I did my first @SpheroEdu Bolt program. It rolls a square and says \"cool\". + At #aect19inspired in the TED Inspire! Introduction to Block Programming https:\/\/t.co\/SX3nfWioe4 + https:\/\/t.co\/rdsvQ2DgL9","truncated":false,"display_text_range":[0,177],"entities":{"hashtags":[{"text":"aect19inspired","indices":[84,99]}],"symbols":[],"user_mentions":[{"screen_name":"SpheroEdu","name":"Sphero + Education","id":1335870978,"id_str":"1335870978","indices":[21,31]}],"urls":[{"url":"https:\/\/t.co\/SX3nfWioe4","expanded_url":"http:\/\/l.core-apps.com\/aect19\/event?event=b038d05c063d8ab60ed1330fb70e20a8","display_url":"l.core-apps.com\/aect19\/event?e\u2026","indices":[154,177]}],"media":[{"id":1187093523788521472,"id_str":"1187093523788521472","indices":[178,201],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlnRTiU4AAFZd-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlnRTiU4AAFZd-.jpg","url":"https:\/\/t.co\/rdsvQ2DgL9","display_url":"pic.twitter.com\/rdsvQ2DgL9","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187093531673808896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":584,"h":1200,"resize":"fit"},"large":{"w":996,"h":2048,"resize":"fit"},"small":{"w":331,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187093523788521472,"id_str":"1187093523788521472","indices":[178,201],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlnRTiU4AAFZd-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlnRTiU4AAFZd-.jpg","url":"https:\/\/t.co\/rdsvQ2DgL9","display_url":"pic.twitter.com\/rdsvQ2DgL9","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187093531673808896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":584,"h":1200,"resize":"fit"},"large":{"w":996,"h":2048,"resize":"fit"},"small":{"w":331,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:39:25 +0000 2019","id":1187106273147285505,"id_str":"1187106273147285505","full_text":"RT + @arasbozkurt: Happy to announce that me and Akbulut, researchers from Anadolu + University, received Reviewer Excellence Award by ETR&D pr\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"arasbozkurt","name":"Aras + Bozkurt","id":83447547,"id_str":"83447547","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 20:21:09 +0000 2019","id":1187101677142319105,"id_str":"1187101677142319105","full_text":"Happy + to announce that me and Akbulut, researchers from Anadolu University, received + Reviewer Excellence Award by ETR&D presented at #AECT19 #ETRD @yvzkblt + @AECT https:\/\/t.co\/QJXzm3Nc74","truncated":false,"display_text_range":[0,165],"entities":{"hashtags":[{"text":"AECT19","indices":[137,144]},{"text":"ETRD","indices":[145,150]}],"symbols":[],"user_mentions":[{"screen_name":"yvzkblt","name":"Yavuz + Akbulut","id":257891862,"id_str":"257891862","indices":[151,159]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[160,165]}],"urls":[],"media":[{"id":1187101649879425025,"id_str":"1187101649879425025","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","url":"https:\/\/t.co\/QJXzm3Nc74","display_url":"pic.twitter.com\/QJXzm3Nc74","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187101677142319105\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187101649879425025,"id_str":"1187101649879425025","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluqTlX4AEFDXd.jpg","url":"https:\/\/t.co\/QJXzm3Nc74","display_url":"pic.twitter.com\/QJXzm3Nc74","expanded_url":"https:\/\/twitter.com\/arasbozkurt\/status\/1187101677142319105\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":67,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 19:02:48 +0000 2019","id":1187081957944909824,"id_str":"1187081957944909824","full_text":"Check + out Routledge\u2019s selection of books on #instructionaldesign, #onlinelearning, + and more at #AECT2019! https:\/\/t.co\/19MR7RFhRY","truncated":false,"display_text_range":[0,105],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[44,64]},{"text":"onlinelearning","indices":[66,81]},{"text":"AECT2019","indices":[95,104]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187081950298693632,"id_str":"1187081950298693632","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlcvo7U4AAWbAN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlcvo7U4AAWbAN.jpg","url":"https:\/\/t.co\/19MR7RFhRY","display_url":"pic.twitter.com\/19MR7RFhRY","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187081957944909824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187081950298693632,"id_str":"1187081950298693632","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlcvo7U4AAWbAN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlcvo7U4AAWbAN.jpg","url":"https:\/\/t.co\/19MR7RFhRY","display_url":"pic.twitter.com\/19MR7RFhRY","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187081957944909824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187081950298722305,"id_str":"1187081950298722305","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlcvo7VUAE60Wh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlcvo7VUAE60Wh.jpg","url":"https:\/\/t.co\/19MR7RFhRY","display_url":"pic.twitter.com\/19MR7RFhRY","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187081957944909824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27606068,"id_str":"27606068","name":"Routledge + Education Books","screen_name":"RoutledgeEd","location":"Global","description":"Supporting + educators, teachers, scholars and students with informative and practical + books based on leading research and classroom practice.","url":"http:\/\/t.co\/j4LZK9ypti","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/j4LZK9ypti","expanded_url":"http:\/\/www.routledge.com\/education","display_url":"routledge.com\/education","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":13833,"friends_count":3278,"listed_count":230,"created_at":"Mon + Mar 30 08:33:32 +0000 2009","favourites_count":2658,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10107,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"6A9ADA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27606068\/1629726175","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"6A9ADA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:48:02 +0000 2019","id":1187108443175276544,"id_str":"1187108443175276544","full_text":"RT + @nangur1: Individualized personalized learning and small group learning \u2066@bretsw\u2069 + \u2066@spgreenhalgh\u2069 great work! #aect19inspired #aect19 ht\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[113,128]},{"text":"aect19","indices":[129,136]}],"symbols":[],"user_mentions":[{"screen_name":"nangur1","name":"Dr. + Nandita Gurjar","id":2743313304,"id_str":"2743313304","indices":[3,11]},{"screen_name":"bretsw","name":"Dr. + Bret Staudt Willet","id":53167706,"id_str":"53167706","indices":[76,83]},{"screen_name":"spgreenhalgh","name":"Spencer + Greenhalgh, PhD","id":129211252,"id_str":"129211252","indices":[86,99]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 18:56:38 +0000 2019","id":1187080404932521984,"id_str":"1187080404932521984","full_text":"Individualized + personalized learning and small group learning \u2066@bretsw\u2069 \u2066@spgreenhalgh\u2069 + great work! #aect19inspired #aect19 https:\/\/t.co\/EUZAorhfmP","truncated":false,"display_text_range":[0,123],"entities":{"hashtags":[{"text":"aect19inspired","indices":[100,115]},{"text":"aect19","indices":[116,123]}],"symbols":[],"user_mentions":[{"screen_name":"bretsw","name":"Dr. + Bret Staudt Willet","id":53167706,"id_str":"53167706","indices":[63,70]},{"screen_name":"spgreenhalgh","name":"Spencer + Greenhalgh, PhD","id":129211252,"id_str":"129211252","indices":[73,86]}],"urls":[],"media":[{"id":1187080397844180992,"id_str":"1187080397844180992","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlbVRlU8AAZKWs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlbVRlU8AAZKWs.jpg","url":"https:\/\/t.co\/EUZAorhfmP","display_url":"pic.twitter.com\/EUZAorhfmP","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187080404932521984\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187080397844180992,"id_str":"1187080397844180992","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlbVRlU8AAZKWs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlbVRlU8AAZKWs.jpg","url":"https:\/\/t.co\/EUZAorhfmP","display_url":"pic.twitter.com\/EUZAorhfmP","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187080404932521984\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:45:48 +0000 2019","id":1187107879431487488,"id_str":"1187107879431487488","full_text":"Awww, + thanks for the shout out #aect19 peeps! https:\/\/t.co\/T92A9KFRbH","truncated":false,"display_text_range":[0,45],"entities":{"hashtags":[{"text":"aect19","indices":[31,38]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187107872099880960,"id_str":"1187107872099880960","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl0UfKVUAAINIV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl0UfKVUAAINIV.jpg","url":"https:\/\/t.co\/T92A9KFRbH","display_url":"pic.twitter.com\/T92A9KFRbH","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1187107879431487488\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187107872099880960,"id_str":"1187107872099880960","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl0UfKVUAAINIV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl0UfKVUAAINIV.jpg","url":"https:\/\/t.co\/T92A9KFRbH","display_url":"pic.twitter.com\/T92A9KFRbH","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1187107879431487488\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:21:02 +0000 2019","id":1187101647412977664,"id_str":"1187101647412977664","full_text":"#aect19 + Tip #09 - When applying for a job in the field, highlight every row of your + vita, because hey, you\u2019re awesome.","truncated":false,"display_text_range":[0,118],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:52:13 +0000 2019","id":1187109494901243904,"id_str":"1187109494901243904","full_text":"RT + @RitaFennelly: I\u2019m @AECT and just realized that I\u2019m missing out + on a great opportunity to connect. I\u2019m a doc student hoping to write + my\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[22,27]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 19:34:50 +0000 2019","id":1187090018331811840,"id_str":"1187090018331811840","full_text":"I\u2019m + @AECT and just realized that I\u2019m missing out on a great opportunity to + connect. I\u2019m a doc student hoping to write my dissertation on #accessibility + Anyone interested in a coffee chat tomorrow morning? #aect2019 #aect19inspired","truncated":false,"display_text_range":[0,230],"entities":{"hashtags":[{"text":"accessibility","indices":[137,151]},{"text":"aect2019","indices":[205,214]},{"text":"aect19inspired","indices":[215,230]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[4,9]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:27:38 +0000 2019","id":1187118408548012032,"id_str":"1187118408548012032","full_text":"Thanks + for coming to this morning\u2019s session! We\u2019ll share slides as well + #aect19 #aect19inspired https:\/\/t.co\/bT8mlQlX08","truncated":false,"display_text_range":[0,95],"entities":{"hashtags":[{"text":"aect19","indices":[72,79]},{"text":"aect19inspired","indices":[80,95]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/bT8mlQlX08","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187093531673808896","display_url":"twitter.com\/DKSch\/status\/1\u2026","indices":[96,119]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1408637941,"id_str":"1408637941","name":"Shannon + M. Smith","screen_name":"SmithShannonM","location":"Boise, ID","description":"Librarian + @BSULibrary + @UW_iSchool alum | OER, OA, Schol Comm, STEM, Design Thinking + | opinions my own | dreaming + reflecting + learning","url":"https:\/\/t.co\/cP2kwcqbcn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cP2kwcqbcn","expanded_url":"https:\/\/orcid.org\/0000-0002-2560-7410","display_url":"orcid.org\/0000-0002-2560\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":421,"friends_count":863,"listed_count":15,"created_at":"Mon + May 06 20:13:09 +0000 2013","favourites_count":5591,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2346,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1528811834257526784\/FoWd_4Uj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1528811834257526784\/FoWd_4Uj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1408637941\/1653332130","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187093531673808896,"quoted_status_id_str":"1187093531673808896","quoted_status_permalink":{"url":"https:\/\/t.co\/bT8mlQlX08","expanded":"https:\/\/twitter.com\/DKSch\/status\/1187093531673808896","display":"twitter.com\/DKSch\/status\/1\u2026"},"quoted_status":{"created_at":"Wed + Oct 23 19:48:47 +0000 2019","id":1187093531673808896,"id_str":"1187093531673808896","full_text":"Today + I did my first @SpheroEdu Bolt program. It rolls a square and says \"cool\". + At #aect19inspired in the TED Inspire! Introduction to Block Programming https:\/\/t.co\/SX3nfWioe4 + https:\/\/t.co\/rdsvQ2DgL9","truncated":false,"display_text_range":[0,177],"entities":{"hashtags":[{"text":"aect19inspired","indices":[84,99]}],"symbols":[],"user_mentions":[{"screen_name":"SpheroEdu","name":"Sphero + Education","id":1335870978,"id_str":"1335870978","indices":[21,31]}],"urls":[{"url":"https:\/\/t.co\/SX3nfWioe4","expanded_url":"http:\/\/l.core-apps.com\/aect19\/event?event=b038d05c063d8ab60ed1330fb70e20a8","display_url":"l.core-apps.com\/aect19\/event?e\u2026","indices":[154,177]}],"media":[{"id":1187093523788521472,"id_str":"1187093523788521472","indices":[178,201],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlnRTiU4AAFZd-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlnRTiU4AAFZd-.jpg","url":"https:\/\/t.co\/rdsvQ2DgL9","display_url":"pic.twitter.com\/rdsvQ2DgL9","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187093531673808896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":584,"h":1200,"resize":"fit"},"large":{"w":996,"h":2048,"resize":"fit"},"small":{"w":331,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187093523788521472,"id_str":"1187093523788521472","indices":[178,201],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlnRTiU4AAFZd-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlnRTiU4AAFZd-.jpg","url":"https:\/\/t.co\/rdsvQ2DgL9","display_url":"pic.twitter.com\/rdsvQ2DgL9","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187093531673808896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":584,"h":1200,"resize":"fit"},"large":{"w":996,"h":2048,"resize":"fit"},"small":{"w":331,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:44:49 +0000 2019","id":1187107632923832321,"id_str":"1187107632923832321","full_text":"RT + @RealMelissaWarr: Want to pass Tom Reeve''s bus challenge? Check out our session + on The Five Discourses of Design! \n2:00 PM Conference Ro\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RealMelissaWarr","name":"Melissa + Warr","id":2191740091,"id_str":"2191740091","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 20:34:15 +0000 2019","id":1187104971327598592,"id_str":"1187104971327598592","full_text":"Want + to pass Tom Reeve''s bus challenge? Check out our session on The Five Discourses + of Design! \n2:00 PM Conference Room 14\n@punyamishra\n https:\/\/t.co\/G4Rd6IVDbs + #aect19inspired #aect19 https:\/\/t.co\/BKO2DAPyy4","truncated":false,"display_text_range":[0,185],"entities":{"hashtags":[{"text":"aect19inspired","indices":[162,177]},{"text":"aect19","indices":[178,185]}],"symbols":[],"user_mentions":[{"screen_name":"punyamishra","name":"Punya + Mishra","id":16398344,"id_str":"16398344","indices":[124,136]}],"urls":[{"url":"https:\/\/t.co\/G4Rd6IVDbs","expanded_url":"http:\/\/tinyurl.com\/y6f46uyr","display_url":"tinyurl.com\/y6f46uyr","indices":[138,161]}],"media":[{"id":1187104968873934848,"id_str":"1187104968873934848","indices":[186,209],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlxrfzVAAAMTT_.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlxrfzVAAAMTT_.png","url":"https:\/\/t.co\/BKO2DAPyy4","display_url":"pic.twitter.com\/BKO2DAPyy4","expanded_url":"https:\/\/twitter.com\/RealMelissaWarr\/status\/1187104971327598592\/photo\/1","type":"photo","sizes":{"small":{"w":575,"h":384,"resize":"fit"},"medium":{"w":575,"h":384,"resize":"fit"},"large":{"w":575,"h":384,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1187104968873934848,"id_str":"1187104968873934848","indices":[186,209],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlxrfzVAAAMTT_.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlxrfzVAAAMTT_.png","url":"https:\/\/t.co\/BKO2DAPyy4","display_url":"pic.twitter.com\/BKO2DAPyy4","expanded_url":"https:\/\/twitter.com\/RealMelissaWarr\/status\/1187104971327598592\/photo\/1","type":"photo","sizes":{"small":{"w":575,"h":384,"resize":"fit"},"medium":{"w":575,"h":384,"resize":"fit"},"large":{"w":575,"h":384,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2191740091,"id_str":"2191740091","name":"Melissa + Warr","screen_name":"RealMelissaWarr","location":"Monroe, LA","description":"Assistant + Professor, University of Louisiana Monroe","url":"https:\/\/t.co\/2LNlqxPB4z","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2LNlqxPB4z","expanded_url":"http:\/\/Melissa-Warr.com","display_url":"Melissa-Warr.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":64,"listed_count":1,"created_at":"Wed + Nov 13 05:59:01 +0000 2013","favourites_count":36,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":59,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1163579224986271744\/mKWbdlr4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1163579224986271744\/mKWbdlr4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2191740091\/1384754908","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:37:38 +0000 2019","id":1187120923821756416,"id_str":"1187120923821756416","full_text":"RT + @RitaFennelly: Want to transition from grad school to a faculty position? + The panel @AECT RTD: Faculty in Instructional Design and Techn\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[87,92]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 21:25:55 +0000 2019","id":1187117975364464640,"id_str":"1187117975364464640","full_text":"Want + to transition from grad school to a faculty position? The panel @AECT RTD: + Faculty in Instructional Design and Technology recommend honing your interview + skills, leverage social media, and be someone others want to work with. Lots + of great advice! #aect19inspired","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"aect19inspired","indices":[253,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[69,74]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:50:30 +0000 2019","id":1187109062527373315,"id_str":"1187109062527373315","full_text":"Up + next for the LED at #AECT19 is the Instructional Strategies session, which + will explore #cyberbullying in online learning and #inspiring teacher education. + 2pm in Conf Room 8! #edprep #onlinelearning https:\/\/t.co\/laujeDdsRl","truncated":false,"display_text_range":[0,202],"entities":{"hashtags":[{"text":"AECT19","indices":[23,30]},{"text":"cyberbullying","indices":[91,105]},{"text":"inspiring","indices":[129,139]},{"text":"edprep","indices":[179,186]},{"text":"onlinelearning","indices":[187,202]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187109045913694208,"id_str":"1187109045913694208","indices":[203,226],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl1Yz9WsAAMBr1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl1Yz9WsAAMBr1.jpg","url":"https:\/\/t.co\/laujeDdsRl","display_url":"pic.twitter.com\/laujeDdsRl","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187109062527373315\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187109045913694208,"id_str":"1187109045913694208","indices":[203,226],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl1Yz9WsAAMBr1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl1Yz9WsAAMBr1.jpg","url":"https:\/\/t.co\/laujeDdsRl","display_url":"pic.twitter.com\/laujeDdsRl","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1187109062527373315\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 19:35:39 +0000 2019","id":1187090223680741376,"id_str":"1187090223680741376","full_text":"@DrVirtuality + @AECT Hi! Just saw that you are also attending and presenting at #AECT19 this + week! I\u2019m going to try to try to make it to your session this afternoon. + We should take a pic to share with our #ISTEai FB group. :) My workshop on + Flipped PD is tmrw morning.","truncated":false,"display_text_range":[20,267],"entities":{"hashtags":[{"text":"AECT19","indices":[79,86]},{"text":"ISTEai","indices":[204,211]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[0,13]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[14,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1185450309503479809,"in_reply_to_status_id_str":"1185450309503479809","in_reply_to_user_id":15667548,"in_reply_to_user_id_str":"15667548","in_reply_to_screen_name":"DrVirtuality","user":{"id":175808323,"id_str":"175808323","name":"Nancye + Blair Black","screen_name":"NancyeBlackEdu","location":"Central Florida","description":"Maximizer + of Potential, Defender of Dignity, #Edtech Consultant\/Speaker\/Author, #ISTECert, + @ISTE AI Explorations ProjectLead, ProjectSTEM, @tcgameslab, @MASClab","url":"https:\/\/t.co\/MVxzTa595W","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MVxzTa595W","expanded_url":"http:\/\/engagingeducation.net","display_url":"engagingeducation.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3005,"friends_count":2358,"listed_count":173,"created_at":"Sat + Aug 07 17:38:59 +0000 2010","favourites_count":5091,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3972,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1083931148475080704\/fhxis1fO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1083931148475080704\/fhxis1fO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175808323\/1547264959","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:50:34 +0000 2019","id":1187109079904243712,"id_str":"1187109079904243712","full_text":"RT + @ChangeIt4Better: Dr. Hoyet Hemphill shares models for systems thinking for + online learning #eme605 #aect19inspired #aect2019 https:\/\/t.\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"eme605","indices":[95,102]},{"text":"aect19inspired","indices":[103,118]},{"text":"aect2019","indices":[119,128]}],"symbols":[],"user_mentions":[{"screen_name":"ChangeIt4Better","name":"Dr. + Suzanne Ensmann","id":1596150056,"id_str":"1596150056","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 20:21:40 +0000 2019","id":1187101804992987138,"id_str":"1187101804992987138","full_text":"Dr. + Hoyet Hemphill shares models for systems thinking for online learning #eme605 + #aect19inspired #aect2019 https:\/\/t.co\/mnpJAAsatR","truncated":false,"display_text_range":[0,107],"entities":{"hashtags":[{"text":"eme605","indices":[74,81]},{"text":"aect19inspired","indices":[82,97]},{"text":"aect2019","indices":[98,107]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187101795568340993,"id_str":"1187101795568340993","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluyyUUUAEJ2J1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluyyUUUAEJ2J1.jpg","url":"https:\/\/t.co\/mnpJAAsatR","display_url":"pic.twitter.com\/mnpJAAsatR","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187101804992987138\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187101795568340993,"id_str":"1187101795568340993","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluyyUUUAEJ2J1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluyyUUUAEJ2J1.jpg","url":"https:\/\/t.co\/mnpJAAsatR","display_url":"pic.twitter.com\/mnpJAAsatR","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187101804992987138\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187101795618672640,"id_str":"1187101795618672640","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluyygUUAAr2xV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluyygUUAAr2xV.jpg","url":"https:\/\/t.co\/mnpJAAsatR","display_url":"pic.twitter.com\/mnpJAAsatR","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187101804992987138\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187101795627089920,"id_str":"1187101795627089920","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluyyiUwAAb21T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluyyiUwAAb21T.jpg","url":"https:\/\/t.co\/mnpJAAsatR","display_url":"pic.twitter.com\/mnpJAAsatR","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187101804992987138\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187101795622866944,"id_str":"1187101795622866944","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluyyhUUAAo4FI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluyyhUUAAo4FI.jpg","url":"https:\/\/t.co\/mnpJAAsatR","display_url":"pic.twitter.com\/mnpJAAsatR","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187101804992987138\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:07:53 +0000 2019","id":1187098337842843648,"id_str":"1187098337842843648","full_text":"Third + day #aect19inspired #AECTech2019 #aect19inspired ITV and Apple TV + https:\/\/t.co\/YwKD2PuCaJ","truncated":false,"display_text_range":[0,79],"entities":{"hashtags":[{"text":"aect19inspired","indices":[10,25]},{"text":"AECTech2019","indices":[26,38]},{"text":"aect19inspired","indices":[39,54]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187098223267041280,"id_str":"1187098223267041280","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlri2dUUAANZWE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlri2dUUAANZWE.jpg","url":"https:\/\/t.co\/YwKD2PuCaJ","display_url":"pic.twitter.com\/YwKD2PuCaJ","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187098337842843648\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187098223267041280,"id_str":"1187098223267041280","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlri2dUUAANZWE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlri2dUUAANZWE.jpg","url":"https:\/\/t.co\/YwKD2PuCaJ","display_url":"pic.twitter.com\/YwKD2PuCaJ","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187098337842843648\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187068404655505410,"in_reply_to_status_id_str":"1187068404655505410","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:55:49 +0000 2019","id":1187110401592291328,"id_str":"1187110401592291328","full_text":"RT + @Kadeshaaa_: I wonder what will be discussed today during the AECT conference! + What is the theory of virtuality culture and how is it be\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Kadeshaaa_","name":"Kadesha","id":1168889274466545664,"id_str":"1168889274466545664","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 05:59:55 +0000 2019","id":1186884939377250306,"id_str":"1186884939377250306","full_text":"I + wonder what will be discussed today during the AECT conference! What is the + theory of virtuality culture and how is it beneficial in the realm of education?!\n#aect2019 + #aect19inspired #fsu2040 #eme2040 https:\/\/t.co\/tG0gdk8Cf7","truncated":false,"display_text_range":[0,203],"entities":{"hashtags":[{"text":"aect2019","indices":[160,169]},{"text":"aect19inspired","indices":[170,185]},{"text":"fsu2040","indices":[186,194]},{"text":"eme2040","indices":[195,203]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tG0gdk8Cf7","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186842680665485312","display_url":"twitter.com\/DrVirtuality\/s\u2026","indices":[204,227]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1168889274466545664,"id_str":"1168889274466545664","name":"Kadesha","screen_name":"Kadeshaaa_","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":14,"listed_count":0,"created_at":"Tue + Sep 03 14:12:28 +0000 2019","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186842680665485312,"quoted_status_id_str":"1186842680665485312","quoted_status_permalink":{"url":"https:\/\/t.co\/tG0gdk8Cf7","expanded":"https:\/\/twitter.com\/DrVirtuality\/status\/1186842680665485312","display":"twitter.com\/DrVirtuality\/s\u2026"},"quoted_status":{"created_at":"Wed + Oct 23 03:12:00 +0000 2019","id":1186842680665485312,"id_str":"1186842680665485312","full_text":"See + you tomorrow @aect! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/rnWKqhSFyl","truncated":false,"display_text_range":[0,56],"entities":{"hashtags":[{"text":"AECT19","indices":[33,40]},{"text":"AECT19inspired","indices":[41,56]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[17,22]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[24,32]}],"urls":[],"media":[{"id":1185705645468577792,"id_str":"1185705645468577792","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","url":"https:\/\/t.co\/rnWKqhSFyl","display_url":"pic.twitter.com\/rnWKqhSFyl","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186842680665485312\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185705645468577792,"id_str":"1185705645468577792","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","url":"https:\/\/t.co\/rnWKqhSFyl","display_url":"pic.twitter.com\/rnWKqhSFyl","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186842680665485312\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186842680665485312,"quoted_status_id_str":"1186842680665485312","quoted_status_permalink":{"url":"https:\/\/t.co\/tG0gdk8Cf7","expanded":"https:\/\/twitter.com\/DrVirtuality\/status\/1186842680665485312","display":"twitter.com\/DrVirtuality\/s\u2026"},"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:21:21 +0000 2019","id":1187101724365881344,"id_str":"1187101724365881344","full_text":"RT + @RitaFennelly: I\u2019m @AECT and just realized that I\u2019m missing out + on a great opportunity to connect. I\u2019m a doc student hoping to write + my\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[22,27]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12969492,"id_str":"12969492","name":"Michael + K Barbour","screen_name":"mkbtuc","location":"Vallejo, CA","description":"Michael + Barbour is an Associate Professor of Instructional Design researching K-12 + online learning. Tweets are my own.","url":"https:\/\/t.co\/tMrehQTszp","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/tMrehQTszp","expanded_url":"http:\/\/www.michaelbarbour.com","display_url":"michaelbarbour.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3131,"friends_count":4453,"listed_count":205,"created_at":"Sat + Feb 02 03:54:15 +0000 2008","favourites_count":10,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47957,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1194279218588241920\/rV3HCcJk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1194279218588241920\/rV3HCcJk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12969492\/1573573329","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 19:34:50 +0000 2019","id":1187090018331811840,"id_str":"1187090018331811840","full_text":"I\u2019m + @AECT and just realized that I\u2019m missing out on a great opportunity to + connect. I\u2019m a doc student hoping to write my dissertation on #accessibility + Anyone interested in a coffee chat tomorrow morning? #aect2019 #aect19inspired","truncated":false,"display_text_range":[0,230],"entities":{"hashtags":[{"text":"accessibility","indices":[137,151]},{"text":"aect2019","indices":[205,214]},{"text":"aect19inspired","indices":[215,230]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[4,9]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:25:55 +0000 2019","id":1187117975364464640,"id_str":"1187117975364464640","full_text":"Want + to transition from grad school to a faculty position? The panel @AECT RTD: + Faculty in Instructional Design and Technology recommend honing your interview + skills, leverage social media, and be someone others want to work with. Lots + of great advice! #aect19inspired","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"aect19inspired","indices":[253,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[69,74]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:01:46 +0000 2019","id":1187096799053410304,"id_str":"1187096799053410304","full_text":"My + worst enemies are also my best friends #aect19","truncated":false,"display_text_range":[0,49],"entities":{"hashtags":[{"text":"aect19","indices":[42,49]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 19:43:21 +0000 2019","id":1187092164150358016,"id_str":"1187092164150358016","full_text":"RT + @johnhiltoniii: If you''re at #AECT19 pop on by the \"Introduction to Open + Education\" workshop I''m leading with @opencontent. Today, 9 AM\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"AECT19","indices":[32,39]}],"symbols":[],"user_mentions":[{"screen_name":"johnhiltoniii","name":"John + Hilton III","id":45002394,"id_str":"45002394","indices":[3,17]},{"screen_name":"opencontent","name":"David + Wiley","id":4514361,"id_str":"4514361","indices":[113,125]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":241130167,"id_str":"241130167","name":"Justin + Whiting","screen_name":"JNWhiting","location":"Salt Lake City, UT","description":"Instructional + Designer for Primary Children\u2019s Hospital. Doctoral candidate at Indiana + University, researching learning through failure.","url":"https:\/\/t.co\/dXIgTV1nX6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/dXIgTV1nX6","expanded_url":"http:\/\/justinwhiting.com","display_url":"justinwhiting.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":248,"friends_count":430,"listed_count":25,"created_at":"Fri + Jan 21 14:50:36 +0000 2011","favourites_count":1275,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4969,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532995379608821763\/29XTrOiZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532995379608821763\/29XTrOiZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/241130167\/1428944891","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 16:07:31 +0000 2019","id":1187037846227451904,"id_str":"1187037846227451904","full_text":"If + you''re at #AECT19 pop on by the \"Introduction to Open Education\" workshop + I''m leading with @opencontent. Today, 9 AM - 12 PM in room D, right by the + registration table. Would love to see you.","truncated":false,"display_text_range":[0,194],"entities":{"hashtags":[{"text":"AECT19","indices":[13,20]}],"symbols":[],"user_mentions":[{"screen_name":"opencontent","name":"David + Wiley","id":4514361,"id_str":"4514361","indices":[94,106]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45002394,"id_str":"45002394","name":"John + Hilton III","screen_name":"johnhiltoniii","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":776,"friends_count":179,"listed_count":26,"created_at":"Fri + Jun 05 21:32:35 +0000 2009","favourites_count":567,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":561,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575680770137722881\/WkkQhBdO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575680770137722881\/WkkQhBdO_normal.jpeg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":21,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:21:40 +0000 2019","id":1187101804992987138,"id_str":"1187101804992987138","full_text":"Dr. + Hoyet Hemphill shares models for systems thinking for online learning #eme605 + #aect19inspired #aect2019 https:\/\/t.co\/mnpJAAsatR","truncated":false,"display_text_range":[0,107],"entities":{"hashtags":[{"text":"eme605","indices":[74,81]},{"text":"aect19inspired","indices":[82,97]},{"text":"aect2019","indices":[98,107]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187101795568340993,"id_str":"1187101795568340993","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluyyUUUAEJ2J1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluyyUUUAEJ2J1.jpg","url":"https:\/\/t.co\/mnpJAAsatR","display_url":"pic.twitter.com\/mnpJAAsatR","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187101804992987138\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187101795568340993,"id_str":"1187101795568340993","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluyyUUUAEJ2J1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluyyUUUAEJ2J1.jpg","url":"https:\/\/t.co\/mnpJAAsatR","display_url":"pic.twitter.com\/mnpJAAsatR","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187101804992987138\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187101795618672640,"id_str":"1187101795618672640","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluyygUUAAr2xV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluyygUUAAr2xV.jpg","url":"https:\/\/t.co\/mnpJAAsatR","display_url":"pic.twitter.com\/mnpJAAsatR","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187101804992987138\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187101795627089920,"id_str":"1187101795627089920","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluyyiUwAAb21T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluyyiUwAAb21T.jpg","url":"https:\/\/t.co\/mnpJAAsatR","display_url":"pic.twitter.com\/mnpJAAsatR","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187101804992987138\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187101795622866944,"id_str":"1187101795622866944","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHluyyhUUAAo4FI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHluyyhUUAAo4FI.jpg","url":"https:\/\/t.co\/mnpJAAsatR","display_url":"pic.twitter.com\/mnpJAAsatR","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187101804992987138\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:47:37 +0000 2019","id":1187108337617260545,"id_str":"1187108337617260545","full_text":"RT + @robmoore3: Have you used @Flipgrid in one of your classes? Not sure what + it is? Come check out my session with @plowenthal and see how\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 19:25:00 +0000 2019","id":1187087544305045518,"id_str":"1187087544305045518","full_text":"Have + you used @Flipgrid in one of your classes? Not sure what it is? Come check + out my session with @plowenthal and see how it has been used for asynchronous + video-based discussions #aect19 #aect19inspired https:\/\/t.co\/HaiHTmFBUH + https:\/\/t.co\/UGlZGD9QzL","truncated":false,"display_text_range":[0,229],"entities":{"hashtags":[{"text":"aect19","indices":[182,189]},{"text":"aect19inspired","indices":[190,205]}],"symbols":[],"user_mentions":[{"screen_name":"plowenthal","name":"Patrick + Lowenthal","id":14364665,"id_str":"14364665","indices":[100,111]}],"urls":[{"url":"https:\/\/t.co\/HaiHTmFBUH","expanded_url":"http:\/\/bit.ly\/2ISaX3W","display_url":"bit.ly\/2ISaX3W","indices":[206,229]}],"media":[{"id":1184455265850220545,"id_str":"1184455265850220545","indices":[230,253],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAHye1X4AE8xXu.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAHye1X4AE8xXu.png","url":"https:\/\/t.co\/UGlZGD9QzL","display_url":"pic.twitter.com\/UGlZGD9QzL","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187087544305045518\/photo\/1","type":"photo","sizes":{"medium":{"w":731,"h":519,"resize":"fit"},"small":{"w":680,"h":483,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":731,"h":519,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184455265850220545,"id_str":"1184455265850220545","indices":[230,253],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAHye1X4AE8xXu.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAHye1X4AE8xXu.png","url":"https:\/\/t.co\/UGlZGD9QzL","display_url":"pic.twitter.com\/UGlZGD9QzL","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187087544305045518\/photo\/1","type":"photo","sizes":{"medium":{"w":731,"h":519,"resize":"fit"},"small":{"w":680,"h":483,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":731,"h":519,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:57:25 +0000 2019","id":1187110804660736000,"id_str":"1187110804660736000","full_text":"RT + @EmmaMMercier: Wonderful to see @LuEMLawrence presenting on #csteps work at + #AECT2019! @edILLINOIS @CIRCLCenter https:\/\/t.co\/AosGSJQ09T","truncated":false,"display_text_range":[0,138],"entities":{"hashtags":[{"text":"csteps","indices":[63,70]},{"text":"AECT2019","indices":[79,88]}],"symbols":[],"user_mentions":[{"screen_name":"EmmaMMercier","name":"Emma + Mercier","id":902231366,"id_str":"902231366","indices":[3,16]},{"screen_name":"LuEMLawrence","name":"LuEttaMae + (Lu) Lawrence","id":859809032739205121,"id_str":"859809032739205121","indices":[35,48]},{"screen_name":"edILLINOIS","name":"COLLEGE + OF EDUCATION","id":50013575,"id_str":"50013575","indices":[90,101]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 18:43:26 +0000 2019","id":1186714696067506176,"id_str":"1186714696067506176","full_text":"Wonderful + to see @LuEMLawrence presenting on #csteps work at #AECT2019! @edILLINOIS + @CIRCLCenter https:\/\/t.co\/AosGSJQ09T","truncated":false,"display_text_range":[0,96],"entities":{"hashtags":[{"text":"csteps","indices":[45,52]},{"text":"AECT2019","indices":[61,70]}],"symbols":[],"user_mentions":[{"screen_name":"LuEMLawrence","name":"LuEttaMae + (Lu) Lawrence","id":859809032739205121,"id_str":"859809032739205121","indices":[17,30]},{"screen_name":"edILLINOIS","name":"COLLEGE + OF EDUCATION","id":50013575,"id_str":"50013575","indices":[72,83]}],"urls":[{"url":"https:\/\/t.co\/AosGSJQ09T","expanded_url":"https:\/\/twitter.com\/LuEMLawrence\/status\/1186685126312247296","display_url":"twitter.com\/LuEMLawrence\/s\u2026","indices":[97,120]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":902231366,"id_str":"902231366","name":"Emma + Mercier","screen_name":"EmmaMMercier","location":"Champaign, IL","description":"Learning + Scientist, Associate Prof at UIUC, thinking about how to use technology to + support collaboration in classrooms.","url":"https:\/\/t.co\/VSJNVi94YP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VSJNVi94YP","expanded_url":"http:\/\/www.colearnlab.org","display_url":"colearnlab.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":568,"friends_count":651,"listed_count":10,"created_at":"Wed + Oct 24 17:17:53 +0000 2012","favourites_count":1329,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":328,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646453850619166720\/n4nbhwoL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646453850619166720\/n4nbhwoL_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186685126312247296,"quoted_status_id_str":"1186685126312247296","quoted_status_permalink":{"url":"https:\/\/t.co\/AosGSJQ09T","expanded":"https:\/\/twitter.com\/LuEMLawrence\/status\/1186685126312247296","display":"twitter.com\/LuEMLawrence\/s\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 16:45:56 +0000 2019","id":1186685126312247296,"id_str":"1186685126312247296","full_text":"Presenting + about the theoretical and practical design of the student CSTEPS tool at #AECT2019 + @EmmaMMercier @JJ1206 #CoLearnLab https:\/\/t.co\/nrZ6rdjMUz","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"AECT2019","indices":[84,93]},{"text":"CoLearnLab","indices":[116,127]}],"symbols":[],"user_mentions":[{"screen_name":"EmmaMMercier","name":"Emma + Mercier","id":902231366,"id_str":"902231366","indices":[94,107]},{"screen_name":"JJ1206","name":"Jiyoon + Jung","id":24136277,"id_str":"24136277","indices":[108,115]}],"urls":[],"media":[{"id":1186685116707246081,"id_str":"1186685116707246081","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfz04mUEAEQnWW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfz04mUEAEQnWW.jpg","url":"https:\/\/t.co\/nrZ6rdjMUz","display_url":"pic.twitter.com\/nrZ6rdjMUz","expanded_url":"https:\/\/twitter.com\/LuEMLawrence\/status\/1186685126312247296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":581,"resize":"fit"},"large":{"w":2048,"h":1750,"resize":"fit"},"medium":{"w":1200,"h":1025,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186685116707246081,"id_str":"1186685116707246081","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfz04mUEAEQnWW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfz04mUEAEQnWW.jpg","url":"https:\/\/t.co\/nrZ6rdjMUz","display_url":"pic.twitter.com\/nrZ6rdjMUz","expanded_url":"https:\/\/twitter.com\/LuEMLawrence\/status\/1186685126312247296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":581,"resize":"fit"},"large":{"w":2048,"h":1750,"resize":"fit"},"medium":{"w":1200,"h":1025,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":859809032739205121,"id_str":"859809032739205121","name":"LuEttaMae + (Lu) Lawrence","screen_name":"LuEMLawrence","location":"Irvine, CA","description":"Assistant + Prof @utahstateITLS | AERA SIG ATL Program Chair | Ph.D. from @edILLINOIS + | she\/her","url":"https:\/\/t.co\/FqSG5sT5so","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FqSG5sT5so","expanded_url":"http:\/\/LuEttaMae.com","display_url":"LuEttaMae.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":608,"friends_count":721,"listed_count":4,"created_at":"Wed + May 03 16:37:02 +0000 2017","favourites_count":8450,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1222,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1295117939771871232\/X4YNyZHK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1295117939771871232\/X4YNyZHK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/859809032739205121\/1498653989","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"8fa6d7a33b83ef26","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8fa6d7a33b83ef26.json","place_type":"city","name":"Paradise","full_name":"Paradise, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.2092535,35.984784],[-115.0610763,35.984784],[-115.0610763,36.137145],[-115.2092535,36.137145]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186685126312247296,"quoted_status_id_str":"1186685126312247296","quoted_status_permalink":{"url":"https:\/\/t.co\/AosGSJQ09T","expanded":"https:\/\/twitter.com\/LuEMLawrence\/status\/1186685126312247296","display":"twitter.com\/LuEMLawrence\/s\u2026"},"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 19:32:37 +0000 2019","id":1187089460950962177,"id_str":"1187089460950962177","full_text":"RT + @EdTech_Books: Excited to present on our open textbook platform at the Poster + Session walkthrough at @ 4pm #aect19 https:\/\/t.co\/5FduWqSg\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[110,117]}],"symbols":[],"user_mentions":[{"screen_name":"EdTech_Books","name":"EdTech + Books","id":1113476916076367872,"id_str":"1113476916076367872","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15253571,"id_str":"15253571","name":"Gerrit + Wissing","screen_name":"yokufunda","location":"Pretoria, South Africa","description":"Evidence + over opinion.","url":"https:\/\/t.co\/tSIKW3TsRG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/tSIKW3TsRG","expanded_url":"https:\/\/www.facebook.com\/groups\/learningpaths\/","display_url":"facebook.com\/groups\/learnin\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1963,"listed_count":25,"created_at":"Fri + Jun 27 10:09:40 +0000 2008","favourites_count":875,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7547,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"030302","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133324742029660160\/RPg_UEF6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133324742029660160\/RPg_UEF6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15253571\/1466943237","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"547B61","profile_sidebar_border_color":"3C5449","profile_sidebar_fill_color":"12291F","profile_text_color":"786A55","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 21:09:41 +0000 2019","id":1186751501214990336,"id_str":"1186751501214990336","full_text":"Excited + to present on our open textbook platform at the Poster Session walkthrough + at @ 4pm #aect19 https:\/\/t.co\/5FduWqSgsE #opentextbooks #oer https:\/\/t.co\/TMjdrWbpCK","truncated":false,"display_text_range":[0,143],"entities":{"hashtags":[{"text":"aect19","indices":[92,99]},{"text":"opentextbooks","indices":[124,138]},{"text":"oer","indices":[139,143]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5FduWqSgsE","expanded_url":"http:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[100,123]}],"media":[{"id":1186751395464015872,"id_str":"1186751395464015872","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","url":"https:\/\/t.co\/TMjdrWbpCK","display_url":"pic.twitter.com\/TMjdrWbpCK","expanded_url":"https:\/\/twitter.com\/EdTech_Books\/status\/1186751501214990336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186751395464015872,"id_str":"1186751395464015872","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","url":"https:\/\/t.co\/TMjdrWbpCK","display_url":"pic.twitter.com\/TMjdrWbpCK","expanded_url":"https:\/\/twitter.com\/EdTech_Books\/status\/1186751501214990336\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHgwG0NU8AA4CR1.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1113476916076367872,"id_str":"1113476916076367872","name":"EdTech + Books","screen_name":"EdTech_Books","location":"","description":"All free + textbooks, all the time. Knowledge should be free, and ed tech should lead + the way! #oer #opentextbooks https:\/\/t.co\/IXVNmS1hst\n@roycekimmons","url":"https:\/\/t.co\/IXVNmSiSk1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IXVNmSiSk1","expanded_url":"https:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/IXVNmS1hst","expanded_url":"https:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[113,136]}]}},"protected":false,"followers_count":88,"friends_count":0,"listed_count":1,"created_at":"Wed + Apr 03 16:22:38 +0000 2019","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1167102969390567424\/zPs5eiTv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1167102969390567424\/zPs5eiTv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1113476916076367872\/1568320929","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 19:34:08 +0000 2019","id":1187089842620043270,"id_str":"1187089842620043270","full_text":"RT + @ISLT_FSU: #FSU #FSUCOE Dr. Reiser inspiring others at #AECT19! https:\/\/t.co\/bYbSSwSRWg","truncated":false,"display_text_range":[0,90],"entities":{"hashtags":[{"text":"FSU","indices":[14,18]},{"text":"FSUCOE","indices":[19,26]},{"text":"AECT19","indices":[58,65]}],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/bYbSSwSRWg","expanded_url":"https:\/\/twitter.com\/MuratTurkEd\/status\/1187039190434734080","display_url":"twitter.com\/MuratTurkEd\/st\u2026","indices":[67,90]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":245099751,"id_str":"245099751","name":"Erik + M. Hines","screen_name":"EHinesPhD","location":"850","description":"Entrepreneur|Associate + Professor at Florida State|School Counseling|Research Agenda: Academic and + Postsecondary Outcomes of Black Males|Retweets\u2260Endorsements","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2261,"friends_count":2202,"listed_count":129,"created_at":"Sun + Jan 30 21:52:33 +0000 2011","favourites_count":30831,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":53113,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1103345825692991489\/VU-f-xad_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1103345825692991489\/VU-f-xad_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/245099751\/1564525837","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 16:37:16 +0000 2019","id":1187045332426772480,"id_str":"1187045332426772480","full_text":"#FSU + #FSUCOE Dr. Reiser inspiring others at #AECT19! https:\/\/t.co\/bYbSSwSRWg","truncated":false,"display_text_range":[0,52],"entities":{"hashtags":[{"text":"FSU","indices":[0,4]},{"text":"FSUCOE","indices":[5,12]},{"text":"AECT19","indices":[44,51]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/bYbSSwSRWg","expanded_url":"https:\/\/twitter.com\/MuratTurkEd\/status\/1187039190434734080","display_url":"twitter.com\/MuratTurkEd\/st\u2026","indices":[53,76]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1187039190434734080,"quoted_status_id_str":"1187039190434734080","quoted_status_permalink":{"url":"https:\/\/t.co\/bYbSSwSRWg","expanded":"https:\/\/twitter.com\/MuratTurkEd\/status\/1187039190434734080","display":"twitter.com\/MuratTurkEd\/st\u2026"},"quoted_status":{"created_at":"Wed + Oct 23 16:12:51 +0000 2019","id":1187039190434734080,"id_str":"1187039190434734080","full_text":"Dr. + Reiser #aect19inspired me! https:\/\/t.co\/bogpkQVll3","truncated":false,"display_text_range":[0,30],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187039186353680385,"id_str":"1187039186353680385","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk12c0UcAE5FI6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk12c0UcAE5FI6.jpg","url":"https:\/\/t.co\/bogpkQVll3","display_url":"pic.twitter.com\/bogpkQVll3","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1187039190434734080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187039186353680385,"id_str":"1187039186353680385","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk12c0UcAE5FI6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk12c0UcAE5FI6.jpg","url":"https:\/\/t.co\/bogpkQVll3","display_url":"pic.twitter.com\/bogpkQVll3","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1187039190434734080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186318434964930560,"id_str":"1186318434964930560","name":"Murat + Turk, Ph.D.","screen_name":"MuratTurkEd","location":"Cincinnati, OH","description":"Online + Learning | motivation | engagement | online presences | loving husband of + Sinem Toraman Turk \u2764\ufe0f| loving father of @bgmtrk1\u2764\ufe0f | @FulbrightTurkey","url":"https:\/\/t.co\/DmCPHu9r7d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DmCPHu9r7d","expanded_url":"http:\/\/www.ardat.net","display_url":"ardat.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":853,"listed_count":5,"created_at":"Mon + Oct 21 16:29:13 +0000 2019","favourites_count":4396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2544,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186318434964930560\/1653078596","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"de"},"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1187039190434734080,"quoted_status_id_str":"1187039190434734080","quoted_status_permalink":{"url":"https:\/\/t.co\/bYbSSwSRWg","expanded":"https:\/\/twitter.com\/MuratTurkEd\/status\/1187039190434734080","display":"twitter.com\/MuratTurkEd\/st\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:39:10 +0000 2019","id":1187106211532984320,"id_str":"1187106211532984320","full_text":"RT + @christieliuidtr: AECT McJulien scholar awardee lecture, Manuel Bustamante, + Tamara Gibson, Western New Mexico University, Respecting and\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 20:32:05 +0000 2019","id":1187104425866715137,"id_str":"1187104425866715137","full_text":"AECT + McJulien scholar awardee lecture, Manuel Bustamante, Tamara Gibson, Western + New Mexico University, Respecting and Representing LGBTQ in Online Curriculum + and Coursework @aectclt @AECT @srogidd #aect19 #aect19inspired https:\/\/t.co\/VofVrbS6cm","truncated":false,"display_text_range":[0,221],"entities":{"hashtags":[{"text":"aect19","indices":[198,205]},{"text":"aect19inspired","indices":[206,221]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[174,182]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[183,188]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[189,197]}],"urls":[],"media":[{"id":1187104418820288512,"id_str":"1187104418820288512","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlxLesUcAAltvs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlxLesUcAAltvs.jpg","url":"https:\/\/t.co\/VofVrbS6cm","display_url":"pic.twitter.com\/VofVrbS6cm","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187104425866715137\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187104418820288512,"id_str":"1187104418820288512","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlxLesUcAAltvs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlxLesUcAAltvs.jpg","url":"https:\/\/t.co\/VofVrbS6cm","display_url":"pic.twitter.com\/VofVrbS6cm","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187104425866715137\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187104418820325377,"id_str":"1187104418820325377","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlxLesVAAEBytc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlxLesVAAEBytc.jpg","url":"https:\/\/t.co\/VofVrbS6cm","display_url":"pic.twitter.com\/VofVrbS6cm","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187104425866715137\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187104418853900288,"id_str":"1187104418853900288","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlxLe0VUAAAzBA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlxLe0VUAAAzBA.jpg","url":"https:\/\/t.co\/VofVrbS6cm","display_url":"pic.twitter.com\/VofVrbS6cm","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187104425866715137\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187104419042611200,"id_str":"1187104419042611200","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlxLfhU0AAjnHB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlxLfhU0AAjnHB.jpg","url":"https:\/\/t.co\/VofVrbS6cm","display_url":"pic.twitter.com\/VofVrbS6cm","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187104425866715137\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1856,"resize":"fit"},"medium":{"w":1200,"h":1088,"resize":"fit"},"small":{"w":680,"h":616,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:56:38 +0000 2019","id":1187080404932521984,"id_str":"1187080404932521984","full_text":"Individualized + personalized learning and small group learning \u2066@bretsw\u2069 \u2066@spgreenhalgh\u2069 + great work! #aect19inspired #aect19 https:\/\/t.co\/EUZAorhfmP","truncated":false,"display_text_range":[0,123],"entities":{"hashtags":[{"text":"aect19inspired","indices":[100,115]},{"text":"aect19","indices":[116,123]}],"symbols":[],"user_mentions":[{"screen_name":"bretsw","name":"Dr. + Bret Staudt Willet","id":53167706,"id_str":"53167706","indices":[63,70]},{"screen_name":"spgreenhalgh","name":"Spencer + Greenhalgh, PhD","id":129211252,"id_str":"129211252","indices":[73,86]}],"urls":[],"media":[{"id":1187080397844180992,"id_str":"1187080397844180992","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlbVRlU8AAZKWs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlbVRlU8AAZKWs.jpg","url":"https:\/\/t.co\/EUZAorhfmP","display_url":"pic.twitter.com\/EUZAorhfmP","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187080404932521984\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187080397844180992,"id_str":"1187080397844180992","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlbVRlU8AAZKWs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlbVRlU8AAZKWs.jpg","url":"https:\/\/t.co\/EUZAorhfmP","display_url":"pic.twitter.com\/EUZAorhfmP","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187080404932521984\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 19:30:20 +0000 2019","id":1187088889204203520,"id_str":"1187088889204203520","full_text":"RT + @richardewest: Looks like a great book Brian! Looking forward to reading it + on @EdTech_Books #aect19 https:\/\/t.co\/PaoKiVXDfr","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"aect19","indices":[96,103]}],"symbols":[],"user_mentions":[{"screen_name":"richardewest","name":"Rick + West","id":17639668,"id_str":"17639668","indices":[3,16]},{"screen_name":"EdTech_Books","name":"EdTech + Books","id":1113476916076367872,"id_str":"1113476916076367872","indices":[82,95]}],"urls":[],"media":[{"id":1187080185264230400,"id_str":"1187080185264230400","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlbI5qUUAAz1XI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlbI5qUUAAz1XI.jpg","url":"https:\/\/t.co\/PaoKiVXDfr","display_url":"pic.twitter.com\/PaoKiVXDfr","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187080195724861440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1187080195724861440,"source_status_id_str":"1187080195724861440","source_user_id":17639668,"source_user_id_str":"17639668"}]},"extended_entities":{"media":[{"id":1187080185264230400,"id_str":"1187080185264230400","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlbI5qUUAAz1XI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlbI5qUUAAz1XI.jpg","url":"https:\/\/t.co\/PaoKiVXDfr","display_url":"pic.twitter.com\/PaoKiVXDfr","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187080195724861440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1187080195724861440,"source_status_id_str":"1187080195724861440","source_user_id":17639668,"source_user_id_str":"17639668","ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":104967963,"id_str":"104967963","name":"Royce + Kimmons","screen_name":"roycekimmons","location":"Provo, UT","description":"Associate + professor, BYU-IPT: openness, OER, tech in education, social media. https:\/\/t.co\/iktkhjAzCw + https:\/\/t.co\/vhHYSEYZSN https:\/\/t.co\/9E4HWYRF9R","url":"https:\/\/t.co\/KsbltQYZa0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KsbltQYZa0","expanded_url":"http:\/\/roycekimmons.com","display_url":"roycekimmons.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/iktkhjAzCw","expanded_url":"http:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[78,101]},{"url":"https:\/\/t.co\/vhHYSEYZSN","expanded_url":"http:\/\/equitypress.org","display_url":"equitypress.org","indices":[102,125]},{"url":"https:\/\/t.co\/9E4HWYRF9R","expanded_url":"http:\/\/edtechnica.org","display_url":"edtechnica.org","indices":[126,149]}]}},"protected":false,"followers_count":1430,"friends_count":2250,"listed_count":57,"created_at":"Thu + Jan 14 23:25:41 +0000 2010","favourites_count":930,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1841,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104967963\/1585782658","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"354770","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EDF0FF","profile_text_color":"1A1A1A","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 18:55:48 +0000 2019","id":1187080195724861440,"id_str":"1187080195724861440","full_text":"Looks + like a great book Brian! Looking forward to reading it on @EdTech_Books #aect19 + https:\/\/t.co\/PaoKiVXDfr","truncated":false,"display_text_range":[0,85],"entities":{"hashtags":[{"text":"aect19","indices":[78,85]}],"symbols":[],"user_mentions":[{"screen_name":"EdTech_Books","name":"EdTech + Books","id":1113476916076367872,"id_str":"1113476916076367872","indices":[64,77]}],"urls":[],"media":[{"id":1187080185264230400,"id_str":"1187080185264230400","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlbI5qUUAAz1XI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlbI5qUUAAz1XI.jpg","url":"https:\/\/t.co\/PaoKiVXDfr","display_url":"pic.twitter.com\/PaoKiVXDfr","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187080195724861440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187080185264230400,"id_str":"1187080185264230400","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlbI5qUUAAz1XI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlbI5qUUAAz1XI.jpg","url":"https:\/\/t.co\/PaoKiVXDfr","display_url":"pic.twitter.com\/PaoKiVXDfr","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1187080195724861440\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17639668,"id_str":"17639668","name":"Rick + West","screen_name":"richardewest","location":"Provo, ut","description":"Instructional + Designer, Researcher, & Evaluator at Brigham Young University","url":"http:\/\/t.co\/Nc39wWEhGM","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Nc39wWEhGM","expanded_url":"http:\/\/richardewest.com","display_url":"richardewest.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":223,"listed_count":39,"created_at":"Wed + Nov 26 02:26:26 +0000 2008","favourites_count":799,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3339,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17639668\/1446650027","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:37:21 +0000 2019","id":1187075552252846080,"id_str":"1187075552252846080","full_text":"Thanks + #aect19inspired #aect19 for giving us the opportunity to \u201cmeet your + textbooks\u201d. https:\/\/t.co\/feCkcjqfE4","truncated":false,"display_text_range":[0,87],"entities":{"hashtags":[{"text":"aect19inspired","indices":[7,22]},{"text":"aect19","indices":[24,31]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187075545923633152,"id_str":"1187075545923633152","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlW62xUwAA6X_p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlW62xUwAA6X_p.jpg","url":"https:\/\/t.co\/feCkcjqfE4","display_url":"pic.twitter.com\/feCkcjqfE4","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187075552252846080\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":956,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1632,"resize":"fit"},"small":{"w":680,"h":542,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187075545923633152,"id_str":"1187075545923633152","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlW62xUwAA6X_p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlW62xUwAA6X_p.jpg","url":"https:\/\/t.co\/feCkcjqfE4","display_url":"pic.twitter.com\/feCkcjqfE4","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187075552252846080\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":956,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1632,"resize":"fit"},"small":{"w":680,"h":542,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988637594,"id_str":"2988637594","name":"Rui + \"Tammy\" Huang","screen_name":"ruitammyhuang","location":"FL","description":"PhD, + fellow in Ed Tech @UF_COE, game-based learning and immersive technology researcher, + designer & developer. Learning experience design researcher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":185,"listed_count":6,"created_at":"Wed + Jan 21 02:08:50 +0000 2015","favourites_count":399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988637594\/1621697544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 19:57:11 +0000 2019","id":1187095643485028352,"id_str":"1187095643485028352","full_text":"RT + @RoutledgeEd: Check out Routledge\u2019s selection of books on #instructionaldesign, + #onlinelearning, and more at #AECT2019! https:\/\/t.co\/19M\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[61,81]},{"text":"onlinelearning","indices":[83,98]},{"text":"AECT2019","indices":[112,121]}],"symbols":[],"user_mentions":[{"screen_name":"RoutledgeEd","name":"Routledge + Education Books","id":27606068,"id_str":"27606068","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1104538308,"id_str":"1104538308","name":"Laurence + Bassingha \ud83c\udf37\ud83d\udc36\ud83d\udcda\ud83d\udeb4\u200d\u2640\ufe0f","screen_name":"bass_gm","location":"Birmingham, + England","description":"Educator, French tutor for FE & HE President of the + French Speaking Society at the UOH own views","url":"https:\/\/t.co\/CyEL7lsoy9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CyEL7lsoy9","expanded_url":"http:\/\/www.Leedscitycollege.ac.uk","display_url":"Leedscitycollege.ac.uk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":97,"friends_count":237,"listed_count":1,"created_at":"Sat + Jan 19 20:07:28 +0000 2013","favourites_count":2783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2236,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1068042504946270208\/RhIHlhsh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1068042504946270208\/RhIHlhsh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1104538308\/1574303375","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 19:02:48 +0000 2019","id":1187081957944909824,"id_str":"1187081957944909824","full_text":"Check + out Routledge\u2019s selection of books on #instructionaldesign, #onlinelearning, + and more at #AECT2019! https:\/\/t.co\/19MR7RFhRY","truncated":false,"display_text_range":[0,105],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[44,64]},{"text":"onlinelearning","indices":[66,81]},{"text":"AECT2019","indices":[95,104]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187081950298693632,"id_str":"1187081950298693632","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlcvo7U4AAWbAN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlcvo7U4AAWbAN.jpg","url":"https:\/\/t.co\/19MR7RFhRY","display_url":"pic.twitter.com\/19MR7RFhRY","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187081957944909824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187081950298693632,"id_str":"1187081950298693632","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlcvo7U4AAWbAN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlcvo7U4AAWbAN.jpg","url":"https:\/\/t.co\/19MR7RFhRY","display_url":"pic.twitter.com\/19MR7RFhRY","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187081957944909824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187081950298722305,"id_str":"1187081950298722305","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlcvo7VUAE60Wh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlcvo7VUAE60Wh.jpg","url":"https:\/\/t.co\/19MR7RFhRY","display_url":"pic.twitter.com\/19MR7RFhRY","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187081957944909824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27606068,"id_str":"27606068","name":"Routledge + Education Books","screen_name":"RoutledgeEd","location":"Global","description":"Supporting + educators, teachers, scholars and students with informative and practical + books based on leading research and classroom practice.","url":"http:\/\/t.co\/j4LZK9ypti","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/j4LZK9ypti","expanded_url":"http:\/\/www.routledge.com\/education","display_url":"routledge.com\/education","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":13833,"friends_count":3278,"listed_count":230,"created_at":"Mon + Mar 30 08:33:32 +0000 2009","favourites_count":2658,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10107,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"6A9ADA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27606068\/1629726175","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"6A9ADA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 19:40:43 +0000 2019","id":1187091501660041216,"id_str":"1187091501660041216","full_text":". + @utexascoe Doctoral students Yi Shi, Peixia Shao, Ying Cai, & Daeun Hong + in action presenting research on preservice #edtech syllabi #aect19inspired + #texasCI https:\/\/t.co\/W1zNi3m2Rm","truncated":false,"display_text_range":[0,164],"entities":{"hashtags":[{"text":"edtech","indices":[123,130]},{"text":"aect19inspired","indices":[140,155]},{"text":"texasCI","indices":[156,164]}],"symbols":[],"user_mentions":[{"screen_name":"utexascoe","name":"College + of Education","id":19671331,"id_str":"19671331","indices":[2,12]}],"urls":[],"media":[{"id":1187091484073283584,"id_str":"1187091484073283584","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHllalAUUAAzuvO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHllalAUUAAzuvO.jpg","url":"https:\/\/t.co\/W1zNi3m2Rm","display_url":"pic.twitter.com\/W1zNi3m2Rm","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187091501660041216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187091484073283584,"id_str":"1187091484073283584","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHllalAUUAAzuvO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHllalAUUAAzuvO.jpg","url":"https:\/\/t.co\/W1zNi3m2Rm","display_url":"pic.twitter.com\/W1zNi3m2Rm","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187091501660041216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187091484090089472,"id_str":"1187091484090089472","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHllalEUwAAK3Qd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHllalEUwAAK3Qd.jpg","url":"https:\/\/t.co\/W1zNi3m2Rm","display_url":"pic.twitter.com\/W1zNi3m2Rm","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187091501660041216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1187091484056547329,"id_str":"1187091484056547329","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHllak8U8AElMEH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHllak8U8AElMEH.jpg","url":"https:\/\/t.co\/W1zNi3m2Rm","display_url":"pic.twitter.com\/W1zNi3m2Rm","expanded_url":"https:\/\/twitter.com\/techedges\/status\/1187091501660041216\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19613812,"id_str":"19613812","name":"Dr. + Joan E. Hughes","screen_name":"techedges","location":"Austin, TX","description":"Prof, + Learning Technologies, UT Austin. Researcher, teacher, writer: tech integration + in schools, teacher educ & PD. Author:https:\/\/t.co\/p12V06CqJU","url":"https:\/\/t.co\/0V3yBaAOKy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0V3yBaAOKy","expanded_url":"http:\/\/techedges.org","display_url":"techedges.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/p12V06CqJU","expanded_url":"http:\/\/bit.ly\/IntegratingEdTech","display_url":"bit.ly\/IntegratingEdT\u2026","indices":[124,147]}]}},"protected":false,"followers_count":1646,"friends_count":2355,"listed_count":158,"created_at":"Tue + Jan 27 20:26:10 +0000 2009","favourites_count":722,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2871,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEBB2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431552022538510336\/qGc8ZRJj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431552022538510336\/qGc8ZRJj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19613812\/1408660446","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 20:32:05 +0000 2019","id":1187104425866715137,"id_str":"1187104425866715137","full_text":"AECT + McJulien scholar awardee lecture, Manuel Bustamante, Tamara Gibson, Western + New Mexico University, Respecting and Representing LGBTQ in Online Curriculum + and Coursework @aectclt @AECT @srogidd #aect19 #aect19inspired https:\/\/t.co\/VofVrbS6cm","truncated":false,"display_text_range":[0,221],"entities":{"hashtags":[{"text":"aect19","indices":[198,205]},{"text":"aect19inspired","indices":[206,221]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[174,182]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[183,188]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[189,197]}],"urls":[],"media":[{"id":1187104418820288512,"id_str":"1187104418820288512","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlxLesUcAAltvs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlxLesUcAAltvs.jpg","url":"https:\/\/t.co\/VofVrbS6cm","display_url":"pic.twitter.com\/VofVrbS6cm","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187104425866715137\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187104418820288512,"id_str":"1187104418820288512","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlxLesUcAAltvs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlxLesUcAAltvs.jpg","url":"https:\/\/t.co\/VofVrbS6cm","display_url":"pic.twitter.com\/VofVrbS6cm","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187104425866715137\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187104418820325377,"id_str":"1187104418820325377","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlxLesVAAEBytc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlxLesVAAEBytc.jpg","url":"https:\/\/t.co\/VofVrbS6cm","display_url":"pic.twitter.com\/VofVrbS6cm","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187104425866715137\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187104418853900288,"id_str":"1187104418853900288","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlxLe0VUAAAzBA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlxLe0VUAAAzBA.jpg","url":"https:\/\/t.co\/VofVrbS6cm","display_url":"pic.twitter.com\/VofVrbS6cm","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187104425866715137\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187104419042611200,"id_str":"1187104419042611200","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlxLfhU0AAjnHB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlxLfhU0AAjnHB.jpg","url":"https:\/\/t.co\/VofVrbS6cm","display_url":"pic.twitter.com\/VofVrbS6cm","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1187104425866715137\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1856,"resize":"fit"},"medium":{"w":1200,"h":1088,"resize":"fit"},"small":{"w":680,"h":616,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:24:21 +0000 2019","id":1187117579598360577,"id_str":"1187117579598360577","full_text":"I + shared my truth about @ISLT_FSU on the #aect19 inspiration board. Thanks all + for keeping me on my toes and making my job so interesting and fun. https:\/\/t.co\/nIYVKzcoER","truncated":false,"display_text_range":[0,146],"entities":{"hashtags":[{"text":"aect19","indices":[41,48]}],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[24,33]}],"urls":[],"media":[{"id":1187117572308652032,"id_str":"1187117572308652032","indices":[147,170],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl9JHQU0AA1UDI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl9JHQU0AA1UDI.jpg","url":"https:\/\/t.co\/nIYVKzcoER","display_url":"pic.twitter.com\/nIYVKzcoER","expanded_url":"https:\/\/twitter.com\/vdennen\/status\/1187117579598360577\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":645,"h":680,"resize":"fit"},"large":{"w":1944,"h":2048,"resize":"fit"},"medium":{"w":1139,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187117572308652032,"id_str":"1187117572308652032","indices":[147,170],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl9JHQU0AA1UDI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl9JHQU0AA1UDI.jpg","url":"https:\/\/t.co\/nIYVKzcoER","display_url":"pic.twitter.com\/nIYVKzcoER","expanded_url":"https:\/\/twitter.com\/vdennen\/status\/1187117579598360577\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":645,"h":680,"resize":"fit"},"large":{"w":1944,"h":2048,"resize":"fit"},"medium":{"w":1139,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":142359679,"id_str":"142359679","name":"Vanessa + Dennen","screen_name":"vdennen","location":"Tallahassee, FL","description":"Professor + of Instructional Systems & Learning Technologies at FSU (views are my own), + avid traveler, amateur gardener, she\/her","url":"https:\/\/t.co\/2brlz0Rnzr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2brlz0Rnzr","expanded_url":"http:\/\/vanessadennen.com","display_url":"vanessadennen.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1151,"friends_count":759,"listed_count":40,"created_at":"Mon + May 10 17:39:35 +0000 2010","favourites_count":1097,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2102,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1137140666771918848\/ghs_iYhS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1137140666771918848\/ghs_iYhS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/142359679\/1584134048","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 21:22:24 +0000 2019","id":1187117090739609600,"id_str":"1187117090739609600","full_text":"#aect19 + inspire session. Very active and interactive! https:\/\/t.co\/j39CXzZfKT","truncated":false,"display_text_range":[0,53],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187117084787896320,"id_str":"1187117084787896320","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl8svGUcAAm89o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl8svGUcAAm89o.jpg","url":"https:\/\/t.co\/j39CXzZfKT","display_url":"pic.twitter.com\/j39CXzZfKT","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1187117090739609600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187117084787896320,"id_str":"1187117084787896320","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/EHl8svGUcAAm89o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHl8svGUcAAm89o.jpg","url":"https:\/\/t.co\/j39CXzZfKT","display_url":"pic.twitter.com\/j39CXzZfKT","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1187117090739609600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1187074535767457792%2C1187074439571222530%2C1187074429810929664%2C1187074318406041600%2C1187074297132544002%2C1187074129926557696%2C1187074104014192640%2C1187074072896655360%2C1187074015237525504%2C1187073310145646592%2C1187073112187252739%2C1187073096567721984%2C1187073062849712135%2C1187071341742022656%2C1187071266080997376%2C1187071127539146753%2C1187071069061963776%2C1187070778996482048%2C1187070659987263488%2C1187070371549319168%2C1187069750955765760%2C1187069608525623296%2C1187068679508221952%2C1187068420124053506%2C1187068404655505410%2C1187068368995536896%2C1187067453869674496%2C1187067342292799488%2C1187067234994155522%2C1187066283763720192%2C1187066258140721152%2C1187066031983878145%2C1187065970759618560%2C1187065947565088768%2C1187065915394756608%2C1187065884080144384%2C1187065852216016896%2C1187065825120800769%2C1187065752639037442%2C1187065609093206017%2C1187065601228820480%2C1187065581037654016%2C1187065576906035200%2C1187065545608187906%2C1187065493703643137%2C1187065460941934592%2C1187065303747842048%2C1187065277499899905%2C1187065163238608896%2C1187065026563072001%2C1187065026563072001%2C1187064627705704448%2C1187064174083334144%2C1187063591188385793%2C1187063536326832128%2C1187062378808172546%2C1187062149811724290%2C1187062078407753728%2C1187061456203743234%2C1187061406027280384%2C1187061234350223361%2C1187061004871634944%2C1187060866434260992%2C1187060590507769856%2C1187059990701305856%2C1187059949081378818%2C1187059323475619845%2C1187059231330947073%2C1187059190965006337%2C1187058813217714178%2C1187057576732745728%2C1187057366270799872%2C1187057159214751744%2C1187057011344543744%2C1187056848454574081%2C1187056507323437056%2C1187056461429395456%2C1187056121644769286%2C1187055001153101825%2C1187054714950545410%2C1187054144260997121%2C1187053820947226624%2C1187053731612745728%2C1187052821197119488%2C1187052786980012032%2C1187052750263279616%2C1187052419324055552%2C1187052361346240513%2C1187052316597178368%2C1187052312495316992%2C1187052050611392512%2C1187051649895788544%2C1187051635174002694%2C1187049841437728768%2C1187049841437728768%2C1187049295293366273%2C1187049264532209664%2C1187049146831687680%2C1187048874935865344%2C1187048725299884032&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:48 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:48 GMT + x-transaction: 958102928c977289 + content-length: '48649' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '282' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '333' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Oct 23 17:05:00 +0000 2019","id":1187052312495316992,"id_str":"1187052312495316992","full_text":"Chat + with me today about @AECTTechTrends at the Meet the Editors Roundtables\nWed, + Oct 23, 4:00 to 4:50pm, Convention Center, Pavilion 4 #aect19 #aect19inspired","truncated":false,"display_text_range":[0,159],"entities":{"hashtags":[{"text":"aect19","indices":[136,143]},{"text":"aect19inspired","indices":[144,159]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[25,40]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:59:31 +0000 2019","id":1187066031983878145,"id_str":"1187066031983878145","full_text":"RT + @yinbk: Fascinating study. Listening to Dr Park''s presentation. Exploring + the Relationships between Motivational Regulation and Learning\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"yinbk","name":"\ud83c\uddfa\ud83c\uddf8 + Yin Kreher, PhD","id":459903,"id_str":"459903","indices":[3,9]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 16:41:58 +0000 2019","id":1187046515820257280,"id_str":"1187046515820257280","full_text":"Fascinating + study. Listening to Dr Park''s presentation. Exploring the Relationships between + Motivational Regulation and Learning Engagement in Online Courses https:\/\/t.co\/12qIMcaT3w + #aect19inspired #aect19","truncated":false,"display_text_range":[0,205],"entities":{"hashtags":[{"text":"aect19inspired","indices":[182,197]},{"text":"aect19","indices":[198,205]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/12qIMcaT3w","expanded_url":"http:\/\/l.core-apps.com\/aect19\/event?event=b038d05c063d8ab60ed1330fb70e9109","display_url":"l.core-apps.com\/aect19\/event?e\u2026","indices":[158,181]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":459903,"id_str":"459903","name":"\ud83c\uddfa\ud83c\uddf8 + Yin Kreher, PhD","screen_name":"yinbk","location":"","description":"Instructional + Designer | Lead LXD @FourthRev | Boundary-Crosser. Looks for the exquisite + at intersections. All tweets are mine. \ud83d\udc9c #XR #DesignLeadership + \ud83e\udef0","url":"https:\/\/t.co\/nJBVP9cpz7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nJBVP9cpz7","expanded_url":"http:\/\/yinwahkreher.com","display_url":"yinwahkreher.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1043,"friends_count":1124,"listed_count":79,"created_at":"Tue + Jan 02 17:04:05 +0000 2007","favourites_count":7349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"363738","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459903\/1611022238","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"E81C4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:15:41 +0000 2019","id":1187055001153101825,"id_str":"1187055001153101825","full_text":"#aect19 + Tip #05 - To avoid social interaction at AECT, Stick a QR code on your shirt + with a link to your website. Then instead of greeting you, people can just + scan that code and find out all about you.","truncated":false,"display_text_range":[0,202],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:24:15 +0000 2019","id":1187057159214751744,"id_str":"1187057159214751744","full_text":"Open + Textbook Library. Resource shared at open education session @AECT. #aect19inspired + #aect19 https:\/\/t.co\/xWZBLbxTKR","truncated":false,"display_text_range":[0,120],"entities":{"hashtags":[{"text":"aect19inspired","indices":[72,87]},{"text":"aect19","indices":[88,95]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[65,70]}],"urls":[{"url":"https:\/\/t.co\/xWZBLbxTKR","expanded_url":"https:\/\/open.umn.edu\/opentextbooks\/","display_url":"open.umn.edu\/opentextbooks\/","indices":[97,120]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:20:37 +0000 2019","id":1187071341742022656,"id_str":"1187071341742022656","full_text":"RT + @tammyhuangrui: Thanks @hampthephd @AlbertRitzhaupt for a successful gamification + meta-analysis presentation at #aect19 #aect19inspired\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[116,123]},{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"hampthephd","name":"John + Hampton, PhD","id":936686250,"id_str":"936686250","indices":[26,37]},{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[39,55]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 18:08:48 +0000 2019","id":1187068368995536896,"id_str":"1187068368995536896","full_text":"Thanks + @hampthephd @AlbertRitzhaupt for a successful gamification meta-analysis + presentation at #aect19 #aect19inspired. It\u2019s a sign of compliment when + people ask you where the paper will be published. https:\/\/t.co\/5gGeOKHpBo","truncated":false,"display_text_range":[0,202],"entities":{"hashtags":[{"text":"aect19","indices":[97,104]},{"text":"aect19inspired","indices":[105,120]}],"symbols":[],"user_mentions":[{"screen_name":"hampthephd","name":"John + Hampton, PhD","id":936686250,"id_str":"936686250","indices":[7,18]},{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[20,36]}],"urls":[],"media":[{"id":1187068359566716929,"id_str":"1187068359566716929","indices":[203,226],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQYjgUcAEQPci.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQYjgUcAEQPci.jpg","url":"https:\/\/t.co\/5gGeOKHpBo","display_url":"pic.twitter.com\/5gGeOKHpBo","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187068368995536896\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187068359566716929,"id_str":"1187068359566716929","indices":[203,226],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQYjgUcAEQPci.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQYjgUcAEQPci.jpg","url":"https:\/\/t.co\/5gGeOKHpBo","display_url":"pic.twitter.com\/5gGeOKHpBo","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187068368995536896\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187068359570931713,"id_str":"1187068359570931713","indices":[203,226],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQYjhUwAEKU59.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQYjhUwAEKU59.jpg","url":"https:\/\/t.co\/5gGeOKHpBo","display_url":"pic.twitter.com\/5gGeOKHpBo","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187068368995536896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187068359566753793,"id_str":"1187068359566753793","indices":[203,226],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQYjgVAAEZYW1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQYjgVAAEZYW1.jpg","url":"https:\/\/t.co\/5gGeOKHpBo","display_url":"pic.twitter.com\/5gGeOKHpBo","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187068368995536896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988637594,"id_str":"2988637594","name":"Rui + \"Tammy\" Huang","screen_name":"ruitammyhuang","location":"FL","description":"PhD, + fellow in Ed Tech @UF_COE, game-based learning and immersive technology researcher, + designer & developer. Learning experience design researcher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":185,"listed_count":6,"created_at":"Wed + Jan 21 02:08:50 +0000 2015","favourites_count":399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988637594\/1621697544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:51:20 +0000 2019","id":1187048874935865344,"id_str":"1187048874935865344","full_text":"RT + @caranorth11: If you are interested in checking out the tool we used to evaluate + open education resources for accessibility, you can fin\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2467367755,"id_str":"2467367755","name":"Origin + Learning (A Division of ELB Learning)","screen_name":"Origin_Learning","location":"USA + | INDIA","description":"Origin Learning is an award-winning eLearning company + that designs and deploys result-driven digital learning solutions for leading + enterprises globally.","url":"https:\/\/t.co\/00vidy8VZs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/00vidy8VZs","expanded_url":"http:\/\/originlearning.com","display_url":"originlearning.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2216,"friends_count":4904,"listed_count":184,"created_at":"Mon + Apr 28 07:23:50 +0000 2014","favourites_count":780,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9012,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1065905690806341637\/saP0T2s__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1065905690806341637\/saP0T2s__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2467367755\/1659088695","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:19:25 +0000 2019","id":1186738852947382272,"id_str":"1186738852947382272","full_text":"If + you are interested in checking out the tool we used to evaluate open education + resources for accessibility, you can find it here: https:\/\/t.co\/cMxcEHJf4S + @roycekimmons #aect19 https:\/\/t.co\/RqWAn9hL88","truncated":false,"display_text_range":[0,178],"entities":{"hashtags":[{"text":"aect19","indices":[171,178]}],"symbols":[],"user_mentions":[{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[157,170]}],"urls":[{"url":"https:\/\/t.co\/cMxcEHJf4S","expanded_url":"https:\/\/webaim.org\/","display_url":"webaim.org","indices":[133,156]}],"media":[{"id":1186738846592983040,"id_str":"1186738846592983040","indices":[179,202],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgksYBU4AAFIYf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgksYBU4AAFIYf.jpg","url":"https:\/\/t.co\/RqWAn9hL88","display_url":"pic.twitter.com\/RqWAn9hL88","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186738852947382272\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186738846592983040,"id_str":"1186738846592983040","indices":[179,202],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgksYBU4AAFIYf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgksYBU4AAFIYf.jpg","url":"https:\/\/t.co\/RqWAn9hL88","display_url":"pic.twitter.com\/RqWAn9hL88","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186738852947382272\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:39:32 +0000 2019","id":1187061004871634944,"id_str":"1187061004871634944","full_text":"RT + @johnhiltoniii: If you''re at #AECT19 pop on by the \"Introduction to Open + Education\" workshop I''m leading with @opencontent. Today, 9 AM\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"AECT19","indices":[32,39]}],"symbols":[],"user_mentions":[{"screen_name":"johnhiltoniii","name":"John + Hilton III","id":45002394,"id_str":"45002394","indices":[3,17]},{"screen_name":"opencontent","name":"David + Wiley","id":4514361,"id_str":"4514361","indices":[113,125]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2992504316,"id_str":"2992504316","name":"Dr. + Virginia Clinton-Lisell \ud83d\udc89\ud83d\udc89\ud83d\udc89","screen_name":"drclintonlisell","location":"Grand + Forks, ND","description":"Associate Professor @undeducation #myund, #OER advocate, + wife, #AcademicMama, and stepmom. she\/her\/hers. Opinions are mine. #digitalreading + #metaanalyses #quant","url":"https:\/\/t.co\/1s31jaJY1q","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1s31jaJY1q","expanded_url":"https:\/\/und.edu\/directory\/virginia.clinton","display_url":"und.edu\/directory\/virg\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1397,"friends_count":1852,"listed_count":0,"created_at":"Thu + Jan 22 18:40:03 +0000 2015","favourites_count":32866,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4957,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/756208110557999104\/shty1Awz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/756208110557999104\/shty1Awz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2992504316\/1437410855","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 16:07:31 +0000 2019","id":1187037846227451904,"id_str":"1187037846227451904","full_text":"If + you''re at #AECT19 pop on by the \"Introduction to Open Education\" workshop + I''m leading with @opencontent. Today, 9 AM - 12 PM in room D, right by the + registration table. Would love to see you.","truncated":false,"display_text_range":[0,194],"entities":{"hashtags":[{"text":"AECT19","indices":[13,20]}],"symbols":[],"user_mentions":[{"screen_name":"opencontent","name":"David + Wiley","id":4514361,"id_str":"4514361","indices":[94,106]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45002394,"id_str":"45002394","name":"John + Hilton III","screen_name":"johnhiltoniii","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":776,"friends_count":179,"listed_count":26,"created_at":"Fri + Jun 05 21:32:35 +0000 2009","favourites_count":567,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":561,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575680770137722881\/WkkQhBdO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575680770137722881\/WkkQhBdO_normal.jpeg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":21,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:21:40 +0000 2019","id":1187056507323437056,"id_str":"1187056507323437056","full_text":"Open + education session @aect. Great session. Ballroom D. #aect19 #aect19inspired + https:\/\/t.co\/kw1z5PRULY","truncated":false,"display_text_range":[0,80],"entities":{"hashtags":[{"text":"aect19","indices":[57,64]},{"text":"aect19inspired","indices":[65,80]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[23,28]}],"urls":[],"media":[{"id":1187056499203248128,"id_str":"1187056499203248128","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlFmMNUEAAm5N4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlFmMNUEAAm5N4.jpg","url":"https:\/\/t.co\/kw1z5PRULY","display_url":"pic.twitter.com\/kw1z5PRULY","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187056507323437056\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187056499203248128,"id_str":"1187056499203248128","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlFmMNUEAAm5N4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlFmMNUEAAm5N4.jpg","url":"https:\/\/t.co\/kw1z5PRULY","display_url":"pic.twitter.com\/kw1z5PRULY","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187056507323437056\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:41:08 +0000 2019","id":1187061406027280384,"id_str":"1187061406027280384","full_text":"Interested + in #openeducation research? See this link. Part of open education session + this morning. \u2066@AECT\u2069 #aect19 #aect19inspired #sedu731 https:\/\/t.co\/E6mYXqsfqz","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"openeducation","indices":[14,28]},{"text":"aect19","indices":[107,114]},{"text":"aect19inspired","indices":[115,130]},{"text":"sedu731","indices":[131,139]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[100,105]}],"urls":[],"media":[{"id":1187061397772832768,"id_str":"1187061397772832768","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlKDUzUEAALEww.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlKDUzUEAALEww.jpg","url":"https:\/\/t.co\/E6mYXqsfqz","display_url":"pic.twitter.com\/E6mYXqsfqz","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187061406027280384\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187061397772832768,"id_str":"1187061397772832768","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlKDUzUEAALEww.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlKDUzUEAALEww.jpg","url":"https:\/\/t.co\/E6mYXqsfqz","display_url":"pic.twitter.com\/E6mYXqsfqz","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187061406027280384\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:05:25 +0000 2019","id":1187052419324055552,"id_str":"1187052419324055552","full_text":"Third + day #aect19inspired #AECTech2019 #aect19inspired Using a Visual Design Plan + Worksheet https:\/\/t.co\/q66FPHzSTm","truncated":false,"display_text_range":[0,91],"entities":{"hashtags":[{"text":"aect19inspired","indices":[10,25]},{"text":"AECTech2019","indices":[26,38]},{"text":"aect19inspired","indices":[39,54]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187052405428350976,"id_str":"1187052405428350976","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlB35tUcAAZzWc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlB35tUcAAZzWc.jpg","url":"https:\/\/t.co\/q66FPHzSTm","display_url":"pic.twitter.com\/q66FPHzSTm","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187052419324055552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187052405428350976,"id_str":"1187052405428350976","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlB35tUcAAZzWc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlB35tUcAAZzWc.jpg","url":"https:\/\/t.co\/q66FPHzSTm","display_url":"pic.twitter.com\/q66FPHzSTm","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187052419324055552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187042627306131456,"in_reply_to_status_id_str":"1187042627306131456","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:27:35 +0000 2019","id":1187073096567721984,"id_str":"1187073096567721984","full_text":"RT + @idtesu: We would like to congratulate Daniel Agbaji, IDT grad student, who + had his research displayed at the AECT 2019 Gallery Walk and\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"idtesu","name":"ESU + Instructional Design & Technology Program","id":107144043,"id_str":"107144043","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3096596876,"id_str":"3096596876","name":"@TTC-ESU","screen_name":"TTC_ESU","location":"Emporia, + KS","description":"The Teachers College at Emporia State University: home + to programs preparing college students and professionals to enter careers + which improve lives.","url":"http:\/\/t.co\/MWFvY6tgQI","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/MWFvY6tgQI","expanded_url":"http:\/\/www.emporia.edu\/teach\/","display_url":"emporia.edu\/teach\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":883,"friends_count":162,"listed_count":16,"created_at":"Wed + Mar 18 17:32:16 +0000 2015","favourites_count":7482,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8695,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1017126046787821568\/Wrgn_iE7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1017126046787821568\/Wrgn_iE7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3096596876\/1629483387","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 06:43:48 +0000 2019","id":1186895985101815808,"id_str":"1186895985101815808","full_text":"We + would like to congratulate Daniel Agbaji, IDT grad student, who had his research + displayed at the AECT 2019 Gallery Walk and Poster Session.\n\n#AECT2019 #hornetpride + #IDT https:\/\/t.co\/k2GxZUjTOm","truncated":false,"display_text_range":[0,172],"entities":{"hashtags":[{"text":"AECT2019","indices":[145,154]},{"text":"hornetpride","indices":[155,167]},{"text":"IDT","indices":[168,172]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186895973856886784,"id_str":"1186895973856886784","indices":[173,196],"media_url":"http:\/\/pbs.twimg.com\/media\/EHizmYsUwAANKqx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHizmYsUwAANKqx.jpg","url":"https:\/\/t.co\/k2GxZUjTOm","display_url":"pic.twitter.com\/k2GxZUjTOm","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186895985101815808\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186895973856886784,"id_str":"1186895973856886784","indices":[173,196],"media_url":"http:\/\/pbs.twimg.com\/media\/EHizmYsUwAANKqx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHizmYsUwAANKqx.jpg","url":"https:\/\/t.co\/k2GxZUjTOm","display_url":"pic.twitter.com\/k2GxZUjTOm","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186895985101815808\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:18:23 +0000 2019","id":1187070778996482048,"id_str":"1187070778996482048","full_text":"Deans + & directors of online distance education programs @AECT How are you ensuring + that grad students have access to opportunities such as teaching & research + experiences typically offered in F2F programs? Grad distance ed students, + does your program offer them? #aect19inspired","truncated":false,"display_text_range":[0,286],"entities":{"hashtags":[{"text":"aect19inspired","indices":[271,286]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[60,65]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:38:59 +0000 2019","id":1187060866434260992,"id_str":"1187060866434260992","full_text":"RT + @pazureka: Many more great sessions today with the Learner Engagement Division! + We hope you''ll join us for our membership meeting at 3PM\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:07:11 +0000 2019","id":1187022662956023808,"id_str":"1187022662956023808","full_text":"Many + more great sessions today with the Learner Engagement Division! We hope you''ll + join us for our membership meeting at 3PM today in Conference Room 8. Meet + the leadership team, learn more about this Division, and help us plan for + the future! #aect19 @AECT\n @LearnEngage https:\/\/t.co\/sj3lVbOm1O","truncated":false,"display_text_range":[0,272],"entities":{"hashtags":[{"text":"aect19","indices":[245,252]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[253,258]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[260,272]}],"urls":[],"media":[{"id":1187022657843163137,"id_str":"1187022657843163137","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkm0XUU8AEPYDu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkm0XUU8AEPYDu.jpg","url":"https:\/\/t.co\/sj3lVbOm1O","display_url":"pic.twitter.com\/sj3lVbOm1O","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187022662956023808\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1160,"h":826,"resize":"fit"},"large":{"w":1160,"h":826,"resize":"fit"},"small":{"w":680,"h":484,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187022657843163137,"id_str":"1187022657843163137","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkm0XUU8AEPYDu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkm0XUU8AEPYDu.jpg","url":"https:\/\/t.co\/sj3lVbOm1O","display_url":"pic.twitter.com\/sj3lVbOm1O","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187022662956023808\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1160,"h":826,"resize":"fit"},"large":{"w":1160,"h":826,"resize":"fit"},"small":{"w":680,"h":484,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:19:46 +0000 2019","id":1187071127539146753,"id_str":"1187071127539146753","full_text":"Dr. + Eugene Kowch, along presenting on Trends in Systems Thinking and Change: An + overview of the STC Major Work Reference Volume aect2 #aect19 @ Westgate Las + Vegas Resort & Casino https:\/\/t.co\/nWwP9Btqcy","truncated":false,"display_text_range":[0,206],"entities":{"hashtags":[{"text":"aect19","indices":[134,141]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nWwP9Btqcy","expanded_url":"https:\/\/www.instagram.com\/p\/B3-HTmODMOl\/?igshid=2i670o19polg","display_url":"instagram.com\/p\/B3-HTmODMOl\/\u2026","indices":[183,206]}]},"source":"\u003ca + href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":{"type":"Point","coordinates":[36.13625965,-115.15144543]},"coordinates":{"type":"Point","coordinates":[-115.15144543,36.13625965]},"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:08:48 +0000 2019","id":1187068368995536896,"id_str":"1187068368995536896","full_text":"Thanks + @hampthephd @AlbertRitzhaupt for a successful gamification meta-analysis + presentation at #aect19 #aect19inspired. It\u2019s a sign of compliment when + people ask you where the paper will be published. https:\/\/t.co\/5gGeOKHpBo","truncated":false,"display_text_range":[0,202],"entities":{"hashtags":[{"text":"aect19","indices":[97,104]},{"text":"aect19inspired","indices":[105,120]}],"symbols":[],"user_mentions":[{"screen_name":"hampthephd","name":"John + Hampton, PhD","id":936686250,"id_str":"936686250","indices":[7,18]},{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[20,36]}],"urls":[],"media":[{"id":1187068359566716929,"id_str":"1187068359566716929","indices":[203,226],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQYjgUcAEQPci.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQYjgUcAEQPci.jpg","url":"https:\/\/t.co\/5gGeOKHpBo","display_url":"pic.twitter.com\/5gGeOKHpBo","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187068368995536896\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187068359566716929,"id_str":"1187068359566716929","indices":[203,226],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQYjgUcAEQPci.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQYjgUcAEQPci.jpg","url":"https:\/\/t.co\/5gGeOKHpBo","display_url":"pic.twitter.com\/5gGeOKHpBo","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187068368995536896\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187068359570931713,"id_str":"1187068359570931713","indices":[203,226],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQYjhUwAEKU59.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQYjhUwAEKU59.jpg","url":"https:\/\/t.co\/5gGeOKHpBo","display_url":"pic.twitter.com\/5gGeOKHpBo","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187068368995536896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187068359566753793,"id_str":"1187068359566753793","indices":[203,226],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQYjgVAAEZYW1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQYjgVAAEZYW1.jpg","url":"https:\/\/t.co\/5gGeOKHpBo","display_url":"pic.twitter.com\/5gGeOKHpBo","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187068368995536896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988637594,"id_str":"2988637594","name":"Rui + \"Tammy\" Huang","screen_name":"ruitammyhuang","location":"FL","description":"PhD, + fellow in Ed Tech @UF_COE, game-based learning and immersive technology researcher, + designer & developer. Learning experience design researcher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":185,"listed_count":6,"created_at":"Wed + Jan 21 02:08:50 +0000 2015","favourites_count":399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988637594\/1621697544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:02:18 +0000 2019","id":1187051635174002694,"id_str":"1187051635174002694","full_text":"RT + @Stephsteph83: We\u2019d love for you to reach and subscribe to the iTeach + Blog! @ksuiteach @KSUITEC @KSUBCOE #aect19inspired #KSUMobileSummi\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Stephsteph83","name":"Dr. + Stephanee Stephens","id":427060068,"id_str":"427060068","indices":[3,16]},{"screen_name":"ksuiteach","name":"KSU + iTeach","id":129823325,"id_str":"129823325","indices":[79,89]},{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[90,98]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1154888858,"id_str":"1154888858","name":"Kennesaw + State ITEC","screen_name":"KSUITEC","location":"Kennesaw, GA","description":"","url":"https:\/\/t.co\/S3NfIRz4LN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/S3NfIRz4LN","expanded_url":"http:\/\/itec.kennesaw.edu","display_url":"itec.kennesaw.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2828,"friends_count":185,"listed_count":64,"created_at":"Wed + Feb 06 19:35:32 +0000 2013","favourites_count":932,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1578,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1166060447457587202\/C7q3Bwxo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1166060447457587202\/C7q3Bwxo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1154888858\/1566845601","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 16:20:22 +0000 2019","id":1187041082418356230,"id_str":"1187041082418356230","full_text":"We\u2019d + love for you to reach and subscribe to the iTeach Blog! @ksuiteach @KSUITEC + @KSUBCOE #aect19inspired #KSUMobileSummit19 #edtech #coachingcollab @fetc + @GaETConf https:\/\/t.co\/i5Y7J5lmzn","truncated":false,"display_text_range":[0,164],"entities":{"hashtags":[{"text":"aect19inspired","indices":[90,105]},{"text":"KSUMobileSummit19","indices":[106,124]},{"text":"edtech","indices":[125,132]},{"text":"coachingcollab","indices":[133,148]}],"symbols":[],"user_mentions":[{"screen_name":"ksuiteach","name":"KSU + iTeach","id":129823325,"id_str":"129823325","indices":[61,71]},{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[72,80]},{"screen_name":"fetc","name":"FETC","id":16724364,"id_str":"16724364","indices":[149,154]},{"screen_name":"GaETConf","name":"Georgia + Educational Technology Conference","id":208439824,"id_str":"208439824","indices":[155,164]}],"urls":[{"url":"https:\/\/t.co\/i5Y7J5lmzn","expanded_url":"https:\/\/twitter.com\/ksuiteach\/status\/1186990849374244864","display_url":"twitter.com\/ksuiteach\/stat\u2026","indices":[165,188]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":427060068,"id_str":"427060068","name":"Dr. + Stephanee Stephens","screen_name":"Stephsteph83","location":"Atlanta, GA","description":"Educator, + Challenger, Leader, Innovator @microsoftedu Believe in: #personalizedlearning + \ud83d\udc69\u200d\ud83c\udf93 @utoledo @kennesawstate","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2501,"friends_count":1157,"listed_count":172,"created_at":"Sat + Dec 03 02:01:17 +0000 2011","favourites_count":13627,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8514,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458524672912461825\/JM2qKEcN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458524672912461825\/JM2qKEcN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/427060068\/1636574423","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186990849374244864,"quoted_status_id_str":"1186990849374244864","quoted_status_permalink":{"url":"https:\/\/t.co\/i5Y7J5lmzn","expanded":"https:\/\/twitter.com\/ksuiteach\/status\/1186990849374244864","display":"twitter.com\/ksuiteach\/stat\u2026"},"quoted_status":{"created_at":"Wed + Oct 23 13:00:46 +0000 2019","id":1186990849374244864,"id_str":"1186990849374244864","full_text":"Check + out our blog post TODAY! This post encourages finding strength within your + own students to support tech troubles with your own student tech team! Check + it out and let us know what you think! https:\/\/t.co\/m1FDAAe6Au https:\/\/t.co\/87L1u1LSPE","truncated":false,"display_text_range":[0,220],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/m1FDAAe6Au","expanded_url":"https:\/\/ksuiteach.blogspot.com\/2019\/10\/tapping-into-classroom-talent-with.html","display_url":"ksuiteach.blogspot.com\/2019\/10\/tappin\u2026","indices":[197,220]}],"media":[{"id":1186990846236942336,"id_str":"1186990846236942336","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkJ4r2X4AAtZm0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkJ4r2X4AAtZm0.png","url":"https:\/\/t.co\/87L1u1LSPE","display_url":"pic.twitter.com\/87L1u1LSPE","expanded_url":"https:\/\/twitter.com\/ksuiteach\/status\/1186990849374244864\/photo\/1","type":"photo","sizes":{"large":{"w":250,"h":373,"resize":"fit"},"small":{"w":250,"h":373,"resize":"fit"},"medium":{"w":250,"h":373,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1186990846236942336,"id_str":"1186990846236942336","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkJ4r2X4AAtZm0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkJ4r2X4AAtZm0.png","url":"https:\/\/t.co\/87L1u1LSPE","display_url":"pic.twitter.com\/87L1u1LSPE","expanded_url":"https:\/\/twitter.com\/ksuiteach\/status\/1186990849374244864\/photo\/1","type":"photo","sizes":{"large":{"w":250,"h":373,"resize":"fit"},"small":{"w":250,"h":373,"resize":"fit"},"medium":{"w":250,"h":373,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":129823325,"id_str":"129823325","name":"KSU + iTeach","screen_name":"ksuiteach","location":"Kennesaw, GA","description":"This + is the official Twitter account for iTeach at Kennesaw State University. #iTeachCoaching + #iTeachMaker #iTeachOnDemand #iTeachLIVE #iTeachTalks #iTeachAsks","url":"https:\/\/t.co\/qRDQpY8QEg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qRDQpY8QEg","expanded_url":"http:\/\/iteach.kennesaw.edu","display_url":"iteach.kennesaw.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3462,"friends_count":448,"listed_count":63,"created_at":"Mon + Apr 05 14:37:27 +0000 2010","favourites_count":8110,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6122,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/890333675015077890\/z1nz2Tsz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/890333675015077890\/z1nz2Tsz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/129823325\/1633107957","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186990849374244864,"quoted_status_id_str":"1186990849374244864","quoted_status_permalink":{"url":"https:\/\/t.co\/i5Y7J5lmzn","expanded":"https:\/\/twitter.com\/ksuiteach\/status\/1186990849374244864","display":"twitter.com\/ksuiteach\/stat\u2026"},"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:32:21 +0000 2019","id":1187074297132544002,"id_str":"1187074297132544002","full_text":"RT + @RitaFennelly: Another great reflection from the @AECT panel AECT: Lessons + in Leadership in the Field of Educational Technology: The que\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[52,57]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 16:50:45 +0000 2019","id":1187048725299884032,"id_str":"1187048725299884032","full_text":"Another + great reflection from the @AECT panel AECT: Lessons in Leadership in the Field + of Educational Technology: The questions you ask will determine the answers + you get #ProfessionalGoals #aect19inspired","truncated":false,"display_text_range":[0,206],"entities":{"hashtags":[{"text":"ProfessionalGoals","indices":[172,190]},{"text":"aect19inspired","indices":[191,206]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[34,39]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:49:49 +0000 2019","id":1187063591188385793,"id_str":"1187063591188385793","full_text":"Great + turnout for our gamification presentation! #aect19 https:\/\/t.co\/oxlBCB5QHZ","truncated":false,"display_text_range":[0,56],"entities":{"hashtags":[{"text":"aect19","indices":[49,56]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187063535701909504,"id_str":"1187063535701909504","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187063535701909504\/pu\/img\/5DPLKZbNQ9Frr00i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187063535701909504\/pu\/img\/5DPLKZbNQ9Frr00i.jpg","url":"https:\/\/t.co\/oxlBCB5QHZ","display_url":"pic.twitter.com\/oxlBCB5QHZ","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187063591188385793\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187063535701909504,"id_str":"1187063535701909504","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187063535701909504\/pu\/img\/5DPLKZbNQ9Frr00i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187063535701909504\/pu\/img\/5DPLKZbNQ9Frr00i.jpg","url":"https:\/\/t.co\/oxlBCB5QHZ","display_url":"pic.twitter.com\/oxlBCB5QHZ","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187063591188385793\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":7598,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187063535701909504\/pu\/pl\/3ud_JkNw4x0bYemW.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187063535701909504\/pu\/vid\/480x270\/WPwWuyOfvFeMkisG.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187063535701909504\/pu\/vid\/1280x720\/xUbHIwZblENUstlQ.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187063535701909504\/pu\/vid\/640x360\/AxsSetoz2XCmKzTk.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:59:03 +0000 2019","id":1187065915394756608,"id_str":"1187065915394756608","full_text":"RT + @hodgesc: Chat with me today about @AECTTechTrends at the Meet the Editors + Roundtables\nWed, Oct 23, 4:00 to 4:50pm, Convention Center, P\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[38,53]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 17:05:00 +0000 2019","id":1187052312495316992,"id_str":"1187052312495316992","full_text":"Chat + with me today about @AECTTechTrends at the Meet the Editors Roundtables\nWed, + Oct 23, 4:00 to 4:50pm, Convention Center, Pavilion 4 #aect19 #aect19inspired","truncated":false,"display_text_range":[0,159],"entities":{"hashtags":[{"text":"aect19","indices":[136,143]},{"text":"aect19inspired","indices":[144,159]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[25,40]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:06:53 +0000 2019","id":1187052786980012032,"id_str":"1187052786980012032","full_text":"I\u2019m + inspired to incorporate Sphero coding and robotics in my courses! #aect19 + #aect19inspired https:\/\/t.co\/RsuyPj8KXK","truncated":false,"display_text_range":[0,93],"entities":{"hashtags":[{"text":"aect19","indices":[70,77]},{"text":"aect19inspired","indices":[78,93]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187052743229243393,"id_str":"1187052743229243393","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlCLkHVAAEnlGh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlCLkHVAAEnlGh.jpg","url":"https:\/\/t.co\/RsuyPj8KXK","display_url":"pic.twitter.com\/RsuyPj8KXK","expanded_url":"https:\/\/twitter.com\/d_mulder\/status\/1187052786980012032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187052743229243393,"id_str":"1187052743229243393","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlCLkHVAAEnlGh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlCLkHVAAEnlGh.jpg","url":"https:\/\/t.co\/RsuyPj8KXK","display_url":"pic.twitter.com\/RsuyPj8KXK","expanded_url":"https:\/\/twitter.com\/d_mulder\/status\/1187052786980012032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":30278154,"id_str":"30278154","name":"Dr. + Dave Mulder","screen_name":"d_mulder","location":"Iowa","description":"Christ-follower. + Husband of one and dad of two. Professor of Education at @dordtuniversity. + #EdTech is my jam. My tweets speak only for me.","url":"https:\/\/t.co\/i9IOUI9RZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/i9IOUI9RZC","expanded_url":"https:\/\/drdave.substack.com\/","display_url":"drdave.substack.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3921,"friends_count":949,"listed_count":249,"created_at":"Fri + Apr 10 18:27:10 +0000 2009","favourites_count":39976,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30278154\/1568172162","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:57:42 +0000 2019","id":1187065576906035200,"id_str":"1187065576906035200","full_text":"Drs. + Baaki & Tracey offer persona empathic design to teach students how to + have empathy for the learners to improve instructional design. #eme601 #eme607 + #eme603 #aect19inspired #aect2019 https:\/\/t.co\/ua9r17wVRV","truncated":false,"display_text_range":[0,191],"entities":{"hashtags":[{"text":"eme601","indices":[142,149]},{"text":"eme607","indices":[150,157]},{"text":"eme603","indices":[158,165]},{"text":"aect19inspired","indices":[166,181]},{"text":"aect2019","indices":[182,191]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187065555250868224,"id_str":"1187065555250868224","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlN1UnUcAACX2g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlN1UnUcAACX2g.jpg","url":"https:\/\/t.co\/ua9r17wVRV","display_url":"pic.twitter.com\/ua9r17wVRV","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187065576906035200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187065555250868224,"id_str":"1187065555250868224","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlN1UnUcAACX2g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlN1UnUcAACX2g.jpg","url":"https:\/\/t.co\/ua9r17wVRV","display_url":"pic.twitter.com\/ua9r17wVRV","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187065576906035200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187065555238313985,"id_str":"1187065555238313985","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlN1UkU4AEbQYu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlN1UkU4AEbQYu.jpg","url":"https:\/\/t.co\/ua9r17wVRV","display_url":"pic.twitter.com\/ua9r17wVRV","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187065576906035200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187065555255037953,"id_str":"1187065555255037953","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlN1UoUEAExVCd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlN1UoUEAExVCd.jpg","url":"https:\/\/t.co\/ua9r17wVRV","display_url":"pic.twitter.com\/ua9r17wVRV","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187065576906035200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187065555494133761,"id_str":"1187065555494133761","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlN1VhUYAE_FZY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlN1VhUYAE_FZY.jpg","url":"https:\/\/t.co\/ua9r17wVRV","display_url":"pic.twitter.com\/ua9r17wVRV","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187065576906035200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:57:35 +0000 2019","id":1187065545608187906,"id_str":"1187065545608187906","full_text":"RT + @hampthephd: Gamification presentation was awesome! Many thanks to all those + who came out to watch this morning! And a special shoutout\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hampthephd","name":"John + Hampton, PhD","id":936686250,"id_str":"936686250","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 17:37:53 +0000 2019","id":1187060590507769856,"id_str":"1187060590507769856","full_text":"Gamification + presentation was awesome! Many thanks to all those who came out to watch this + morning! And a special shoutout to @AlbertRitzhaupt and @tammyhuangrui! #aect19 + https:\/\/t.co\/Z4xyYLqVCh","truncated":false,"display_text_range":[0,170],"entities":{"hashtags":[{"text":"aect19","indices":[163,170]}],"symbols":[],"user_mentions":[{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[126,142]}],"urls":[],"media":[{"id":1187060392695984128,"id_str":"1187060392695984128","indices":[171,194],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlJI0mUcAAkWqn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlJI0mUcAAkWqn.jpg","url":"https:\/\/t.co\/Z4xyYLqVCh","display_url":"pic.twitter.com\/Z4xyYLqVCh","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187060590507769856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1024,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187060392695984128,"id_str":"1187060392695984128","indices":[171,194],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlJI0mUcAAkWqn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlJI0mUcAAkWqn.jpg","url":"https:\/\/t.co\/Z4xyYLqVCh","display_url":"pic.twitter.com\/Z4xyYLqVCh","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187060590507769856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1024,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:35:21 +0000 2019","id":1187059949081378818,"id_str":"1187059949081378818","full_text":"RT + @Stephsteph83: So sorry I\u2019m missing #KSUMOBILESUMMIT19 while flying + home from #aect19inspired -but I know that my pals are dropping som\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"KSUMOBILESUMMIT19","indices":[40,58]},{"text":"aect19inspired","indices":[82,97]}],"symbols":[],"user_mentions":[{"screen_name":"Stephsteph83","name":"Dr. + Stephanee Stephens","id":427060068,"id_str":"427060068","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":887647302940340224,"id_str":"887647302940340224","name":"Tamika + Duffey","screen_name":"Durrahville","location":"Stockbridge, GA","description":"I''m + an educator, entrepreneur, & good steward of my talents. Enough said...My + credentials mean nothing if I am unrelatable, unapproachable, and unloving.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":313,"friends_count":334,"listed_count":6,"created_at":"Wed + Jul 19 12:16:23 +0000 2017","favourites_count":855,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":479,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/887649098383470593\/DS-D16RE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/887649098383470593\/DS-D16RE_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 13:59:07 +0000 2019","id":1187005536157351936,"id_str":"1187005536157351936","full_text":"So + sorry I\u2019m missing #KSUMOBILESUMMIT19 while flying home from #aect19inspired + -but I know that my pals are dropping some knowledge \ud83d\udca3 @Durrahville + repping @ksuiteach and @nearpod and @KristenBrooks77 @MissRioux shining an + \ud83c\udf4e \ud83d\udca1! Congrats @drjabaricain @KSUBCOE @KSUITEC https:\/\/t.co\/CrusxDuLhm","truncated":false,"display_text_range":[0,269],"entities":{"hashtags":[{"text":"KSUMOBILESUMMIT19","indices":[22,40]},{"text":"aect19inspired","indices":[64,79]}],"symbols":[],"user_mentions":[{"screen_name":"Durrahville","name":"Tamika + Duffey","id":887647302940340224,"id_str":"887647302940340224","indices":[136,148]},{"screen_name":"ksuiteach","name":"KSU + iTeach","id":129823325,"id_str":"129823325","indices":[157,167]},{"screen_name":"nearpod","name":"Nearpod","id":231176302,"id_str":"231176302","indices":[172,180]},{"screen_name":"KristenBrooks77","name":"Kristen + Brooks #FOREDU","id":44916231,"id_str":"44916231","indices":[185,201]},{"screen_name":"MissRioux","name":"Andrea + Tseng-Rioux","id":243846294,"id_str":"243846294","indices":[202,212]},{"screen_name":"drjabaricain","name":"Dr. + Jabari Cain","id":895269889438560257,"id_str":"895269889438560257","indices":[238,251]},{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[261,269]}],"urls":[],"media":[{"id":1187005527949099008,"id_str":"1187005527949099008","indices":[270,293],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHkXPRfUwAAlshq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHkXPRfUwAAlshq.jpg","url":"https:\/\/t.co\/CrusxDuLhm","display_url":"pic.twitter.com\/CrusxDuLhm","expanded_url":"https:\/\/twitter.com\/Stephsteph83\/status\/1187005536157351936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":264,"resize":"fit"},"large":{"w":480,"h":264,"resize":"fit"},"medium":{"w":480,"h":264,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187005527949099008,"id_str":"1187005527949099008","indices":[270,293],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHkXPRfUwAAlshq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHkXPRfUwAAlshq.jpg","url":"https:\/\/t.co\/CrusxDuLhm","display_url":"pic.twitter.com\/CrusxDuLhm","expanded_url":"https:\/\/twitter.com\/Stephsteph83\/status\/1187005536157351936\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":264,"resize":"fit"},"large":{"w":480,"h":264,"resize":"fit"},"medium":{"w":480,"h":264,"resize":"fit"}},"video_info":{"aspect_ratio":[20,11],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHkXPRfUwAAlshq.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":427060068,"id_str":"427060068","name":"Dr. + Stephanee Stephens","screen_name":"Stephsteph83","location":"Atlanta, GA","description":"Educator, + Challenger, Leader, Innovator @microsoftedu Believe in: #personalizedlearning + \ud83d\udc69\u200d\ud83c\udf93 @utoledo @kennesawstate","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2501,"friends_count":1157,"listed_count":172,"created_at":"Sat + Dec 03 02:01:17 +0000 2011","favourites_count":13627,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8514,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458524672912461825\/JM2qKEcN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458524672912461825\/JM2qKEcN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/427060068\/1636574423","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:59:16 +0000 2019","id":1187065970759618560,"id_str":"1187065970759618560","full_text":"RT + @nangur1: Breakfast with the champions #aect19 #AECT2019inspired Great meeting + you @hodgesc and getting inspired by the great work you a\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[42,49]},{"text":"AECT2019inspired","indices":[50,67]}],"symbols":[],"user_mentions":[{"screen_name":"nangur1","name":"Dr. + Nandita Gurjar","id":2743313304,"id_str":"2743313304","indices":[3,11]},{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[86,94]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 16:55:11 +0000 2019","id":1187049841437728768,"id_str":"1187049841437728768","full_text":"Breakfast + with the champions #aect19 #AECT2019inspired Great meeting you @hodgesc and + getting inspired by the great work you are doing! https:\/\/t.co\/LQYbXYdkol","truncated":false,"display_text_range":[0,135],"entities":{"hashtags":[{"text":"aect19","indices":[29,36]},{"text":"AECT2019inspired","indices":[37,54]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[73,81]}],"urls":[],"media":[{"id":1187049835985170432,"id_str":"1187049835985170432","indices":[136,159],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk_iVyU8AA5KZ1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk_iVyU8AA5KZ1.jpg","url":"https:\/\/t.co\/LQYbXYdkol","display_url":"pic.twitter.com\/LQYbXYdkol","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187049841437728768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187049835985170432,"id_str":"1187049835985170432","indices":[136,159],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk_iVyU8AA5KZ1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk_iVyU8AA5KZ1.jpg","url":"https:\/\/t.co\/LQYbXYdkol","display_url":"pic.twitter.com\/LQYbXYdkol","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187049841437728768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:30:50 +0000 2019","id":1187058813217714178,"id_str":"1187058813217714178","full_text":"Never + got Hamilton tickets? You can get the next best thing by coming to my 9am + 10\/24 @AECT inspire! session on using @github in education, where I''ll be + wearing a powdered wig (I will not be singing)! #aect19inspired","truncated":false,"display_text_range":[0,217],"entities":{"hashtags":[{"text":"aect19inspired","indices":[202,217]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[86,91]},{"screen_name":"github","name":"GitHub","id":13334762,"id_str":"13334762","indices":[118,125]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:04:18 +0000 2019","id":1187067234994155522,"id_str":"1187067234994155522","full_text":"RT + @kariknisely: \u201cIt\u2019s a Small World\u201d especially when we are connected + online with vast wide networks #AECT19 loving the discussion with @R\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[102,109]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 17:21:29 +0000 2019","id":1187056461429395456,"id_str":"1187056461429395456","full_text":"\u201cIt\u2019s + a Small World\u201d especially when we are connected online with vast wide + networks #AECT19 loving the discussion with @RitaFennelly @DrLaPrairie @WEHSLibrary + @KathyMansfield in Pavillion 11 https:\/\/t.co\/eaSzT1apnF","truncated":false,"display_text_range":[0,191],"entities":{"hashtags":[{"text":"AECT19","indices":[85,92]}],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[120,133]},{"screen_name":"WEHSLibrary","name":"Weslaco + East High School Library-Renee Dyer","id":175049060,"id_str":"175049060","indices":[147,159]},{"screen_name":"KathyMansfield","name":"Kathy + Mansfield","id":27742120,"id_str":"27742120","indices":[160,175]}],"urls":[],"media":[{"id":1187056426742501379,"id_str":"1187056426742501379","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlFh-RU0AMiMX2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlFh-RU0AMiMX2.jpg","url":"https:\/\/t.co\/eaSzT1apnF","display_url":"pic.twitter.com\/eaSzT1apnF","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1187056461429395456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187056426742501379,"id_str":"1187056426742501379","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlFh-RU0AMiMX2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlFh-RU0AMiMX2.jpg","url":"https:\/\/t.co\/eaSzT1apnF","display_url":"pic.twitter.com\/eaSzT1apnF","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1187056461429395456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:06:44 +0000 2019","id":1187052750263279616,"id_str":"1187052750263279616","full_text":"Dr. + Fred Baker from @uwf presenting on higher education policies related to implementation + of openness aect2 #aect2019 @ Westgate Las Vegas Resort & Casino https:\/\/t.co\/9ZRO4ObxkT","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"aect2019","indices":[109,118]}],"symbols":[],"user_mentions":[{"screen_name":"UWF","name":"UWF","id":22806248,"id_str":"22806248","indices":[20,24]}],"urls":[{"url":"https:\/\/t.co\/9ZRO4ObxkT","expanded_url":"https:\/\/www.instagram.com\/p\/B39-84uDh5N\/?igshid=y3nq6d0eq00u","display_url":"instagram.com\/p\/B39-84uDh5N\/\u2026","indices":[160,183]}]},"source":"\u003ca + href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":{"type":"Point","coordinates":[36.13625965,-115.15144543]},"coordinates":{"type":"Point","coordinates":[-115.15144543,36.13625965]},"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:14:17 +0000 2019","id":1187069750955765760,"id_str":"1187069750955765760","full_text":"Attending + a great panel @AECT called GSA: Narrowing Down Your Research Interests and + Being Productive with two great ideas keep a doc or index file w\/ ideas or + research questions generated from articles you are reading #aect19inspired + @ProDevBen @katie_nicksic @SoniaReneeAlva1","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"aect19inspired","indices":[219,234]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[24,29]},{"screen_name":"ProDevBen","name":"Benjamin + Brown","id":1021110108971941889,"id_str":"1021110108971941889","indices":[235,245]},{"screen_name":"SoniaReneeAlva1","name":"Dr. + Sonia Renee\u2019 Alvarado","id":1012148853162827777,"id_str":"1012148853162827777","indices":[261,277]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:31:42 +0000 2019","id":1187074129926557696,"id_str":"1187074129926557696","full_text":"RT + @RitaFennelly: Attending a great panel @AECT called GSA: Narrowing Down Your + Research Interests and Being Productive with two great idea\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[42,47]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 18:14:17 +0000 2019","id":1187069750955765760,"id_str":"1187069750955765760","full_text":"Attending + a great panel @AECT called GSA: Narrowing Down Your Research Interests and + Being Productive with two great ideas keep a doc or index file w\/ ideas or + research questions generated from articles you are reading #aect19inspired + @ProDevBen @katie_nicksic @SoniaReneeAlva1","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"aect19inspired","indices":[219,234]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[24,29]},{"screen_name":"ProDevBen","name":"Benjamin + Brown","id":1021110108971941889,"id_str":"1021110108971941889","indices":[235,245]},{"screen_name":"SoniaReneeAlva1","name":"Dr. + Sonia Renee\u2019 Alvarado","id":1012148853162827777,"id_str":"1012148853162827777","indices":[261,277]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:04:43 +0000 2019","id":1187067342292799488,"id_str":"1187067342292799488","full_text":"It + is unfortunate that the door for saloon D, wehere there is an event on open + education, is locked \ud83e\udd14 #AECT19 @opencontent @johnhiltoniii #openness","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[{"text":"AECT19","indices":[103,110]},{"text":"openness","indices":[139,148]}],"symbols":[],"user_mentions":[{"screen_name":"opencontent","name":"David + Wiley","id":4514361,"id_str":"4514361","indices":[111,123]},{"screen_name":"johnhiltoniii","name":"John + Hilton III","id":45002394,"id_str":"45002394","indices":[124,138]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:32:55 +0000 2019","id":1187074439571222530,"id_str":"1187074439571222530","full_text":"Interesting + presentation in P11 on Community of Inquiry and its analysis through social + network analysis #aect19","truncated":false,"display_text_range":[0,112],"entities":{"hashtags":[{"text":"aect19","indices":[105,112]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:57:48 +0000 2019","id":1187065601228820480,"id_str":"1187065601228820480","full_text":"Thanks + for those who were interested in my poster! I enjoyed the conversation and + information exchange #aect19 #aect19inspired https:\/\/t.co\/CkZHe6kbT2","truncated":false,"display_text_range":[0,126],"entities":{"hashtags":[{"text":"aect19","indices":[103,110]},{"text":"aect19inspired","indices":[111,126]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187065593804947456,"id_str":"1187065593804947456","indices":[127,150],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlN3kPVAAAinRv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlN3kPVAAAinRv.jpg","url":"https:\/\/t.co\/CkZHe6kbT2","display_url":"pic.twitter.com\/CkZHe6kbT2","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187065601228820480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1136,"h":1200,"resize":"fit"},"large":{"w":1938,"h":2048,"resize":"fit"},"small":{"w":643,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187065593804947456,"id_str":"1187065593804947456","indices":[127,150],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlN3kPVAAAinRv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlN3kPVAAAinRv.jpg","url":"https:\/\/t.co\/CkZHe6kbT2","display_url":"pic.twitter.com\/CkZHe6kbT2","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187065601228820480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1136,"h":1200,"resize":"fit"},"large":{"w":1938,"h":2048,"resize":"fit"},"small":{"w":643,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988637594,"id_str":"2988637594","name":"Rui + \"Tammy\" Huang","screen_name":"ruitammyhuang","location":"FL","description":"PhD, + fellow in Ed Tech @UF_COE, game-based learning and immersive technology researcher, + designer & developer. Learning experience design researcher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":185,"listed_count":6,"created_at":"Wed + Jan 21 02:08:50 +0000 2015","favourites_count":399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988637594\/1621697544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:08:56 +0000 2019","id":1187068404655505410,"id_str":"1187068404655505410","full_text":"Third + day #aect19inspired #AECTech2019 #aect19inspired Be inspired https:\/\/t.co\/OdpkOCJKOG","truncated":false,"display_text_range":[0,66],"entities":{"hashtags":[{"text":"aect19inspired","indices":[10,25]},{"text":"AECTech2019","indices":[26,38]},{"text":"aect19inspired","indices":[39,54]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187068399836266496,"id_str":"1187068399836266496","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","url":"https:\/\/t.co\/OdpkOCJKOG","display_url":"pic.twitter.com\/OdpkOCJKOG","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187068399836266496,"id_str":"1187068399836266496","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","url":"https:\/\/t.co\/OdpkOCJKOG","display_url":"pic.twitter.com\/OdpkOCJKOG","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187052419324055552,"in_reply_to_status_id_str":"1187052419324055552","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:21:29 +0000 2019","id":1187056461429395456,"id_str":"1187056461429395456","full_text":"\u201cIt\u2019s + a Small World\u201d especially when we are connected online with vast wide + networks #AECT19 loving the discussion with @RitaFennelly @DrLaPrairie @WEHSLibrary + @KathyMansfield in Pavillion 11 https:\/\/t.co\/eaSzT1apnF","truncated":false,"display_text_range":[0,191],"entities":{"hashtags":[{"text":"AECT19","indices":[85,92]}],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[120,133]},{"screen_name":"WEHSLibrary","name":"Weslaco + East High School Library-Renee Dyer","id":175049060,"id_str":"175049060","indices":[147,159]},{"screen_name":"KathyMansfield","name":"Kathy + Mansfield","id":27742120,"id_str":"27742120","indices":[160,175]}],"urls":[],"media":[{"id":1187056426742501379,"id_str":"1187056426742501379","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlFh-RU0AMiMX2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlFh-RU0AMiMX2.jpg","url":"https:\/\/t.co\/eaSzT1apnF","display_url":"pic.twitter.com\/eaSzT1apnF","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1187056461429395456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187056426742501379,"id_str":"1187056426742501379","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlFh-RU0AMiMX2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlFh-RU0AMiMX2.jpg","url":"https:\/\/t.co\/eaSzT1apnF","display_url":"pic.twitter.com\/eaSzT1apnF","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1187056461429395456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:41:20 +0000 2019","id":1187061456203743234,"id_str":"1187061456203743234","full_text":"More + learning at #aect19inspired \u201cempathic design process\u201d key to supporting + development of useful & relevant online courses. #IDEALConsortiun https:\/\/t.co\/WGAh1Cjd7d","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[{"text":"aect19inspired","indices":[17,32]},{"text":"IDEALConsortiun","indices":[132,148]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187061437283201025,"id_str":"1187061437283201025","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlKFn_UcAE-Bvd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlKFn_UcAE-Bvd.jpg","url":"https:\/\/t.co\/WGAh1Cjd7d","display_url":"pic.twitter.com\/WGAh1Cjd7d","expanded_url":"https:\/\/twitter.com\/VanekJen\/status\/1187061456203743234\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187061437283201025,"id_str":"1187061437283201025","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlKFn_UcAE-Bvd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlKFn_UcAE-Bvd.jpg","url":"https:\/\/t.co\/WGAh1Cjd7d","display_url":"pic.twitter.com\/WGAh1Cjd7d","expanded_url":"https:\/\/twitter.com\/VanekJen\/status\/1187061456203743234\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":805816250,"id_str":"805816250","name":"Jen + Vanek","screen_name":"VanekJen","location":"Minneapolis MN","description":"Director + of Digital Learning and Research. EdTech Center @ World Education. Teacher + educator, researcher, and advocate. Opinions expressed here are my own.","url":"https:\/\/t.co\/HfWBBD9lZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HfWBBD9lZC","expanded_url":"http:\/\/www.edtech.worlded.org","display_url":"edtech.worlded.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":270,"listed_count":5,"created_at":"Thu + Sep 06 01:47:18 +0000 2012","favourites_count":432,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":340,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/805816250\/1637458182","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:20:08 +0000 2019","id":1187056121644769286,"id_str":"1187056121644769286","full_text":"RT + @Stephsteph83: So sorry I\u2019m missing #KSUMOBILESUMMIT19 while flying + home from #aect19inspired -but I know that my pals are dropping som\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"KSUMOBILESUMMIT19","indices":[40,58]},{"text":"aect19inspired","indices":[82,97]}],"symbols":[],"user_mentions":[{"screen_name":"Stephsteph83","name":"Dr. + Stephanee Stephens","id":427060068,"id_str":"427060068","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for + i\u039fS\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":895269889438560257,"id_str":"895269889438560257","name":"Dr. + Jabari Cain","screen_name":"drjabaricain","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":324,"friends_count":251,"listed_count":7,"created_at":"Wed + Aug 09 13:05:49 +0000 2017","favourites_count":204,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/908802051706019841\/LhgKrrbn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/908802051706019841\/LhgKrrbn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/895269889438560257\/1505510515","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 13:59:07 +0000 2019","id":1187005536157351936,"id_str":"1187005536157351936","full_text":"So + sorry I\u2019m missing #KSUMOBILESUMMIT19 while flying home from #aect19inspired + -but I know that my pals are dropping some knowledge \ud83d\udca3 @Durrahville + repping @ksuiteach and @nearpod and @KristenBrooks77 @MissRioux shining an + \ud83c\udf4e \ud83d\udca1! Congrats @drjabaricain @KSUBCOE @KSUITEC https:\/\/t.co\/CrusxDuLhm","truncated":false,"display_text_range":[0,269],"entities":{"hashtags":[{"text":"KSUMOBILESUMMIT19","indices":[22,40]},{"text":"aect19inspired","indices":[64,79]}],"symbols":[],"user_mentions":[{"screen_name":"Durrahville","name":"Tamika + Duffey","id":887647302940340224,"id_str":"887647302940340224","indices":[136,148]},{"screen_name":"ksuiteach","name":"KSU + iTeach","id":129823325,"id_str":"129823325","indices":[157,167]},{"screen_name":"nearpod","name":"Nearpod","id":231176302,"id_str":"231176302","indices":[172,180]},{"screen_name":"KristenBrooks77","name":"Kristen + Brooks #FOREDU","id":44916231,"id_str":"44916231","indices":[185,201]},{"screen_name":"MissRioux","name":"Andrea + Tseng-Rioux","id":243846294,"id_str":"243846294","indices":[202,212]},{"screen_name":"drjabaricain","name":"Dr. + Jabari Cain","id":895269889438560257,"id_str":"895269889438560257","indices":[238,251]},{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[261,269]}],"urls":[],"media":[{"id":1187005527949099008,"id_str":"1187005527949099008","indices":[270,293],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHkXPRfUwAAlshq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHkXPRfUwAAlshq.jpg","url":"https:\/\/t.co\/CrusxDuLhm","display_url":"pic.twitter.com\/CrusxDuLhm","expanded_url":"https:\/\/twitter.com\/Stephsteph83\/status\/1187005536157351936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":264,"resize":"fit"},"large":{"w":480,"h":264,"resize":"fit"},"medium":{"w":480,"h":264,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187005527949099008,"id_str":"1187005527949099008","indices":[270,293],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHkXPRfUwAAlshq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHkXPRfUwAAlshq.jpg","url":"https:\/\/t.co\/CrusxDuLhm","display_url":"pic.twitter.com\/CrusxDuLhm","expanded_url":"https:\/\/twitter.com\/Stephsteph83\/status\/1187005536157351936\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":264,"resize":"fit"},"large":{"w":480,"h":264,"resize":"fit"},"medium":{"w":480,"h":264,"resize":"fit"}},"video_info":{"aspect_ratio":[20,11],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHkXPRfUwAAlshq.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":427060068,"id_str":"427060068","name":"Dr. + Stephanee Stephens","screen_name":"Stephsteph83","location":"Atlanta, GA","description":"Educator, + Challenger, Leader, Innovator @microsoftedu Believe in: #personalizedlearning + \ud83d\udc69\u200d\ud83c\udf93 @utoledo @kennesawstate","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2501,"friends_count":1157,"listed_count":172,"created_at":"Sat + Dec 03 02:01:17 +0000 2011","favourites_count":13627,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8514,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458524672912461825\/JM2qKEcN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458524672912461825\/JM2qKEcN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/427060068\/1636574423","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:16:45 +0000 2019","id":1187070371549319168,"id_str":"1187070371549319168","full_text":"RT + @tammyhuangrui: Thanks @hampthephd @AlbertRitzhaupt for a successful gamification + meta-analysis presentation at #aect19 #aect19inspired\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[116,123]},{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"hampthephd","name":"John + Hampton, PhD","id":936686250,"id_str":"936686250","indices":[26,37]},{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[39,55]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/meta-evidence.co.uk\" rel=\"nofollow\"\u003eSystematic Review + Bot\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":985820315522650113,"id_str":"985820315522650113","name":"SystematicReviewBot","screen_name":"EvidenceRobot","location":"Belfast, + Northern Ireland","description":"A happy little robot that loves to retweet + any #systematicreview #metaanalysis #SysRev #evidencesynthesis #researchsynthesis + tweets. By @MetaEvidence","url":"https:\/\/t.co\/WDApxmReo2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WDApxmReo2","expanded_url":"http:\/\/meta-evidence.co.uk\/","display_url":"meta-evidence.co.uk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7131,"friends_count":1,"listed_count":79,"created_at":"Mon + Apr 16 10:00:53 +0000 2018","favourites_count":55,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":256060,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/986202760881336320\/2MRBBaFE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/986202760881336320\/2MRBBaFE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/985820315522650113\/1523964007","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 18:08:48 +0000 2019","id":1187068368995536896,"id_str":"1187068368995536896","full_text":"Thanks + @hampthephd @AlbertRitzhaupt for a successful gamification meta-analysis + presentation at #aect19 #aect19inspired. It\u2019s a sign of compliment when + people ask you where the paper will be published. https:\/\/t.co\/5gGeOKHpBo","truncated":false,"display_text_range":[0,202],"entities":{"hashtags":[{"text":"aect19","indices":[97,104]},{"text":"aect19inspired","indices":[105,120]}],"symbols":[],"user_mentions":[{"screen_name":"hampthephd","name":"John + Hampton, PhD","id":936686250,"id_str":"936686250","indices":[7,18]},{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[20,36]}],"urls":[],"media":[{"id":1187068359566716929,"id_str":"1187068359566716929","indices":[203,226],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQYjgUcAEQPci.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQYjgUcAEQPci.jpg","url":"https:\/\/t.co\/5gGeOKHpBo","display_url":"pic.twitter.com\/5gGeOKHpBo","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187068368995536896\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187068359566716929,"id_str":"1187068359566716929","indices":[203,226],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQYjgUcAEQPci.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQYjgUcAEQPci.jpg","url":"https:\/\/t.co\/5gGeOKHpBo","display_url":"pic.twitter.com\/5gGeOKHpBo","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187068368995536896\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187068359570931713,"id_str":"1187068359570931713","indices":[203,226],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQYjhUwAEKU59.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQYjhUwAEKU59.jpg","url":"https:\/\/t.co\/5gGeOKHpBo","display_url":"pic.twitter.com\/5gGeOKHpBo","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187068368995536896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187068359566753793,"id_str":"1187068359566753793","indices":[203,226],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQYjgVAAEZYW1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQYjgVAAEZYW1.jpg","url":"https:\/\/t.co\/5gGeOKHpBo","display_url":"pic.twitter.com\/5gGeOKHpBo","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187068368995536896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988637594,"id_str":"2988637594","name":"Rui + \"Tammy\" Huang","screen_name":"ruitammyhuang","location":"FL","description":"PhD, + fellow in Ed Tech @UF_COE, game-based learning and immersive technology researcher, + designer & developer. Learning experience design researcher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":185,"listed_count":6,"created_at":"Wed + Jan 21 02:08:50 +0000 2015","favourites_count":399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988637594\/1621697544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:05:10 +0000 2019","id":1187067453869674496,"id_str":"1187067453869674496","full_text":"Dr. + Park shared his study about simulated scenario based trainings collaboratively + designed by Korean & American teachers. Future for pre-service teachers + to learn cultural competence? Study published! Endless potential.@drpark_id + #eme601 #eme607 #eme603 _ #aect19inspired https:\/\/t.co\/V2kP1y5Pg7","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"eme601","indices":[235,242]},{"text":"eme607","indices":[243,250]},{"text":"eme603","indices":[251,258]},{"text":"aect19inspired","indices":[262,277]}],"symbols":[],"user_mentions":[{"screen_name":"drpark_id","name":"Sanghoon + Park","id":888943794577522689,"id_str":"888943794577522689","indices":[224,234]}],"urls":[],"media":[{"id":1187067420877279232,"id_str":"1187067420877279232","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlPh6nUUAAwhiR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlPh6nUUAAwhiR.jpg","url":"https:\/\/t.co\/V2kP1y5Pg7","display_url":"pic.twitter.com\/V2kP1y5Pg7","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187067453869674496\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187067420877279232,"id_str":"1187067420877279232","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlPh6nUUAAwhiR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlPh6nUUAAwhiR.jpg","url":"https:\/\/t.co\/V2kP1y5Pg7","display_url":"pic.twitter.com\/V2kP1y5Pg7","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187067453869674496\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187067420889894913,"id_str":"1187067420889894913","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlPh6qU0AE9VdX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlPh6qU0AE9VdX.jpg","url":"https:\/\/t.co\/V2kP1y5Pg7","display_url":"pic.twitter.com\/V2kP1y5Pg7","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187067453869674496\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187067421074456576,"id_str":"1187067421074456576","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlPh7WVAAAUxFS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlPh7WVAAAUxFS.jpg","url":"https:\/\/t.co\/V2kP1y5Pg7","display_url":"pic.twitter.com\/V2kP1y5Pg7","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187067453869674496\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187067421078605824,"id_str":"1187067421078605824","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlPh7XUUAAn_zN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlPh7XUUAAn_zN.jpg","url":"https:\/\/t.co\/V2kP1y5Pg7","display_url":"pic.twitter.com\/V2kP1y5Pg7","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187067453869674496\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:52:53 +0000 2019","id":1187049264532209664,"id_str":"1187049264532209664","full_text":"One + realization from looking at pictures from #aect meetings past: I haven\u2019t + bought a new shirt in 4+ years. :\\ #aect19","truncated":false,"display_text_range":[0,119],"entities":{"hashtags":[{"text":"aect","indices":[46,51]},{"text":"aect19","indices":[112,119]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":104967963,"id_str":"104967963","name":"Royce + Kimmons","screen_name":"roycekimmons","location":"Provo, UT","description":"Associate + professor, BYU-IPT: openness, OER, tech in education, social media. https:\/\/t.co\/iktkhjAzCw + https:\/\/t.co\/vhHYSEYZSN https:\/\/t.co\/9E4HWYRF9R","url":"https:\/\/t.co\/KsbltQYZa0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KsbltQYZa0","expanded_url":"http:\/\/roycekimmons.com","display_url":"roycekimmons.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/iktkhjAzCw","expanded_url":"http:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[78,101]},{"url":"https:\/\/t.co\/vhHYSEYZSN","expanded_url":"http:\/\/equitypress.org","display_url":"equitypress.org","indices":[102,125]},{"url":"https:\/\/t.co\/9E4HWYRF9R","expanded_url":"http:\/\/edtechnica.org","display_url":"edtechnica.org","indices":[126,149]}]}},"protected":false,"followers_count":1430,"friends_count":2250,"listed_count":57,"created_at":"Thu + Jan 14 23:25:41 +0000 2010","favourites_count":930,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1841,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104967963\/1585782658","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"354770","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EDF0FF","profile_text_color":"1A1A1A","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:56:04 +0000 2019","id":1187065163238608896,"id_str":"1187065163238608896","full_text":"RT + @koubenec: Never got Hamilton tickets? You can get the next best thing by + coming to my 9am 10\/24 @AECT inspire! session on using @github\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"koubenec","name":"Noah + Koubenec","id":153965652,"id_str":"153965652","indices":[3,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[100,105]},{"screen_name":"github","name":"GitHub","id":13334762,"id_str":"13334762","indices":[132,139]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 17:30:50 +0000 2019","id":1187058813217714178,"id_str":"1187058813217714178","full_text":"Never + got Hamilton tickets? You can get the next best thing by coming to my 9am + 10\/24 @AECT inspire! session on using @github in education, where I''ll be + wearing a powdered wig (I will not be singing)! #aect19inspired","truncated":false,"display_text_range":[0,217],"entities":{"hashtags":[{"text":"aect19inspired","indices":[202,217]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[86,91]},{"screen_name":"github","name":"GitHub","id":13334762,"id_str":"13334762","indices":[118,125]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:55:11 +0000 2019","id":1187049841437728768,"id_str":"1187049841437728768","full_text":"Breakfast + with the champions #aect19 #AECT2019inspired Great meeting you @hodgesc and + getting inspired by the great work you are doing! https:\/\/t.co\/LQYbXYdkol","truncated":false,"display_text_range":[0,135],"entities":{"hashtags":[{"text":"aect19","indices":[29,36]},{"text":"AECT2019inspired","indices":[37,54]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[73,81]}],"urls":[],"media":[{"id":1187049835985170432,"id_str":"1187049835985170432","indices":[136,159],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk_iVyU8AA5KZ1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk_iVyU8AA5KZ1.jpg","url":"https:\/\/t.co\/LQYbXYdkol","display_url":"pic.twitter.com\/LQYbXYdkol","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187049841437728768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187049835985170432,"id_str":"1187049835985170432","indices":[136,159],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk_iVyU8AA5KZ1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk_iVyU8AA5KZ1.jpg","url":"https:\/\/t.co\/LQYbXYdkol","display_url":"pic.twitter.com\/LQYbXYdkol","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187049841437728768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:32:20 +0000 2019","id":1187059190965006337,"id_str":"1187059190965006337","full_text":"Hannah, + @christieliuidtr & I will be presenting about IRCEES, an international + online collaborative research support group at 11am in Conf Room 14 and 4pm + in Conf Room 1 #aect19inspired We hope to inspire others by sharing our processes + & strategies #AECTCollab https:\/\/t.co\/eJ06YbUbjM","truncated":false,"display_text_range":[0,269],"entities":{"hashtags":[{"text":"aect19inspired","indices":[174,189]},{"text":"AECTCollab","indices":[258,269]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187059185973747712,"id_str":"1187059185973747712","indices":[270,293],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlIClNUYAAJFlE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlIClNUYAAJFlE.jpg","url":"https:\/\/t.co\/eJ06YbUbjM","display_url":"pic.twitter.com\/eJ06YbUbjM","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187059190965006337\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187059185973747712,"id_str":"1187059185973747712","indices":[270,293],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlIClNUYAAJFlE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlIClNUYAAJFlE.jpg","url":"https:\/\/t.co\/eJ06YbUbjM","display_url":"pic.twitter.com\/eJ06YbUbjM","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187059190965006337\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:53:56 +0000 2019","id":1187064627705704448,"id_str":"1187064627705704448","full_text":"RT + @hampthephd: Great turnout for our gamification presentation! #aect19 https:\/\/t.co\/oxlBCB5QHZ","truncated":false,"display_text_range":[0,96],"entities":{"hashtags":[{"text":"aect19","indices":[65,72]}],"symbols":[],"user_mentions":[{"screen_name":"hampthephd","name":"John + Hampton, PhD","id":936686250,"id_str":"936686250","indices":[3,14]}],"urls":[],"media":[{"id":1187063535701909504,"id_str":"1187063535701909504","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187063535701909504\/pu\/img\/5DPLKZbNQ9Frr00i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187063535701909504\/pu\/img\/5DPLKZbNQ9Frr00i.jpg","url":"https:\/\/t.co\/oxlBCB5QHZ","display_url":"pic.twitter.com\/oxlBCB5QHZ","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187063591188385793\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1187063591188385793,"source_status_id_str":"1187063591188385793","source_user_id":936686250,"source_user_id_str":"936686250"}]},"extended_entities":{"media":[{"id":1187063535701909504,"id_str":"1187063535701909504","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187063535701909504\/pu\/img\/5DPLKZbNQ9Frr00i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187063535701909504\/pu\/img\/5DPLKZbNQ9Frr00i.jpg","url":"https:\/\/t.co\/oxlBCB5QHZ","display_url":"pic.twitter.com\/oxlBCB5QHZ","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187063591188385793\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1187063591188385793,"source_status_id_str":"1187063591188385793","source_user_id":936686250,"source_user_id_str":"936686250","video_info":{"aspect_ratio":[16,9],"duration_millis":7598,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187063535701909504\/pu\/pl\/3ud_JkNw4x0bYemW.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187063535701909504\/pu\/vid\/480x270\/WPwWuyOfvFeMkisG.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187063535701909504\/pu\/vid\/1280x720\/xUbHIwZblENUstlQ.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187063535701909504\/pu\/vid\/640x360\/AxsSetoz2XCmKzTk.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false,"source_user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]}}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988637594,"id_str":"2988637594","name":"Rui + \"Tammy\" Huang","screen_name":"ruitammyhuang","location":"FL","description":"PhD, + fellow in Ed Tech @UF_COE, game-based learning and immersive technology researcher, + designer & developer. Learning experience design researcher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":185,"listed_count":6,"created_at":"Wed + Jan 21 02:08:50 +0000 2015","favourites_count":399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988637594\/1621697544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 17:49:49 +0000 2019","id":1187063591188385793,"id_str":"1187063591188385793","full_text":"Great + turnout for our gamification presentation! #aect19 https:\/\/t.co\/oxlBCB5QHZ","truncated":false,"display_text_range":[0,56],"entities":{"hashtags":[{"text":"aect19","indices":[49,56]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187063535701909504,"id_str":"1187063535701909504","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187063535701909504\/pu\/img\/5DPLKZbNQ9Frr00i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187063535701909504\/pu\/img\/5DPLKZbNQ9Frr00i.jpg","url":"https:\/\/t.co\/oxlBCB5QHZ","display_url":"pic.twitter.com\/oxlBCB5QHZ","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187063591188385793\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187063535701909504,"id_str":"1187063535701909504","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187063535701909504\/pu\/img\/5DPLKZbNQ9Frr00i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187063535701909504\/pu\/img\/5DPLKZbNQ9Frr00i.jpg","url":"https:\/\/t.co\/oxlBCB5QHZ","display_url":"pic.twitter.com\/oxlBCB5QHZ","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187063591188385793\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":7598,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187063535701909504\/pu\/pl\/3ud_JkNw4x0bYemW.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187063535701909504\/pu\/vid\/480x270\/WPwWuyOfvFeMkisG.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187063535701909504\/pu\/vid\/1280x720\/xUbHIwZblENUstlQ.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187063535701909504\/pu\/vid\/640x360\/AxsSetoz2XCmKzTk.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:27:27 +0000 2019","id":1187073062849712135,"id_str":"1187073062849712135","full_text":"RT + @idtesu: Honored to meet Dr. Enilda Romero-Hall. \nESU''s IDT alum. Currently + serving as an Associate Professor in the Department of Educa\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"idtesu","name":"ESU + Instructional Design & Technology Program","id":107144043,"id_str":"107144043","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3096596876,"id_str":"3096596876","name":"@TTC-ESU","screen_name":"TTC_ESU","location":"Emporia, + KS","description":"The Teachers College at Emporia State University: home + to programs preparing college students and professionals to enter careers + which improve lives.","url":"http:\/\/t.co\/MWFvY6tgQI","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/MWFvY6tgQI","expanded_url":"http:\/\/www.emporia.edu\/teach\/","display_url":"emporia.edu\/teach\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":883,"friends_count":162,"listed_count":16,"created_at":"Wed + Mar 18 17:32:16 +0000 2015","favourites_count":7482,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8695,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1017126046787821568\/Wrgn_iE7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1017126046787821568\/Wrgn_iE7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3096596876\/1629483387","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 06:23:50 +0000 2019","id":1186890959654572032,"id_str":"1186890959654572032","full_text":"Honored + to meet Dr. Enilda Romero-Hall. \nESU''s IDT alum. Currently serving as an + Associate Professor in the Department of Education at The University of Tampa, + where she is also the Graduate Coordinator of the Instructional Design and + Technology program.\n\n#AECT2019 #hornetpride https:\/\/t.co\/2bcVqG15lI","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"AECT2019","indices":[256,265]},{"text":"hornetpride","indices":[266,278]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186890949063897089,"id_str":"1186890949063897089","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHivB54UcAEEeer.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHivB54UcAEEeer.jpg","url":"https:\/\/t.co\/2bcVqG15lI","display_url":"pic.twitter.com\/2bcVqG15lI","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186890959654572032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186890949063897089,"id_str":"1186890949063897089","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHivB54UcAEEeer.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHivB54UcAEEeer.jpg","url":"https:\/\/t.co\/2bcVqG15lI","display_url":"pic.twitter.com\/2bcVqG15lI","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186890959654572032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:25:05 +0000 2019","id":1187057366270799872,"id_str":"1187057366270799872","full_text":"\u5b66\u4f1a\u306e\u69d8\u5b50\u306f + #aect19inspired #aect19 \u3067\u3002\u6765\u5e74\u306f\u3001Jacksonville, + FL\u3067\u958b\u50ac\u3002Proposal\u306f2\u6708\u306b\u3002\u65e5\u672c\u304b\u3089\u3082\u53c2\u52a0\u3057\u307e\u3057\u3087\u3046\u3002","truncated":false,"display_text_range":[0,83],"entities":{"hashtags":[{"text":"aect19inspired","indices":[7,22]},{"text":"aect19","indices":[23,30]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":65595602,"id_str":"65595602","name":"Yuki + Watanabe","screen_name":"yuuki5000","location":"Tokyo","description":"\u6e21\u8fba\u96c4\u8cb4\u3002\u6771\u4eac\u90fd\u51fa\u8eab\u3002\u3072\u3063\u305d\u308a\u3068\u6559\u80b2\u5de5\u5b66\u306e\u7814\u7a76\u3092\u3057\u3066\u307e\u3059\u3002\u6771\u4eac\u7406\u79d1\u5927\u5b66\u6559\u6388\u3002\u535a\u58eb\uff08\u5b66\u8853\uff09\u6771\u4eac\u5de5\u696d\u5927\u5b66 + \/ Professor (Educational Technology Lab.) at Tokyo University of Science, + Japan. Ph.D. Tokyo Tech","url":"https:\/\/t.co\/4RXslYSaqZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4RXslYSaqZ","expanded_url":"https:\/\/www.tus.ac.jp\/fac_grad\/p\/index.php?3bfc","display_url":"tus.ac.jp\/fac_grad\/p\/ind\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1130,"friends_count":314,"listed_count":43,"created_at":"Fri + Aug 14 08:42:14 +0000 2009","favourites_count":2992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12516,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1360616182319992838\/B-lMb0oC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1360616182319992838\/B-lMb0oC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65595602\/1440774032","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"ja"},{"created_at":"Wed + Oct 23 17:32:29 +0000 2019","id":1187059231330947073,"id_str":"1187059231330947073","full_text":"RT + @christieliuidtr: Come join us in Conference room 14 at 11 and then in Room + 1 at 4 today @AECT @aectclt @nicolapallitt #aect #aect19insp\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect","indices":[122,127]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[92,97]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[98,106]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[107,121]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:41:06 +0000 2019","id":1187031197819359235,"id_str":"1187031197819359235","full_text":"Come + join us in Conference room 14 at 11 and then in Room 1 at 4 today @AECT @aectclt + @nicolapallitt #aect #aect19inspired #aect19 intercultural and international + collaborative research https:\/\/t.co\/VfhCV44Ztw","truncated":false,"display_text_range":[0,185],"entities":{"hashtags":[{"text":"aect","indices":[101,106]},{"text":"aect19inspired","indices":[107,122]},{"text":"aect19","indices":[123,130]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[71,76]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[77,85]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[86,100]}],"urls":[{"url":"https:\/\/t.co\/VfhCV44Ztw","expanded_url":"https:\/\/twitter.com\/LiuJh_Christie\/status\/1185610918253776896","display_url":"twitter.com\/LiuJh_Christie\u2026","indices":[186,209]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1185610918253776896,"quoted_status_id_str":"1185610918253776896","quoted_status_permalink":{"url":"https:\/\/t.co\/VfhCV44Ztw","expanded":"https:\/\/twitter.com\/LiuJh_Christie\/status\/1185610918253776896","display":"twitter.com\/LiuJh_Christie\u2026"},"quoted_status":{"created_at":"Sat + Oct 19 17:37:25 +0000 2019","id":1185610918253776896,"id_str":"1185610918253776896","full_text":"Collaborations + @aectclt #aect19inspired #aect19 @AECT w\/ @nicolapallitt \ud835\udddb\ud835\uddee\ud835\uddfb\ud835\uddfb\ud835\uddee\ud835\uddf5 + \ud835\uddda\ud835\uddff\ud835\uddfc\ud835\ude00\ud835\ude00\ud835\uddfa\ud835\uddee\ud835\uddfb, + @AmyLomellini_ID \ud835\uddd4\ud835\uddf9\ud835\uddf6\ud835\uddf0\ud835\uddf2,\ud835\uddd5\ud835\uddf2\ud835\uddf0\ud835\uddfc\ud835\uddf9\ud835\uddee,\ud835\udde7\ud835\uddf6\ud835\uddee,\ud835\udde0\ud835\uddfa\ud835\uddee\ud835\uddef\ud835\uddee\ud835\uddf9\ud835\uddf2\ud835\uddf1\ud835\uddf6,\ud835\udddf\ud835\uddf2\ud835\uddee\ud835\uddf5,\ud835\udde1\ud835\uddf2\ud835\uddf6\ud835\uddf9,\ud835\uddfc\ud835\uddf9\ud835\ude02\ud835\ude04\ud835\uddee\ud835\ude00\ud835\uddf2\ud835\uddf3\ud835\ude02\ud835\uddfb\ud835\uddfa\ud835\uddf6,\ud835\udde1\ud835\uddfc\ud835\uddfa\ud835\uddfd\ud835\uddf6\ud835\uddf9\ud835\uddfc10\/23,11am + & 4pm. Safe travels @emergeAfrica friends! https:\/\/t.co\/Unp2OoqT6b","truncated":false,"display_text_range":[0,220],"entities":{"hashtags":[{"text":"aect19inspired","indices":[24,39]},{"text":"aect19","indices":[40,47]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[15,23]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[48,53]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[57,71]},{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[89,105]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[198,211]}],"urls":[],"media":[{"id":1185610914269151235,"id_str":"1185610914269151235","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"large":{"w":707,"h":393,"resize":"fit"},"medium":{"w":707,"h":393,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185610914269151235,"id_str":"1185610914269151235","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"large":{"w":707,"h":393,"resize":"fit"},"medium":{"w":707,"h":393,"resize":"fit"}},"ext_alt_text":null},{"id":1185610914281725953,"id_str":"1185610914281725953","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2EuWoAELmy-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2EuWoAELmy-.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":683,"h":381,"resize":"fit"},"large":{"w":683,"h":381,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":4,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1185610918253776896,"quoted_status_id_str":"1185610918253776896","quoted_status_permalink":{"url":"https:\/\/t.co\/VfhCV44Ztw","expanded":"https:\/\/twitter.com\/LiuJh_Christie\/status\/1185610918253776896","display":"twitter.com\/LiuJh_Christie\u2026"},"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:05:01 +0000 2019","id":1187052316597178368,"id_str":"1187052316597178368","full_text":"Buzzy + is busy hiding poker cards...can you find this one? #aect19inspired https:\/\/t.co\/OHBZPfLWgS","truncated":false,"display_text_range":[0,73],"entities":{"hashtags":[{"text":"aect19inspired","indices":[58,73]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187052306946084865,"id_str":"1187052306946084865","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlByK1UUAEA8iR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlByK1UUAEA8iR.jpg","url":"https:\/\/t.co\/OHBZPfLWgS","display_url":"pic.twitter.com\/OHBZPfLWgS","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1187052316597178368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187052306946084865,"id_str":"1187052306946084865","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlByK1UUAEA8iR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlByK1UUAEA8iR.jpg","url":"https:\/\/t.co\/OHBZPfLWgS","display_url":"pic.twitter.com\/OHBZPfLWgS","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1187052316597178368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":8005732,"id_str":"8005732","name":"rmreese","screen_name":"rmreese1","location":"Denver, + CO","description":"ID, edtech, all around gerd (geek+nerd). Opinions are my + own and RTs are not endorsements. Pronouns: she\/they","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":564,"friends_count":293,"listed_count":271,"created_at":"Mon + Aug 06 23:59:29 +0000 2007","favourites_count":960,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9941,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2A2828","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8005732\/1573836551","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"091378","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:58:24 +0000 2019","id":1187065752639037442,"id_str":"1187065752639037442","full_text":"RT + @kariknisely: \u201cIt\u2019s a Small World\u201d especially when we are connected + online with vast wide networks #AECT19 loving the discussion with @R\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[102,109]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 17:21:29 +0000 2019","id":1187056461429395456,"id_str":"1187056461429395456","full_text":"\u201cIt\u2019s + a Small World\u201d especially when we are connected online with vast wide + networks #AECT19 loving the discussion with @RitaFennelly @DrLaPrairie @WEHSLibrary + @KathyMansfield in Pavillion 11 https:\/\/t.co\/eaSzT1apnF","truncated":false,"display_text_range":[0,191],"entities":{"hashtags":[{"text":"AECT19","indices":[85,92]}],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[120,133]},{"screen_name":"WEHSLibrary","name":"Weslaco + East High School Library-Renee Dyer","id":175049060,"id_str":"175049060","indices":[147,159]},{"screen_name":"KathyMansfield","name":"Kathy + Mansfield","id":27742120,"id_str":"27742120","indices":[160,175]}],"urls":[],"media":[{"id":1187056426742501379,"id_str":"1187056426742501379","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlFh-RU0AMiMX2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlFh-RU0AMiMX2.jpg","url":"https:\/\/t.co\/eaSzT1apnF","display_url":"pic.twitter.com\/eaSzT1apnF","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1187056461429395456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187056426742501379,"id_str":"1187056426742501379","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlFh-RU0AMiMX2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlFh-RU0AMiMX2.jpg","url":"https:\/\/t.co\/eaSzT1apnF","display_url":"pic.twitter.com\/eaSzT1apnF","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1187056461429395456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:37:53 +0000 2019","id":1187060590507769856,"id_str":"1187060590507769856","full_text":"Gamification + presentation was awesome! Many thanks to all those who came out to watch this + morning! And a special shoutout to @AlbertRitzhaupt and @tammyhuangrui! #aect19 + https:\/\/t.co\/Z4xyYLqVCh","truncated":false,"display_text_range":[0,170],"entities":{"hashtags":[{"text":"aect19","indices":[163,170]}],"symbols":[],"user_mentions":[{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[126,142]}],"urls":[],"media":[{"id":1187060392695984128,"id_str":"1187060392695984128","indices":[171,194],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlJI0mUcAAkWqn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlJI0mUcAAkWqn.jpg","url":"https:\/\/t.co\/Z4xyYLqVCh","display_url":"pic.twitter.com\/Z4xyYLqVCh","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187060590507769856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1024,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187060392695984128,"id_str":"1187060392695984128","indices":[171,194],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlJI0mUcAAkWqn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlJI0mUcAAkWqn.jpg","url":"https:\/\/t.co\/Z4xyYLqVCh","display_url":"pic.twitter.com\/Z4xyYLqVCh","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187060590507769856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1024,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:31:28 +0000 2019","id":1187074072896655360,"id_str":"1187074072896655360","full_text":"RT + @RitaFennelly: Deans & directors of online distance education programs + @AECT How are you ensuring that grad students have access to oppo\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[78,83]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 18:18:23 +0000 2019","id":1187070778996482048,"id_str":"1187070778996482048","full_text":"Deans + & directors of online distance education programs @AECT How are you ensuring + that grad students have access to opportunities such as teaching & research + experiences typically offered in F2F programs? Grad distance ed students, + does your program offer them? #aect19inspired","truncated":false,"display_text_range":[0,286],"entities":{"hashtags":[{"text":"aect19inspired","indices":[271,286]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[60,65]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:53:00 +0000 2019","id":1187049295293366273,"id_str":"1187049295293366273","full_text":"RT + @RitaFennelly: Another great reflection from the @AECT panel AECT: Lessons + in Leadership in the Field of Educational Technology: The que\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[52,57]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2563684237,"id_str":"2563684237","name":"\ud835\ude1a\ud835\ude26\ud835\ude23\ud835\ude22\ud835\ude34\ud835\ude35\ud835\ude2a\ud835\ude22\ud835\ude2f + \ud835\ude13\ud835\ude30\ud835\ude31\ud835\ude26\ud835\ude3b \ud835\ude11\ud835\ude33., + M.Ed.","screen_name":"SebLopJr","location":"Beaumont, TX","description":"-Network + Admin -Ed.D student at @ISDT_SHSU -M.Ed. of Inst Tech from @SamHoustonState + -BAAS from @LamarUniversity -Google EDU *views expressed are my own*","url":"https:\/\/t.co\/UzLzwoVtIk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UzLzwoVtIk","expanded_url":"http:\/\/SebLopezJr.net","display_url":"SebLopezJr.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":760,"friends_count":2605,"listed_count":12,"created_at":"Thu + Jun 12 16:09:12 +0000 2014","favourites_count":13587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2025,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1129071740854951937\/YDv04AoR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1129071740854951937\/YDv04AoR_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2563684237\/1405631793","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0000A0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 16:50:45 +0000 2019","id":1187048725299884032,"id_str":"1187048725299884032","full_text":"Another + great reflection from the @AECT panel AECT: Lessons in Leadership in the Field + of Educational Technology: The questions you ask will determine the answers + you get #ProfessionalGoals #aect19inspired","truncated":false,"display_text_range":[0,206],"entities":{"hashtags":[{"text":"ProfessionalGoals","indices":[172,190]},{"text":"aect19inspired","indices":[191,206]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[34,39]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:03:57 +0000 2019","id":1187052050611392512,"id_str":"1187052050611392512","full_text":"RT + @RitaFennelly: Make sure to join us for our @AECT panel It\u2019s a Small + World: Decreasing the Distance One Tweet, Snap, & Post at a Time at\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[47,52]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2563684237,"id_str":"2563684237","name":"\ud835\ude1a\ud835\ude26\ud835\ude23\ud835\ude22\ud835\ude34\ud835\ude35\ud835\ude2a\ud835\ude22\ud835\ude2f + \ud835\ude13\ud835\ude30\ud835\ude31\ud835\ude26\ud835\ude3b \ud835\ude11\ud835\ude33., + M.Ed.","screen_name":"SebLopJr","location":"Beaumont, TX","description":"-Network + Admin -Ed.D student at @ISDT_SHSU -M.Ed. of Inst Tech from @SamHoustonState + -BAAS from @LamarUniversity -Google EDU *views expressed are my own*","url":"https:\/\/t.co\/UzLzwoVtIk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UzLzwoVtIk","expanded_url":"http:\/\/SebLopezJr.net","display_url":"SebLopezJr.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":760,"friends_count":2605,"listed_count":12,"created_at":"Thu + Jun 12 16:09:12 +0000 2014","favourites_count":13587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2025,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1129071740854951937\/YDv04AoR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1129071740854951937\/YDv04AoR_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2563684237\/1405631793","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0000A0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 14:40:54 +0000 2019","id":1187016049515827201,"id_str":"1187016049515827201","full_text":"Make + sure to join us for our @AECT panel It\u2019s a Small World: Decreasing the + Distance One Tweet, Snap, & Post at a Time at 10 AM in Pavillion 11. You + will have fun and learn how the distance grad experience matches up to the + literature. #aect19inspired https:\/\/t.co\/MiiSFEs5Tx","truncated":false,"display_text_range":[0,255],"entities":{"hashtags":[{"text":"aect19inspired","indices":[240,255]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[29,34]}],"urls":[],"media":[{"id":1187016044314943490,"id_str":"1187016044314943490","indices":[256,279],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkgzaAU4AITZKd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkgzaAU4AITZKd.jpg","url":"https:\/\/t.co\/MiiSFEs5Tx","display_url":"pic.twitter.com\/MiiSFEs5Tx","expanded_url":"https:\/\/twitter.com\/RitaFennelly\/status\/1187016049515827201\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":640,"resize":"fit"},"small":{"w":680,"h":387,"resize":"fit"},"medium":{"w":1125,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187016044314943490,"id_str":"1187016044314943490","indices":[256,279],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkgzaAU4AITZKd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkgzaAU4AITZKd.jpg","url":"https:\/\/t.co\/MiiSFEs5Tx","display_url":"pic.twitter.com\/MiiSFEs5Tx","expanded_url":"https:\/\/twitter.com\/RitaFennelly\/status\/1187016049515827201\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":640,"resize":"fit"},"small":{"w":680,"h":387,"resize":"fit"},"medium":{"w":1125,"h":640,"resize":"fit"}},"ext_alt_text":"It’s + a Small World: Decreasing the Distance One Tweet, Snap, & Post at a Time"}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:27:39 +0000 2019","id":1187073112187252739,"id_str":"1187073112187252739","full_text":"RT + @idtesu: The #AECT2019 Conference is a place of encounters. We ran into Dr. + Sungwoong Lee (former professor for the IDT program), and Da\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT2019","indices":[16,25]}],"symbols":[],"user_mentions":[{"screen_name":"idtesu","name":"ESU + Instructional Design & Technology Program","id":107144043,"id_str":"107144043","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3096596876,"id_str":"3096596876","name":"@TTC-ESU","screen_name":"TTC_ESU","location":"Emporia, + KS","description":"The Teachers College at Emporia State University: home + to programs preparing college students and professionals to enter careers + which improve lives.","url":"http:\/\/t.co\/MWFvY6tgQI","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/MWFvY6tgQI","expanded_url":"http:\/\/www.emporia.edu\/teach\/","display_url":"emporia.edu\/teach\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":883,"friends_count":162,"listed_count":16,"created_at":"Wed + Mar 18 17:32:16 +0000 2015","favourites_count":7482,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8695,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1017126046787821568\/Wrgn_iE7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1017126046787821568\/Wrgn_iE7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3096596876\/1629483387","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 06:34:41 +0000 2019","id":1186893689827708928,"id_str":"1186893689827708928","full_text":"The + #AECT2019 Conference is a place of encounters. We ran into Dr. Sungwoong Lee + (former professor for the IDT program), and Dan Watanabe (IDT alum), who is + currently visiting from Korea. https:\/\/t.co\/tfGYtasit1","truncated":false,"display_text_range":[0,187],"entities":{"hashtags":[{"text":"AECT2019","indices":[4,13]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186893670538043398,"id_str":"1186893670538043398","indices":[188,211],"media_url":"http:\/\/pbs.twimg.com\/media\/EHixgUKUYAYzoI8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHixgUKUYAYzoI8.jpg","url":"https:\/\/t.co\/tfGYtasit1","display_url":"pic.twitter.com\/tfGYtasit1","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186893689827708928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186893670538043398,"id_str":"1186893670538043398","indices":[188,211],"media_url":"http:\/\/pbs.twimg.com\/media\/EHixgUKUYAYzoI8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHixgUKUYAYzoI8.jpg","url":"https:\/\/t.co\/tfGYtasit1","display_url":"pic.twitter.com\/tfGYtasit1","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186893689827708928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:58:56 +0000 2019","id":1187065884080144384,"id_str":"1187065884080144384","full_text":"RT + @d_mulder: I\u2019m inspired to incorporate Sphero coding and robotics in + my courses! #aect19 #aect19inspired https:\/\/t.co\/RsuyPj8KXK","truncated":false,"display_text_range":[0,131],"entities":{"hashtags":[{"text":"aect19","indices":[84,91]},{"text":"aect19inspired","indices":[92,107]}],"symbols":[],"user_mentions":[{"screen_name":"d_mulder","name":"Dr. + Dave Mulder","id":30278154,"id_str":"30278154","indices":[3,12]}],"urls":[],"media":[{"id":1187052743229243393,"id_str":"1187052743229243393","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlCLkHVAAEnlGh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlCLkHVAAEnlGh.jpg","url":"https:\/\/t.co\/RsuyPj8KXK","display_url":"pic.twitter.com\/RsuyPj8KXK","expanded_url":"https:\/\/twitter.com\/d_mulder\/status\/1187052786980012032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1187052786980012032,"source_status_id_str":"1187052786980012032","source_user_id":30278154,"source_user_id_str":"30278154"}]},"extended_entities":{"media":[{"id":1187052743229243393,"id_str":"1187052743229243393","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlCLkHVAAEnlGh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlCLkHVAAEnlGh.jpg","url":"https:\/\/t.co\/RsuyPj8KXK","display_url":"pic.twitter.com\/RsuyPj8KXK","expanded_url":"https:\/\/twitter.com\/d_mulder\/status\/1187052786980012032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1187052786980012032,"source_status_id_str":"1187052786980012032","source_user_id":30278154,"source_user_id_str":"30278154","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 17:06:53 +0000 2019","id":1187052786980012032,"id_str":"1187052786980012032","full_text":"I\u2019m + inspired to incorporate Sphero coding and robotics in my courses! #aect19 + #aect19inspired https:\/\/t.co\/RsuyPj8KXK","truncated":false,"display_text_range":[0,93],"entities":{"hashtags":[{"text":"aect19","indices":[70,77]},{"text":"aect19inspired","indices":[78,93]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187052743229243393,"id_str":"1187052743229243393","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlCLkHVAAEnlGh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlCLkHVAAEnlGh.jpg","url":"https:\/\/t.co\/RsuyPj8KXK","display_url":"pic.twitter.com\/RsuyPj8KXK","expanded_url":"https:\/\/twitter.com\/d_mulder\/status\/1187052786980012032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187052743229243393,"id_str":"1187052743229243393","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlCLkHVAAEnlGh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlCLkHVAAEnlGh.jpg","url":"https:\/\/t.co\/RsuyPj8KXK","display_url":"pic.twitter.com\/RsuyPj8KXK","expanded_url":"https:\/\/twitter.com\/d_mulder\/status\/1187052786980012032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":30278154,"id_str":"30278154","name":"Dr. + Dave Mulder","screen_name":"d_mulder","location":"Iowa","description":"Christ-follower. + Husband of one and dad of two. Professor of Education at @dordtuniversity. + #EdTech is my jam. My tweets speak only for me.","url":"https:\/\/t.co\/i9IOUI9RZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/i9IOUI9RZC","expanded_url":"https:\/\/drdave.substack.com\/","display_url":"drdave.substack.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3921,"friends_count":949,"listed_count":249,"created_at":"Fri + Apr 10 18:27:10 +0000 2009","favourites_count":39976,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30278154\/1568172162","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:09:00 +0000 2019","id":1187068420124053506,"id_str":"1187068420124053506","full_text":"RT + @AECT: Inspired at the Breakfast with Champions. #AECT19 #AECT19inspired https:\/\/t.co\/SgI1xLUXN3","truncated":false,"display_text_range":[0,99],"entities":{"hashtags":[{"text":"AECT19","indices":[52,59]},{"text":"AECT19inspired","indices":[60,75]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[],"media":[{"id":1187028316479311873,"id_str":"1187028316479311873","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","url":"https:\/\/t.co\/SgI1xLUXN3","display_url":"pic.twitter.com\/SgI1xLUXN3","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187028345168379906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1272,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"medium":{"w":1200,"h":745,"resize":"fit"}},"source_status_id":1187028345168379906,"source_status_id_str":"1187028345168379906","source_user_id":12030342,"source_user_id_str":"12030342"}]},"extended_entities":{"media":[{"id":1187028316479311873,"id_str":"1187028316479311873","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","url":"https:\/\/t.co\/SgI1xLUXN3","display_url":"pic.twitter.com\/SgI1xLUXN3","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187028345168379906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1272,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"medium":{"w":1200,"h":745,"resize":"fit"}},"source_status_id":1187028345168379906,"source_status_id_str":"1187028345168379906","source_user_id":12030342,"source_user_id_str":"12030342","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":930858708258738178,"id_str":"930858708258738178","name":"Sabina + KC","screen_name":"kcsabina_","location":"Odessa, TX","description":"Ed.D, + Instructional Design and Performance Technology, Instructional Designer, Life + Coach, Dreamer, Do-er, Achiever, Optimist, Learner, Teacher","url":"https:\/\/t.co\/IBPYKJja50","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IBPYKJja50","expanded_url":"https:\/\/www.linkedin.com\/in\/sabina-k-c-044b77133\/","display_url":"linkedin.com\/in\/sabina-k-c-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":496,"listed_count":2,"created_at":"Wed + Nov 15 18:03:05 +0000 2017","favourites_count":3136,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":415,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1390058813223575560\/eKI3EIR__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1390058813223575560\/eKI3EIR__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/930858708258738178\/1613749154","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:29:46 +0000 2019","id":1187028345168379906,"id_str":"1187028345168379906","full_text":"Inspired + at the Breakfast with Champions. #AECT19 #AECT19inspired https:\/\/t.co\/SgI1xLUXN3","truncated":false,"display_text_range":[0,65],"entities":{"hashtags":[{"text":"AECT19","indices":[42,49]},{"text":"AECT19inspired","indices":[50,65]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187028316479311873,"id_str":"1187028316479311873","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","url":"https:\/\/t.co\/SgI1xLUXN3","display_url":"pic.twitter.com\/SgI1xLUXN3","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187028345168379906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1272,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"medium":{"w":1200,"h":745,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187028316479311873,"id_str":"1187028316479311873","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","url":"https:\/\/t.co\/SgI1xLUXN3","display_url":"pic.twitter.com\/SgI1xLUXN3","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187028345168379906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1272,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"medium":{"w":1200,"h":745,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:10:02 +0000 2019","id":1187068679508221952,"id_str":"1187068679508221952","full_text":"Great + panel starting #aect19inspired #RRUMALAT looks like they are recording - will + send the link once it is shared https:\/\/t.co\/2M9nzhrJw8","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect19inspired","indices":[21,36]},{"text":"RRUMALAT","indices":[37,46]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187068477053358080,"id_str":"1187068477053358080","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQfZLUUAA9ZeG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQfZLUUAA9ZeG.jpg","url":"https:\/\/t.co\/2M9nzhrJw8","display_url":"pic.twitter.com\/2M9nzhrJw8","expanded_url":"https:\/\/twitter.com\/ChildsElizabeth\/status\/1187068679508221952\/photo\/1","type":"photo","sizes":{"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187068477053358080,"id_str":"1187068477053358080","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQfZLUUAA9ZeG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQfZLUUAA9ZeG.jpg","url":"https:\/\/t.co\/2M9nzhrJw8","display_url":"pic.twitter.com\/2M9nzhrJw8","expanded_url":"https:\/\/twitter.com\/ChildsElizabeth\/status\/1187068679508221952\/photo\/1","type":"photo","sizes":{"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":875476274,"id_str":"875476274","name":"Elizabeth + Childs","screen_name":"ChildsElizabeth","location":"Victoria, BC","description":"Professor + & Program Head #RRUMALAT @royalroads","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":596,"friends_count":252,"listed_count":33,"created_at":"Fri + Oct 12 11:54:12 +0000 2012","favourites_count":1631,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1722,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204925361563136000\/f2SMJOBD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204925361563136000\/f2SMJOBD_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:44:05 +0000 2019","id":1187062149811724290,"id_str":"1187062149811724290","full_text":"RT + @EdTech_Books: Excited to present on our open textbook platform at the Poster + Session walkthrough at @ 4pm #aect19 https:\/\/t.co\/5FduWqSg\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[110,117]}],"symbols":[],"user_mentions":[{"screen_name":"EdTech_Books","name":"EdTech + Books","id":1113476916076367872,"id_str":"1113476916076367872","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1145777197044719616,"id_str":"1145777197044719616","name":"Ekaterina + Rzyankina","screen_name":"Ekateri52105267","location":"Cape Town and online","description":"PhD + candidate in Engineering Education at UCT, reader of E-textbook in Engineering + context, digital literacy practices,student support,CHAT,MDA. #Iamanengineer#","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":313,"friends_count":1009,"listed_count":3,"created_at":"Mon + Jul 01 19:32:26 +0000 2019","favourites_count":3451,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":772,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1276174955093385217\/6GV2w3fe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1276174955093385217\/6GV2w3fe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1145777197044719616\/1645008572","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 21:09:41 +0000 2019","id":1186751501214990336,"id_str":"1186751501214990336","full_text":"Excited + to present on our open textbook platform at the Poster Session walkthrough + at @ 4pm #aect19 https:\/\/t.co\/5FduWqSgsE #opentextbooks #oer https:\/\/t.co\/TMjdrWbpCK","truncated":false,"display_text_range":[0,143],"entities":{"hashtags":[{"text":"aect19","indices":[92,99]},{"text":"opentextbooks","indices":[124,138]},{"text":"oer","indices":[139,143]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5FduWqSgsE","expanded_url":"http:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[100,123]}],"media":[{"id":1186751395464015872,"id_str":"1186751395464015872","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","url":"https:\/\/t.co\/TMjdrWbpCK","display_url":"pic.twitter.com\/TMjdrWbpCK","expanded_url":"https:\/\/twitter.com\/EdTech_Books\/status\/1186751501214990336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186751395464015872,"id_str":"1186751395464015872","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","url":"https:\/\/t.co\/TMjdrWbpCK","display_url":"pic.twitter.com\/TMjdrWbpCK","expanded_url":"https:\/\/twitter.com\/EdTech_Books\/status\/1186751501214990336\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHgwG0NU8AA4CR1.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1113476916076367872,"id_str":"1113476916076367872","name":"EdTech + Books","screen_name":"EdTech_Books","location":"","description":"All free + textbooks, all the time. Knowledge should be free, and ed tech should lead + the way! #oer #opentextbooks https:\/\/t.co\/IXVNmS1hst\n@roycekimmons","url":"https:\/\/t.co\/IXVNmSiSk1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IXVNmSiSk1","expanded_url":"https:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/IXVNmS1hst","expanded_url":"https:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[113,136]}]}},"protected":false,"followers_count":88,"friends_count":0,"listed_count":1,"created_at":"Wed + Apr 03 16:22:38 +0000 2019","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1167102969390567424\/zPs5eiTv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1167102969390567424\/zPs5eiTv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1113476916076367872\/1568320929","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:32:53 +0000 2019","id":1187074429810929664,"id_str":"1187074429810929664","full_text":"RT + @RitaFennelly: Reflection allows you to grow and take your professional practice + to the next level from the @AECT panel AECT: Lessons in\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[111,116]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 16:52:25 +0000 2019","id":1187049146831687680,"id_str":"1187049146831687680","full_text":"Reflection + allows you to grow and take your professional practice to the next level from + the @AECT panel AECT: Lessons in Leadership in the Field of Educational Technology + #ProfessionalGoals #aect19inspired","truncated":false,"display_text_range":[0,206],"entities":{"hashtags":[{"text":"ProfessionalGoals","indices":[172,190]},{"text":"aect19inspired","indices":[191,206]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[93,98]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:43:48 +0000 2019","id":1187062078407753728,"id_str":"1187062078407753728","full_text":"RT + @hampthephd: Gamification presentation was awesome! Many thanks to all those + who came out to watch this morning! And a special shoutout\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hampthephd","name":"John + Hampton, PhD","id":936686250,"id_str":"936686250","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988637594,"id_str":"2988637594","name":"Rui + \"Tammy\" Huang","screen_name":"ruitammyhuang","location":"FL","description":"PhD, + fellow in Ed Tech @UF_COE, game-based learning and immersive technology researcher, + designer & developer. Learning experience design researcher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":185,"listed_count":6,"created_at":"Wed + Jan 21 02:08:50 +0000 2015","favourites_count":399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988637594\/1621697544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 17:37:53 +0000 2019","id":1187060590507769856,"id_str":"1187060590507769856","full_text":"Gamification + presentation was awesome! Many thanks to all those who came out to watch this + morning! And a special shoutout to @AlbertRitzhaupt and @tammyhuangrui! #aect19 + https:\/\/t.co\/Z4xyYLqVCh","truncated":false,"display_text_range":[0,170],"entities":{"hashtags":[{"text":"aect19","indices":[163,170]}],"symbols":[],"user_mentions":[{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[126,142]}],"urls":[],"media":[{"id":1187060392695984128,"id_str":"1187060392695984128","indices":[171,194],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlJI0mUcAAkWqn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlJI0mUcAAkWqn.jpg","url":"https:\/\/t.co\/Z4xyYLqVCh","display_url":"pic.twitter.com\/Z4xyYLqVCh","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187060590507769856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1024,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187060392695984128,"id_str":"1187060392695984128","indices":[171,194],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlJI0mUcAAkWqn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlJI0mUcAAkWqn.jpg","url":"https:\/\/t.co\/Z4xyYLqVCh","display_url":"pic.twitter.com\/Z4xyYLqVCh","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187060590507769856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":1024,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:13:44 +0000 2019","id":1187069608525623296,"id_str":"1187069608525623296","full_text":"Recording + set up for Dave Merrill and others session on the past and future of the field. #aect19inspired","truncated":false,"display_text_range":[0,106],"entities":{"hashtags":[{"text":"aect19inspired","indices":[91,106]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17467478,"id_str":"17467478","name":"Marshall + G. Jones","screen_name":"marshallgjones","location":"Rock Hill, SC USA","description":"Professor + of Learning Design & Technology. Musician. Photographer. Tweeting about learning, + technology & whatever else strikes me. Tweets are my own.","url":"https:\/\/t.co\/HGRry3tHo4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HGRry3tHo4","expanded_url":"http:\/\/marshallgjones.com","display_url":"marshallgjones.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1022,"friends_count":889,"listed_count":71,"created_at":"Tue + Nov 18 18:26:51 +0000 2008","favourites_count":7553,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8342,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17467478\/1570054414","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:56:31 +0000 2019","id":1187065277499899905,"id_str":"1187065277499899905","full_text":"RT + @robmoore3: My session with @profoyarzun and Florence Martin is about to start! + Come to Pavilion 10 at 2pm to learn about our study on o\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[3,13]},{"screen_name":"profoyarzun","name":"Beth + Oyarzun","id":19023356,"id_str":"19023356","indices":[31,43]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 17:45:00 +0000 2019","id":1187062378808172546,"id_str":"1187062378808172546","full_text":"My + session with @profoyarzun and Florence Martin is about to start! Come to Pavilion + 10 at 2pm to learn about our study on online faculty perceptions of time management + strategies. #AECT19 #aect19inspired https:\/\/t.co\/vH6MsTrJJP https:\/\/t.co\/D94ALdo6TE","truncated":false,"display_text_range":[0,228],"entities":{"hashtags":[{"text":"AECT19","indices":[181,188]},{"text":"aect19inspired","indices":[189,204]}],"symbols":[],"user_mentions":[{"screen_name":"profoyarzun","name":"Beth + Oyarzun","id":19023356,"id_str":"19023356","indices":[16,28]}],"urls":[{"url":"https:\/\/t.co\/vH6MsTrJJP","expanded_url":"http:\/\/bit.ly\/2Bj6kfg","display_url":"bit.ly\/2Bj6kfg","indices":[205,228]}],"media":[{"id":1184454360820076544,"id_str":"1184454360820076544","indices":[229,252],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAG9zVX0AA4qeW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAG9zVX0AA4qeW.png","url":"https:\/\/t.co\/D94ALdo6TE","display_url":"pic.twitter.com\/D94ALdo6TE","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187062378808172546\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":498,"resize":"fit"},"large":{"w":723,"h":529,"resize":"fit"},"medium":{"w":723,"h":529,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1184454360820076544,"id_str":"1184454360820076544","indices":[229,252],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAG9zVX0AA4qeW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAG9zVX0AA4qeW.png","url":"https:\/\/t.co\/D94ALdo6TE","display_url":"pic.twitter.com\/D94ALdo6TE","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187062378808172546\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":498,"resize":"fit"},"large":{"w":723,"h":529,"resize":"fit"},"medium":{"w":723,"h":529,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:57:22 +0000 2019","id":1187065493703643137,"id_str":"1187065493703643137","full_text":"RT + @arasbozkurt: Ed Tech, great convos, friends, coffee and Las Vegas. Enjoying + great time here at #AECT19","truncated":false,"display_text_range":[0,107],"entities":{"hashtags":[{"text":"AECT19","indices":[100,107]}],"symbols":[],"user_mentions":[{"screen_name":"arasbozkurt","name":"Aras + Bozkurt","id":83447547,"id_str":"83447547","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 17:49:36 +0000 2019","id":1187063536326832128,"id_str":"1187063536326832128","full_text":"Ed + Tech, great convos, friends, coffee and Las Vegas. Enjoying great time here + at #AECT19","truncated":false,"display_text_range":[0,90],"entities":{"hashtags":[{"text":"AECT19","indices":[83,90]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:14:33 +0000 2019","id":1187054714950545410,"id_str":"1187054714950545410","full_text":"Interesting + simulation to design education to acquire some global competene. https:\/\/t.co\/095gydztwa + . Good talk by Daniel L. Hoffman and Seungoh Paek at #aect19inspired","truncated":false,"display_text_range":[0,169],"entities":{"hashtags":[{"text":"aect19inspired","indices":[154,169]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/095gydztwa","expanded_url":"http:\/\/www.akwaaba.org\/Simpolicon.aspx","display_url":"akwaaba.org\/Simpolicon.aspx","indices":[77,100]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:57:15 +0000 2019","id":1187065460941934592,"id_str":"1187065460941934592","full_text":"RT + @hampthephd: Great turnout for our gamification presentation! #aect19 https:\/\/t.co\/oxlBCB5QHZ","truncated":false,"display_text_range":[0,96],"entities":{"hashtags":[{"text":"aect19","indices":[65,72]}],"symbols":[],"user_mentions":[{"screen_name":"hampthephd","name":"John + Hampton, PhD","id":936686250,"id_str":"936686250","indices":[3,14]}],"urls":[],"media":[{"id":1187063535701909504,"id_str":"1187063535701909504","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187063535701909504\/pu\/img\/5DPLKZbNQ9Frr00i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187063535701909504\/pu\/img\/5DPLKZbNQ9Frr00i.jpg","url":"https:\/\/t.co\/oxlBCB5QHZ","display_url":"pic.twitter.com\/oxlBCB5QHZ","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187063591188385793\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1187063591188385793,"source_status_id_str":"1187063591188385793","source_user_id":936686250,"source_user_id_str":"936686250"}]},"extended_entities":{"media":[{"id":1187063535701909504,"id_str":"1187063535701909504","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187063535701909504\/pu\/img\/5DPLKZbNQ9Frr00i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187063535701909504\/pu\/img\/5DPLKZbNQ9Frr00i.jpg","url":"https:\/\/t.co\/oxlBCB5QHZ","display_url":"pic.twitter.com\/oxlBCB5QHZ","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187063591188385793\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1187063591188385793,"source_status_id_str":"1187063591188385793","source_user_id":936686250,"source_user_id_str":"936686250","video_info":{"aspect_ratio":[16,9],"duration_millis":7598,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187063535701909504\/pu\/pl\/3ud_JkNw4x0bYemW.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187063535701909504\/pu\/vid\/480x270\/WPwWuyOfvFeMkisG.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187063535701909504\/pu\/vid\/1280x720\/xUbHIwZblENUstlQ.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187063535701909504\/pu\/vid\/640x360\/AxsSetoz2XCmKzTk.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false,"source_user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]}}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 17:49:49 +0000 2019","id":1187063591188385793,"id_str":"1187063591188385793","full_text":"Great + turnout for our gamification presentation! #aect19 https:\/\/t.co\/oxlBCB5QHZ","truncated":false,"display_text_range":[0,56],"entities":{"hashtags":[{"text":"aect19","indices":[49,56]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187063535701909504,"id_str":"1187063535701909504","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187063535701909504\/pu\/img\/5DPLKZbNQ9Frr00i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187063535701909504\/pu\/img\/5DPLKZbNQ9Frr00i.jpg","url":"https:\/\/t.co\/oxlBCB5QHZ","display_url":"pic.twitter.com\/oxlBCB5QHZ","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187063591188385793\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187063535701909504,"id_str":"1187063535701909504","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187063535701909504\/pu\/img\/5DPLKZbNQ9Frr00i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1187063535701909504\/pu\/img\/5DPLKZbNQ9Frr00i.jpg","url":"https:\/\/t.co\/oxlBCB5QHZ","display_url":"pic.twitter.com\/oxlBCB5QHZ","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1187063591188385793\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":7598,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187063535701909504\/pu\/pl\/3ud_JkNw4x0bYemW.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187063535701909504\/pu\/vid\/480x270\/WPwWuyOfvFeMkisG.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187063535701909504\/pu\/vid\/1280x720\/xUbHIwZblENUstlQ.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1187063535701909504\/pu\/vid\/640x360\/AxsSetoz2XCmKzTk.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:52:08 +0000 2019","id":1187064174083334144,"id_str":"1187064174083334144","full_text":"RT + @tutaleni: Thank you for joining our \"How do Pre-service teachers understandings + of computational thinking change?\" session! @jweeble #a\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]},{"screen_name":"jweeble","name":"Jennifer + Weible","id":28419864,"id_str":"28419864","indices":[128,136]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28419864,"id_str":"28419864","name":"Jennifer + Weible","screen_name":"jweeble","location":"Mount Pleasant, MI","description":"I\u2019m + a geeky and awkward mother, friend, poet, researcher, and STEM\/Ed\/Tech prof. Lover + of technology, curiosity, coffee, puns, and chocolate ...says it all.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1353,"friends_count":3966,"listed_count":135,"created_at":"Thu + Apr 02 21:04:36 +0000 2009","favourites_count":6635,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2909,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1238828758695583747\/QtthdhCO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1238828758695583747\/QtthdhCO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28419864\/1584194768","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:12:07 +0000 2019","id":1186737013384368128,"id_str":"1186737013384368128","full_text":"Thank + you for joining our \"How do Pre-service teachers understandings of computational + thinking change?\" session! @jweeble #aect19inspired #aect19 https:\/\/t.co\/ihXT0d8BG3","truncated":false,"display_text_range":[0,146],"entities":{"hashtags":[{"text":"aect19inspired","indices":[123,138]},{"text":"aect19","indices":[139,146]}],"symbols":[],"user_mentions":[{"screen_name":"jweeble","name":"Jennifer + Weible","id":28419864,"id_str":"28419864","indices":[114,122]}],"urls":[],"media":[{"id":1186737008883855360,"id_str":"1186737008883855360","indices":[147,170],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgjBaBU8AA0Azi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgjBaBU8AA0Azi.jpg","url":"https:\/\/t.co\/ihXT0d8BG3","display_url":"pic.twitter.com\/ihXT0d8BG3","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1186737013384368128\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":405,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":720,"h":405,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186737008883855360,"id_str":"1186737008883855360","indices":[147,170],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgjBaBU8AA0Azi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgjBaBU8AA0Azi.jpg","url":"https:\/\/t.co\/ihXT0d8BG3","display_url":"pic.twitter.com\/ihXT0d8BG3","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1186737013384368128\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":405,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":720,"h":405,"resize":"fit"}},"ext_alt_text":null},{"id":1186737008883879936,"id_str":"1186737008883879936","indices":[147,170],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgjBaBVUAADlTU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgjBaBVUAADlTU.jpg","url":"https:\/\/t.co\/ihXT0d8BG3","display_url":"pic.twitter.com\/ihXT0d8BG3","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1186737013384368128\/photo\/1","type":"photo","sizes":{"medium":{"w":720,"h":405,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":405,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:33:18 +0000 2019","id":1187074535767457792,"id_str":"1187074535767457792","full_text":"RT + @tammyhuangrui: Thanks @hampthephd @AlbertRitzhaupt for a successful gamification + meta-analysis presentation at #aect19 #aect19inspired\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[116,123]},{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"hampthephd","name":"John + Hampton, PhD","id":936686250,"id_str":"936686250","indices":[26,37]},{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[39,55]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 18:08:48 +0000 2019","id":1187068368995536896,"id_str":"1187068368995536896","full_text":"Thanks + @hampthephd @AlbertRitzhaupt for a successful gamification meta-analysis + presentation at #aect19 #aect19inspired. It\u2019s a sign of compliment when + people ask you where the paper will be published. https:\/\/t.co\/5gGeOKHpBo","truncated":false,"display_text_range":[0,202],"entities":{"hashtags":[{"text":"aect19","indices":[97,104]},{"text":"aect19inspired","indices":[105,120]}],"symbols":[],"user_mentions":[{"screen_name":"hampthephd","name":"John + Hampton, PhD","id":936686250,"id_str":"936686250","indices":[7,18]},{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[20,36]}],"urls":[],"media":[{"id":1187068359566716929,"id_str":"1187068359566716929","indices":[203,226],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQYjgUcAEQPci.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQYjgUcAEQPci.jpg","url":"https:\/\/t.co\/5gGeOKHpBo","display_url":"pic.twitter.com\/5gGeOKHpBo","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187068368995536896\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187068359566716929,"id_str":"1187068359566716929","indices":[203,226],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQYjgUcAEQPci.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQYjgUcAEQPci.jpg","url":"https:\/\/t.co\/5gGeOKHpBo","display_url":"pic.twitter.com\/5gGeOKHpBo","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187068368995536896\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187068359570931713,"id_str":"1187068359570931713","indices":[203,226],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQYjhUwAEKU59.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQYjhUwAEKU59.jpg","url":"https:\/\/t.co\/5gGeOKHpBo","display_url":"pic.twitter.com\/5gGeOKHpBo","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187068368995536896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187068359566753793,"id_str":"1187068359566753793","indices":[203,226],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQYjgVAAEZYW1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQYjgVAAEZYW1.jpg","url":"https:\/\/t.co\/5gGeOKHpBo","display_url":"pic.twitter.com\/5gGeOKHpBo","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187068368995536896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988637594,"id_str":"2988637594","name":"Rui + \"Tammy\" Huang","screen_name":"ruitammyhuang","location":"FL","description":"PhD, + fellow in Ed Tech @UF_COE, game-based learning and immersive technology researcher, + designer & developer. Learning experience design researcher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":185,"listed_count":6,"created_at":"Wed + Jan 21 02:08:50 +0000 2015","favourites_count":399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988637594\/1621697544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:19:32 +0000 2019","id":1187071069061963776,"id_str":"1187071069061963776","full_text":"Meatloaf + would do THAT, if I told him to #aect19","truncated":false,"display_text_range":[0,48],"entities":{"hashtags":[{"text":"aect19","indices":[41,48]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:49:36 +0000 2019","id":1187063536326832128,"id_str":"1187063536326832128","full_text":"Ed + Tech, great convos, friends, coffee and Las Vegas. Enjoying great time here + at #AECT19","truncated":false,"display_text_range":[0,90],"entities":{"hashtags":[{"text":"AECT19","indices":[83,90]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:50:45 +0000 2019","id":1187048725299884032,"id_str":"1187048725299884032","full_text":"Another + great reflection from the @AECT panel AECT: Lessons in Leadership in the Field + of Educational Technology: The questions you ask will determine the answers + you get #ProfessionalGoals #aect19inspired","truncated":false,"display_text_range":[0,206],"entities":{"hashtags":[{"text":"ProfessionalGoals","indices":[172,190]},{"text":"aect19inspired","indices":[191,206]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[34,39]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:52:25 +0000 2019","id":1187049146831687680,"id_str":"1187049146831687680","full_text":"Reflection + allows you to grow and take your professional practice to the next level from + the @AECT panel AECT: Lessons in Leadership in the Field of Educational Technology + #ProfessionalGoals #aect19inspired","truncated":false,"display_text_range":[0,206],"entities":{"hashtags":[{"text":"ProfessionalGoals","indices":[172,190]},{"text":"aect19inspired","indices":[191,206]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[93,98]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:00:31 +0000 2019","id":1187066283763720192,"id_str":"1187066283763720192","full_text":"RT + @ChangeIt4Better: Drs. Baaki & Tracey offer persona empathic design to + teach students how to have empathy for the learners to improve in\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ChangeIt4Better","name":"Dr. + Suzanne Ensmann","id":1596150056,"id_str":"1596150056","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 17:57:42 +0000 2019","id":1187065576906035200,"id_str":"1187065576906035200","full_text":"Drs. + Baaki & Tracey offer persona empathic design to teach students how to + have empathy for the learners to improve instructional design. #eme601 #eme607 + #eme603 #aect19inspired #aect2019 https:\/\/t.co\/ua9r17wVRV","truncated":false,"display_text_range":[0,191],"entities":{"hashtags":[{"text":"eme601","indices":[142,149]},{"text":"eme607","indices":[150,157]},{"text":"eme603","indices":[158,165]},{"text":"aect19inspired","indices":[166,181]},{"text":"aect2019","indices":[182,191]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187065555250868224,"id_str":"1187065555250868224","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlN1UnUcAACX2g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlN1UnUcAACX2g.jpg","url":"https:\/\/t.co\/ua9r17wVRV","display_url":"pic.twitter.com\/ua9r17wVRV","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187065576906035200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187065555250868224,"id_str":"1187065555250868224","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlN1UnUcAACX2g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlN1UnUcAACX2g.jpg","url":"https:\/\/t.co\/ua9r17wVRV","display_url":"pic.twitter.com\/ua9r17wVRV","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187065576906035200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187065555238313985,"id_str":"1187065555238313985","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlN1UkU4AEbQYu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlN1UkU4AEbQYu.jpg","url":"https:\/\/t.co\/ua9r17wVRV","display_url":"pic.twitter.com\/ua9r17wVRV","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187065576906035200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187065555255037953,"id_str":"1187065555255037953","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlN1UoUEAExVCd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlN1UoUEAExVCd.jpg","url":"https:\/\/t.co\/ua9r17wVRV","display_url":"pic.twitter.com\/ua9r17wVRV","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187065576906035200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187065555494133761,"id_str":"1187065555494133761","indices":[192,215],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlN1VhUYAE_FZY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlN1VhUYAE_FZY.jpg","url":"https:\/\/t.co\/ua9r17wVRV","display_url":"pic.twitter.com\/ua9r17wVRV","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1187065576906035200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 18:00:25 +0000 2019","id":1187066258140721152,"id_str":"1187066258140721152","full_text":"RT + @tammyhuangrui: Thanks for those who were interested in my poster! I enjoyed + the conversation and information exchange #aect19 #aect19in\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[122,129]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 17:57:48 +0000 2019","id":1187065601228820480,"id_str":"1187065601228820480","full_text":"Thanks + for those who were interested in my poster! I enjoyed the conversation and + information exchange #aect19 #aect19inspired https:\/\/t.co\/CkZHe6kbT2","truncated":false,"display_text_range":[0,126],"entities":{"hashtags":[{"text":"aect19","indices":[103,110]},{"text":"aect19inspired","indices":[111,126]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187065593804947456,"id_str":"1187065593804947456","indices":[127,150],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlN3kPVAAAinRv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlN3kPVAAAinRv.jpg","url":"https:\/\/t.co\/CkZHe6kbT2","display_url":"pic.twitter.com\/CkZHe6kbT2","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187065601228820480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1136,"h":1200,"resize":"fit"},"large":{"w":1938,"h":2048,"resize":"fit"},"small":{"w":643,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187065593804947456,"id_str":"1187065593804947456","indices":[127,150],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlN3kPVAAAinRv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlN3kPVAAAinRv.jpg","url":"https:\/\/t.co\/CkZHe6kbT2","display_url":"pic.twitter.com\/CkZHe6kbT2","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1187065601228820480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1136,"h":1200,"resize":"fit"},"large":{"w":1938,"h":2048,"resize":"fit"},"small":{"w":643,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988637594,"id_str":"2988637594","name":"Rui + \"Tammy\" Huang","screen_name":"ruitammyhuang","location":"FL","description":"PhD, + fellow in Ed Tech @UF_COE, game-based learning and immersive technology researcher, + designer & developer. Learning experience design researcher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":185,"listed_count":6,"created_at":"Wed + Jan 21 02:08:50 +0000 2015","favourites_count":399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988637594\/1621697544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:45:00 +0000 2019","id":1187062378808172546,"id_str":"1187062378808172546","full_text":"My + session with @profoyarzun and Florence Martin is about to start! Come to Pavilion + 10 at 2pm to learn about our study on online faculty perceptions of time management + strategies. #AECT19 #aect19inspired https:\/\/t.co\/vH6MsTrJJP https:\/\/t.co\/D94ALdo6TE","truncated":false,"display_text_range":[0,228],"entities":{"hashtags":[{"text":"AECT19","indices":[181,188]},{"text":"aect19inspired","indices":[189,204]}],"symbols":[],"user_mentions":[{"screen_name":"profoyarzun","name":"Beth + Oyarzun","id":19023356,"id_str":"19023356","indices":[16,28]}],"urls":[{"url":"https:\/\/t.co\/vH6MsTrJJP","expanded_url":"http:\/\/bit.ly\/2Bj6kfg","display_url":"bit.ly\/2Bj6kfg","indices":[205,228]}],"media":[{"id":1184454360820076544,"id_str":"1184454360820076544","indices":[229,252],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAG9zVX0AA4qeW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAG9zVX0AA4qeW.png","url":"https:\/\/t.co\/D94ALdo6TE","display_url":"pic.twitter.com\/D94ALdo6TE","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187062378808172546\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":498,"resize":"fit"},"large":{"w":723,"h":529,"resize":"fit"},"medium":{"w":723,"h":529,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1184454360820076544,"id_str":"1184454360820076544","indices":[229,252],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAG9zVX0AA4qeW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAG9zVX0AA4qeW.png","url":"https:\/\/t.co\/D94ALdo6TE","display_url":"pic.twitter.com\/D94ALdo6TE","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187062378808172546\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":498,"resize":"fit"},"large":{"w":723,"h":529,"resize":"fit"},"medium":{"w":723,"h":529,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:56:37 +0000 2019","id":1187065303747842048,"id_str":"1187065303747842048","full_text":"RT + @VanekJen: More learning at #aect19inspired \u201cempathic design process\u201d + key to supporting development of useful & relevant online courses.\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19inspired","indices":[31,46]}],"symbols":[],"user_mentions":[{"screen_name":"VanekJen","name":"Jen + Vanek","id":805816250,"id_str":"805816250","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 17:41:20 +0000 2019","id":1187061456203743234,"id_str":"1187061456203743234","full_text":"More + learning at #aect19inspired \u201cempathic design process\u201d key to supporting + development of useful & relevant online courses. #IDEALConsortiun https:\/\/t.co\/WGAh1Cjd7d","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[{"text":"aect19inspired","indices":[17,32]},{"text":"IDEALConsortiun","indices":[132,148]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187061437283201025,"id_str":"1187061437283201025","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlKFn_UcAE-Bvd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlKFn_UcAE-Bvd.jpg","url":"https:\/\/t.co\/WGAh1Cjd7d","display_url":"pic.twitter.com\/WGAh1Cjd7d","expanded_url":"https:\/\/twitter.com\/VanekJen\/status\/1187061456203743234\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187061437283201025,"id_str":"1187061437283201025","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlKFn_UcAE-Bvd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlKFn_UcAE-Bvd.jpg","url":"https:\/\/t.co\/WGAh1Cjd7d","display_url":"pic.twitter.com\/WGAh1Cjd7d","expanded_url":"https:\/\/twitter.com\/VanekJen\/status\/1187061456203743234\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":805816250,"id_str":"805816250","name":"Jen + Vanek","screen_name":"VanekJen","location":"Minneapolis MN","description":"Director + of Digital Learning and Research. EdTech Center @ World Education. Teacher + educator, researcher, and advocate. Opinions expressed here are my own.","url":"https:\/\/t.co\/HfWBBD9lZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HfWBBD9lZC","expanded_url":"http:\/\/www.edtech.worlded.org","display_url":"edtech.worlded.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":270,"listed_count":5,"created_at":"Thu + Sep 06 01:47:18 +0000 2012","favourites_count":432,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":340,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/805816250\/1637458182","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 17:25:55 +0000 2019","id":1187057576732745728,"id_str":"1187057576732745728","full_text":"Breakfast + with the champions at @AECT Was great joining @veletsianos table, great discussions + about writing processes, flexible learning, networked scholarship & issues + related to women in ID #aect19inspired Was inspired by George experiences + of writing - useful for #AcWriMo https:\/\/t.co\/oiB39qgDBS","truncated":false,"display_text_range":[0,279],"entities":{"hashtags":[{"text":"aect19inspired","indices":[196,211]},{"text":"AcWriMo","indices":[271,279]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[32,37]},{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[56,68]}],"urls":[],"media":[{"id":1187057556893523969,"id_str":"1187057556893523969","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlGjwaU4AE-Y1q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlGjwaU4AE-Y1q.jpg","url":"https:\/\/t.co\/oiB39qgDBS","display_url":"pic.twitter.com\/oiB39qgDBS","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187057576732745728\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187057556893523969,"id_str":"1187057556893523969","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlGjwaU4AE-Y1q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlGjwaU4AE-Y1q.jpg","url":"https:\/\/t.co\/oiB39qgDBS","display_url":"pic.twitter.com\/oiB39qgDBS","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187057576732745728\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187057567584813058,"id_str":"1187057567584813058","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlGkYPVAAIuKAT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlGkYPVAAIuKAT.jpg","url":"https:\/\/t.co\/oiB39qgDBS","display_url":"pic.twitter.com\/oiB39qgDBS","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1187057576732745728\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1187047753999769602%2C1187047736228511745%2C1187047672152125440%2C1187047444141338630%2C1187046764697673729%2C1187046515820257280%2C1187046062353047552%2C1187045953066291200%2C1187045853048918022%2C1187045835483172864%2C1187045640745865221%2C1187045624975216640%2C1187045578712076289%2C1187045532725731328%2C1187045475104354304%2C1187045332426772480%2C1187045312486993920%2C1187045246141493248%2C1187045066323329024%2C1187044902128902144%2C1187044516911435776%2C1187044482853699586%2C1187044458920955904%2C1187044439019020288%2C1187044405732990977%2C1187044370710552578%2C1187044350661820416%2C1187044240473219073%2C1187044207992557568%2C1187044115852099584%2C1187044057056366592%2C1187044036558737410%2C1187044020624613376%2C1187043982456410117%2C1187043950709764098%2C1187043909492297729%2C1187043811114926080%2C1187043755833970689%2C1187043732794642432%2C1187043371228942336%2C1187043323640287232%2C1187042627306131456%2C1187041885900009472%2C1187041674016354304%2C1187041580344963074%2C1187041082418356230%2C1187040823348584448%2C1187040735830261762%2C1187039525253500928%2C1187039190434734080%2C1187038591332958209%2C1187038461099823105%2C1187037846227451904%2C1187037290717016064%2C1187035988188491777%2C1187034740634861571%2C1187034740634861571%2C1187033954727018496%2C1187033883474157568%2C1187033460008980482%2C1187033448906711040%2C1187033028100415488%2C1187032819177910273%2C1187031707997724672%2C1187031197819359235%2C1187030965161463810%2C1187030166368702464%2C1187029391072780288%2C1187028522889465856%2C1187028436604211200%2C1187028379368747013%2C1187028345168379906%2C1187027962572369920%2C1187027404666966020%2C1187027123262738433%2C1187026793003241472%2C1187026745825755143%2C1187025596095717376%2C1187025355707600898%2C1187025339186237442%2C1187024535322644480%2C1187024529572282368%2C1187024518302142464%2C1187023963257331712%2C1187023859829989377%2C1187023478299316224%2C1187022662956023808%2C1187021712618971136%2C1187021222183198722%2C1187020718619287553%2C1187020671940874240%2C1187020411118047232%2C1187020369791614976%2C1187020310324772866%2C1187020301332180994%2C1187020270168526848%2C1187020234885984259%2C1187020188501233665%2C1187020158897754115%2C1187020117621665792&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:49 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:49 GMT + x-transaction: 5154b51262d67ffe + content-length: '54283' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '281' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '390' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Oct 23 16:46:49 +0000 2019","id":1187047736228511745,"id_str":"1187047736228511745","full_text":"RT + @RitaFennelly: My favorite gem from the @AECT panel AECT: Lessons in Leadership + in the Field of Educational Technology: Don\u2019t be afraid\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[43,48]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 16:39:20 +0000 2019","id":1187045853048918022,"id_str":"1187045853048918022","full_text":"My + favorite gem from the @AECT panel AECT: Lessons in Leadership in the Field + of Educational Technology: Don\u2019t be afraid to apply for a position even + if you do not check all the boxes #ProfessionalGoals #aect19inspired","truncated":false,"display_text_range":[0,218],"entities":{"hashtags":[{"text":"ProfessionalGoals","indices":[184,202]},{"text":"aect19inspired","indices":[203,218]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[25,30]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:29:28 +0000 2019","id":1187043371228942336,"id_str":"1187043371228942336","full_text":"RT + @kolorkid: Amazing mentors and mentees at the Early Career Symposium #aect19inspired + https:\/\/t.co\/HAiMzcKf3j","truncated":false,"display_text_range":[0,111],"entities":{"hashtags":[{"text":"aect19inspired","indices":[72,87]}],"symbols":[],"user_mentions":[{"screen_name":"kolorkid","name":"Dr. + Heather Leary","id":14669702,"id_str":"14669702","indices":[3,12]}],"urls":[],"media":[{"id":1186756024746659840,"id_str":"1186756024746659840","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg0URoUUAApB6k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg0URoUUAApB6k.jpg","url":"https:\/\/t.co\/HAiMzcKf3j","display_url":"pic.twitter.com\/HAiMzcKf3j","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186756032715821056\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":652,"resize":"fit"},"large":{"w":2048,"h":1112,"resize":"fit"},"small":{"w":680,"h":369,"resize":"fit"}},"source_status_id":1186756032715821056,"source_status_id_str":"1186756032715821056","source_user_id":14669702,"source_user_id_str":"14669702"}]},"extended_entities":{"media":[{"id":1186756024746659840,"id_str":"1186756024746659840","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg0URoUUAApB6k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg0URoUUAApB6k.jpg","url":"https:\/\/t.co\/HAiMzcKf3j","display_url":"pic.twitter.com\/HAiMzcKf3j","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186756032715821056\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":652,"resize":"fit"},"large":{"w":2048,"h":1112,"resize":"fit"},"small":{"w":680,"h":369,"resize":"fit"}},"source_status_id":1186756032715821056,"source_status_id_str":"1186756032715821056","source_user_id":14669702,"source_user_id_str":"14669702","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 21:27:41 +0000 2019","id":1186756032715821056,"id_str":"1186756032715821056","full_text":"Amazing + mentors and mentees at the Early Career Symposium #aect19inspired https:\/\/t.co\/HAiMzcKf3j","truncated":false,"display_text_range":[0,73],"entities":{"hashtags":[{"text":"aect19inspired","indices":[58,73]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186756024746659840,"id_str":"1186756024746659840","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg0URoUUAApB6k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg0URoUUAApB6k.jpg","url":"https:\/\/t.co\/HAiMzcKf3j","display_url":"pic.twitter.com\/HAiMzcKf3j","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186756032715821056\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":652,"resize":"fit"},"large":{"w":2048,"h":1112,"resize":"fit"},"small":{"w":680,"h":369,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186756024746659840,"id_str":"1186756024746659840","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg0URoUUAApB6k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg0URoUUAApB6k.jpg","url":"https:\/\/t.co\/HAiMzcKf3j","display_url":"pic.twitter.com\/HAiMzcKf3j","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186756032715821056\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":652,"resize":"fit"},"large":{"w":2048,"h":1112,"resize":"fit"},"small":{"w":680,"h":369,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:19:00 +0000 2019","id":1187040735830261762,"id_str":"1187040735830261762","full_text":"Looking + for a great session this afternoon? Come check @profoyarzun, Florence Martin + and myself as we share results from our study on online faculty and time management + strategies. You have time! #aect19inspired #aect19 https:\/\/t.co\/dt9cvQw69l","truncated":false,"display_text_range":[0,219],"entities":{"hashtags":[{"text":"aect19inspired","indices":[196,211]},{"text":"aect19","indices":[212,219]}],"symbols":[],"user_mentions":[{"screen_name":"profoyarzun","name":"Beth + Oyarzun","id":19023356,"id_str":"19023356","indices":[55,67]}],"urls":[],"media":[{"id":1184453813996011520,"id_str":"1184453813996011520","indices":[220,243],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAGd-QWwAAZdrW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAGd-QWwAAZdrW.png","url":"https:\/\/t.co\/dt9cvQw69l","display_url":"pic.twitter.com\/dt9cvQw69l","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187040735830261762\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":498,"resize":"fit"},"large":{"w":723,"h":529,"resize":"fit"},"medium":{"w":723,"h":529,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1184453813996011520,"id_str":"1184453813996011520","indices":[220,243],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAGd-QWwAAZdrW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAGd-QWwAAZdrW.png","url":"https:\/\/t.co\/dt9cvQw69l","display_url":"pic.twitter.com\/dt9cvQw69l","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187040735830261762\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":498,"resize":"fit"},"large":{"w":723,"h":529,"resize":"fit"},"medium":{"w":723,"h":529,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 15:30:28 +0000 2019","id":1187028522889465856,"id_str":"1187028522889465856","full_text":"RT + @michaelmgrant: Breakfast with Champions! #aect19 #inspiredme https:\/\/t.co\/SL9nHcgQAC","truncated":false,"display_text_range":[0,88],"entities":{"hashtags":[{"text":"aect19","indices":[45,52]},{"text":"inspiredme","indices":[53,64]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[3,17]}],"urls":[],"media":[{"id":1187027089205055488,"id_str":"1187027089205055488","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkq2TbVUAAYW6s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkq2TbVUAAYW6s.jpg","url":"https:\/\/t.co\/SL9nHcgQAC","display_url":"pic.twitter.com\/SL9nHcgQAC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027123262738433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1187027123262738433,"source_status_id_str":"1187027123262738433","source_user_id":132653457,"source_user_id_str":"132653457"}]},"extended_entities":{"media":[{"id":1187027089205055488,"id_str":"1187027089205055488","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkq2TbVUAAYW6s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkq2TbVUAAYW6s.jpg","url":"https:\/\/t.co\/SL9nHcgQAC","display_url":"pic.twitter.com\/SL9nHcgQAC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027123262738433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1187027123262738433,"source_status_id_str":"1187027123262738433","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null},{"id":1187027089200824320,"id_str":"1187027089200824320","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkq2TaUwAAU5xe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkq2TaUwAAU5xe.jpg","url":"https:\/\/t.co\/SL9nHcgQAC","display_url":"pic.twitter.com\/SL9nHcgQAC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027123262738433\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1187027123262738433,"source_status_id_str":"1187027123262738433","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null},{"id":1187027089209212930,"id_str":"1187027089209212930","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkq2TcUwAId-rV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkq2TcUwAId-rV.jpg","url":"https:\/\/t.co\/SL9nHcgQAC","display_url":"pic.twitter.com\/SL9nHcgQAC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027123262738433\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1187027123262738433,"source_status_id_str":"1187027123262738433","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null},{"id":1187027089204998151,"id_str":"1187027089204998151","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkq2TbUcAcb982.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkq2TbUcAcb982.jpg","url":"https:\/\/t.co\/SL9nHcgQAC","display_url":"pic.twitter.com\/SL9nHcgQAC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027123262738433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1187027123262738433,"source_status_id_str":"1187027123262738433","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:24:54 +0000 2019","id":1187027123262738433,"id_str":"1187027123262738433","full_text":"Breakfast + with Champions! #aect19 #inspiredme https:\/\/t.co\/SL9nHcgQAC","truncated":false,"display_text_range":[0,45],"entities":{"hashtags":[{"text":"aect19","indices":[26,33]},{"text":"inspiredme","indices":[34,45]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187027089205055488,"id_str":"1187027089205055488","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkq2TbVUAAYW6s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkq2TbVUAAYW6s.jpg","url":"https:\/\/t.co\/SL9nHcgQAC","display_url":"pic.twitter.com\/SL9nHcgQAC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027123262738433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187027089205055488,"id_str":"1187027089205055488","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkq2TbVUAAYW6s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkq2TbVUAAYW6s.jpg","url":"https:\/\/t.co\/SL9nHcgQAC","display_url":"pic.twitter.com\/SL9nHcgQAC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027123262738433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187027089200824320,"id_str":"1187027089200824320","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkq2TaUwAAU5xe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkq2TaUwAAU5xe.jpg","url":"https:\/\/t.co\/SL9nHcgQAC","display_url":"pic.twitter.com\/SL9nHcgQAC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027123262738433\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187027089209212930,"id_str":"1187027089209212930","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkq2TcUwAId-rV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkq2TcUwAId-rV.jpg","url":"https:\/\/t.co\/SL9nHcgQAC","display_url":"pic.twitter.com\/SL9nHcgQAC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027123262738433\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187027089204998151,"id_str":"1187027089204998151","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkq2TbUcAcb982.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkq2TbUcAcb982.jpg","url":"https:\/\/t.co\/SL9nHcgQAC","display_url":"pic.twitter.com\/SL9nHcgQAC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027123262738433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:34:01 +0000 2019","id":1187044516911435776,"id_str":"1187044516911435776","full_text":"RT + @AmyLomellini_ID: Today\u2019s the day! Looking forward to great discussions + with inspiring people at #AECT19! @AECT @gsa_aect @JenM @nicolap\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[100,107]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[3,19]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[109,114]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[115,124]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[125,130]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:40:10 +0000 2019","id":1187030965161463810,"id_str":"1187030965161463810","full_text":"Today\u2019s + the day! Looking forward to great discussions with inspiring people at #AECT19! + @AECT @gsa_aect @JenM @nicolapallitt https:\/\/t.co\/P89NI1ItiJ","truncated":false,"display_text_range":[0,124],"entities":{"hashtags":[{"text":"AECT19","indices":[79,86]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[88,93]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[94,103]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[104,109]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[110,124]}],"urls":[],"media":[{"id":1187030963286691841,"id_str":"1187030963286691841","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkuXzgX0AEvw4Q.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkuXzgX0AEvw4Q.png","url":"https:\/\/t.co\/P89NI1ItiJ","display_url":"pic.twitter.com\/P89NI1ItiJ","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1187030965161463810\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1187030963286691841,"id_str":"1187030963286691841","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkuXzgX0AEvw4Q.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkuXzgX0AEvw4Q.png","url":"https:\/\/t.co\/P89NI1ItiJ","display_url":"pic.twitter.com\/P89NI1ItiJ","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1187030965161463810\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910574724748644353,"id_str":"910574724748644353","name":"Amy + Lomellini","screen_name":"AmyLomellini_ID","location":"New York, USA","description":"Associate + Director of Blended & Online Learning and doctoral candidate with a passion + for accessible and inclusive online teaching and learning. #EdTech #A11y","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":644,"friends_count":1061,"listed_count":9,"created_at":"Wed + Sep 20 18:41:46 +0000 2017","favourites_count":7378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1141,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910574724748644353\/1551624059","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:31:00 +0000 2019","id":1187043755833970689,"id_str":"1187043755833970689","full_text":"RT + @UT_IDT: .@UT_IDT @UofTampa alumna, Cristiane Rocha Vicentini \ud83c\udde7\ud83c\uddf7 + (who is now a doctoral student at @univmiami) presenting at #AECT19 #ae\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[128,135]}],"symbols":[],"user_mentions":[{"screen_name":"UT_IDT","name":"UT + IDT Program","id":2205686646,"id_str":"2205686646","indices":[3,10]},{"screen_name":"UT_IDT","name":"UT + IDT Program","id":2205686646,"id_str":"2205686646","indices":[13,20]},{"screen_name":"UofTampa","name":"The + University of Tampa","id":30738290,"id_str":"30738290","indices":[21,30]},{"screen_name":"univmiami","name":"University + of Miami","id":15585350,"id_str":"15585350","indices":[102,112]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:01:27 +0000 2019","id":1187021222183198722,"id_str":"1187021222183198722","full_text":".@UT_IDT + @UofTampa alumna, Cristiane Rocha Vicentini \ud83c\udde7\ud83c\uddf7 (who + is now a doctoral student at @univmiami) presenting at #AECT19 #aect19inspired + Proud of you, Cris! \ud83c\udf1f https:\/\/t.co\/Zohp6ZNpOE","truncated":false,"display_text_range":[0,161],"entities":{"hashtags":[{"text":"AECT19","indices":[116,123]},{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"UT_IDT","name":"UT + IDT Program","id":2205686646,"id_str":"2205686646","indices":[1,8]},{"screen_name":"UofTampa","name":"The + University of Tampa","id":30738290,"id_str":"30738290","indices":[9,18]},{"screen_name":"univmiami","name":"University + of Miami","id":15585350,"id_str":"15585350","indices":[90,100]}],"urls":[],"media":[{"id":1187021207381504000,"id_str":"1187021207381504000","indices":[162,185],"media_url":"http:\/\/pbs.twimg.com\/media\/EHklf77UcAAcqSy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHklf77UcAAcqSy.jpg","url":"https:\/\/t.co\/Zohp6ZNpOE","display_url":"pic.twitter.com\/Zohp6ZNpOE","expanded_url":"https:\/\/twitter.com\/UT_IDT\/status\/1187021222183198722\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187021207381504000,"id_str":"1187021207381504000","indices":[162,185],"media_url":"http:\/\/pbs.twimg.com\/media\/EHklf77UcAAcqSy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHklf77UcAAcqSy.jpg","url":"https:\/\/t.co\/Zohp6ZNpOE","display_url":"pic.twitter.com\/Zohp6ZNpOE","expanded_url":"https:\/\/twitter.com\/UT_IDT\/status\/1187021222183198722\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2205686646,"id_str":"2205686646","name":"UT + IDT Program","screen_name":"UT_IDT","location":"\ud83d\udccdTampa, Florida","description":"Instructional + Design & Technology Master Program at the @UofTampa \ud83d\udcbb \ud83d\udcda + #instructionaldesign #edtech #learning #design #technology","url":"https:\/\/t.co\/H4Yb0LBXjr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/H4Yb0LBXjr","expanded_url":"http:\/\/www.ut.edu\/idt","display_url":"ut.edu\/idt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":484,"friends_count":637,"listed_count":24,"created_at":"Wed + Nov 20 22:15:34 +0000 2013","favourites_count":1017,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/986987284951126017\/Z93W1kpY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/986987284951126017\/Z93W1kpY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2205686646\/1607182131","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 15:52:03 +0000 2019","id":1187033954727018496,"id_str":"1187033954727018496","full_text":"RT + @AECT: Inspired at the Breakfast with Champions. #AECT19 #AECT19inspired https:\/\/t.co\/SgI1xLUXN3","truncated":false,"display_text_range":[0,99],"entities":{"hashtags":[{"text":"AECT19","indices":[52,59]},{"text":"AECT19inspired","indices":[60,75]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[],"media":[{"id":1187028316479311873,"id_str":"1187028316479311873","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","url":"https:\/\/t.co\/SgI1xLUXN3","display_url":"pic.twitter.com\/SgI1xLUXN3","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187028345168379906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1272,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"medium":{"w":1200,"h":745,"resize":"fit"}},"source_status_id":1187028345168379906,"source_status_id_str":"1187028345168379906","source_user_id":12030342,"source_user_id_str":"12030342"}]},"extended_entities":{"media":[{"id":1187028316479311873,"id_str":"1187028316479311873","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","url":"https:\/\/t.co\/SgI1xLUXN3","display_url":"pic.twitter.com\/SgI1xLUXN3","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187028345168379906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1272,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"medium":{"w":1200,"h":745,"resize":"fit"}},"source_status_id":1187028345168379906,"source_status_id_str":"1187028345168379906","source_user_id":12030342,"source_user_id_str":"12030342","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:29:46 +0000 2019","id":1187028345168379906,"id_str":"1187028345168379906","full_text":"Inspired + at the Breakfast with Champions. #AECT19 #AECT19inspired https:\/\/t.co\/SgI1xLUXN3","truncated":false,"display_text_range":[0,65],"entities":{"hashtags":[{"text":"AECT19","indices":[42,49]},{"text":"AECT19inspired","indices":[50,65]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187028316479311873,"id_str":"1187028316479311873","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","url":"https:\/\/t.co\/SgI1xLUXN3","display_url":"pic.twitter.com\/SgI1xLUXN3","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187028345168379906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1272,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"medium":{"w":1200,"h":745,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187028316479311873,"id_str":"1187028316479311873","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","url":"https:\/\/t.co\/SgI1xLUXN3","display_url":"pic.twitter.com\/SgI1xLUXN3","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187028345168379906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1272,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"medium":{"w":1200,"h":745,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:29:17 +0000 2019","id":1187043323640287232,"id_str":"1187043323640287232","full_text":"RT + @DKSch: #aect19inspired mostly smiling champions. https:\/\/t.co\/JuSeJWCfJY","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]}],"symbols":[],"user_mentions":[{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[3,9]}],"urls":[],"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}},"source_status_id":1187033028100415488,"source_status_id_str":"1187033028100415488","source_user_id":38657815,"source_user_id_str":"38657815"}]},"extended_entities":{"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}},"source_status_id":1187033028100415488,"source_status_id_str":"1187033028100415488","source_user_id":38657815,"source_user_id_str":"38657815","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:48:22 +0000 2019","id":1187033028100415488,"id_str":"1187033028100415488","full_text":"#aect19inspired + mostly smiling champions. https:\/\/t.co\/JuSeJWCfJY","truncated":false,"display_text_range":[0,41],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:33:43 +0000 2019","id":1187044439019020288,"id_str":"1187044439019020288","full_text":"RT + @ISLT_FSU: #AECT19: If you want to learn about \"Visual Design Principles + in Multimedia Learning\" come to Ballroom 3 at 11 am - 11:50 am\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:50:05 +0000 2019","id":1187033460008980482,"id_str":"1187033460008980482","full_text":"#AECT19: + If you want to learn about \"Visual Design Principles in Multimedia Learning\" + come to Ballroom 3 at 11 am - 11:50 am with #FSU #FSUCOE #ISLT Renata Kuba + Kamikabeya & Allan Jeong. (session 183) #EdTech #VisualDesign #Multimedia + #Learning https:\/\/t.co\/CAoI89X4hh","truncated":false,"display_text_range":[0,248],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"FSU","indices":[130,134]},{"text":"FSUCOE","indices":[135,142]},{"text":"ISLT","indices":[143,148]},{"text":"EdTech","indices":[205,212]},{"text":"VisualDesign","indices":[213,226]},{"text":"Multimedia","indices":[227,238]},{"text":"Learning","indices":[239,248]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187033457156853760,"id_str":"1187033457156853760","indices":[249,272],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwo95WkAAWzWz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwo95WkAAWzWz.jpg","url":"https:\/\/t.co\/CAoI89X4hh","display_url":"pic.twitter.com\/CAoI89X4hh","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187033460008980482\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":674,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"},"large":{"w":2048,"h":1150,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187033457156853760,"id_str":"1187033457156853760","indices":[249,272],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwo95WkAAWzWz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwo95WkAAWzWz.jpg","url":"https:\/\/t.co\/CAoI89X4hh","display_url":"pic.twitter.com\/CAoI89X4hh","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187033460008980482\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":674,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"},"large":{"w":2048,"h":1150,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:38:14 +0000 2019","id":1187045578712076289,"id_str":"1187045578712076289","full_text":"RT + @michaelmgrant: More #AECT19 Gallery Walk photos! #inspiredme #betterposter + https:\/\/t.co\/1a08lBscKC","truncated":false,"display_text_range":[0,102],"entities":{"hashtags":[{"text":"AECT19","indices":[24,31]},{"text":"inspiredme","indices":[53,64]},{"text":"betterposter","indices":[65,78]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[3,17]}],"urls":[],"media":[{"id":1186785553439547393,"id_str":"1186785553439547393","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhPLElUYAE3Iqn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhPLElUYAE3Iqn.jpg","url":"https:\/\/t.co\/1a08lBscKC","display_url":"pic.twitter.com\/1a08lBscKC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785756963958784\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":1186785756963958784,"source_status_id_str":"1186785756963958784","source_user_id":132653457,"source_user_id_str":"132653457"}]},"extended_entities":{"media":[{"id":1186785553439547393,"id_str":"1186785553439547393","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhPLElUYAE3Iqn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhPLElUYAE3Iqn.jpg","url":"https:\/\/t.co\/1a08lBscKC","display_url":"pic.twitter.com\/1a08lBscKC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785756963958784\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":1186785756963958784,"source_status_id_str":"1186785756963958784","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null},{"id":1186785553447976961,"id_str":"1186785553447976961","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhPLEnVAAEtR29.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhPLEnVAAEtR29.jpg","url":"https:\/\/t.co\/1a08lBscKC","display_url":"pic.twitter.com\/1a08lBscKC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785756963958784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1186785756963958784,"source_status_id_str":"1186785756963958784","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null},{"id":1186785553439543296,"id_str":"1186785553439543296","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhPLElUUAAGvIl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhPLElUUAAGvIl.jpg","url":"https:\/\/t.co\/1a08lBscKC","display_url":"pic.twitter.com\/1a08lBscKC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785756963958784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1186785756963958784,"source_status_id_str":"1186785756963958784","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null},{"id":1186785553456324608,"id_str":"1186785553456324608","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhPLEpUYAA5g6s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhPLEpUYAA5g6s.jpg","url":"https:\/\/t.co\/1a08lBscKC","display_url":"pic.twitter.com\/1a08lBscKC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785756963958784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1186785756963958784,"source_status_id_str":"1186785756963958784","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 23:25:48 +0000 2019","id":1186785756963958784,"id_str":"1186785756963958784","full_text":"More + #AECT19 Gallery Walk photos! #inspiredme #betterposter https:\/\/t.co\/1a08lBscKC","truncated":false,"display_text_range":[0,59],"entities":{"hashtags":[{"text":"AECT19","indices":[5,12]},{"text":"inspiredme","indices":[34,45]},{"text":"betterposter","indices":[46,59]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186785553439547393,"id_str":"1186785553439547393","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhPLElUYAE3Iqn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhPLElUYAE3Iqn.jpg","url":"https:\/\/t.co\/1a08lBscKC","display_url":"pic.twitter.com\/1a08lBscKC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785756963958784\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186785553439547393,"id_str":"1186785553439547393","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhPLElUYAE3Iqn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhPLElUYAE3Iqn.jpg","url":"https:\/\/t.co\/1a08lBscKC","display_url":"pic.twitter.com\/1a08lBscKC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785756963958784\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null},{"id":1186785553447976961,"id_str":"1186785553447976961","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhPLEnVAAEtR29.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhPLEnVAAEtR29.jpg","url":"https:\/\/t.co\/1a08lBscKC","display_url":"pic.twitter.com\/1a08lBscKC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785756963958784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1186785553439543296,"id_str":"1186785553439543296","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhPLElUUAAGvIl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhPLElUUAAGvIl.jpg","url":"https:\/\/t.co\/1a08lBscKC","display_url":"pic.twitter.com\/1a08lBscKC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785756963958784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1186785553456324608,"id_str":"1186785553456324608","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhPLEpUYAA5g6s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhPLEpUYAA5g6s.jpg","url":"https:\/\/t.co\/1a08lBscKC","display_url":"pic.twitter.com\/1a08lBscKC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785756963958784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:00:08 +0000 2019","id":1187035988188491777,"id_str":"1187035988188491777","full_text":"RT + @pazureka: Many more great sessions today with the Learner Engagement Division! + We hope you''ll join us for our membership meeting at 3PM\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:07:11 +0000 2019","id":1187022662956023808,"id_str":"1187022662956023808","full_text":"Many + more great sessions today with the Learner Engagement Division! We hope you''ll + join us for our membership meeting at 3PM today in Conference Room 8. Meet + the leadership team, learn more about this Division, and help us plan for + the future! #aect19 @AECT\n @LearnEngage https:\/\/t.co\/sj3lVbOm1O","truncated":false,"display_text_range":[0,272],"entities":{"hashtags":[{"text":"aect19","indices":[245,252]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[253,258]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[260,272]}],"urls":[],"media":[{"id":1187022657843163137,"id_str":"1187022657843163137","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkm0XUU8AEPYDu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkm0XUU8AEPYDu.jpg","url":"https:\/\/t.co\/sj3lVbOm1O","display_url":"pic.twitter.com\/sj3lVbOm1O","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187022662956023808\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1160,"h":826,"resize":"fit"},"large":{"w":1160,"h":826,"resize":"fit"},"small":{"w":680,"h":484,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187022657843163137,"id_str":"1187022657843163137","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkm0XUU8AEPYDu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkm0XUU8AEPYDu.jpg","url":"https:\/\/t.co\/sj3lVbOm1O","display_url":"pic.twitter.com\/sj3lVbOm1O","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187022662956023808\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1160,"h":826,"resize":"fit"},"large":{"w":1160,"h":826,"resize":"fit"},"small":{"w":680,"h":484,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:35:33 +0000 2019","id":1187044902128902144,"id_str":"1187044902128902144","full_text":"RT + @nateturcotte22: Real lively discussion happening right now in \u201cResearching + how Designers Design\u201d #aect19inspired @gsa_aect https:\/\/t.co\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[101,116]}],"symbols":[],"user_mentions":[{"screen_name":"nateturcotte22","name":"Nate + Turcotte","id":600653284,"id_str":"600653284","indices":[3,18]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[117,126]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 21:34:21 +0000 2019","id":1186757708558417920,"id_str":"1186757708558417920","full_text":"Real + lively discussion happening right now in \u201cResearching how Designers Design\u201d + #aect19inspired @gsa_aect https:\/\/t.co\/Dfjn4YXwHe","truncated":false,"display_text_range":[0,106],"entities":{"hashtags":[{"text":"aect19inspired","indices":[81,96]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[97,106]}],"urls":[],"media":[{"id":1186757678959230977,"id_str":"1186757678959230977","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg10kDVAAEnD5-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg10kDVAAEnD5-.jpg","url":"https:\/\/t.co\/Dfjn4YXwHe","display_url":"pic.twitter.com\/Dfjn4YXwHe","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186757708558417920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186757678959230977,"id_str":"1186757678959230977","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg10kDVAAEnD5-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg10kDVAAEnD5-.jpg","url":"https:\/\/t.co\/Dfjn4YXwHe","display_url":"pic.twitter.com\/Dfjn4YXwHe","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186757708558417920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":600653284,"id_str":"600653284","name":"Nate + Turcotte","screen_name":"nateturcotte22","location":"Fort Myers, FL","description":"Assistant + Professor at @fgcu_coe | Researching embodied forms of teaching & learning + with data | New England Patriots | Duke Basketball","url":"https:\/\/t.co\/uu8axyn0Bq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uu8axyn0Bq","expanded_url":"http:\/\/nateturcotte.com","display_url":"nateturcotte.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":313,"friends_count":606,"listed_count":4,"created_at":"Wed + Jun 06 03:44:26 +0000 2012","favourites_count":4300,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1349,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/600653284\/1440433455","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:20:22 +0000 2019","id":1187041082418356230,"id_str":"1187041082418356230","full_text":"We\u2019d + love for you to reach and subscribe to the iTeach Blog! @ksuiteach @KSUITEC + @KSUBCOE #aect19inspired #KSUMobileSummit19 #edtech #coachingcollab @fetc + @GaETConf https:\/\/t.co\/i5Y7J5lmzn","truncated":false,"display_text_range":[0,164],"entities":{"hashtags":[{"text":"aect19inspired","indices":[90,105]},{"text":"KSUMobileSummit19","indices":[106,124]},{"text":"edtech","indices":[125,132]},{"text":"coachingcollab","indices":[133,148]}],"symbols":[],"user_mentions":[{"screen_name":"ksuiteach","name":"KSU + iTeach","id":129823325,"id_str":"129823325","indices":[61,71]},{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[72,80]},{"screen_name":"fetc","name":"FETC","id":16724364,"id_str":"16724364","indices":[149,154]},{"screen_name":"GaETConf","name":"Georgia + Educational Technology Conference","id":208439824,"id_str":"208439824","indices":[155,164]}],"urls":[{"url":"https:\/\/t.co\/i5Y7J5lmzn","expanded_url":"https:\/\/twitter.com\/ksuiteach\/status\/1186990849374244864","display_url":"twitter.com\/ksuiteach\/stat\u2026","indices":[165,188]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":427060068,"id_str":"427060068","name":"Dr. + Stephanee Stephens","screen_name":"Stephsteph83","location":"Atlanta, GA","description":"Educator, + Challenger, Leader, Innovator @microsoftedu Believe in: #personalizedlearning + \ud83d\udc69\u200d\ud83c\udf93 @utoledo @kennesawstate","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2501,"friends_count":1157,"listed_count":172,"created_at":"Sat + Dec 03 02:01:17 +0000 2011","favourites_count":13627,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8514,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458524672912461825\/JM2qKEcN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458524672912461825\/JM2qKEcN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/427060068\/1636574423","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186990849374244864,"quoted_status_id_str":"1186990849374244864","quoted_status_permalink":{"url":"https:\/\/t.co\/i5Y7J5lmzn","expanded":"https:\/\/twitter.com\/ksuiteach\/status\/1186990849374244864","display":"twitter.com\/ksuiteach\/stat\u2026"},"quoted_status":{"created_at":"Wed + Oct 23 13:00:46 +0000 2019","id":1186990849374244864,"id_str":"1186990849374244864","full_text":"Check + out our blog post TODAY! This post encourages finding strength within your + own students to support tech troubles with your own student tech team! Check + it out and let us know what you think! https:\/\/t.co\/m1FDAAe6Au https:\/\/t.co\/87L1u1LSPE","truncated":false,"display_text_range":[0,220],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/m1FDAAe6Au","expanded_url":"https:\/\/ksuiteach.blogspot.com\/2019\/10\/tapping-into-classroom-talent-with.html","display_url":"ksuiteach.blogspot.com\/2019\/10\/tappin\u2026","indices":[197,220]}],"media":[{"id":1186990846236942336,"id_str":"1186990846236942336","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkJ4r2X4AAtZm0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkJ4r2X4AAtZm0.png","url":"https:\/\/t.co\/87L1u1LSPE","display_url":"pic.twitter.com\/87L1u1LSPE","expanded_url":"https:\/\/twitter.com\/ksuiteach\/status\/1186990849374244864\/photo\/1","type":"photo","sizes":{"large":{"w":250,"h":373,"resize":"fit"},"small":{"w":250,"h":373,"resize":"fit"},"medium":{"w":250,"h":373,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1186990846236942336,"id_str":"1186990846236942336","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkJ4r2X4AAtZm0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkJ4r2X4AAtZm0.png","url":"https:\/\/t.co\/87L1u1LSPE","display_url":"pic.twitter.com\/87L1u1LSPE","expanded_url":"https:\/\/twitter.com\/ksuiteach\/status\/1186990849374244864\/photo\/1","type":"photo","sizes":{"large":{"w":250,"h":373,"resize":"fit"},"small":{"w":250,"h":373,"resize":"fit"},"medium":{"w":250,"h":373,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":129823325,"id_str":"129823325","name":"KSU + iTeach","screen_name":"ksuiteach","location":"Kennesaw, GA","description":"This + is the official Twitter account for iTeach at Kennesaw State University. #iTeachCoaching + #iTeachMaker #iTeachOnDemand #iTeachLIVE #iTeachTalks #iTeachAsks","url":"https:\/\/t.co\/qRDQpY8QEg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qRDQpY8QEg","expanded_url":"http:\/\/iteach.kennesaw.edu","display_url":"iteach.kennesaw.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3462,"friends_count":448,"listed_count":63,"created_at":"Mon + Apr 05 14:37:27 +0000 2010","favourites_count":8110,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6122,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/890333675015077890\/z1nz2Tsz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/890333675015077890\/z1nz2Tsz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/129823325\/1633107957","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 15:43:07 +0000 2019","id":1187031707997724672,"id_str":"1187031707997724672","full_text":"Breakfast + with champions #aect19 https:\/\/t.co\/pN4fmB6pHb","truncated":false,"display_text_range":[0,32],"entities":{"hashtags":[{"text":"aect19","indices":[25,32]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187031696660582400,"id_str":"1187031696660582400","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkvCfiVUAAR2A2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkvCfiVUAAR2A2.jpg","url":"https:\/\/t.co\/pN4fmB6pHb","display_url":"pic.twitter.com\/pN4fmB6pHb","expanded_url":"https:\/\/twitter.com\/TaraBunag\/status\/1187031707997724672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187031696660582400,"id_str":"1187031696660582400","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkvCfiVUAAR2A2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkvCfiVUAAR2A2.jpg","url":"https:\/\/t.co\/pN4fmB6pHb","display_url":"pic.twitter.com\/pN4fmB6pHb","expanded_url":"https:\/\/twitter.com\/TaraBunag\/status\/1187031707997724672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":740007354121363457,"id_str":"740007354121363457","name":"Tara + Bunag","screen_name":"TaraBunag","location":"Stockton, CA","description":"I + am interested in chemistry teaching, OER, educational technology, ADA, LGBTQIA+, + STEM, and related topics.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":85,"friends_count":101,"listed_count":0,"created_at":"Tue + Jun 07 02:27:56 +0000 2016","favourites_count":1125,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":630,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/741407026002038784\/IHr6hZVd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/741407026002038784\/IHr6hZVd_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 15:28:14 +0000 2019","id":1187027962572369920,"id_str":"1187027962572369920","full_text":"RT + @LearnEngage: Good morning #AECT19! The Learner Engagement Division is having + their membership meeting at 3pm today in Conf Room 8. Stop\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[30,37]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 14:53:34 +0000 2019","id":1187019235660185600,"id_str":"1187019235660185600","full_text":"Good + morning #AECT19! The Learner Engagement Division is having their membership + meeting at 3pm today in Conf Room 8. Stop by to connect with other members + and hear about open board positions, division awards, and opportunities to + present your work to @AECT and beyond!","truncated":false,"display_text_range":[0,269],"entities":{"hashtags":[{"text":"AECT19","indices":[13,20]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[252,257]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:41:58 +0000 2019","id":1187046515820257280,"id_str":"1187046515820257280","full_text":"Fascinating + study. Listening to Dr Park''s presentation. Exploring the Relationships between + Motivational Regulation and Learning Engagement in Online Courses https:\/\/t.co\/12qIMcaT3w + #aect19inspired #aect19","truncated":false,"display_text_range":[0,205],"entities":{"hashtags":[{"text":"aect19inspired","indices":[182,197]},{"text":"aect19","indices":[198,205]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/12qIMcaT3w","expanded_url":"http:\/\/l.core-apps.com\/aect19\/event?event=b038d05c063d8ab60ed1330fb70e9109","display_url":"l.core-apps.com\/aect19\/event?e\u2026","indices":[158,181]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":459903,"id_str":"459903","name":"\ud83c\uddfa\ud83c\uddf8 + Yin Kreher, PhD","screen_name":"yinbk","location":"","description":"Instructional + Designer | Lead LXD @FourthRev | Boundary-Crosser. Looks for the exquisite + at intersections. All tweets are mine. \ud83d\udc9c #XR #DesignLeadership + \ud83e\udef0","url":"https:\/\/t.co\/nJBVP9cpz7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nJBVP9cpz7","expanded_url":"http:\/\/yinwahkreher.com","display_url":"yinwahkreher.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1043,"friends_count":1124,"listed_count":79,"created_at":"Tue + Jan 02 17:04:05 +0000 2007","favourites_count":7349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"363738","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459903\/1611022238","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"E81C4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 15:07:11 +0000 2019","id":1187022662956023808,"id_str":"1187022662956023808","full_text":"Many + more great sessions today with the Learner Engagement Division! We hope you''ll + join us for our membership meeting at 3PM today in Conference Room 8. Meet + the leadership team, learn more about this Division, and help us plan for + the future! #aect19 @AECT\n @LearnEngage https:\/\/t.co\/sj3lVbOm1O","truncated":false,"display_text_range":[0,272],"entities":{"hashtags":[{"text":"aect19","indices":[245,252]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[253,258]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[260,272]}],"urls":[],"media":[{"id":1187022657843163137,"id_str":"1187022657843163137","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkm0XUU8AEPYDu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkm0XUU8AEPYDu.jpg","url":"https:\/\/t.co\/sj3lVbOm1O","display_url":"pic.twitter.com\/sj3lVbOm1O","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187022662956023808\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1160,"h":826,"resize":"fit"},"large":{"w":1160,"h":826,"resize":"fit"},"small":{"w":680,"h":484,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187022657843163137,"id_str":"1187022657843163137","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkm0XUU8AEPYDu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkm0XUU8AEPYDu.jpg","url":"https:\/\/t.co\/sj3lVbOm1O","display_url":"pic.twitter.com\/sj3lVbOm1O","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1187022662956023808\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1160,"h":826,"resize":"fit"},"large":{"w":1160,"h":826,"resize":"fit"},"small":{"w":680,"h":484,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:36:55 +0000 2019","id":1187045246141493248,"id_str":"1187045246141493248","full_text":"RT + @susiegronseth: The ID theory legend @professordaveme met with @UHCOE students + through two of my courses and answered lots of questions\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"susiegronseth","name":"Susie + Gronseth","id":14481157,"id_str":"14481157","indices":[3,17]},{"screen_name":"professordaveme","name":"DaveMerrill","id":2538506378,"id_str":"2538506378","indices":[40,56]},{"screen_name":"UHCOE","name":"UH + College of Education","id":563967134,"id_str":"563967134","indices":[66,72]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 06:20:08 +0000 2019","id":1186890025750761477,"id_str":"1186890025750761477","full_text":"The + ID theory legend @professordaveme met with @UHCOE students through two of + my courses and answered lots of questions about ID theory and designing instruction + around problems, rather than objectives. #aectRTD #aect19inspired https:\/\/t.co\/HtikIv3lSS","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"aectRTD","indices":[203,211]},{"text":"aect19inspired","indices":[212,227]}],"symbols":[],"user_mentions":[{"screen_name":"professordaveme","name":"DaveMerrill","id":2538506378,"id_str":"2538506378","indices":[21,37]},{"screen_name":"UHCOE","name":"UH + College of Education","id":563967134,"id_str":"563967134","indices":[47,53]}],"urls":[],"media":[{"id":1186890022684770305,"id_str":"1186890022684770305","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiuL-2UwAEAS6n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiuL-2UwAEAS6n.jpg","url":"https:\/\/t.co\/HtikIv3lSS","display_url":"pic.twitter.com\/HtikIv3lSS","expanded_url":"https:\/\/twitter.com\/susiegronseth\/status\/1186890025750761477\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"},"medium":{"w":480,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186890022684770305,"id_str":"1186890022684770305","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiuL-2UwAEAS6n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiuL-2UwAEAS6n.jpg","url":"https:\/\/t.co\/HtikIv3lSS","display_url":"pic.twitter.com\/HtikIv3lSS","expanded_url":"https:\/\/twitter.com\/susiegronseth\/status\/1186890025750761477\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"},"medium":{"w":480,"h":640,"resize":"fit"}},"ext_alt_text":"@susiegronseth + with M. David Merrill"}]},"source":"\u003ca href=\"https:\/\/mobile.twitter.com\" + rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14481157,"id_str":"14481157","name":"Susie + Gronseth","screen_name":"susiegronseth","location":"Houston, TX","description":"@UHouston + faculty in Learning, Design & Technology; instructional designer; @SITEconf + UDL-SIG Co-Chair, wife of @mattgronseth, and mother of 2.","url":"https:\/\/t.co\/p0A1d9XG1V","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p0A1d9XG1V","expanded_url":"http:\/\/coe.uh.edu\/directory\/employee-profile\/index.php?id=618","display_url":"coe.uh.edu\/directory\/empl\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":670,"friends_count":680,"listed_count":0,"created_at":"Tue + Apr 22 21:57:29 +0000 2008","favourites_count":386,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2472,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/786678040344530944\/8Tm9Fpfh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/786678040344530944\/8Tm9Fpfh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14481157\/1449160334","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:33:53 +0000 2019","id":1187044482853699586,"id_str":"1187044482853699586","full_text":"Dr. + Ritzhaupt shares GBL study: Collaboration is important in game design. Advancement\/achievement + levels\/XP are currency in games. Players may be motivated with or without + Leadership boards. #eme607 #aect19inspired #aect2019 @AlbertRitzhaupt","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"eme607","indices":[192,199]},{"text":"aect19inspired","indices":[200,215]},{"text":"aect2019","indices":[216,225]}],"symbols":[],"user_mentions":[{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[226,242]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 15:51:46 +0000 2019","id":1187033883474157568,"id_str":"1187033883474157568","full_text":"My + dude @hodgesc! #aect19 #aect19inspired https:\/\/t.co\/KVn6kJ2JNT","truncated":false,"display_text_range":[0,41],"entities":{"hashtags":[{"text":"aect19","indices":[18,25]},{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[8,16]}],"urls":[],"media":[{"id":1187033864889237504,"id_str":"1187033864889237504","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkxAs0VAAA8zkW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkxAs0VAAA8zkW.jpg","url":"https:\/\/t.co\/KVn6kJ2JNT","display_url":"pic.twitter.com\/KVn6kJ2JNT","expanded_url":"https:\/\/twitter.com\/d_mulder\/status\/1187033883474157568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187033864889237504,"id_str":"1187033864889237504","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkxAs0VAAA8zkW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkxAs0VAAA8zkW.jpg","url":"https:\/\/t.co\/KVn6kJ2JNT","display_url":"pic.twitter.com\/KVn6kJ2JNT","expanded_url":"https:\/\/twitter.com\/d_mulder\/status\/1187033883474157568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":30278154,"id_str":"30278154","name":"Dr. + Dave Mulder","screen_name":"d_mulder","location":"Iowa","description":"Christ-follower. + Husband of one and dad of two. Professor of Education at @dordtuniversity. + #EdTech is my jam. My tweets speak only for me.","url":"https:\/\/t.co\/i9IOUI9RZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/i9IOUI9RZC","expanded_url":"https:\/\/drdave.substack.com\/","display_url":"drdave.substack.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3921,"friends_count":949,"listed_count":249,"created_at":"Fri + Apr 10 18:27:10 +0000 2009","favourites_count":39976,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30278154\/1568172162","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:39:20 +0000 2019","id":1187045853048918022,"id_str":"1187045853048918022","full_text":"My + favorite gem from the @AECT panel AECT: Lessons in Leadership in the Field + of Educational Technology: Don\u2019t be afraid to apply for a position even + if you do not check all the boxes #ProfessionalGoals #aect19inspired","truncated":false,"display_text_range":[0,218],"entities":{"hashtags":[{"text":"ProfessionalGoals","indices":[184,202]},{"text":"aect19inspired","indices":[203,218]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[25,30]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:26:31 +0000 2019","id":1187042627306131456,"id_str":"1187042627306131456","full_text":"Third + day #aect19inspired #AECTech2019 #aect19inspired Lessons in Leadership in + the Field of Educational Technology. https:\/\/t.co\/PblCJn7gy3","truncated":false,"display_text_range":[0,116],"entities":{"hashtags":[{"text":"aect19inspired","indices":[10,25]},{"text":"AECTech2019","indices":[26,38]},{"text":"aect19inspired","indices":[39,54]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187042606791843840,"id_str":"1187042606791843840","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk49i8U4AAbyL0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk49i8U4AAbyL0.jpg","url":"https:\/\/t.co\/PblCJn7gy3","display_url":"pic.twitter.com\/PblCJn7gy3","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187042627306131456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187042606791843840,"id_str":"1187042606791843840","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk49i8U4AAbyL0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk49i8U4AAbyL0.jpg","url":"https:\/\/t.co\/PblCJn7gy3","display_url":"pic.twitter.com\/PblCJn7gy3","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187042627306131456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186794729691705344,"in_reply_to_status_id_str":"1186794729691705344","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 14:57:04 +0000 2019","id":1187020117621665792,"id_str":"1187020117621665792","full_text":"RT + @DrRossPerkins: I\u2019m inspired by the research & practice contributions + to the field of #instructionaldesign by these two amazing collea\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[95,115]}],"symbols":[],"user_mentions":[{"screen_name":"DrRossPerkins","name":"Ross + Perkins, PhD","id":2905458781,"id_str":"2905458781","indices":[3,17]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 13:59:54 +0000 2019","id":1187005731704229888,"id_str":"1187005731704229888","full_text":"I\u2019m + inspired by the research & practice contributions to the field of #instructionaldesign + by these two amazing colleagues, Dr. Monica Tracey and Dr. Jennifer Maddrell. + #aect19inspired #aectRTD @aectdddivision @JenM @design4learn https:\/\/t.co\/G5VswE0eu0","truncated":false,"display_text_range":[0,235],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[76,96]},{"text":"aect19inspired","indices":[175,190]},{"text":"aectRTD","indices":[191,199]}],"symbols":[],"user_mentions":[{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[200,215]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[216,221]},{"screen_name":"design4learn","name":"Designers + for Learning","id":1610558420,"id_str":"1610558420","indices":[222,235]}],"urls":[],"media":[{"id":1187005725005844480,"id_str":"1187005725005844480","indices":[236,259],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkXavlUEAALckh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkXavlUEAALckh.jpg","url":"https:\/\/t.co\/G5VswE0eu0","display_url":"pic.twitter.com\/G5VswE0eu0","expanded_url":"https:\/\/twitter.com\/DrRossPerkins\/status\/1187005731704229888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187005725005844480,"id_str":"1187005725005844480","indices":[236,259],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkXavlUEAALckh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkXavlUEAALckh.jpg","url":"https:\/\/t.co\/G5VswE0eu0","display_url":"pic.twitter.com\/G5VswE0eu0","expanded_url":"https:\/\/twitter.com\/DrRossPerkins\/status\/1187005731704229888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2905458781,"id_str":"2905458781","name":"Ross + Perkins, PhD","screen_name":"DrRossPerkins","location":"Apex, NC","description":"Asc + Prof @ Boise State. EdS\/EdD ProgCoord. https:\/\/t.co\/8jp7WXqbV1 | Huge + listserv influencer, 1998-2006.","url":"https:\/\/t.co\/8jp7WXqbV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[43,66]}]}},"protected":false,"followers_count":773,"friends_count":485,"listed_count":21,"created_at":"Thu + Nov 20 19:52:09 +0000 2014","favourites_count":3672,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2751,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2905458781\/1618315302","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:32:03 +0000 2019","id":1187044020624613376,"id_str":"1187044020624613376","full_text":"RT + @d_mulder: My dude @hodgesc! #aect19 #aect19inspired https:\/\/t.co\/KVn6kJ2JNT","truncated":false,"display_text_range":[0,79],"entities":{"hashtags":[{"text":"aect19","indices":[32,39]},{"text":"aect19inspired","indices":[40,55]}],"symbols":[],"user_mentions":[{"screen_name":"d_mulder","name":"Dr. + Dave Mulder","id":30278154,"id_str":"30278154","indices":[3,12]},{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[22,30]}],"urls":[],"media":[{"id":1187033864889237504,"id_str":"1187033864889237504","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkxAs0VAAA8zkW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkxAs0VAAA8zkW.jpg","url":"https:\/\/t.co\/KVn6kJ2JNT","display_url":"pic.twitter.com\/KVn6kJ2JNT","expanded_url":"https:\/\/twitter.com\/d_mulder\/status\/1187033883474157568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1187033883474157568,"source_status_id_str":"1187033883474157568","source_user_id":30278154,"source_user_id_str":"30278154"}]},"extended_entities":{"media":[{"id":1187033864889237504,"id_str":"1187033864889237504","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkxAs0VAAA8zkW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkxAs0VAAA8zkW.jpg","url":"https:\/\/t.co\/KVn6kJ2JNT","display_url":"pic.twitter.com\/KVn6kJ2JNT","expanded_url":"https:\/\/twitter.com\/d_mulder\/status\/1187033883474157568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1187033883474157568,"source_status_id_str":"1187033883474157568","source_user_id":30278154,"source_user_id_str":"30278154","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:51:46 +0000 2019","id":1187033883474157568,"id_str":"1187033883474157568","full_text":"My + dude @hodgesc! #aect19 #aect19inspired https:\/\/t.co\/KVn6kJ2JNT","truncated":false,"display_text_range":[0,41],"entities":{"hashtags":[{"text":"aect19","indices":[18,25]},{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[8,16]}],"urls":[],"media":[{"id":1187033864889237504,"id_str":"1187033864889237504","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkxAs0VAAA8zkW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkxAs0VAAA8zkW.jpg","url":"https:\/\/t.co\/KVn6kJ2JNT","display_url":"pic.twitter.com\/KVn6kJ2JNT","expanded_url":"https:\/\/twitter.com\/d_mulder\/status\/1187033883474157568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187033864889237504,"id_str":"1187033864889237504","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkxAs0VAAA8zkW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkxAs0VAAA8zkW.jpg","url":"https:\/\/t.co\/KVn6kJ2JNT","display_url":"pic.twitter.com\/KVn6kJ2JNT","expanded_url":"https:\/\/twitter.com\/d_mulder\/status\/1187033883474157568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":30278154,"id_str":"30278154","name":"Dr. + Dave Mulder","screen_name":"d_mulder","location":"Iowa","description":"Christ-follower. + Husband of one and dad of two. Professor of Education at @dordtuniversity. + #EdTech is my jam. My tweets speak only for me.","url":"https:\/\/t.co\/i9IOUI9RZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/i9IOUI9RZC","expanded_url":"https:\/\/drdave.substack.com\/","display_url":"drdave.substack.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3921,"friends_count":949,"listed_count":249,"created_at":"Fri + Apr 10 18:27:10 +0000 2009","favourites_count":39976,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":30173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1171624088600809472\/aKjy8ygg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30278154\/1568172162","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 15:47:32 +0000 2019","id":1187032819177910273,"id_str":"1187032819177910273","full_text":"RT + @AmyLomellini_ID: Today\u2019s the day! Looking forward to great discussions + with inspiring people at #AECT19! @AECT @gsa_aect @JenM @nicolap\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[100,107]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[3,19]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[109,114]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[115,124]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[125,130]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:40:10 +0000 2019","id":1187030965161463810,"id_str":"1187030965161463810","full_text":"Today\u2019s + the day! Looking forward to great discussions with inspiring people at #AECT19! + @AECT @gsa_aect @JenM @nicolapallitt https:\/\/t.co\/P89NI1ItiJ","truncated":false,"display_text_range":[0,124],"entities":{"hashtags":[{"text":"AECT19","indices":[79,86]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[88,93]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[94,103]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[104,109]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[110,124]}],"urls":[],"media":[{"id":1187030963286691841,"id_str":"1187030963286691841","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkuXzgX0AEvw4Q.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkuXzgX0AEvw4Q.png","url":"https:\/\/t.co\/P89NI1ItiJ","display_url":"pic.twitter.com\/P89NI1ItiJ","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1187030965161463810\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1187030963286691841,"id_str":"1187030963286691841","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkuXzgX0AEvw4Q.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkuXzgX0AEvw4Q.png","url":"https:\/\/t.co\/P89NI1ItiJ","display_url":"pic.twitter.com\/P89NI1ItiJ","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1187030965161463810\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910574724748644353,"id_str":"910574724748644353","name":"Amy + Lomellini","screen_name":"AmyLomellini_ID","location":"New York, USA","description":"Associate + Director of Blended & Online Learning and doctoral candidate with a passion + for accessible and inclusive online teaching and learning. #EdTech #A11y","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":644,"friends_count":1061,"listed_count":9,"created_at":"Wed + Sep 20 18:41:46 +0000 2017","favourites_count":7378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1141,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910574724748644353\/1551624059","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 15:26:01 +0000 2019","id":1187027404666966020,"id_str":"1187027404666966020","full_text":"More + Breakfast with Champions! #aect19 #inspiredme https:\/\/t.co\/nlM6WeDZ6j","truncated":false,"display_text_range":[0,50],"entities":{"hashtags":[{"text":"aect19","indices":[31,38]},{"text":"inspiredme","indices":[39,50]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187027370709905409,"id_str":"1187027370709905409","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkrGsHUcAEM8cn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkrGsHUcAEM8cn.jpg","url":"https:\/\/t.co\/nlM6WeDZ6j","display_url":"pic.twitter.com\/nlM6WeDZ6j","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027404666966020\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187027370709905409,"id_str":"1187027370709905409","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkrGsHUcAEM8cn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkrGsHUcAEM8cn.jpg","url":"https:\/\/t.co\/nlM6WeDZ6j","display_url":"pic.twitter.com\/nlM6WeDZ6j","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027404666966020\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187027371414540288,"id_str":"1187027371414540288","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkrGuvUUAAkQDG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkrGuvUUAAkQDG.jpg","url":"https:\/\/t.co\/nlM6WeDZ6j","display_url":"pic.twitter.com\/nlM6WeDZ6j","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027404666966020\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187027371544608770,"id_str":"1187027371544608770","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkrGvOVAAIBF6W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkrGvOVAAIBF6W.jpg","url":"https:\/\/t.co\/nlM6WeDZ6j","display_url":"pic.twitter.com\/nlM6WeDZ6j","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027404666966020\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187027372928749568,"id_str":"1187027372928749568","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkrG0YVUAAo1ln.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkrG0YVUAAo1ln.jpg","url":"https:\/\/t.co\/nlM6WeDZ6j","display_url":"pic.twitter.com\/nlM6WeDZ6j","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027404666966020\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:38:25 +0000 2019","id":1187045624975216640,"id_str":"1187045624975216640","full_text":"RT + @idtesu: Honored to meet Dr. Enilda Romero-Hall. \nESU''s IDT alum. Currently + serving as an Associate Professor in the Department of Educa\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"idtesu","name":"ESU + Instructional Design & Technology Program","id":107144043,"id_str":"107144043","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 06:23:50 +0000 2019","id":1186890959654572032,"id_str":"1186890959654572032","full_text":"Honored + to meet Dr. Enilda Romero-Hall. \nESU''s IDT alum. Currently serving as an + Associate Professor in the Department of Education at The University of Tampa, + where she is also the Graduate Coordinator of the Instructional Design and + Technology program.\n\n#AECT2019 #hornetpride https:\/\/t.co\/2bcVqG15lI","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"AECT2019","indices":[256,265]},{"text":"hornetpride","indices":[266,278]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186890949063897089,"id_str":"1186890949063897089","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHivB54UcAEEeer.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHivB54UcAEEeer.jpg","url":"https:\/\/t.co\/2bcVqG15lI","display_url":"pic.twitter.com\/2bcVqG15lI","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186890959654572032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186890949063897089,"id_str":"1186890949063897089","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHivB54UcAEEeer.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHivB54UcAEEeer.jpg","url":"https:\/\/t.co\/2bcVqG15lI","display_url":"pic.twitter.com\/2bcVqG15lI","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186890959654572032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 15:37:00 +0000 2019","id":1187030166368702464,"id_str":"1187030166368702464","full_text":"Presenting + today Hope to see you there! @aectclt #AECT19 #AECT19inspired #edtech https:\/\/t.co\/hXWV3G5B32","truncated":false,"display_text_range":[0,80],"entities":{"hashtags":[{"text":"AECT19","indices":[49,56]},{"text":"AECT19inspired","indices":[57,72]},{"text":"edtech","indices":[73,80]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[40,48]}],"urls":[],"media":[{"id":1185701580856643584,"id_str":"1185701580856643584","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR1TkCUUAAtyDW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR1TkCUUAAtyDW.jpg","url":"https:\/\/t.co\/hXWV3G5B32","display_url":"pic.twitter.com\/hXWV3G5B32","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187030166368702464\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185701580856643584,"id_str":"1185701580856643584","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR1TkCUUAAtyDW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR1TkCUUAAtyDW.jpg","url":"https:\/\/t.co\/hXWV3G5B32","display_url":"pic.twitter.com\/hXWV3G5B32","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187030166368702464\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:32:55 +0000 2019","id":1187044240473219073,"id_str":"1187044240473219073","full_text":"RT + @SultanMutlaq: Third day #aect19inspired #AECTech2019 #aect19inspired Lessons + in Leadership in the Field of Educational Technology. http\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[28,43]},{"text":"AECTech2019","indices":[44,56]},{"text":"aect19inspired","indices":[57,72]}],"symbols":[],"user_mentions":[{"screen_name":"SultanMutlaq","name":"SultanMutlaq","id":370132373,"id_str":"370132373","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 16:26:31 +0000 2019","id":1187042627306131456,"id_str":"1187042627306131456","full_text":"Third + day #aect19inspired #AECTech2019 #aect19inspired Lessons in Leadership in + the Field of Educational Technology. https:\/\/t.co\/PblCJn7gy3","truncated":false,"display_text_range":[0,116],"entities":{"hashtags":[{"text":"aect19inspired","indices":[10,25]},{"text":"AECTech2019","indices":[26,38]},{"text":"aect19inspired","indices":[39,54]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187042606791843840,"id_str":"1187042606791843840","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk49i8U4AAbyL0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk49i8U4AAbyL0.jpg","url":"https:\/\/t.co\/PblCJn7gy3","display_url":"pic.twitter.com\/PblCJn7gy3","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187042627306131456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187042606791843840,"id_str":"1187042606791843840","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk49i8U4AAbyL0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk49i8U4AAbyL0.jpg","url":"https:\/\/t.co\/PblCJn7gy3","display_url":"pic.twitter.com\/PblCJn7gy3","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187042627306131456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186794729691705344,"in_reply_to_status_id_str":"1186794729691705344","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:39:16 +0000 2019","id":1187045835483172864,"id_str":"1187045835483172864","full_text":"RT + @kariknisely: If you are a teacher or parent and have kids that are interested + in coding, please have them check this out. #HourOfCode @\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"HourOfCode","indices":[126,137]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 22:56:32 +0000 2019","id":1186778390482735105,"id_str":"1186778390482735105","full_text":"If + you are a teacher or parent and have kids that are interested in coding, please + have them check this out. #HourOfCode @hourofcode #code #coding #kidsthatcode + #girlsthatcode @anotherbrittany #scaffolding #gamification #danceparty #AECT19 + https:\/\/t.co\/9ylOyPUVCh","truncated":false,"display_text_range":[0,239],"entities":{"hashtags":[{"text":"HourOfCode","indices":[109,120]},{"text":"code","indices":[133,138]},{"text":"coding","indices":[139,146]},{"text":"kidsthatcode","indices":[147,160]},{"text":"girlsthatcode","indices":[161,175]},{"text":"scaffolding","indices":[193,205]},{"text":"gamification","indices":[206,219]},{"text":"danceparty","indices":[220,231]},{"text":"AECT19","indices":[232,239]}],"symbols":[],"user_mentions":[{"screen_name":"hourofcode","name":"Hour + of Code","id":2310819848,"id_str":"2310819848","indices":[121,132]},{"screen_name":"anotherbrittany","name":"Brittany + Robinson","id":19326481,"id_str":"19326481","indices":[176,192]}],"urls":[],"media":[{"id":1186778382685495297,"id_str":"1186778382685495297","indices":[240,263],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhIprcU4AEXJrb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhIprcU4AEXJrb.jpg","url":"https:\/\/t.co\/9ylOyPUVCh","display_url":"pic.twitter.com\/9ylOyPUVCh","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186778390482735105\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186778382685495297,"id_str":"1186778382685495297","indices":[240,263],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhIprcU4AEXJrb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhIprcU4AEXJrb.jpg","url":"https:\/\/t.co\/9ylOyPUVCh","display_url":"pic.twitter.com\/9ylOyPUVCh","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186778390482735105\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1186778382685503489,"id_str":"1186778382685503489","indices":[240,263],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhIprcVAAEh0FU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhIprcVAAEh0FU.jpg","url":"https:\/\/t.co\/9ylOyPUVCh","display_url":"pic.twitter.com\/9ylOyPUVCh","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186778390482735105\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:14:11 +0000 2019","id":1187039525253500928,"id_str":"1187039525253500928","full_text":"RT + @johnhiltoniii: If you''re at #AECT19 pop on by the \"Introduction to Open + Education\" workshop I''m leading with @opencontent. Today, 9 AM\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"AECT19","indices":[32,39]}],"symbols":[],"user_mentions":[{"screen_name":"johnhiltoniii","name":"John + Hilton III","id":45002394,"id_str":"45002394","indices":[3,17]},{"screen_name":"opencontent","name":"David + Wiley","id":4514361,"id_str":"4514361","indices":[113,125]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64769037,"id_str":"64769037","name":"jenn\u03b9\u0493er + engl\u03c5nd","screen_name":"jmenglund03","location":"Settler on Dakota homelands","description":"@UMN_CI + LT PhD Candidate \u2022 @UMNews instructional designer \u2022 @GOGN_OER scholar + \u2022 @femedtech member \u2022 #OEP advocate \u2022 Pronouns: she\/her","url":"https:\/\/t.co\/cjLLex1JDn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cjLLex1JDn","expanded_url":"https:\/\/jenniferenglund.net\/","display_url":"jenniferenglund.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":662,"friends_count":627,"listed_count":72,"created_at":"Tue + Aug 11 17:10:00 +0000 2009","favourites_count":2052,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2918,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B7C8E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64769037\/1500750705","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"452568","profile_sidebar_border_color":"204207","profile_sidebar_fill_color":"060A00","profile_text_color":"618238","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 16:07:31 +0000 2019","id":1187037846227451904,"id_str":"1187037846227451904","full_text":"If + you''re at #AECT19 pop on by the \"Introduction to Open Education\" workshop + I''m leading with @opencontent. Today, 9 AM - 12 PM in room D, right by the + registration table. Would love to see you.","truncated":false,"display_text_range":[0,194],"entities":{"hashtags":[{"text":"AECT19","indices":[13,20]}],"symbols":[],"user_mentions":[{"screen_name":"opencontent","name":"David + Wiley","id":4514361,"id_str":"4514361","indices":[94,106]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45002394,"id_str":"45002394","name":"John + Hilton III","screen_name":"johnhiltoniii","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":776,"friends_count":179,"listed_count":26,"created_at":"Fri + Jun 05 21:32:35 +0000 2009","favourites_count":567,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":561,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575680770137722881\/WkkQhBdO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575680770137722881\/WkkQhBdO_normal.jpeg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":21,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:32:07 +0000 2019","id":1187044036558737410,"id_str":"1187044036558737410","full_text":"RT + @MuratTurkOU: Dr. Reiser #aect19inspired me! https:\/\/t.co\/bogpkQVll3","truncated":false,"display_text_range":[0,71],"entities":{"hashtags":[{"text":"aect19inspired","indices":[28,43]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187039186353680385,"id_str":"1187039186353680385","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk12c0UcAE5FI6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk12c0UcAE5FI6.jpg","url":"https:\/\/t.co\/bogpkQVll3","display_url":"pic.twitter.com\/bogpkQVll3","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1187039190434734080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1187039190434734080,"source_status_id_str":"1187039190434734080","source_user_id":1186318434964930560,"source_user_id_str":"1186318434964930560"}]},"extended_entities":{"media":[{"id":1187039186353680385,"id_str":"1187039186353680385","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk12c0UcAE5FI6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk12c0UcAE5FI6.jpg","url":"https:\/\/t.co\/bogpkQVll3","display_url":"pic.twitter.com\/bogpkQVll3","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1187039190434734080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1187039190434734080,"source_status_id_str":"1187039190434734080","source_user_id":1186318434964930560,"source_user_id_str":"1186318434964930560","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 16:12:51 +0000 2019","id":1187039190434734080,"id_str":"1187039190434734080","full_text":"Dr. + Reiser #aect19inspired me! https:\/\/t.co\/bogpkQVll3","truncated":false,"display_text_range":[0,30],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187039186353680385,"id_str":"1187039186353680385","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk12c0UcAE5FI6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk12c0UcAE5FI6.jpg","url":"https:\/\/t.co\/bogpkQVll3","display_url":"pic.twitter.com\/bogpkQVll3","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1187039190434734080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187039186353680385,"id_str":"1187039186353680385","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk12c0UcAE5FI6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk12c0UcAE5FI6.jpg","url":"https:\/\/t.co\/bogpkQVll3","display_url":"pic.twitter.com\/bogpkQVll3","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1187039190434734080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186318434964930560,"id_str":"1186318434964930560","name":"Murat + Turk, Ph.D.","screen_name":"MuratTurkEd","location":"Cincinnati, OH","description":"Online + Learning | motivation | engagement | online presences | loving husband of + Sinem Toraman Turk \u2764\ufe0f| loving father of @bgmtrk1\u2764\ufe0f | @FulbrightTurkey","url":"https:\/\/t.co\/DmCPHu9r7d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DmCPHu9r7d","expanded_url":"http:\/\/www.ardat.net","display_url":"ardat.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":853,"listed_count":5,"created_at":"Mon + Oct 21 16:29:13 +0000 2019","favourites_count":4396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2544,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186318434964930560\/1653078596","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"de"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"de"},{"created_at":"Wed + Oct 23 16:38:29 +0000 2019","id":1187045640745865221,"id_str":"1187045640745865221","full_text":"RT + @michaelmgrant: #aect19 Gallery Walk! https:\/\/t.co\/mLVUW2Myyk","truncated":false,"display_text_range":[0,64],"entities":{"hashtags":[{"text":"aect19","indices":[19,26]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[3,17]}],"urls":[],"media":[{"id":1186783424712888320,"id_str":"1186783424712888320","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhNPKdVUAAR4RU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhNPKdVUAAR4RU.jpg","url":"https:\/\/t.co\/mLVUW2Myyk","display_url":"pic.twitter.com\/mLVUW2Myyk","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785544778342400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":1186785544778342400,"source_status_id_str":"1186785544778342400","source_user_id":132653457,"source_user_id_str":"132653457"}]},"extended_entities":{"media":[{"id":1186783424712888320,"id_str":"1186783424712888320","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhNPKdVUAAR4RU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhNPKdVUAAR4RU.jpg","url":"https:\/\/t.co\/mLVUW2Myyk","display_url":"pic.twitter.com\/mLVUW2Myyk","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785544778342400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":1186785544778342400,"source_status_id_str":"1186785544778342400","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null},{"id":1186783424717053952,"id_str":"1186783424717053952","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhNPKeU4AAV_4t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhNPKeU4AAV_4t.jpg","url":"https:\/\/t.co\/mLVUW2Myyk","display_url":"pic.twitter.com\/mLVUW2Myyk","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785544778342400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":1186785544778342400,"source_status_id_str":"1186785544778342400","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null},{"id":1186783424717058048,"id_str":"1186783424717058048","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhNPKeU8AAKGuo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhNPKeU8AAKGuo.jpg","url":"https:\/\/t.co\/mLVUW2Myyk","display_url":"pic.twitter.com\/mLVUW2Myyk","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785544778342400\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":1186785544778342400,"source_status_id_str":"1186785544778342400","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null},{"id":1186783424712867842,"id_str":"1186783424712867842","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhNPKdVAAImuEJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhNPKdVAAImuEJ.jpg","url":"https:\/\/t.co\/mLVUW2Myyk","display_url":"pic.twitter.com\/mLVUW2Myyk","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785544778342400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1186785544778342400,"source_status_id_str":"1186785544778342400","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 23:24:57 +0000 2019","id":1186785544778342400,"id_str":"1186785544778342400","full_text":"#aect19 + Gallery Walk! https:\/\/t.co\/mLVUW2Myyk","truncated":false,"display_text_range":[0,21],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186783424712888320,"id_str":"1186783424712888320","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhNPKdVUAAR4RU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhNPKdVUAAR4RU.jpg","url":"https:\/\/t.co\/mLVUW2Myyk","display_url":"pic.twitter.com\/mLVUW2Myyk","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785544778342400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186783424712888320,"id_str":"1186783424712888320","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhNPKdVUAAR4RU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhNPKdVUAAR4RU.jpg","url":"https:\/\/t.co\/mLVUW2Myyk","display_url":"pic.twitter.com\/mLVUW2Myyk","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785544778342400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null},{"id":1186783424717053952,"id_str":"1186783424717053952","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhNPKeU4AAV_4t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhNPKeU4AAV_4t.jpg","url":"https:\/\/t.co\/mLVUW2Myyk","display_url":"pic.twitter.com\/mLVUW2Myyk","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785544778342400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null},{"id":1186783424717058048,"id_str":"1186783424717058048","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhNPKeU8AAKGuo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhNPKeU8AAKGuo.jpg","url":"https:\/\/t.co\/mLVUW2Myyk","display_url":"pic.twitter.com\/mLVUW2Myyk","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785544778342400\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null},{"id":1186783424712867842,"id_str":"1186783424712867842","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhNPKdVAAImuEJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhNPKdVAAImuEJ.jpg","url":"https:\/\/t.co\/mLVUW2Myyk","display_url":"pic.twitter.com\/mLVUW2Myyk","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785544778342400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:30:54 +0000 2019","id":1187043732794642432,"id_str":"1187043732794642432","full_text":"RT + @UT_IDT: Always great to see our alumni growing professionally and connecting + with our current graduate students at #AECT19 #AECT19insp\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[120,127]}],"symbols":[],"user_mentions":[{"screen_name":"UT_IDT","name":"UT + IDT Program","id":2205686646,"id_str":"2205686646","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 14:59:27 +0000 2019","id":1187020718619287553,"id_str":"1187020718619287553","full_text":"Always + great to see our alumni growing professionally and connecting with our current graduate + students at #AECT19 #AECT19inspired @anusbrah \ud83c\udf1f https:\/\/t.co\/wXqHdVYg5f","truncated":false,"display_text_range":[0,143],"entities":{"hashtags":[{"text":"AECT19","indices":[108,115]},{"text":"AECT19inspired","indices":[116,131]}],"symbols":[],"user_mentions":[{"screen_name":"anusbrah","name":"anubrahim","id":1326530826,"id_str":"1326530826","indices":[132,141]}],"urls":[],"media":[{"id":1187020710750720001,"id_str":"1187020710750720001","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/media\/EHklDB1UEAEJxyN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHklDB1UEAEJxyN.jpg","url":"https:\/\/t.co\/wXqHdVYg5f","display_url":"pic.twitter.com\/wXqHdVYg5f","expanded_url":"https:\/\/twitter.com\/UT_IDT\/status\/1187020718619287553\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187020710750720001,"id_str":"1187020710750720001","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/media\/EHklDB1UEAEJxyN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHklDB1UEAEJxyN.jpg","url":"https:\/\/t.co\/wXqHdVYg5f","display_url":"pic.twitter.com\/wXqHdVYg5f","expanded_url":"https:\/\/twitter.com\/UT_IDT\/status\/1187020718619287553\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2205686646,"id_str":"2205686646","name":"UT + IDT Program","screen_name":"UT_IDT","location":"\ud83d\udccdTampa, Florida","description":"Instructional + Design & Technology Master Program at the @UofTampa \ud83d\udcbb \ud83d\udcda + #instructionaldesign #edtech #learning #design #technology","url":"https:\/\/t.co\/H4Yb0LBXjr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/H4Yb0LBXjr","expanded_url":"http:\/\/www.ut.edu\/idt","display_url":"ut.edu\/idt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":484,"friends_count":637,"listed_count":24,"created_at":"Wed + Nov 20 22:15:34 +0000 2013","favourites_count":1017,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/986987284951126017\/Z93W1kpY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/986987284951126017\/Z93W1kpY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2205686646\/1607182131","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 14:58:14 +0000 2019","id":1187020411118047232,"id_str":"1187020411118047232","full_text":"RT + @LearnEngage: Good morning #AECT19! The Learner Engagement Division is having + their membership meeting at 3pm today in Conf Room 8. Stop\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[30,37]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 14:53:34 +0000 2019","id":1187019235660185600,"id_str":"1187019235660185600","full_text":"Good + morning #AECT19! The Learner Engagement Division is having their membership + meeting at 3pm today in Conf Room 8. Stop by to connect with other members + and hear about open board positions, division awards, and opportunities to + present your work to @AECT and beyond!","truncated":false,"display_text_range":[0,269],"entities":{"hashtags":[{"text":"AECT19","indices":[13,20]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[252,257]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:22:43 +0000 2019","id":1187041674016354304,"id_str":"1187041674016354304","full_text":"RT + @RitaFennelly: Listening to leaders in the field share their journey at the + @AECT panel AECT: Lessons in Leadership in the Field of Educ\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[79,84]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 16:19:21 +0000 2019","id":1187040823348584448,"id_str":"1187040823348584448","full_text":"Listening + to leaders in the field share their journey at the @AECT panel AECT: Lessons + in Leadership in the Field of Educational Technology, which is really interesting. + I hope to be on a panel like that in 20 years. #ProfessionalGoals #aect19inspired","truncated":false,"display_text_range":[0,251],"entities":{"hashtags":[{"text":"ProfessionalGoals","indices":[217,235]},{"text":"aect19inspired","indices":[236,251]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[61,66]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 15:48:22 +0000 2019","id":1187033028100415488,"id_str":"1187033028100415488","full_text":"#aect19inspired + mostly smiling champions. https:\/\/t.co\/JuSeJWCfJY","truncated":false,"display_text_range":[0,41],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187033020143849472,"id_str":"1187033020143849472","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwPh5VUAA_HgO.jpg","url":"https:\/\/t.co\/JuSeJWCfJY","display_url":"pic.twitter.com\/JuSeJWCfJY","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187033028100415488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":996,"resize":"fit"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:32:26 +0000 2019","id":1187044115852099584,"id_str":"1187044115852099584","full_text":"RT + @RitaFennelly: Listening to leaders in the field share their journey at the + @AECT panel AECT: Lessons in Leadership in the Field of Educ\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[79,84]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 16:19:21 +0000 2019","id":1187040823348584448,"id_str":"1187040823348584448","full_text":"Listening + to leaders in the field share their journey at the @AECT panel AECT: Lessons + in Leadership in the Field of Educational Technology, which is really interesting. + I hope to be on a panel like that in 20 years. #ProfessionalGoals #aect19inspired","truncated":false,"display_text_range":[0,251],"entities":{"hashtags":[{"text":"ProfessionalGoals","indices":[217,235]},{"text":"aect19inspired","indices":[236,251]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[61,66]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:33:47 +0000 2019","id":1187044458920955904,"id_str":"1187044458920955904","full_text":"RT + @TaraBunag: Breakfast with champions #aect19 https:\/\/t.co\/pN4fmB6pHb","truncated":false,"display_text_range":[0,71],"entities":{"hashtags":[{"text":"aect19","indices":[40,47]}],"symbols":[],"user_mentions":[{"screen_name":"TaraBunag","name":"Tara + Bunag","id":740007354121363457,"id_str":"740007354121363457","indices":[3,13]}],"urls":[],"media":[{"id":1187031696660582400,"id_str":"1187031696660582400","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkvCfiVUAAR2A2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkvCfiVUAAR2A2.jpg","url":"https:\/\/t.co\/pN4fmB6pHb","display_url":"pic.twitter.com\/pN4fmB6pHb","expanded_url":"https:\/\/twitter.com\/TaraBunag\/status\/1187031707997724672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1187031707997724672,"source_status_id_str":"1187031707997724672","source_user_id":740007354121363457,"source_user_id_str":"740007354121363457"}]},"extended_entities":{"media":[{"id":1187031696660582400,"id_str":"1187031696660582400","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkvCfiVUAAR2A2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkvCfiVUAAR2A2.jpg","url":"https:\/\/t.co\/pN4fmB6pHb","display_url":"pic.twitter.com\/pN4fmB6pHb","expanded_url":"https:\/\/twitter.com\/TaraBunag\/status\/1187031707997724672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1187031707997724672,"source_status_id_str":"1187031707997724672","source_user_id":740007354121363457,"source_user_id_str":"740007354121363457","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:43:07 +0000 2019","id":1187031707997724672,"id_str":"1187031707997724672","full_text":"Breakfast + with champions #aect19 https:\/\/t.co\/pN4fmB6pHb","truncated":false,"display_text_range":[0,32],"entities":{"hashtags":[{"text":"aect19","indices":[25,32]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187031696660582400,"id_str":"1187031696660582400","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkvCfiVUAAR2A2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkvCfiVUAAR2A2.jpg","url":"https:\/\/t.co\/pN4fmB6pHb","display_url":"pic.twitter.com\/pN4fmB6pHb","expanded_url":"https:\/\/twitter.com\/TaraBunag\/status\/1187031707997724672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187031696660582400,"id_str":"1187031696660582400","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkvCfiVUAAR2A2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkvCfiVUAAR2A2.jpg","url":"https:\/\/t.co\/pN4fmB6pHb","display_url":"pic.twitter.com\/pN4fmB6pHb","expanded_url":"https:\/\/twitter.com\/TaraBunag\/status\/1187031707997724672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":740007354121363457,"id_str":"740007354121363457","name":"Tara + Bunag","screen_name":"TaraBunag","location":"Stockton, CA","description":"I + am interested in chemistry teaching, OER, educational technology, ADA, LGBTQIA+, + STEM, and related topics.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":85,"friends_count":101,"listed_count":0,"created_at":"Tue + Jun 07 02:27:56 +0000 2016","favourites_count":1125,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":630,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/741407026002038784\/IHr6hZVd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/741407026002038784\/IHr6hZVd_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:32:12 +0000 2019","id":1187044057056366592,"id_str":"1187044057056366592","full_text":"RT + @robmoore3: Looking for a great session this afternoon? Come check @profoyarzun, + Florence Martin and myself as we share results from our\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[3,13]},{"screen_name":"profoyarzun","name":"Beth + Oyarzun","id":19023356,"id_str":"19023356","indices":[70,82]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 16:19:00 +0000 2019","id":1187040735830261762,"id_str":"1187040735830261762","full_text":"Looking + for a great session this afternoon? Come check @profoyarzun, Florence Martin + and myself as we share results from our study on online faculty and time management + strategies. You have time! #aect19inspired #aect19 https:\/\/t.co\/dt9cvQw69l","truncated":false,"display_text_range":[0,219],"entities":{"hashtags":[{"text":"aect19inspired","indices":[196,211]},{"text":"aect19","indices":[212,219]}],"symbols":[],"user_mentions":[{"screen_name":"profoyarzun","name":"Beth + Oyarzun","id":19023356,"id_str":"19023356","indices":[55,67]}],"urls":[],"media":[{"id":1184453813996011520,"id_str":"1184453813996011520","indices":[220,243],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAGd-QWwAAZdrW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAGd-QWwAAZdrW.png","url":"https:\/\/t.co\/dt9cvQw69l","display_url":"pic.twitter.com\/dt9cvQw69l","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187040735830261762\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":498,"resize":"fit"},"large":{"w":723,"h":529,"resize":"fit"},"medium":{"w":723,"h":529,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1184453813996011520,"id_str":"1184453813996011520","indices":[220,243],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAGd-QWwAAZdrW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAGd-QWwAAZdrW.png","url":"https:\/\/t.co\/dt9cvQw69l","display_url":"pic.twitter.com\/dt9cvQw69l","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1187040735830261762\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":498,"resize":"fit"},"large":{"w":723,"h":529,"resize":"fit"},"medium":{"w":723,"h":529,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 15:01:27 +0000 2019","id":1187021222183198722,"id_str":"1187021222183198722","full_text":".@UT_IDT + @UofTampa alumna, Cristiane Rocha Vicentini \ud83c\udde7\ud83c\uddf7 (who + is now a doctoral student at @univmiami) presenting at #AECT19 #aect19inspired + Proud of you, Cris! \ud83c\udf1f https:\/\/t.co\/Zohp6ZNpOE","truncated":false,"display_text_range":[0,161],"entities":{"hashtags":[{"text":"AECT19","indices":[116,123]},{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"UT_IDT","name":"UT + IDT Program","id":2205686646,"id_str":"2205686646","indices":[1,8]},{"screen_name":"UofTampa","name":"The + University of Tampa","id":30738290,"id_str":"30738290","indices":[9,18]},{"screen_name":"univmiami","name":"University + of Miami","id":15585350,"id_str":"15585350","indices":[90,100]}],"urls":[],"media":[{"id":1187021207381504000,"id_str":"1187021207381504000","indices":[162,185],"media_url":"http:\/\/pbs.twimg.com\/media\/EHklf77UcAAcqSy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHklf77UcAAcqSy.jpg","url":"https:\/\/t.co\/Zohp6ZNpOE","display_url":"pic.twitter.com\/Zohp6ZNpOE","expanded_url":"https:\/\/twitter.com\/UT_IDT\/status\/1187021222183198722\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187021207381504000,"id_str":"1187021207381504000","indices":[162,185],"media_url":"http:\/\/pbs.twimg.com\/media\/EHklf77UcAAcqSy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHklf77UcAAcqSy.jpg","url":"https:\/\/t.co\/Zohp6ZNpOE","display_url":"pic.twitter.com\/Zohp6ZNpOE","expanded_url":"https:\/\/twitter.com\/UT_IDT\/status\/1187021222183198722\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2205686646,"id_str":"2205686646","name":"UT + IDT Program","screen_name":"UT_IDT","location":"\ud83d\udccdTampa, Florida","description":"Instructional + Design & Technology Master Program at the @UofTampa \ud83d\udcbb \ud83d\udcda + #instructionaldesign #edtech #learning #design #technology","url":"https:\/\/t.co\/H4Yb0LBXjr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/H4Yb0LBXjr","expanded_url":"http:\/\/www.ut.edu\/idt","display_url":"ut.edu\/idt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":484,"friends_count":637,"listed_count":24,"created_at":"Wed + Nov 20 22:15:34 +0000 2013","favourites_count":1017,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/986987284951126017\/Z93W1kpY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/986987284951126017\/Z93W1kpY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2205686646\/1607182131","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 15:50:02 +0000 2019","id":1187033448906711040,"id_str":"1187033448906711040","full_text":"RT + @christieliuidtr: Come join us in Conference room 14 at 11 and then in Room + 1 at 4 today @AECT @aectclt @nicolapallitt #aect #aect19insp\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect","indices":[122,127]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[92,97]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[98,106]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[107,121]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":774754728999788545,"id_str":"774754728999788545","name":"Engaged + JMU","screen_name":"JMUEngaged","location":"Harrisonburg, VA","description":"Fostering + JMU''s vision: To be the national model for the engaged university. #EngagedJMU. + Visit the eHubs: https:\/\/t.co\/vfEyHy0KgI","url":"https:\/\/t.co\/vAWSF4u5ai","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/vAWSF4u5ai","expanded_url":"http:\/\/www.jmu.edu\/engagement\/","display_url":"jmu.edu\/engagement\/","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/vfEyHy0KgI","expanded_url":"https:\/\/tinyurl.com\/y36ybgbo","display_url":"tinyurl.com\/y36ybgbo","indices":[107,130]}]}},"protected":false,"followers_count":709,"friends_count":959,"listed_count":4,"created_at":"Sat + Sep 10 23:41:36 +0000 2016","favourites_count":1944,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1221,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1090002948967596034\/BcOEczHb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1090002948967596034\/BcOEczHb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/774754728999788545\/1539711862","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:41:06 +0000 2019","id":1187031197819359235,"id_str":"1187031197819359235","full_text":"Come + join us in Conference room 14 at 11 and then in Room 1 at 4 today @AECT @aectclt + @nicolapallitt #aect #aect19inspired #aect19 intercultural and international + collaborative research https:\/\/t.co\/VfhCV44Ztw","truncated":false,"display_text_range":[0,185],"entities":{"hashtags":[{"text":"aect","indices":[101,106]},{"text":"aect19inspired","indices":[107,122]},{"text":"aect19","indices":[123,130]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[71,76]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[77,85]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[86,100]}],"urls":[{"url":"https:\/\/t.co\/VfhCV44Ztw","expanded_url":"https:\/\/twitter.com\/LiuJh_Christie\/status\/1185610918253776896","display_url":"twitter.com\/LiuJh_Christie\u2026","indices":[186,209]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1185610918253776896,"quoted_status_id_str":"1185610918253776896","quoted_status_permalink":{"url":"https:\/\/t.co\/VfhCV44Ztw","expanded":"https:\/\/twitter.com\/LiuJh_Christie\/status\/1185610918253776896","display":"twitter.com\/LiuJh_Christie\u2026"},"quoted_status":{"created_at":"Sat + Oct 19 17:37:25 +0000 2019","id":1185610918253776896,"id_str":"1185610918253776896","full_text":"Collaborations + @aectclt #aect19inspired #aect19 @AECT w\/ @nicolapallitt \ud835\udddb\ud835\uddee\ud835\uddfb\ud835\uddfb\ud835\uddee\ud835\uddf5 + \ud835\uddda\ud835\uddff\ud835\uddfc\ud835\ude00\ud835\ude00\ud835\uddfa\ud835\uddee\ud835\uddfb, + @AmyLomellini_ID \ud835\uddd4\ud835\uddf9\ud835\uddf6\ud835\uddf0\ud835\uddf2,\ud835\uddd5\ud835\uddf2\ud835\uddf0\ud835\uddfc\ud835\uddf9\ud835\uddee,\ud835\udde7\ud835\uddf6\ud835\uddee,\ud835\udde0\ud835\uddfa\ud835\uddee\ud835\uddef\ud835\uddee\ud835\uddf9\ud835\uddf2\ud835\uddf1\ud835\uddf6,\ud835\udddf\ud835\uddf2\ud835\uddee\ud835\uddf5,\ud835\udde1\ud835\uddf2\ud835\uddf6\ud835\uddf9,\ud835\uddfc\ud835\uddf9\ud835\ude02\ud835\ude04\ud835\uddee\ud835\ude00\ud835\uddf2\ud835\uddf3\ud835\ude02\ud835\uddfb\ud835\uddfa\ud835\uddf6,\ud835\udde1\ud835\uddfc\ud835\uddfa\ud835\uddfd\ud835\uddf6\ud835\uddf9\ud835\uddfc10\/23,11am + & 4pm. Safe travels @emergeAfrica friends! https:\/\/t.co\/Unp2OoqT6b","truncated":false,"display_text_range":[0,220],"entities":{"hashtags":[{"text":"aect19inspired","indices":[24,39]},{"text":"aect19","indices":[40,47]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[15,23]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[48,53]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[57,71]},{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[89,105]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[198,211]}],"urls":[],"media":[{"id":1185610914269151235,"id_str":"1185610914269151235","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"large":{"w":707,"h":393,"resize":"fit"},"medium":{"w":707,"h":393,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185610914269151235,"id_str":"1185610914269151235","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"large":{"w":707,"h":393,"resize":"fit"},"medium":{"w":707,"h":393,"resize":"fit"}},"ext_alt_text":null},{"id":1185610914281725953,"id_str":"1185610914281725953","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2EuWoAELmy-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2EuWoAELmy-.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":683,"h":381,"resize":"fit"},"large":{"w":683,"h":381,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":4,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1185610918253776896,"quoted_status_id_str":"1185610918253776896","quoted_status_permalink":{"url":"https:\/\/t.co\/VfhCV44Ztw","expanded":"https:\/\/twitter.com\/LiuJh_Christie\/status\/1185610918253776896","display":"twitter.com\/LiuJh_Christie\u2026"},"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:46:33 +0000 2019","id":1187047672152125440,"id_str":"1187047672152125440","full_text":"Pedro + voted for ME #aect19","truncated":false,"display_text_range":[0,26],"entities":{"hashtags":[{"text":"aect19","indices":[19,26]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:36:12 +0000 2019","id":1187045066323329024,"id_str":"1187045066323329024","full_text":"RT + @AllisonHallAZ: Made it to #aect19inspired! Ran into some @edtechbsu folks + and then started learning right away! Larson, M.B., & Lockee,\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19inspired","indices":[30,45]}],"symbols":[],"user_mentions":[{"screen_name":"AllisonHallAZ","name":"Dr. + Allison Barsnica Hall","id":720930385,"id_str":"720930385","indices":[3,17]},{"screen_name":"edtechbsu","name":"EDTECH@Boise + State","id":29818149,"id_str":"29818149","indices":[61,71]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:10:16 +0000 2019","id":1186736547212587008,"id_str":"1186736547212587008","full_text":"Made + it to #aect19inspired! Ran into some @edtechbsu folks and then started learning + right away! Larson, M.B., & Lockee, B.B. (2019). Streamlined ID: A practical + guide to instructional design. (2nd ed.) Routledge\/Taylor & Francis.","truncated":false,"display_text_range":[0,238],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]}],"symbols":[],"user_mentions":[{"screen_name":"edtechbsu","name":"EDTECH@Boise + State","id":29818149,"id_str":"29818149","indices":[42,52]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":720930385,"id_str":"720930385","name":"Dr. + Allison Barsnica Hall","screen_name":"AllisonHallAZ","location":"Tempe, AZ","description":"Director + of Learning Experience Design @ ASU. Lifelong Learner. Interested in how to + help ALL learners. she\/her\/hers","url":"https:\/\/t.co\/Pi5aZFLirT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Pi5aZFLirT","expanded_url":"https:\/\/www.linkedin.com\/in\/allisonbhall\/","display_url":"linkedin.com\/in\/allisonbhal\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":417,"friends_count":563,"listed_count":30,"created_at":"Fri + Jul 27 21:42:06 +0000 2012","favourites_count":3118,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1022,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/981993480833515520\/S96xaBm1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/981993480833515520\/S96xaBm1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/720930385\/1581027324","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":12,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 15:12:21 +0000 2019","id":1187023963257331712,"id_str":"1187023963257331712","full_text":"Back + atcha! #aectinspired #aect19 @aectdddivision @DrRossPerkins https:\/\/t.co\/jnOUByzw90","truncated":false,"display_text_range":[0,64],"entities":{"hashtags":[{"text":"aectinspired","indices":[12,25]},{"text":"aect19","indices":[26,33]}],"symbols":[],"user_mentions":[{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[34,49]},{"screen_name":"DrRossPerkins","name":"Ross + Perkins, PhD","id":2905458781,"id_str":"2905458781","indices":[50,64]}],"urls":[{"url":"https:\/\/t.co\/jnOUByzw90","expanded_url":"https:\/\/twitter.com\/DrRossPerkins\/status\/1187005731704229888","display_url":"twitter.com\/DrRossPerkins\/\u2026","indices":[65,88]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":13515,"id_str":"13515","name":"Jennifer + Maddrell","screen_name":"JenM","location":"Chicago, IL","description":"Teach, + study & design learning experiences","url":"https:\/\/t.co\/725I4m2QWv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/725I4m2QWv","expanded_url":"https:\/\/jennifermaddrell.com","display_url":"jennifermaddrell.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2420,"friends_count":4448,"listed_count":80,"created_at":"Tue + Nov 21 13:57:14 +0000 2006","favourites_count":7779,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3455,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13515\/1604669803","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1187005731704229888,"quoted_status_id_str":"1187005731704229888","quoted_status_permalink":{"url":"https:\/\/t.co\/jnOUByzw90","expanded":"https:\/\/twitter.com\/DrRossPerkins\/status\/1187005731704229888","display":"twitter.com\/DrRossPerkins\/\u2026"},"quoted_status":{"created_at":"Wed + Oct 23 13:59:54 +0000 2019","id":1187005731704229888,"id_str":"1187005731704229888","full_text":"I\u2019m + inspired by the research & practice contributions to the field of #instructionaldesign + by these two amazing colleagues, Dr. Monica Tracey and Dr. Jennifer Maddrell. + #aect19inspired #aectRTD @aectdddivision @JenM @design4learn https:\/\/t.co\/G5VswE0eu0","truncated":false,"display_text_range":[0,235],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[76,96]},{"text":"aect19inspired","indices":[175,190]},{"text":"aectRTD","indices":[191,199]}],"symbols":[],"user_mentions":[{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[200,215]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[216,221]},{"screen_name":"design4learn","name":"Designers + for Learning","id":1610558420,"id_str":"1610558420","indices":[222,235]}],"urls":[],"media":[{"id":1187005725005844480,"id_str":"1187005725005844480","indices":[236,259],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkXavlUEAALckh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkXavlUEAALckh.jpg","url":"https:\/\/t.co\/G5VswE0eu0","display_url":"pic.twitter.com\/G5VswE0eu0","expanded_url":"https:\/\/twitter.com\/DrRossPerkins\/status\/1187005731704229888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187005725005844480,"id_str":"1187005725005844480","indices":[236,259],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkXavlUEAALckh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkXavlUEAALckh.jpg","url":"https:\/\/t.co\/G5VswE0eu0","display_url":"pic.twitter.com\/G5VswE0eu0","expanded_url":"https:\/\/twitter.com\/DrRossPerkins\/status\/1187005731704229888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2905458781,"id_str":"2905458781","name":"Ross + Perkins, PhD","screen_name":"DrRossPerkins","location":"Apex, NC","description":"Asc + Prof @ Boise State. EdS\/EdD ProgCoord. https:\/\/t.co\/8jp7WXqbV1 | Huge + listserv influencer, 1998-2006.","url":"https:\/\/t.co\/8jp7WXqbV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[43,66]}]}},"protected":false,"followers_count":773,"friends_count":485,"listed_count":21,"created_at":"Thu + Nov 20 19:52:09 +0000 2014","favourites_count":3672,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2751,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2905458781\/1618315302","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:31:46 +0000 2019","id":1187043950709764098,"id_str":"1187043950709764098","full_text":"RT + @DrVirtuality: Presenting today Hope to see you there! @aectclt #AECT19 #AECT19inspired + #edtech https:\/\/t.co\/hXWV3G5B32","truncated":false,"display_text_range":[0,122],"entities":{"hashtags":[{"text":"AECT19","indices":[67,74]},{"text":"AECT19inspired","indices":[75,90]},{"text":"edtech","indices":[91,98]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[3,16]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[58,66]}],"urls":[],"media":[{"id":1185701580856643584,"id_str":"1185701580856643584","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR1TkCUUAAtyDW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR1TkCUUAAtyDW.jpg","url":"https:\/\/t.co\/hXWV3G5B32","display_url":"pic.twitter.com\/hXWV3G5B32","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187030166368702464\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"source_status_id":1187030166368702464,"source_status_id_str":"1187030166368702464","source_user_id":15667548,"source_user_id_str":"15667548"}]},"extended_entities":{"media":[{"id":1185701580856643584,"id_str":"1185701580856643584","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR1TkCUUAAtyDW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR1TkCUUAAtyDW.jpg","url":"https:\/\/t.co\/hXWV3G5B32","display_url":"pic.twitter.com\/hXWV3G5B32","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187030166368702464\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"source_status_id":1187030166368702464,"source_status_id_str":"1187030166368702464","source_user_id":15667548,"source_user_id_str":"15667548","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:37:00 +0000 2019","id":1187030166368702464,"id_str":"1187030166368702464","full_text":"Presenting + today Hope to see you there! @aectclt #AECT19 #AECT19inspired #edtech https:\/\/t.co\/hXWV3G5B32","truncated":false,"display_text_range":[0,80],"entities":{"hashtags":[{"text":"AECT19","indices":[49,56]},{"text":"AECT19inspired","indices":[57,72]},{"text":"edtech","indices":[73,80]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[40,48]}],"urls":[],"media":[{"id":1185701580856643584,"id_str":"1185701580856643584","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR1TkCUUAAtyDW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR1TkCUUAAtyDW.jpg","url":"https:\/\/t.co\/hXWV3G5B32","display_url":"pic.twitter.com\/hXWV3G5B32","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187030166368702464\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185701580856643584,"id_str":"1185701580856643584","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR1TkCUUAAtyDW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR1TkCUUAAtyDW.jpg","url":"https:\/\/t.co\/hXWV3G5B32","display_url":"pic.twitter.com\/hXWV3G5B32","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187030166368702464\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 15:41:06 +0000 2019","id":1187031197819359235,"id_str":"1187031197819359235","full_text":"Come + join us in Conference room 14 at 11 and then in Room 1 at 4 today @AECT @aectclt + @nicolapallitt #aect #aect19inspired #aect19 intercultural and international + collaborative research https:\/\/t.co\/VfhCV44Ztw","truncated":false,"display_text_range":[0,185],"entities":{"hashtags":[{"text":"aect","indices":[101,106]},{"text":"aect19inspired","indices":[107,122]},{"text":"aect19","indices":[123,130]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[71,76]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[77,85]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[86,100]}],"urls":[{"url":"https:\/\/t.co\/VfhCV44Ztw","expanded_url":"https:\/\/twitter.com\/LiuJh_Christie\/status\/1185610918253776896","display_url":"twitter.com\/LiuJh_Christie\u2026","indices":[186,209]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1185610918253776896,"quoted_status_id_str":"1185610918253776896","quoted_status_permalink":{"url":"https:\/\/t.co\/VfhCV44Ztw","expanded":"https:\/\/twitter.com\/LiuJh_Christie\/status\/1185610918253776896","display":"twitter.com\/LiuJh_Christie\u2026"},"quoted_status":{"created_at":"Sat + Oct 19 17:37:25 +0000 2019","id":1185610918253776896,"id_str":"1185610918253776896","full_text":"Collaborations + @aectclt #aect19inspired #aect19 @AECT w\/ @nicolapallitt \ud835\udddb\ud835\uddee\ud835\uddfb\ud835\uddfb\ud835\uddee\ud835\uddf5 + \ud835\uddda\ud835\uddff\ud835\uddfc\ud835\ude00\ud835\ude00\ud835\uddfa\ud835\uddee\ud835\uddfb, + @AmyLomellini_ID \ud835\uddd4\ud835\uddf9\ud835\uddf6\ud835\uddf0\ud835\uddf2,\ud835\uddd5\ud835\uddf2\ud835\uddf0\ud835\uddfc\ud835\uddf9\ud835\uddee,\ud835\udde7\ud835\uddf6\ud835\uddee,\ud835\udde0\ud835\uddfa\ud835\uddee\ud835\uddef\ud835\uddee\ud835\uddf9\ud835\uddf2\ud835\uddf1\ud835\uddf6,\ud835\udddf\ud835\uddf2\ud835\uddee\ud835\uddf5,\ud835\udde1\ud835\uddf2\ud835\uddf6\ud835\uddf9,\ud835\uddfc\ud835\uddf9\ud835\ude02\ud835\ude04\ud835\uddee\ud835\ude00\ud835\uddf2\ud835\uddf3\ud835\ude02\ud835\uddfb\ud835\uddfa\ud835\uddf6,\ud835\udde1\ud835\uddfc\ud835\uddfa\ud835\uddfd\ud835\uddf6\ud835\uddf9\ud835\uddfc10\/23,11am + & 4pm. Safe travels @emergeAfrica friends! https:\/\/t.co\/Unp2OoqT6b","truncated":false,"display_text_range":[0,220],"entities":{"hashtags":[{"text":"aect19inspired","indices":[24,39]},{"text":"aect19","indices":[40,47]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[15,23]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[48,53]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[57,71]},{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[89,105]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[198,211]}],"urls":[],"media":[{"id":1185610914269151235,"id_str":"1185610914269151235","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"large":{"w":707,"h":393,"resize":"fit"},"medium":{"w":707,"h":393,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185610914269151235,"id_str":"1185610914269151235","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"large":{"w":707,"h":393,"resize":"fit"},"medium":{"w":707,"h":393,"resize":"fit"}},"ext_alt_text":null},{"id":1185610914281725953,"id_str":"1185610914281725953","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2EuWoAELmy-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2EuWoAELmy-.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":683,"h":381,"resize":"fit"},"large":{"w":683,"h":381,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":4,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:12:51 +0000 2019","id":1187039190434734080,"id_str":"1187039190434734080","full_text":"Dr. + Reiser #aect19inspired me! https:\/\/t.co\/bogpkQVll3","truncated":false,"display_text_range":[0,30],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187039186353680385,"id_str":"1187039186353680385","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk12c0UcAE5FI6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk12c0UcAE5FI6.jpg","url":"https:\/\/t.co\/bogpkQVll3","display_url":"pic.twitter.com\/bogpkQVll3","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1187039190434734080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187039186353680385,"id_str":"1187039186353680385","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk12c0UcAE5FI6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk12c0UcAE5FI6.jpg","url":"https:\/\/t.co\/bogpkQVll3","display_url":"pic.twitter.com\/bogpkQVll3","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1187039190434734080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186318434964930560,"id_str":"1186318434964930560","name":"Murat + Turk, Ph.D.","screen_name":"MuratTurkEd","location":"Cincinnati, OH","description":"Online + Learning | motivation | engagement | online presences | loving husband of + Sinem Toraman Turk \u2764\ufe0f| loving father of @bgmtrk1\u2764\ufe0f | @FulbrightTurkey","url":"https:\/\/t.co\/DmCPHu9r7d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DmCPHu9r7d","expanded_url":"http:\/\/www.ardat.net","display_url":"ardat.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":853,"listed_count":5,"created_at":"Mon + Oct 21 16:29:13 +0000 2019","favourites_count":4396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2544,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186318434964930560\/1653078596","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"de"},{"created_at":"Wed + Oct 23 16:07:31 +0000 2019","id":1187037846227451904,"id_str":"1187037846227451904","full_text":"If + you''re at #AECT19 pop on by the \"Introduction to Open Education\" workshop + I''m leading with @opencontent. Today, 9 AM - 12 PM in room D, right by the + registration table. Would love to see you.","truncated":false,"display_text_range":[0,194],"entities":{"hashtags":[{"text":"AECT19","indices":[13,20]}],"symbols":[],"user_mentions":[{"screen_name":"opencontent","name":"David + Wiley","id":4514361,"id_str":"4514361","indices":[94,106]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45002394,"id_str":"45002394","name":"John + Hilton III","screen_name":"johnhiltoniii","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":776,"friends_count":179,"listed_count":26,"created_at":"Fri + Jun 05 21:32:35 +0000 2009","favourites_count":567,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":561,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575680770137722881\/WkkQhBdO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575680770137722881\/WkkQhBdO_normal.jpeg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":21,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:33:35 +0000 2019","id":1187044405732990977,"id_str":"1187044405732990977","full_text":"RT + @ISLT_FSU: #AECT19: Come hear about \"The Pursuit of STEM Education: 5 Considerations + for Design and Implementation\" with #FSU #FSUCOE #I\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]},{"text":"FSU","indices":[124,128]},{"text":"FSUCOE","indices":[129,136]}],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:55:10 +0000 2019","id":1187034740634861571,"id_str":"1187034740634861571","full_text":"#AECT19: + Come hear about \"The Pursuit of STEM Education: 5 Considerations for Design + and Implementation\" with #FSU #FSUCOE #ISLT Demetrius Rice, James Klein & + Ginny L. Smith today @ 11 am - 11:50 am at Convention Center in Conference + Rm 3. (session 195) #STEM #Education","truncated":false,"display_text_range":[0,274],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"FSU","indices":[110,114]},{"text":"FSUCOE","indices":[115,122]},{"text":"ISLT","indices":[123,128]},{"text":"STEM","indices":[258,263]},{"text":"Education","indices":[264,274]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:38:03 +0000 2019","id":1187045532725731328,"id_str":"1187045532725731328","full_text":"RT + @christieliuidtr: RT @nicolapallitt reflection and discussion on intercultural + collaborative research, cultural responsiveness, inclusio\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[24,38]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 22:00:28 +0000 2019","id":1186764280860819456,"id_str":"1186764280860819456","full_text":"RT + @nicolapallitt reflection and discussion on intercultural collaborative research, + cultural responsiveness, inclusion, equity, fairness, ethics, sponsoring agency, + partnership, DBR #aect19 #aect19inspired @AECT @aectclt @ge_xun @KuiXieOSU + Dr. Reeves @amy_c_bradshaw DeepakS Thx https:\/\/t.co\/0v7FBWrxxN","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"aect19","indices":[184,191]},{"text":"aect19inspired","indices":[192,207]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[208,213]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[214,222]},{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[223,230]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[253,268]}],"urls":[{"url":"https:\/\/t.co\/0v7FBWrxxN","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944","display_url":"twitter.com\/nicolapallitt\/\u2026","indices":[281,304]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186692181618130944,"quoted_status_id_str":"1186692181618130944","quoted_status_permalink":{"url":"https:\/\/t.co\/0v7FBWrxxN","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944","display":"twitter.com\/nicolapallitt\/\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 17:13:58 +0000 2019","id":1186692181618130944,"id_str":"1186692181618130944","full_text":"Great + panel about collaborative research just started in Conf Room 1 @AECT @aectclt + #aect19inspired https:\/\/t.co\/Po9ALRdpN7","truncated":false,"display_text_range":[0,99],"entities":{"hashtags":[{"text":"aect19inspired","indices":[84,99]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[69,74]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[75,83]}],"urls":[],"media":[{"id":1186692170176057344,"id_str":"1186692170176057344","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf6Pc0U0AAHbIs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf6Pc0U0AAHbIs.jpg","url":"https:\/\/t.co\/Po9ALRdpN7","display_url":"pic.twitter.com\/Po9ALRdpN7","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":291,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":438,"resize":"fit"},"medium":{"w":1024,"h":438,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186692170176057344,"id_str":"1186692170176057344","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf6Pc0U0AAHbIs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf6Pc0U0AAHbIs.jpg","url":"https:\/\/t.co\/Po9ALRdpN7","display_url":"pic.twitter.com\/Po9ALRdpN7","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":291,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":438,"resize":"fit"},"medium":{"w":1024,"h":438,"resize":"fit"}},"ext_alt_text":null},{"id":1186692177092476928,"id_str":"1186692177092476928","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf6P2lVAAATT7U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf6P2lVAAATT7U.jpg","url":"https:\/\/t.co\/Po9ALRdpN7","display_url":"pic.twitter.com\/Po9ALRdpN7","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":655,"resize":"fit"},"large":{"w":1024,"h":655,"resize":"fit"},"small":{"w":680,"h":435,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"8fa6d7a33b83ef26","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8fa6d7a33b83ef26.json","place_type":"city","name":"Paradise","full_name":"Paradise, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.2092535,35.984784],[-115.0610763,35.984784],[-115.0610763,36.137145],[-115.2092535,36.137145]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186692181618130944,"quoted_status_id_str":"1186692181618130944","quoted_status_permalink":{"url":"https:\/\/t.co\/0v7FBWrxxN","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944","display":"twitter.com\/nicolapallitt\/\u2026"},"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:37:11 +0000 2019","id":1187045312486993920,"id_str":"1187045312486993920","full_text":"RT + @profoyarzun: The Design competition judges luncheon. The finalist presentations + were inspiring! #aect19 https:\/\/t.co\/xBTNGoEjnu","truncated":false,"display_text_range":[0,131],"entities":{"hashtags":[{"text":"aect19","indices":[100,107]}],"symbols":[],"user_mentions":[{"screen_name":"profoyarzun","name":"Beth + Oyarzun","id":19023356,"id_str":"19023356","indices":[3,15]}],"urls":[],"media":[{"id":1187014910590406656,"id_str":"1187014910590406656","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkfxajVUAAFTsk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkfxajVUAAFTsk.jpg","url":"https:\/\/t.co\/xBTNGoEjnu","display_url":"pic.twitter.com\/xBTNGoEjnu","expanded_url":"https:\/\/twitter.com\/profoyarzun\/status\/1187014917653581825\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1187014917653581825,"source_status_id_str":"1187014917653581825","source_user_id":19023356,"source_user_id_str":"19023356"}]},"extended_entities":{"media":[{"id":1187014910590406656,"id_str":"1187014910590406656","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkfxajVUAAFTsk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkfxajVUAAFTsk.jpg","url":"https:\/\/t.co\/xBTNGoEjnu","display_url":"pic.twitter.com\/xBTNGoEjnu","expanded_url":"https:\/\/twitter.com\/profoyarzun\/status\/1187014917653581825\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1187014917653581825,"source_status_id_str":"1187014917653581825","source_user_id":19023356,"source_user_id_str":"19023356","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 14:36:24 +0000 2019","id":1187014917653581825,"id_str":"1187014917653581825","full_text":"The + Design competition judges luncheon. The finalist presentations were inspiring! + #aect19 https:\/\/t.co\/xBTNGoEjnu","truncated":false,"display_text_range":[0,90],"entities":{"hashtags":[{"text":"aect19","indices":[83,90]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187014910590406656,"id_str":"1187014910590406656","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkfxajVUAAFTsk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkfxajVUAAFTsk.jpg","url":"https:\/\/t.co\/xBTNGoEjnu","display_url":"pic.twitter.com\/xBTNGoEjnu","expanded_url":"https:\/\/twitter.com\/profoyarzun\/status\/1187014917653581825\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187014910590406656,"id_str":"1187014910590406656","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkfxajVUAAFTsk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkfxajVUAAFTsk.jpg","url":"https:\/\/t.co\/xBTNGoEjnu","display_url":"pic.twitter.com\/xBTNGoEjnu","expanded_url":"https:\/\/twitter.com\/profoyarzun\/status\/1187014917653581825\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19023356,"id_str":"19023356","name":"Beth + Oyarzun","screen_name":"profoyarzun","location":"Charlotte, NC","description":"Clinical + Associate Professor and director of the Learning, Design and Technology program + at UNCC, wife, mom, and scuba diver.","url":"https:\/\/t.co\/GKjzX92eV9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GKjzX92eV9","expanded_url":"https:\/\/sites.google.com\/uncc.edu\/bethoyarzun\/home?authuser=2","display_url":"sites.google.com\/uncc.edu\/betho\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":295,"friends_count":523,"listed_count":15,"created_at":"Thu + Jan 15 14:35:36 +0000 2009","favourites_count":1232,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1082,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650037082346422272\/X3Iy9bMz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650037082346422272\/X3Iy9bMz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19023356\/1566681139","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:19:21 +0000 2019","id":1187040823348584448,"id_str":"1187040823348584448","full_text":"Listening + to leaders in the field share their journey at the @AECT panel AECT: Lessons + in Leadership in the Field of Educational Technology, which is really interesting. + I hope to be on a panel like that in 20 years. #ProfessionalGoals #aect19inspired","truncated":false,"display_text_range":[0,251],"entities":{"hashtags":[{"text":"ProfessionalGoals","indices":[217,235]},{"text":"aect19inspired","indices":[236,251]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[61,66]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 14:57:48 +0000 2019","id":1187020301332180994,"id_str":"1187020301332180994","full_text":"RT + @ericpaulrogers: \"Approach your research proposal as you would a romantic + proposal because you''re going to be married to it!\" Deepak Pre\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ericpaulrogers","name":"Eric + Paul Rogers","id":51775264,"id_str":"51775264","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:47:50 +0000 2019","id":1186700704636760064,"id_str":"1186700704636760064","full_text":"\"Approach + your research proposal as you would a romantic proposal because you''re going + to be married to it!\" Deepak Prem Subramony #AECT19 https:\/\/t.co\/GDjpfcF2rO","truncated":false,"display_text_range":[0,138],"entities":{"hashtags":[{"text":"AECT19","indices":[131,138]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GDjpfcF2rO","expanded_url":"https:\/\/twitter.com\/KuiXiePHD\/status\/1186049296304693250","display_url":"twitter.com\/KuiXiePHD\/stat\u2026","indices":[139,162]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":51775264,"id_str":"51775264","name":"Eric + Paul Rogers","screen_name":"ericpaulrogers","location":"Salt Lake City, UT","description":"(he, + him) aspiring stone catcher | ally\ud83c\udf08","url":"https:\/\/t.co\/xhUZs9RX55","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xhUZs9RX55","expanded_url":"https:\/\/ericpaulrogers.com","display_url":"ericpaulrogers.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":361,"friends_count":1232,"listed_count":2,"created_at":"Sun + Jun 28 16:49:05 +0000 2009","favourites_count":27579,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3148,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1478471925911339008\/2wRBAyhT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1478471925911339008\/2wRBAyhT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/51775264\/1648702096","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186049296304693250,"quoted_status_id_str":"1186049296304693250","quoted_status_permalink":{"url":"https:\/\/t.co\/GDjpfcF2rO","expanded":"https:\/\/twitter.com\/KuiXiePHD\/status\/1186049296304693250","display":"twitter.com\/KuiXiePHD\/stat\u2026"},"quoted_status":{"created_at":"Sun + Oct 20 22:39:22 +0000 2019","id":1186049296304693250,"id_str":"1186049296304693250","full_text":"For + folks attending #aect19 this week, check out our panel on #CollaborativeResearch + on Tuesday morning. I will join @ge_xun @amy_c_bradshaw @fake_reeves @christieliuidtr + and others to share our experience in collaborative research from proposal + to implementation. #aect19inspired https:\/\/t.co\/mYhbxXJGFj","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"aect19","indices":[20,27]},{"text":"CollaborativeResearch","indices":[62,84]},{"text":"aect19inspired","indices":[265,280]}],"symbols":[],"user_mentions":[{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[117,124]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[125,140]}],"urls":[],"media":[{"id":1186049289006538753,"id_str":"1186049289006538753","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","url":"https:\/\/t.co\/mYhbxXJGFj","display_url":"pic.twitter.com\/mYhbxXJGFj","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186049296304693250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186049289006538753,"id_str":"1186049289006538753","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","url":"https:\/\/t.co\/mYhbxXJGFj","display_url":"pic.twitter.com\/mYhbxXJGFj","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186049296304693250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter + for Mac\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186049296304693250,"quoted_status_id_str":"1186049296304693250","quoted_status_permalink":{"url":"https:\/\/t.co\/GDjpfcF2rO","expanded":"https:\/\/twitter.com\/KuiXiePHD\/status\/1186049296304693250","display":"twitter.com\/KuiXiePHD\/stat\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 14:58:04 +0000 2019","id":1187020369791614976,"id_str":"1187020369791614976","full_text":"RT + @caranorth11: I am thankful to @GingerWatsonPhD and @eromerohall for their + dedication to service and strength in leadership. I\u2019ve enjoye\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]},{"screen_name":"GingerWatsonPhD","name":"Ginger + S. Watson, Ph.D.","id":1186720671641915392,"id_str":"1186720671641915392","indices":[34,50]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[55,67]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2205686646,"id_str":"2205686646","name":"UT + IDT Program","screen_name":"UT_IDT","location":"\ud83d\udccdTampa, Florida","description":"Instructional + Design & Technology Master Program at the @UofTampa \ud83d\udcbb \ud83d\udcda + #instructionaldesign #edtech #learning #design #technology","url":"https:\/\/t.co\/H4Yb0LBXjr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/H4Yb0LBXjr","expanded_url":"http:\/\/www.ut.edu\/idt","display_url":"ut.edu\/idt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":484,"friends_count":637,"listed_count":24,"created_at":"Wed + Nov 20 22:15:34 +0000 2013","favourites_count":1017,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/986987284951126017\/Z93W1kpY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/986987284951126017\/Z93W1kpY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2205686646\/1607182131","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 21:42:42 +0000 2019","id":1186759809573408768,"id_str":"1186759809573408768","full_text":"I + am thankful to @GingerWatsonPhD and @eromerohall for their dedication to service + and strength in leadership. I\u2019ve enjoyed serving on AECT\u2019s Research + and Theory board with them. It\u2019s great to have wonderful academic role + models! #aect19inspired #aect19 #aectRTD https:\/\/t.co\/6fimEqCaoZ","truncated":false,"display_text_range":[0,263],"entities":{"hashtags":[{"text":"aect19inspired","indices":[230,245]},{"text":"aect19","indices":[246,253]},{"text":"aectRTD","indices":[255,263]}],"symbols":[],"user_mentions":[{"screen_name":"GingerWatsonPhD","name":"Ginger + S. Watson, Ph.D.","id":1186720671641915392,"id_str":"1186720671641915392","indices":[17,33]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[38,50]}],"urls":[],"media":[{"id":1186759805051883520,"id_str":"1186759805051883520","indices":[264,287],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg3wUXUUAA9G7Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg3wUXUUAA9G7Q.jpg","url":"https:\/\/t.co\/6fimEqCaoZ","display_url":"pic.twitter.com\/6fimEqCaoZ","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186759809573408768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1200,"h":1600,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186759805051883520,"id_str":"1186759805051883520","indices":[264,287],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg3wUXUUAA9G7Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg3wUXUUAA9G7Q.jpg","url":"https:\/\/t.co\/6fimEqCaoZ","display_url":"pic.twitter.com\/6fimEqCaoZ","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186759809573408768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1200,"h":1600,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:39:44 +0000 2019","id":1187045953066291200,"id_str":"1187045953066291200","full_text":"RT + @idtesu: We would like to congratulate Daniel Agbaji, IDT grad student, who + had his research displayed at the AECT 2019 Gallery Walk and\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"idtesu","name":"ESU + Instructional Design & Technology Program","id":107144043,"id_str":"107144043","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 06:43:48 +0000 2019","id":1186895985101815808,"id_str":"1186895985101815808","full_text":"We + would like to congratulate Daniel Agbaji, IDT grad student, who had his research + displayed at the AECT 2019 Gallery Walk and Poster Session.\n\n#AECT2019 #hornetpride + #IDT https:\/\/t.co\/k2GxZUjTOm","truncated":false,"display_text_range":[0,172],"entities":{"hashtags":[{"text":"AECT2019","indices":[145,154]},{"text":"hornetpride","indices":[155,167]},{"text":"IDT","indices":[168,172]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186895973856886784,"id_str":"1186895973856886784","indices":[173,196],"media_url":"http:\/\/pbs.twimg.com\/media\/EHizmYsUwAANKqx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHizmYsUwAANKqx.jpg","url":"https:\/\/t.co\/k2GxZUjTOm","display_url":"pic.twitter.com\/k2GxZUjTOm","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186895985101815808\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186895973856886784,"id_str":"1186895973856886784","indices":[173,196],"media_url":"http:\/\/pbs.twimg.com\/media\/EHizmYsUwAANKqx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHizmYsUwAANKqx.jpg","url":"https:\/\/t.co\/k2GxZUjTOm","display_url":"pic.twitter.com\/k2GxZUjTOm","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186895985101815808\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:23:34 +0000 2019","id":1187041885900009472,"id_str":"1187041885900009472","full_text":"RT + @art_brownlow: Learning a lot about instructional use of AR @AECT. Meanwhile, + we had a visitor at our session. #aect2019 #aect19inspired\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect2019","indices":[114,123]},{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"art_brownlow","name":"Art + Brownlow","id":887813304311087104,"id_str":"887813304311087104","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[63,68]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 17:15:47 +0000 2019","id":1186330250994565124,"id_str":"1186330250994565124","full_text":"Learning + a lot about instructional use of AR @AECT. Meanwhile, we had a visitor at + our session. #aect2019 #aect19inspired https:\/\/t.co\/HjfO4IZVEm","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"aect2019","indices":[96,105]},{"text":"aect19inspired","indices":[106,121]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[45,50]}],"urls":[],"media":[{"id":1186330138339753986,"id_str":"1186330138339753986","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","url":"https:\/\/t.co\/HjfO4IZVEm","display_url":"pic.twitter.com\/HjfO4IZVEm","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186330138339753986,"id_str":"1186330138339753986","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","url":"https:\/\/t.co\/HjfO4IZVEm","display_url":"pic.twitter.com\/HjfO4IZVEm","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}},"video_info":{"aspect_ratio":[37,80],"duration_millis":11690,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/320x690\/qzYSXhtp8GVHwAkS.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/pl\/HOQqLq2LCOe8QZdY.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/360x778\/mxoPjfmwzOZWrqSf.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/592x1280\/pBUtbxYAYdW5YWLx.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":887813304311087104,"id_str":"887813304311087104","name":"Art + Brownlow","screen_name":"art_brownlow","location":"Brownsville, TX","description":"UTRGV + Music Prof & Academic Innovation Fellow, UT System Academy of Distinguished + Teachers, ROTA 2016, \uf8ffADE 2015, Braves fan, Husband & Dad","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":291,"friends_count":338,"listed_count":5,"created_at":"Wed + Jul 19 23:16:01 +0000 2017","favourites_count":237,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":132,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887813304311087104\/1500521777","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":42,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:05:18 +0000 2019","id":1187037290717016064,"id_str":"1187037290717016064","full_text":"A + great workshop going online data and open source tools : Analyzing educational + internet data using R with \u2066@bretsw\u2069 \u2066@spgreenhalgh\u2069 and + Joshua Rosenberg #aect19 https:\/\/t.co\/nNYBslvxfI","truncated":false,"display_text_range":[0,162],"entities":{"hashtags":[{"text":"aect19","indices":[155,162]}],"symbols":[],"user_mentions":[{"screen_name":"bretsw","name":"Dr. + Bret Staudt Willet","id":53167706,"id_str":"53167706","indices":[109,116]},{"screen_name":"spgreenhalgh","name":"Spencer + Greenhalgh, PhD","id":129211252,"id_str":"129211252","indices":[119,132]}],"urls":[],"media":[{"id":1187037285130260482,"id_str":"1187037285130260482","indices":[163,186],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk0HyNVUAIMvWq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk0HyNVUAIMvWq.jpg","url":"https:\/\/t.co\/nNYBslvxfI","display_url":"pic.twitter.com\/nNYBslvxfI","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187037290717016064\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187037285130260482,"id_str":"1187037285130260482","indices":[163,186],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk0HyNVUAIMvWq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk0HyNVUAIMvWq.jpg","url":"https:\/\/t.co\/nNYBslvxfI","display_url":"pic.twitter.com\/nNYBslvxfI","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187037290717016064\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 15:24:54 +0000 2019","id":1187027123262738433,"id_str":"1187027123262738433","full_text":"Breakfast + with Champions! #aect19 #inspiredme https:\/\/t.co\/SL9nHcgQAC","truncated":false,"display_text_range":[0,45],"entities":{"hashtags":[{"text":"aect19","indices":[26,33]},{"text":"inspiredme","indices":[34,45]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187027089205055488,"id_str":"1187027089205055488","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkq2TbVUAAYW6s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkq2TbVUAAYW6s.jpg","url":"https:\/\/t.co\/SL9nHcgQAC","display_url":"pic.twitter.com\/SL9nHcgQAC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027123262738433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187027089205055488,"id_str":"1187027089205055488","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkq2TbVUAAYW6s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkq2TbVUAAYW6s.jpg","url":"https:\/\/t.co\/SL9nHcgQAC","display_url":"pic.twitter.com\/SL9nHcgQAC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027123262738433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187027089200824320,"id_str":"1187027089200824320","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkq2TaUwAAU5xe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkq2TaUwAAU5xe.jpg","url":"https:\/\/t.co\/SL9nHcgQAC","display_url":"pic.twitter.com\/SL9nHcgQAC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027123262738433\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187027089209212930,"id_str":"1187027089209212930","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkq2TcUwAId-rV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkq2TcUwAId-rV.jpg","url":"https:\/\/t.co\/SL9nHcgQAC","display_url":"pic.twitter.com\/SL9nHcgQAC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027123262738433\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187027089204998151,"id_str":"1187027089204998151","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkq2TbUcAcb982.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkq2TbUcAcb982.jpg","url":"https:\/\/t.co\/SL9nHcgQAC","display_url":"pic.twitter.com\/SL9nHcgQAC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027123262738433\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 15:50:05 +0000 2019","id":1187033460008980482,"id_str":"1187033460008980482","full_text":"#AECT19: + If you want to learn about \"Visual Design Principles in Multimedia Learning\" + come to Ballroom 3 at 11 am - 11:50 am with #FSU #FSUCOE #ISLT Renata Kuba + Kamikabeya & Allan Jeong. (session 183) #EdTech #VisualDesign #Multimedia + #Learning https:\/\/t.co\/CAoI89X4hh","truncated":false,"display_text_range":[0,248],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"FSU","indices":[130,134]},{"text":"FSUCOE","indices":[135,142]},{"text":"ISLT","indices":[143,148]},{"text":"EdTech","indices":[205,212]},{"text":"VisualDesign","indices":[213,226]},{"text":"Multimedia","indices":[227,238]},{"text":"Learning","indices":[239,248]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187033457156853760,"id_str":"1187033457156853760","indices":[249,272],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwo95WkAAWzWz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwo95WkAAWzWz.jpg","url":"https:\/\/t.co\/CAoI89X4hh","display_url":"pic.twitter.com\/CAoI89X4hh","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187033460008980482\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":674,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"},"large":{"w":2048,"h":1150,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187033457156853760,"id_str":"1187033457156853760","indices":[249,272],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkwo95WkAAWzWz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkwo95WkAAWzWz.jpg","url":"https:\/\/t.co\/CAoI89X4hh","display_url":"pic.twitter.com\/CAoI89X4hh","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1187033460008980482\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":674,"resize":"fit"},"small":{"w":680,"h":382,"resize":"fit"},"large":{"w":2048,"h":1150,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:37:16 +0000 2019","id":1187045332426772480,"id_str":"1187045332426772480","full_text":"#FSU + #FSUCOE Dr. Reiser inspiring others at #AECT19! https:\/\/t.co\/bYbSSwSRWg","truncated":false,"display_text_range":[0,52],"entities":{"hashtags":[{"text":"FSU","indices":[0,4]},{"text":"FSUCOE","indices":[5,12]},{"text":"AECT19","indices":[44,51]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/bYbSSwSRWg","expanded_url":"https:\/\/twitter.com\/MuratTurkEd\/status\/1187039190434734080","display_url":"twitter.com\/MuratTurkEd\/st\u2026","indices":[53,76]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1187039190434734080,"quoted_status_id_str":"1187039190434734080","quoted_status_permalink":{"url":"https:\/\/t.co\/bYbSSwSRWg","expanded":"https:\/\/twitter.com\/MuratTurkEd\/status\/1187039190434734080","display":"twitter.com\/MuratTurkEd\/st\u2026"},"quoted_status":{"created_at":"Wed + Oct 23 16:12:51 +0000 2019","id":1187039190434734080,"id_str":"1187039190434734080","full_text":"Dr. + Reiser #aect19inspired me! https:\/\/t.co\/bogpkQVll3","truncated":false,"display_text_range":[0,30],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187039186353680385,"id_str":"1187039186353680385","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk12c0UcAE5FI6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk12c0UcAE5FI6.jpg","url":"https:\/\/t.co\/bogpkQVll3","display_url":"pic.twitter.com\/bogpkQVll3","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1187039190434734080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187039186353680385,"id_str":"1187039186353680385","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk12c0UcAE5FI6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk12c0UcAE5FI6.jpg","url":"https:\/\/t.co\/bogpkQVll3","display_url":"pic.twitter.com\/bogpkQVll3","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1187039190434734080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186318434964930560,"id_str":"1186318434964930560","name":"Murat + Turk, Ph.D.","screen_name":"MuratTurkEd","location":"Cincinnati, OH","description":"Online + Learning | motivation | engagement | online presences | loving husband of + Sinem Toraman Turk \u2764\ufe0f| loving father of @bgmtrk1\u2764\ufe0f | @FulbrightTurkey","url":"https:\/\/t.co\/DmCPHu9r7d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DmCPHu9r7d","expanded_url":"http:\/\/www.ardat.net","display_url":"ardat.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":853,"listed_count":5,"created_at":"Mon + Oct 21 16:29:13 +0000 2019","favourites_count":4396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2544,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186318434964930560\/1653078596","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"de"},"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:42:57 +0000 2019","id":1187046764697673729,"id_str":"1187046764697673729","full_text":"RT + @RitaFennelly: Listening to leaders in the field share their journey at the + @AECT panel AECT: Lessons in Leadership in the Field of Educ\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[79,84]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1161087679,"id_str":"1161087679","name":"Melissa + Goodman","screen_name":"MelGoodEDU","location":"Clinton, KY","description":"County + Extension Agent for 4-H Youth Development | Education & Collaboration | Advocate + for FCS & CTE. Views are my own. RT not endorsement.","url":"https:\/\/t.co\/izMiFuYPzA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/izMiFuYPzA","expanded_url":"https:\/\/hickman.ca.uky.edu\/","display_url":"hickman.ca.uky.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":529,"friends_count":1279,"listed_count":18,"created_at":"Fri + Feb 08 19:57:55 +0000 2013","favourites_count":2183,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":987,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1553982233865756672\/yp_OWTk1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1553982233865756672\/yp_OWTk1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1161087679\/1659334237","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 16:19:21 +0000 2019","id":1187040823348584448,"id_str":"1187040823348584448","full_text":"Listening + to leaders in the field share their journey at the @AECT panel AECT: Lessons + in Leadership in the Field of Educational Technology, which is really interesting. + I hope to be on a panel like that in 20 years. #ProfessionalGoals #aect19inspired","truncated":false,"display_text_range":[0,251],"entities":{"hashtags":[{"text":"ProfessionalGoals","indices":[217,235]},{"text":"aect19inspired","indices":[236,251]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[61,66]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:37:50 +0000 2019","id":1187045475104354304,"id_str":"1187045475104354304","full_text":"RT + @idtesu: Getting to meet David Merrill, education researcher and Professor + Emeritus at Utah State University; known for developing \"The\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"idtesu","name":"ESU + Instructional Design & Technology Program","id":107144043,"id_str":"107144043","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 06:15:36 +0000 2019","id":1186888887060140032,"id_str":"1186888887060140032","full_text":"Getting + to meet David Merrill, education researcher and Professor Emeritus at Utah + State University; known for developing \"The Component Display Theory\", \"Instructional + Transaction Theory\" and the \"First Principles of Instruction.\"\n\n#EmporiaStateUniversity + #IDT #AECT2019 https:\/\/t.co\/XQRLMaiL8X","truncated":false,"display_text_range":[0,271],"entities":{"hashtags":[{"text":"EmporiaStateUniversity","indices":[233,256]},{"text":"IDT","indices":[257,261]},{"text":"AECT2019","indices":[262,271]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186888869536382976,"id_str":"1186888869536382976","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHitI3CUwAAvk4g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHitI3CUwAAvk4g.jpg","url":"https:\/\/t.co\/XQRLMaiL8X","display_url":"pic.twitter.com\/XQRLMaiL8X","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186888887060140032\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186888869536382976,"id_str":"1186888869536382976","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHitI3CUwAAvk4g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHitI3CUwAAvk4g.jpg","url":"https:\/\/t.co\/XQRLMaiL8X","display_url":"pic.twitter.com\/XQRLMaiL8X","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186888887060140032\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1186888869536391170,"id_str":"1186888869536391170","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHitI3CU4AIS23v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHitI3CU4AIS23v.jpg","url":"https:\/\/t.co\/XQRLMaiL8X","display_url":"pic.twitter.com\/XQRLMaiL8X","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186888887060140032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":495,"h":680,"resize":"fit"},"large":{"w":1492,"h":2048,"resize":"fit"},"medium":{"w":874,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:33:22 +0000 2019","id":1187044350661820416,"id_str":"1187044350661820416","full_text":"RT + @johnhiltoniii: If you''re at #AECT19 pop on by the \"Introduction to Open + Education\" workshop I''m leading with @opencontent. Today, 9 AM\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"AECT19","indices":[32,39]}],"symbols":[],"user_mentions":[{"screen_name":"johnhiltoniii","name":"John + Hilton III","id":45002394,"id_str":"45002394","indices":[3,17]},{"screen_name":"opencontent","name":"David + Wiley","id":4514361,"id_str":"4514361","indices":[113,125]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 16:07:31 +0000 2019","id":1187037846227451904,"id_str":"1187037846227451904","full_text":"If + you''re at #AECT19 pop on by the \"Introduction to Open Education\" workshop + I''m leading with @opencontent. Today, 9 AM - 12 PM in room D, right by the + registration table. Would love to see you.","truncated":false,"display_text_range":[0,194],"entities":{"hashtags":[{"text":"AECT19","indices":[13,20]}],"symbols":[],"user_mentions":[{"screen_name":"opencontent","name":"David + Wiley","id":4514361,"id_str":"4514361","indices":[94,106]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45002394,"id_str":"45002394","name":"John + Hilton III","screen_name":"johnhiltoniii","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":776,"friends_count":179,"listed_count":26,"created_at":"Fri + Jun 05 21:32:35 +0000 2009","favourites_count":567,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":561,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575680770137722881\/WkkQhBdO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575680770137722881\/WkkQhBdO_normal.jpeg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":21,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:09:57 +0000 2019","id":1187038461099823105,"id_str":"1187038461099823105","full_text":"RT + @AECT: Inspired at the Breakfast with Champions. #AECT19 #AECT19inspired https:\/\/t.co\/SgI1xLUXN3","truncated":false,"display_text_range":[0,99],"entities":{"hashtags":[{"text":"AECT19","indices":[52,59]},{"text":"AECT19inspired","indices":[60,75]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[],"media":[{"id":1187028316479311873,"id_str":"1187028316479311873","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","url":"https:\/\/t.co\/SgI1xLUXN3","display_url":"pic.twitter.com\/SgI1xLUXN3","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187028345168379906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1272,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"medium":{"w":1200,"h":745,"resize":"fit"}},"source_status_id":1187028345168379906,"source_status_id_str":"1187028345168379906","source_user_id":12030342,"source_user_id_str":"12030342"}]},"extended_entities":{"media":[{"id":1187028316479311873,"id_str":"1187028316479311873","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","url":"https:\/\/t.co\/SgI1xLUXN3","display_url":"pic.twitter.com\/SgI1xLUXN3","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187028345168379906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1272,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"medium":{"w":1200,"h":745,"resize":"fit"}},"source_status_id":1187028345168379906,"source_status_id_str":"1187028345168379906","source_user_id":12030342,"source_user_id_str":"12030342","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186318434964930560,"id_str":"1186318434964930560","name":"Murat + Turk, Ph.D.","screen_name":"MuratTurkEd","location":"Cincinnati, OH","description":"Online + Learning | motivation | engagement | online presences | loving husband of + Sinem Toraman Turk \u2764\ufe0f| loving father of @bgmtrk1\u2764\ufe0f | @FulbrightTurkey","url":"https:\/\/t.co\/DmCPHu9r7d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DmCPHu9r7d","expanded_url":"http:\/\/www.ardat.net","display_url":"ardat.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":853,"listed_count":5,"created_at":"Mon + Oct 21 16:29:13 +0000 2019","favourites_count":4396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2544,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186318434964930560\/1653078596","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:29:46 +0000 2019","id":1187028345168379906,"id_str":"1187028345168379906","full_text":"Inspired + at the Breakfast with Champions. #AECT19 #AECT19inspired https:\/\/t.co\/SgI1xLUXN3","truncated":false,"display_text_range":[0,65],"entities":{"hashtags":[{"text":"AECT19","indices":[42,49]},{"text":"AECT19inspired","indices":[50,65]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187028316479311873,"id_str":"1187028316479311873","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","url":"https:\/\/t.co\/SgI1xLUXN3","display_url":"pic.twitter.com\/SgI1xLUXN3","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187028345168379906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1272,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"medium":{"w":1200,"h":745,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187028316479311873,"id_str":"1187028316479311873","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","url":"https:\/\/t.co\/SgI1xLUXN3","display_url":"pic.twitter.com\/SgI1xLUXN3","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187028345168379906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1272,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"medium":{"w":1200,"h":745,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:32:48 +0000 2019","id":1187044207992557568,"id_str":"1187044207992557568","full_text":"RT + @Stephsteph83: We\u2019d love for you to reach and subscribe to the iTeach + Blog! @ksuiteach @KSUITEC @KSUBCOE #aect19inspired #KSUMobileSummi\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Stephsteph83","name":"Dr. + Stephanee Stephens","id":427060068,"id_str":"427060068","indices":[3,16]},{"screen_name":"ksuiteach","name":"KSU + iTeach","id":129823325,"id_str":"129823325","indices":[79,89]},{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[90,98]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 16:20:22 +0000 2019","id":1187041082418356230,"id_str":"1187041082418356230","full_text":"We\u2019d + love for you to reach and subscribe to the iTeach Blog! @ksuiteach @KSUITEC + @KSUBCOE #aect19inspired #KSUMobileSummit19 #edtech #coachingcollab @fetc + @GaETConf https:\/\/t.co\/i5Y7J5lmzn","truncated":false,"display_text_range":[0,164],"entities":{"hashtags":[{"text":"aect19inspired","indices":[90,105]},{"text":"KSUMobileSummit19","indices":[106,124]},{"text":"edtech","indices":[125,132]},{"text":"coachingcollab","indices":[133,148]}],"symbols":[],"user_mentions":[{"screen_name":"ksuiteach","name":"KSU + iTeach","id":129823325,"id_str":"129823325","indices":[61,71]},{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[72,80]},{"screen_name":"fetc","name":"FETC","id":16724364,"id_str":"16724364","indices":[149,154]},{"screen_name":"GaETConf","name":"Georgia + Educational Technology Conference","id":208439824,"id_str":"208439824","indices":[155,164]}],"urls":[{"url":"https:\/\/t.co\/i5Y7J5lmzn","expanded_url":"https:\/\/twitter.com\/ksuiteach\/status\/1186990849374244864","display_url":"twitter.com\/ksuiteach\/stat\u2026","indices":[165,188]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":427060068,"id_str":"427060068","name":"Dr. + Stephanee Stephens","screen_name":"Stephsteph83","location":"Atlanta, GA","description":"Educator, + Challenger, Leader, Innovator @microsoftedu Believe in: #personalizedlearning + \ud83d\udc69\u200d\ud83c\udf93 @utoledo @kennesawstate","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2501,"friends_count":1157,"listed_count":172,"created_at":"Sat + Dec 03 02:01:17 +0000 2011","favourites_count":13627,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8514,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458524672912461825\/JM2qKEcN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458524672912461825\/JM2qKEcN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/427060068\/1636574423","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186990849374244864,"quoted_status_id_str":"1186990849374244864","quoted_status_permalink":{"url":"https:\/\/t.co\/i5Y7J5lmzn","expanded":"https:\/\/twitter.com\/ksuiteach\/status\/1186990849374244864","display":"twitter.com\/ksuiteach\/stat\u2026"},"quoted_status":{"created_at":"Wed + Oct 23 13:00:46 +0000 2019","id":1186990849374244864,"id_str":"1186990849374244864","full_text":"Check + out our blog post TODAY! This post encourages finding strength within your + own students to support tech troubles with your own student tech team! Check + it out and let us know what you think! https:\/\/t.co\/m1FDAAe6Au https:\/\/t.co\/87L1u1LSPE","truncated":false,"display_text_range":[0,220],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/m1FDAAe6Au","expanded_url":"https:\/\/ksuiteach.blogspot.com\/2019\/10\/tapping-into-classroom-talent-with.html","display_url":"ksuiteach.blogspot.com\/2019\/10\/tappin\u2026","indices":[197,220]}],"media":[{"id":1186990846236942336,"id_str":"1186990846236942336","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkJ4r2X4AAtZm0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkJ4r2X4AAtZm0.png","url":"https:\/\/t.co\/87L1u1LSPE","display_url":"pic.twitter.com\/87L1u1LSPE","expanded_url":"https:\/\/twitter.com\/ksuiteach\/status\/1186990849374244864\/photo\/1","type":"photo","sizes":{"large":{"w":250,"h":373,"resize":"fit"},"small":{"w":250,"h":373,"resize":"fit"},"medium":{"w":250,"h":373,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1186990846236942336,"id_str":"1186990846236942336","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkJ4r2X4AAtZm0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkJ4r2X4AAtZm0.png","url":"https:\/\/t.co\/87L1u1LSPE","display_url":"pic.twitter.com\/87L1u1LSPE","expanded_url":"https:\/\/twitter.com\/ksuiteach\/status\/1186990849374244864\/photo\/1","type":"photo","sizes":{"large":{"w":250,"h":373,"resize":"fit"},"small":{"w":250,"h":373,"resize":"fit"},"medium":{"w":250,"h":373,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":129823325,"id_str":"129823325","name":"KSU + iTeach","screen_name":"ksuiteach","location":"Kennesaw, GA","description":"This + is the official Twitter account for iTeach at Kennesaw State University. #iTeachCoaching + #iTeachMaker #iTeachOnDemand #iTeachLIVE #iTeachTalks #iTeachAsks","url":"https:\/\/t.co\/qRDQpY8QEg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qRDQpY8QEg","expanded_url":"http:\/\/iteach.kennesaw.edu","display_url":"iteach.kennesaw.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3462,"friends_count":448,"listed_count":63,"created_at":"Mon + Apr 05 14:37:27 +0000 2010","favourites_count":8110,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6122,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/890333675015077890\/z1nz2Tsz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/890333675015077890\/z1nz2Tsz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/129823325\/1633107957","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186990849374244864,"quoted_status_id_str":"1186990849374244864","quoted_status_permalink":{"url":"https:\/\/t.co\/i5Y7J5lmzn","expanded":"https:\/\/twitter.com\/ksuiteach\/status\/1186990849374244864","display":"twitter.com\/ksuiteach\/stat\u2026"},"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 14:59:16 +0000 2019","id":1187020671940874240,"id_str":"1187020671940874240","full_text":"RT + @WilsonInEdu: Go check out my friend and brilliant scholar, @kristaruggles, + presentations starting at 9 AM in Conference Room 10! #aect1\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WilsonInEdu","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","id":489118534,"id_str":"489118534","indices":[3,15]},{"screen_name":"kristaruggles","name":"Krista + Ruggles, PhD, NBCT","id":1022045132,"id_str":"1022045132","indices":[63,77]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 14:48:51 +0000 2019","id":1187018050156912642,"id_str":"1187018050156912642","full_text":"Go + check out my friend and brilliant scholar, @kristaruggles, presentations starting + at 9 AM in Conference Room 10! #aect19 #aect19inspired https:\/\/t.co\/9p5Ot5Pvz6","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[116,123]},{"text":"aect19inspired","indices":[125,140]}],"symbols":[],"user_mentions":[{"screen_name":"kristaruggles","name":"Krista + Ruggles, PhD, NBCT","id":1022045132,"id_str":"1022045132","indices":[46,60]}],"urls":[],"media":[{"id":1187018046189096960,"id_str":"1187018046189096960","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkin7kUUAA66ab.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkin7kUUAA66ab.jpg","url":"https:\/\/t.co\/9p5Ot5Pvz6","display_url":"pic.twitter.com\/9p5Ot5Pvz6","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1187018050156912642\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":621,"h":487,"resize":"fit"},"medium":{"w":621,"h":487,"resize":"fit"},"large":{"w":621,"h":487,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187018046189096960,"id_str":"1187018046189096960","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkin7kUUAA66ab.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkin7kUUAA66ab.jpg","url":"https:\/\/t.co\/9p5Ot5Pvz6","display_url":"pic.twitter.com\/9p5Ot5Pvz6","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1187018050156912642\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":621,"h":487,"resize":"fit"},"medium":{"w":621,"h":487,"resize":"fit"},"large":{"w":621,"h":487,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 15:18:50 +0000 2019","id":1187025596095717376,"id_str":"1187025596095717376","full_text":"#aect19inspired + https:\/\/t.co\/BcEwZh4KCm","truncated":false,"display_text_range":[0,15],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187025593964978178,"id_str":"1187025593964978178","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkpfROUYAI64M4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkpfROUYAI64M4.jpg","url":"https:\/\/t.co\/BcEwZh4KCm","display_url":"pic.twitter.com\/BcEwZh4KCm","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1187025596095717376\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":400,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187025593964978178,"id_str":"1187025593964978178","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkpfROUYAI64M4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkpfROUYAI64M4.jpg","url":"https:\/\/t.co\/BcEwZh4KCm","display_url":"pic.twitter.com\/BcEwZh4KCm","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1187025596095717376\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":400,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Wed + Oct 23 15:29:46 +0000 2019","id":1187028345168379906,"id_str":"1187028345168379906","full_text":"Inspired + at the Breakfast with Champions. #AECT19 #AECT19inspired https:\/\/t.co\/SgI1xLUXN3","truncated":false,"display_text_range":[0,65],"entities":{"hashtags":[{"text":"AECT19","indices":[42,49]},{"text":"AECT19inspired","indices":[50,65]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187028316479311873,"id_str":"1187028316479311873","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","url":"https:\/\/t.co\/SgI1xLUXN3","display_url":"pic.twitter.com\/SgI1xLUXN3","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187028345168379906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1272,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"medium":{"w":1200,"h":745,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187028316479311873,"id_str":"1187028316479311873","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkr9vYUUAEef2P.jpg","url":"https:\/\/t.co\/SgI1xLUXN3","display_url":"pic.twitter.com\/SgI1xLUXN3","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1187028345168379906\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1272,"resize":"fit"},"small":{"w":680,"h":422,"resize":"fit"},"medium":{"w":1200,"h":745,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 15:40:10 +0000 2019","id":1187030965161463810,"id_str":"1187030965161463810","full_text":"Today\u2019s + the day! Looking forward to great discussions with inspiring people at #AECT19! + @AECT @gsa_aect @JenM @nicolapallitt https:\/\/t.co\/P89NI1ItiJ","truncated":false,"display_text_range":[0,124],"entities":{"hashtags":[{"text":"AECT19","indices":[79,86]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[88,93]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[94,103]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[104,109]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[110,124]}],"urls":[],"media":[{"id":1187030963286691841,"id_str":"1187030963286691841","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkuXzgX0AEvw4Q.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkuXzgX0AEvw4Q.png","url":"https:\/\/t.co\/P89NI1ItiJ","display_url":"pic.twitter.com\/P89NI1ItiJ","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1187030965161463810\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1187030963286691841,"id_str":"1187030963286691841","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkuXzgX0AEvw4Q.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkuXzgX0AEvw4Q.png","url":"https:\/\/t.co\/P89NI1ItiJ","display_url":"pic.twitter.com\/P89NI1ItiJ","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1187030965161463810\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910574724748644353,"id_str":"910574724748644353","name":"Amy + Lomellini","screen_name":"AmyLomellini_ID","location":"New York, USA","description":"Associate + Director of Blended & Online Learning and doctoral candidate with a passion + for accessible and inclusive online teaching and learning. #EdTech #A11y","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":644,"friends_count":1061,"listed_count":9,"created_at":"Wed + Sep 20 18:41:46 +0000 2017","favourites_count":7378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1141,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910574724748644353\/1551624059","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:31:54 +0000 2019","id":1187043982456410117,"id_str":"1187043982456410117","full_text":"RT + @christieliuidtr: Come join us in Conference room 14 at 11 and then in Room + 1 at 4 today @AECT @aectclt @nicolapallitt #aect #aect19insp\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect","indices":[122,127]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[92,97]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[98,106]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[107,121]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:41:06 +0000 2019","id":1187031197819359235,"id_str":"1187031197819359235","full_text":"Come + join us in Conference room 14 at 11 and then in Room 1 at 4 today @AECT @aectclt + @nicolapallitt #aect #aect19inspired #aect19 intercultural and international + collaborative research https:\/\/t.co\/VfhCV44Ztw","truncated":false,"display_text_range":[0,185],"entities":{"hashtags":[{"text":"aect","indices":[101,106]},{"text":"aect19inspired","indices":[107,122]},{"text":"aect19","indices":[123,130]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[71,76]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[77,85]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[86,100]}],"urls":[{"url":"https:\/\/t.co\/VfhCV44Ztw","expanded_url":"https:\/\/twitter.com\/LiuJh_Christie\/status\/1185610918253776896","display_url":"twitter.com\/LiuJh_Christie\u2026","indices":[186,209]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1185610918253776896,"quoted_status_id_str":"1185610918253776896","quoted_status_permalink":{"url":"https:\/\/t.co\/VfhCV44Ztw","expanded":"https:\/\/twitter.com\/LiuJh_Christie\/status\/1185610918253776896","display":"twitter.com\/LiuJh_Christie\u2026"},"quoted_status":{"created_at":"Sat + Oct 19 17:37:25 +0000 2019","id":1185610918253776896,"id_str":"1185610918253776896","full_text":"Collaborations + @aectclt #aect19inspired #aect19 @AECT w\/ @nicolapallitt \ud835\udddb\ud835\uddee\ud835\uddfb\ud835\uddfb\ud835\uddee\ud835\uddf5 + \ud835\uddda\ud835\uddff\ud835\uddfc\ud835\ude00\ud835\ude00\ud835\uddfa\ud835\uddee\ud835\uddfb, + @AmyLomellini_ID \ud835\uddd4\ud835\uddf9\ud835\uddf6\ud835\uddf0\ud835\uddf2,\ud835\uddd5\ud835\uddf2\ud835\uddf0\ud835\uddfc\ud835\uddf9\ud835\uddee,\ud835\udde7\ud835\uddf6\ud835\uddee,\ud835\udde0\ud835\uddfa\ud835\uddee\ud835\uddef\ud835\uddee\ud835\uddf9\ud835\uddf2\ud835\uddf1\ud835\uddf6,\ud835\udddf\ud835\uddf2\ud835\uddee\ud835\uddf5,\ud835\udde1\ud835\uddf2\ud835\uddf6\ud835\uddf9,\ud835\uddfc\ud835\uddf9\ud835\ude02\ud835\ude04\ud835\uddee\ud835\ude00\ud835\uddf2\ud835\uddf3\ud835\ude02\ud835\uddfb\ud835\uddfa\ud835\uddf6,\ud835\udde1\ud835\uddfc\ud835\uddfa\ud835\uddfd\ud835\uddf6\ud835\uddf9\ud835\uddfc10\/23,11am + & 4pm. Safe travels @emergeAfrica friends! https:\/\/t.co\/Unp2OoqT6b","truncated":false,"display_text_range":[0,220],"entities":{"hashtags":[{"text":"aect19inspired","indices":[24,39]},{"text":"aect19","indices":[40,47]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[15,23]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[48,53]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[57,71]},{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[89,105]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[198,211]}],"urls":[],"media":[{"id":1185610914269151235,"id_str":"1185610914269151235","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"large":{"w":707,"h":393,"resize":"fit"},"medium":{"w":707,"h":393,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185610914269151235,"id_str":"1185610914269151235","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"large":{"w":707,"h":393,"resize":"fit"},"medium":{"w":707,"h":393,"resize":"fit"}},"ext_alt_text":null},{"id":1185610914281725953,"id_str":"1185610914281725953","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2EuWoAELmy-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2EuWoAELmy-.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":683,"h":381,"resize":"fit"},"large":{"w":683,"h":381,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":4,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1185610918253776896,"quoted_status_id_str":"1185610918253776896","quoted_status_permalink":{"url":"https:\/\/t.co\/VfhCV44Ztw","expanded":"https:\/\/twitter.com\/LiuJh_Christie\/status\/1185610918253776896","display":"twitter.com\/LiuJh_Christie\u2026"},"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:40:10 +0000 2019","id":1187046062353047552,"id_str":"1187046062353047552","full_text":"RT + @ChangeIt4Better: #AECT2019 Join us in Vegas Wed, Oct 23, 3:00 to 3:50pm, + Convention Center, Ballroom C! @adriannewilson_ @UT_IDT @utamp\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT2019","indices":[21,30]}],"symbols":[],"user_mentions":[{"screen_name":"ChangeIt4Better","name":"Dr. + Suzanne Ensmann","id":1596150056,"id_str":"1596150056","indices":[3,19]},{"screen_name":"adriannewilson_","name":"Adrianne + Wilson","id":772896038566948864,"id_str":"772896038566948864","indices":[108,124]},{"screen_name":"UT_IDT","name":"UT + IDT Program","id":2205686646,"id_str":"2205686646","indices":[125,132]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 19:28:35 +0000 2019","id":1185638894160830471,"id_str":"1185638894160830471","full_text":"#AECT2019 + Join us in Vegas Wed, Oct 23, 3:00 to 3:50pm, Convention Center, Ballroom + C! @adriannewilson_ @UT_IDT @utampaedu https:\/\/t.co\/1pox25eQO3","truncated":false,"display_text_range":[0,122],"entities":{"hashtags":[{"text":"AECT2019","indices":[0,9]}],"symbols":[],"user_mentions":[{"screen_name":"adriannewilson_","name":"Adrianne + Wilson","id":772896038566948864,"id_str":"772896038566948864","indices":[87,103]},{"screen_name":"UT_IDT","name":"UT + IDT Program","id":2205686646,"id_str":"2205686646","indices":[104,111]},{"screen_name":"UTampaEDU","name":"UTampa + Dept. of Education","id":1321947258435362817,"id_str":"1321947258435362817","indices":[112,122]}],"urls":[],"media":[{"id":1185638888888586246,"id_str":"1185638888888586246","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQ8SaQX0AYoUj-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQ8SaQX0AYoUj-.jpg","url":"https:\/\/t.co\/1pox25eQO3","display_url":"pic.twitter.com\/1pox25eQO3","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1185638894160830471\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":386,"resize":"fit"},"medium":{"w":1200,"h":681,"resize":"fit"},"large":{"w":1280,"h":726,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185638888888586246,"id_str":"1185638888888586246","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQ8SaQX0AYoUj-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQ8SaQX0AYoUj-.jpg","url":"https:\/\/t.co\/1pox25eQO3","display_url":"pic.twitter.com\/1pox25eQO3","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1185638894160830471\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":386,"resize":"fit"},"medium":{"w":1200,"h":681,"resize":"fit"},"large":{"w":1280,"h":726,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 15:55:10 +0000 2019","id":1187034740634861571,"id_str":"1187034740634861571","full_text":"#AECT19: + Come hear about \"The Pursuit of STEM Education: 5 Considerations for Design + and Implementation\" with #FSU #FSUCOE #ISLT Demetrius Rice, James Klein & + Ginny L. Smith today @ 11 am - 11:50 am at Convention Center in Conference + Rm 3. (session 195) #STEM #Education","truncated":false,"display_text_range":[0,274],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"FSU","indices":[110,114]},{"text":"FSUCOE","indices":[115,122]},{"text":"ISLT","indices":[123,128]},{"text":"STEM","indices":[258,263]},{"text":"Education","indices":[264,274]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 15:30:07 +0000 2019","id":1187028436604211200,"id_str":"1187028436604211200","full_text":"RT + @michaelmgrant: More Breakfast with Champions! #aect19 #inspiredme https:\/\/t.co\/nlM6WeDZ6j","truncated":false,"display_text_range":[0,93],"entities":{"hashtags":[{"text":"aect19","indices":[50,57]},{"text":"inspiredme","indices":[58,69]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[3,17]}],"urls":[],"media":[{"id":1187027370709905409,"id_str":"1187027370709905409","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkrGsHUcAEM8cn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkrGsHUcAEM8cn.jpg","url":"https:\/\/t.co\/nlM6WeDZ6j","display_url":"pic.twitter.com\/nlM6WeDZ6j","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027404666966020\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1187027404666966020,"source_status_id_str":"1187027404666966020","source_user_id":132653457,"source_user_id_str":"132653457"}]},"extended_entities":{"media":[{"id":1187027370709905409,"id_str":"1187027370709905409","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkrGsHUcAEM8cn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkrGsHUcAEM8cn.jpg","url":"https:\/\/t.co\/nlM6WeDZ6j","display_url":"pic.twitter.com\/nlM6WeDZ6j","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027404666966020\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1187027404666966020,"source_status_id_str":"1187027404666966020","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null},{"id":1187027371414540288,"id_str":"1187027371414540288","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkrGuvUUAAkQDG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkrGuvUUAAkQDG.jpg","url":"https:\/\/t.co\/nlM6WeDZ6j","display_url":"pic.twitter.com\/nlM6WeDZ6j","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027404666966020\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1187027404666966020,"source_status_id_str":"1187027404666966020","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null},{"id":1187027371544608770,"id_str":"1187027371544608770","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkrGvOVAAIBF6W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkrGvOVAAIBF6W.jpg","url":"https:\/\/t.co\/nlM6WeDZ6j","display_url":"pic.twitter.com\/nlM6WeDZ6j","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027404666966020\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1187027404666966020,"source_status_id_str":"1187027404666966020","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null},{"id":1187027372928749568,"id_str":"1187027372928749568","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkrG0YVUAAo1ln.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkrG0YVUAAo1ln.jpg","url":"https:\/\/t.co\/nlM6WeDZ6j","display_url":"pic.twitter.com\/nlM6WeDZ6j","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027404666966020\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1187027404666966020,"source_status_id_str":"1187027404666966020","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:26:01 +0000 2019","id":1187027404666966020,"id_str":"1187027404666966020","full_text":"More + Breakfast with Champions! #aect19 #inspiredme https:\/\/t.co\/nlM6WeDZ6j","truncated":false,"display_text_range":[0,50],"entities":{"hashtags":[{"text":"aect19","indices":[31,38]},{"text":"inspiredme","indices":[39,50]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187027370709905409,"id_str":"1187027370709905409","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkrGsHUcAEM8cn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkrGsHUcAEM8cn.jpg","url":"https:\/\/t.co\/nlM6WeDZ6j","display_url":"pic.twitter.com\/nlM6WeDZ6j","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027404666966020\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187027370709905409,"id_str":"1187027370709905409","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkrGsHUcAEM8cn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkrGsHUcAEM8cn.jpg","url":"https:\/\/t.co\/nlM6WeDZ6j","display_url":"pic.twitter.com\/nlM6WeDZ6j","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027404666966020\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187027371414540288,"id_str":"1187027371414540288","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkrGuvUUAAkQDG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkrGuvUUAAkQDG.jpg","url":"https:\/\/t.co\/nlM6WeDZ6j","display_url":"pic.twitter.com\/nlM6WeDZ6j","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027404666966020\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1187027371544608770,"id_str":"1187027371544608770","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkrGvOVAAIBF6W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkrGvOVAAIBF6W.jpg","url":"https:\/\/t.co\/nlM6WeDZ6j","display_url":"pic.twitter.com\/nlM6WeDZ6j","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027404666966020\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187027372928749568,"id_str":"1187027372928749568","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkrG0YVUAAo1ln.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkrG0YVUAAo1ln.jpg","url":"https:\/\/t.co\/nlM6WeDZ6j","display_url":"pic.twitter.com\/nlM6WeDZ6j","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1187027404666966020\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 14:59:27 +0000 2019","id":1187020718619287553,"id_str":"1187020718619287553","full_text":"Always + great to see our alumni growing professionally and connecting with our current graduate + students at #AECT19 #AECT19inspired @anusbrah \ud83c\udf1f https:\/\/t.co\/wXqHdVYg5f","truncated":false,"display_text_range":[0,143],"entities":{"hashtags":[{"text":"AECT19","indices":[108,115]},{"text":"AECT19inspired","indices":[116,131]}],"symbols":[],"user_mentions":[{"screen_name":"anusbrah","name":"anubrahim","id":1326530826,"id_str":"1326530826","indices":[132,141]}],"urls":[],"media":[{"id":1187020710750720001,"id_str":"1187020710750720001","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/media\/EHklDB1UEAEJxyN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHklDB1UEAEJxyN.jpg","url":"https:\/\/t.co\/wXqHdVYg5f","display_url":"pic.twitter.com\/wXqHdVYg5f","expanded_url":"https:\/\/twitter.com\/UT_IDT\/status\/1187020718619287553\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187020710750720001,"id_str":"1187020710750720001","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/media\/EHklDB1UEAEJxyN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHklDB1UEAEJxyN.jpg","url":"https:\/\/t.co\/wXqHdVYg5f","display_url":"pic.twitter.com\/wXqHdVYg5f","expanded_url":"https:\/\/twitter.com\/UT_IDT\/status\/1187020718619287553\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2205686646,"id_str":"2205686646","name":"UT + IDT Program","screen_name":"UT_IDT","location":"\ud83d\udccdTampa, Florida","description":"Instructional + Design & Technology Master Program at the @UofTampa \ud83d\udcbb \ud83d\udcda + #instructionaldesign #edtech #learning #design #technology","url":"https:\/\/t.co\/H4Yb0LBXjr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/H4Yb0LBXjr","expanded_url":"http:\/\/www.ut.edu\/idt","display_url":"ut.edu\/idt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":484,"friends_count":637,"listed_count":24,"created_at":"Wed + Nov 20 22:15:34 +0000 2013","favourites_count":1017,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/986987284951126017\/Z93W1kpY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/986987284951126017\/Z93W1kpY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2205686646\/1607182131","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:10:28 +0000 2019","id":1187038591332958209,"id_str":"1187038591332958209","full_text":"RT + @AmyLomellini_ID: Today\u2019s the day! Looking forward to great discussions + with inspiring people at #AECT19! @AECT @gsa_aect @JenM @nicolap\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[100,107]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[3,19]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[109,114]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[115,124]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[125,130]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 15:40:10 +0000 2019","id":1187030965161463810,"id_str":"1187030965161463810","full_text":"Today\u2019s + the day! Looking forward to great discussions with inspiring people at #AECT19! + @AECT @gsa_aect @JenM @nicolapallitt https:\/\/t.co\/P89NI1ItiJ","truncated":false,"display_text_range":[0,124],"entities":{"hashtags":[{"text":"AECT19","indices":[79,86]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[88,93]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[94,103]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[104,109]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[110,124]}],"urls":[],"media":[{"id":1187030963286691841,"id_str":"1187030963286691841","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkuXzgX0AEvw4Q.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkuXzgX0AEvw4Q.png","url":"https:\/\/t.co\/P89NI1ItiJ","display_url":"pic.twitter.com\/P89NI1ItiJ","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1187030965161463810\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1187030963286691841,"id_str":"1187030963286691841","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkuXzgX0AEvw4Q.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkuXzgX0AEvw4Q.png","url":"https:\/\/t.co\/P89NI1ItiJ","display_url":"pic.twitter.com\/P89NI1ItiJ","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1187030965161463810\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910574724748644353,"id_str":"910574724748644353","name":"Amy + Lomellini","screen_name":"AmyLomellini_ID","location":"New York, USA","description":"Associate + Director of Blended & Online Learning and doctoral candidate with a passion + for accessible and inclusive online teaching and learning. #EdTech #A11y","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":644,"friends_count":1061,"listed_count":9,"created_at":"Wed + Sep 20 18:41:46 +0000 2017","favourites_count":7378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1141,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910574724748644353\/1551624059","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 16:33:26 +0000 2019","id":1187044370710552578,"id_str":"1187044370710552578","full_text":"RT + @nangur1: A great workshop going online data and open source tools : Analyzing + educational internet data using R with \u2066@bretsw\u2069 \u2066@spgree\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nangur1","name":"Dr. + Nandita Gurjar","id":2743313304,"id_str":"2743313304","indices":[3,11]},{"screen_name":"bretsw","name":"Dr. + Bret Staudt Willet","id":53167706,"id_str":"53167706","indices":[122,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 16:05:18 +0000 2019","id":1187037290717016064,"id_str":"1187037290717016064","full_text":"A + great workshop going online data and open source tools : Analyzing educational + internet data using R with \u2066@bretsw\u2069 \u2066@spgreenhalgh\u2069 and + Joshua Rosenberg #aect19 https:\/\/t.co\/nNYBslvxfI","truncated":false,"display_text_range":[0,162],"entities":{"hashtags":[{"text":"aect19","indices":[155,162]}],"symbols":[],"user_mentions":[{"screen_name":"bretsw","name":"Dr. + Bret Staudt Willet","id":53167706,"id_str":"53167706","indices":[109,116]},{"screen_name":"spgreenhalgh","name":"Spencer + Greenhalgh, PhD","id":129211252,"id_str":"129211252","indices":[119,132]}],"urls":[],"media":[{"id":1187037285130260482,"id_str":"1187037285130260482","indices":[163,186],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk0HyNVUAIMvWq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk0HyNVUAIMvWq.jpg","url":"https:\/\/t.co\/nNYBslvxfI","display_url":"pic.twitter.com\/nNYBslvxfI","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187037290717016064\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187037285130260482,"id_str":"1187037285130260482","indices":[163,186],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk0HyNVUAIMvWq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk0HyNVUAIMvWq.jpg","url":"https:\/\/t.co\/nNYBslvxfI","display_url":"pic.twitter.com\/nNYBslvxfI","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1187037290717016064\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1187020005881212928%2C1187019876428181504%2C1187019840847892480%2C1187019840847892480%2C1187019235660185600%2C1187018562466127872%2C1187018050156912642%2C1187016582469304320%2C1187016311139753984%2C1187016116989595648%2C1187016049515827201%2C1187014917653581825%2C1187014061281566721%2C1187013077079773184%2C1187012704998871040%2C1187009874896404481%2C1187009197193359360%2C1187006165109989377%2C1187005731704229888%2C1187005536157351936%2C1187005536157351936%2C1187003238811222016%2C1187002786187112449%2C1187001786365661184%2C1186997720231243778%2C1186996982998396928%2C1186996406810218498%2C1186996359573819392%2C1186996231060574209%2C1186995207469813762%2C1186995110459953154%2C1186995080021676039%2C1186994983527567361%2C1186994812064600065%2C1186993787559497733%2C1186993787559497733%2C1186988280660709376%2C1186988107666608129%2C1186988067120222208%2C1186987970433150976%2C1186987934232109058%2C1186976815052554241%2C1186976815052554241%2C1186972224265347073%2C1186962473695535104%2C1186960304137068544%2C1186960304137068544%2C1186954576626237445%2C1186954382228836352%2C1186954278339932160%2C1186953715590352896%2C1186953715590352896%2C1186917111861579776%2C1186911244642471936%2C1186903732354801664%2C1186903001455157249%2C1186903001455157249%2C1186895985101815808%2C1186893689827708928%2C1186890959654572032%2C1186890589536538625%2C1186890578153226240%2C1186890141027094528%2C1186890070860685314%2C1186890025750761477%2C1186890004494049280%2C1186889519850610688%2C1186888887060140032%2C1186888794655477760%2C1186888632684052480%2C1186888440165498881%2C1186888167502204928%2C1186887605926932481%2C1186884939377250306%2C1186884791561375745%2C1186884747282149376%2C1186884599420317696%2C1186884599420317696%2C1186882397154893825%2C1186881204571660290%2C1186880197938700288%2C1186874221244207110%2C1186873069593251840%2C1186873069593251840%2C1186866292051120128%2C1186860913619431424%2C1186860086464929793%2C1186859178196979712%2C1186858413793263616%2C1186858413793263616%2C1186852150464266240%2C1186847850010857472%2C1186845328172933120%2C1186844247539871744%2C1186842680665485312%2C1186840989450682368%2C1186840712635125760%2C1186840393515786241%2C1186838345348894722%2C1186838345348894722&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:50 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:50 GMT + x-transaction: b9bd770d990a34e1 + content-length: '59025' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '280' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '396' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Oct 23 10:35:27 +0000 2019","id":1186954278339932160,"id_str":"1186954278339932160","full_text":"RT + @VanekJen: @design4learn poster session about adult basic ed OER evaluation + project. @JenM is the reason ABE has been represented at #ae\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"VanekJen","name":"Jen + Vanek","id":805816250,"id_str":"805816250","indices":[3,12]},{"screen_name":"design4learn","name":"Designers + for Learning","id":1610558420,"id_str":"1610558420","indices":[14,27]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[88,93]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":13515,"id_str":"13515","name":"Jennifer + Maddrell","screen_name":"JenM","location":"Chicago, IL","description":"Teach, + study & design learning experiences","url":"https:\/\/t.co\/725I4m2QWv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/725I4m2QWv","expanded_url":"https:\/\/jennifermaddrell.com","display_url":"jennifermaddrell.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2420,"friends_count":4448,"listed_count":80,"created_at":"Tue + Nov 21 13:57:14 +0000 2006","favourites_count":7779,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3455,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13515\/1604669803","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 23:37:13 +0000 2019","id":1186788628166373376,"id_str":"1186788628166373376","full_text":"@design4learn + poster session about adult basic ed OER evaluation project. @JenM is the reason + ABE has been represented at #aect for the past three years. 5 sessions this + year #aect19inspired","truncated":false,"display_text_range":[0,190],"entities":{"hashtags":[{"text":"aect","indices":[122,127]},{"text":"aect19inspired","indices":[175,190]}],"symbols":[],"user_mentions":[{"screen_name":"design4learn","name":"Designers + for Learning","id":1610558420,"id_str":"1610558420","indices":[0,13]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[74,79]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1610558420,"in_reply_to_user_id_str":"1610558420","in_reply_to_screen_name":"design4learn","user":{"id":805816250,"id_str":"805816250","name":"Jen + Vanek","screen_name":"VanekJen","location":"Minneapolis MN","description":"Director + of Digital Learning and Research. EdTech Center @ World Education. Teacher + educator, researcher, and advocate. Opinions expressed here are my own.","url":"https:\/\/t.co\/HfWBBD9lZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HfWBBD9lZC","expanded_url":"http:\/\/www.edtech.worlded.org","display_url":"edtech.worlded.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":270,"listed_count":5,"created_at":"Thu + Sep 06 01:47:18 +0000 2012","favourites_count":432,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":340,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/805816250\/1637458182","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 03:32:32 +0000 2019","id":1186847850010857472,"id_str":"1186847850010857472","full_text":"SICET + kickoff luncheon table @aect - write down the name who inspires you on the + balloon, and take a photo with him\/her! See what we got! #AECT2019 #AECT2019inspired + https:\/\/t.co\/AVxuTKOqxO","truncated":false,"display_text_range":[0,165],"entities":{"hashtags":[{"text":"AECT2019","indices":[138,147]},{"text":"AECT2019inspired","indices":[148,165]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[29,34]}],"urls":[],"media":[{"id":1186847843299889152,"id_str":"1186847843299889152","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiH00ZUEAAdrDC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiH00ZUEAAdrDC.jpg","url":"https:\/\/t.co\/AVxuTKOqxO","display_url":"pic.twitter.com\/AVxuTKOqxO","expanded_url":"https:\/\/twitter.com\/Happy_Tao\/status\/1186847850010857472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186847843299889152,"id_str":"1186847843299889152","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiH00ZUEAAdrDC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiH00ZUEAAdrDC.jpg","url":"https:\/\/t.co\/AVxuTKOqxO","display_url":"pic.twitter.com\/AVxuTKOqxO","expanded_url":"https:\/\/twitter.com\/Happy_Tao\/status\/1186847850010857472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186847843291516929,"id_str":"1186847843291516929","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiH00XUUAEbqxP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiH00XUUAEbqxP.jpg","url":"https:\/\/t.co\/AVxuTKOqxO","display_url":"pic.twitter.com\/AVxuTKOqxO","expanded_url":"https:\/\/twitter.com\/Happy_Tao\/status\/1186847850010857472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":600,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":800,"h":600,"resize":"fit"}},"ext_alt_text":null},{"id":1186847843299889153,"id_str":"1186847843299889153","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiH00ZUEAEvTNE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiH00ZUEAEvTNE.jpg","url":"https:\/\/t.co\/AVxuTKOqxO","display_url":"pic.twitter.com\/AVxuTKOqxO","expanded_url":"https:\/\/twitter.com\/Happy_Tao\/status\/1186847850010857472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":600,"h":800,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"}},"ext_alt_text":null},{"id":1186847845288038400,"id_str":"1186847845288038400","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiH07zU0AA-cs7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiH07zU0AA-cs7.jpg","url":"https:\/\/t.co\/AVxuTKOqxO","display_url":"pic.twitter.com\/AVxuTKOqxO","expanded_url":"https:\/\/twitter.com\/Happy_Tao\/status\/1186847850010857472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":600,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":800,"h":600,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":482227724,"id_str":"482227724","name":"Hengtao + Tang","screen_name":"Happy_Tao","location":"Columbia, SC","description":"Assistant + Professor @edtech_uofsc. #Gamecock Live love teach! @psuldt alumni. We are....","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":390,"friends_count":870,"listed_count":13,"created_at":"Fri + Feb 03 17:29:31 +0000 2012","favourites_count":2095,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1127,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1804992888\/h_large_CCWB_7b22000080c72f76_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1804992888\/h_large_CCWB_7b22000080c72f76_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/482227724\/1578336887","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 04:21:10 +0000 2019","id":1186860086464929793,"id_str":"1186860086464929793","full_text":"RT + @Happy_Tao: SICET kickoff luncheon table @aect - write down the name who inspires + you on the balloon, and take a photo with him\/her! See\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Happy_Tao","name":"Hengtao + Tang","id":482227724,"id_str":"482227724","indices":[3,13]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[44,49]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 03:32:32 +0000 2019","id":1186847850010857472,"id_str":"1186847850010857472","full_text":"SICET + kickoff luncheon table @aect - write down the name who inspires you on the + balloon, and take a photo with him\/her! See what we got! #AECT2019 #AECT2019inspired + https:\/\/t.co\/AVxuTKOqxO","truncated":false,"display_text_range":[0,165],"entities":{"hashtags":[{"text":"AECT2019","indices":[138,147]},{"text":"AECT2019inspired","indices":[148,165]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[29,34]}],"urls":[],"media":[{"id":1186847843299889152,"id_str":"1186847843299889152","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiH00ZUEAAdrDC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiH00ZUEAAdrDC.jpg","url":"https:\/\/t.co\/AVxuTKOqxO","display_url":"pic.twitter.com\/AVxuTKOqxO","expanded_url":"https:\/\/twitter.com\/Happy_Tao\/status\/1186847850010857472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186847843299889152,"id_str":"1186847843299889152","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiH00ZUEAAdrDC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiH00ZUEAAdrDC.jpg","url":"https:\/\/t.co\/AVxuTKOqxO","display_url":"pic.twitter.com\/AVxuTKOqxO","expanded_url":"https:\/\/twitter.com\/Happy_Tao\/status\/1186847850010857472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186847843291516929,"id_str":"1186847843291516929","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiH00XUUAEbqxP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiH00XUUAEbqxP.jpg","url":"https:\/\/t.co\/AVxuTKOqxO","display_url":"pic.twitter.com\/AVxuTKOqxO","expanded_url":"https:\/\/twitter.com\/Happy_Tao\/status\/1186847850010857472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":600,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":800,"h":600,"resize":"fit"}},"ext_alt_text":null},{"id":1186847843299889153,"id_str":"1186847843299889153","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiH00ZUEAEvTNE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiH00ZUEAEvTNE.jpg","url":"https:\/\/t.co\/AVxuTKOqxO","display_url":"pic.twitter.com\/AVxuTKOqxO","expanded_url":"https:\/\/twitter.com\/Happy_Tao\/status\/1186847850010857472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":600,"h":800,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"}},"ext_alt_text":null},{"id":1186847845288038400,"id_str":"1186847845288038400","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiH07zU0AA-cs7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiH07zU0AA-cs7.jpg","url":"https:\/\/t.co\/AVxuTKOqxO","display_url":"pic.twitter.com\/AVxuTKOqxO","expanded_url":"https:\/\/twitter.com\/Happy_Tao\/status\/1186847850010857472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":600,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":800,"h":600,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":482227724,"id_str":"482227724","name":"Hengtao + Tang","screen_name":"Happy_Tao","location":"Columbia, SC","description":"Assistant + Professor @edtech_uofsc. #Gamecock Live love teach! @psuldt alumni. We are....","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":390,"friends_count":870,"listed_count":13,"created_at":"Fri + Feb 03 17:29:31 +0000 2012","favourites_count":2095,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1127,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1804992888\/h_large_CCWB_7b22000080c72f76_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1804992888\/h_large_CCWB_7b22000080c72f76_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/482227724\/1578336887","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 06:20:18 +0000 2019","id":1186890070860685314,"id_str":"1186890070860685314","full_text":"RT + @idtesu: Getting to meet David Merrill, education researcher and Professor + Emeritus at Utah State University; known for developing \"The\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"idtesu","name":"ESU + Instructional Design & Technology Program","id":107144043,"id_str":"107144043","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1009885202464890880,"id_str":"1009885202464890880","name":"Isaac","screen_name":"Isaac75203895","location":"Kenya","description":"Chief + Learning officer, digital Evangelist, Author,Instructional technology trainer, + Instructional designer, 21st century teacher, Microsoft certified educator","url":"https:\/\/t.co\/8KDfVRRjPq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8KDfVRRjPq","expanded_url":"https:\/\/enezaeducation.com\/","display_url":"enezaeducation.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":551,"friends_count":2117,"listed_count":2,"created_at":"Thu + Jun 21 19:46:09 +0000 2018","favourites_count":637,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":733,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1470468110729846787\/0SxnvH3h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1470468110729846787\/0SxnvH3h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1009885202464890880\/1531842334","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 06:15:36 +0000 2019","id":1186888887060140032,"id_str":"1186888887060140032","full_text":"Getting + to meet David Merrill, education researcher and Professor Emeritus at Utah + State University; known for developing \"The Component Display Theory\", \"Instructional + Transaction Theory\" and the \"First Principles of Instruction.\"\n\n#EmporiaStateUniversity + #IDT #AECT2019 https:\/\/t.co\/XQRLMaiL8X","truncated":false,"display_text_range":[0,271],"entities":{"hashtags":[{"text":"EmporiaStateUniversity","indices":[233,256]},{"text":"IDT","indices":[257,261]},{"text":"AECT2019","indices":[262,271]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186888869536382976,"id_str":"1186888869536382976","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHitI3CUwAAvk4g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHitI3CUwAAvk4g.jpg","url":"https:\/\/t.co\/XQRLMaiL8X","display_url":"pic.twitter.com\/XQRLMaiL8X","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186888887060140032\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186888869536382976,"id_str":"1186888869536382976","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHitI3CUwAAvk4g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHitI3CUwAAvk4g.jpg","url":"https:\/\/t.co\/XQRLMaiL8X","display_url":"pic.twitter.com\/XQRLMaiL8X","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186888887060140032\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1186888869536391170,"id_str":"1186888869536391170","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHitI3CU4AIS23v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHitI3CU4AIS23v.jpg","url":"https:\/\/t.co\/XQRLMaiL8X","display_url":"pic.twitter.com\/XQRLMaiL8X","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186888887060140032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":495,"h":680,"resize":"fit"},"large":{"w":1492,"h":2048,"resize":"fit"},"medium":{"w":874,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 03:05:16 +0000 2019","id":1186840989450682368,"id_str":"1186840989450682368","full_text":"Talking + with @art_brownlow @ugkale and @BChirgwin planning our @MiTEconference #mite2020 + at @nachodaddylv while at #aect19inspired https:\/\/t.co\/bcDviKwCOi","truncated":false,"display_text_range":[0,130],"entities":{"hashtags":[{"text":"mite2020","indices":[79,88]},{"text":"aect19inspired","indices":[115,130]}],"symbols":[],"user_mentions":[{"screen_name":"art_brownlow","name":"Art + Brownlow","id":887813304311087104,"id_str":"887813304311087104","indices":[13,26]},{"screen_name":"ugkale","name":"Ugur + Kale","id":27505190,"id_str":"27505190","indices":[27,34]},{"screen_name":"BChirgwin","name":"Brian + Chirgwin","id":704060337700515840,"id_str":"704060337700515840","indices":[39,49]},{"screen_name":"MiTEconference","name":"MiTE + Conference","id":735382555042697216,"id_str":"735382555042697216","indices":[63,78]},{"screen_name":"nachodaddylv","name":"Nacho + Daddy","id":148082972,"id_str":"148082972","indices":[92,105]}],"urls":[],"media":[{"id":1186840982861443072,"id_str":"1186840982861443072","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiBlfRU8AAPDpu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiBlfRU8AAPDpu.jpg","url":"https:\/\/t.co\/bcDviKwCOi","display_url":"pic.twitter.com\/bcDviKwCOi","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1186840989450682368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186840982861443072,"id_str":"1186840982861443072","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiBlfRU8AAPDpu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiBlfRU8AAPDpu.jpg","url":"https:\/\/t.co\/bcDviKwCOi","display_url":"pic.twitter.com\/bcDviKwCOi","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1186840989450682368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"0fc31e65c4146000","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0fc31e65c4146000.json","place_type":"poi","name":"Nacho + Daddy","full_name":"Nacho Daddy","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.14161923526908,36.17031640532771],[-115.14161923526908,36.17031640532771],[-115.14161923526908,36.17031640532771],[-115.14161923526908,36.17031640532771]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 06:14:36 +0000 2019","id":1186888632684052480,"id_str":"1186888632684052480","full_text":"RT + @pazureka: Best presentation I saw today at #aect19! Enjoyed hearing abt @SBarksway''s + work using tech integrated menus for students to p\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[47,54]}],"symbols":[],"user_mentions":[{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[3,12]},{"screen_name":"SBarksway","name":"Sarah + Barksdale","id":908737706699710464,"id_str":"908737706699710464","indices":[76,86]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1033854044039729152,"id_str":"1033854044039729152","name":"Hajeen + Choi","screen_name":"hajeenfsu","location":"FL","description":"PhD., Interested + in online teaching and learning, motivation, engagement, othering\/belonging, + networked learning, social media in education","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":178,"listed_count":1,"created_at":"Sun + Aug 26 23:09:46 +0000 2018","favourites_count":653,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1033854044039729152\/1535327544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 23:43:16 +0000 2019","id":1186790153068564485,"id_str":"1186790153068564485","full_text":"Best + presentation I saw today at #aect19! Enjoyed hearing abt @SBarksway''s work + using tech integrated menus for students to pursue their interests while demonstrating + competence in more meaningful + creative ways. @AECT @UMN_CI https:\/\/t.co\/TAjYOVLoO9","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"aect19","indices":[33,40]}],"symbols":[],"user_mentions":[{"screen_name":"SBarksway","name":"Sarah + Barksdale","id":908737706699710464,"id_str":"908737706699710464","indices":[62,72]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[214,219]},{"screen_name":"UMN_CI","name":"U + of MN CEHD C&I","id":759684692,"id_str":"759684692","indices":[220,227]}],"urls":[],"media":[{"id":1186790142003908608,"id_str":"1186790142003908608","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","url":"https:\/\/t.co\/TAjYOVLoO9","display_url":"pic.twitter.com\/TAjYOVLoO9","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":972,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":645,"resize":"fit"},"large":{"w":1024,"h":972,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186790142003908608,"id_str":"1186790142003908608","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","url":"https:\/\/t.co\/TAjYOVLoO9","display_url":"pic.twitter.com\/TAjYOVLoO9","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":972,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":645,"resize":"fit"},"large":{"w":1024,"h":972,"resize":"fit"}},"ext_alt_text":null},{"id":1186790148622569473,"id_str":"1186790148622569473","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhTWi-U0AEx9jJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhTWi-U0AEx9jJ.jpg","url":"https:\/\/t.co\/TAjYOVLoO9","display_url":"pic.twitter.com\/TAjYOVLoO9","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":601,"resize":"fit"},"large":{"w":1024,"h":601,"resize":"fit"},"small":{"w":680,"h":399,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 07:11:41 +0000 2019","id":1186903001455157249,"id_str":"1186903001455157249","full_text":"RT + @nangur1: Saw some COOL interactive poster presentations today! #aect19 #aect19inspired + https:\/\/t.co\/ouiG0dSJ4N","truncated":false,"display_text_range":[0,114],"entities":{"hashtags":[{"text":"aect19","indices":[67,74]},{"text":"aect19inspired","indices":[75,90]}],"symbols":[],"user_mentions":[{"screen_name":"nangur1","name":"Dr. + Nandita Gurjar","id":2743313304,"id_str":"2743313304","indices":[3,11]}],"urls":[],"media":[{"id":1186837363017707521,"id_str":"1186837363017707521","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EHh-SyTU8AE2OhI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHh-SyTU8AE2OhI.jpg","url":"https:\/\/t.co\/ouiG0dSJ4N","display_url":"pic.twitter.com\/ouiG0dSJ4N","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186837371842650115\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1186837371842650115,"source_status_id_str":"1186837371842650115","source_user_id":2743313304,"source_user_id_str":"2743313304"}]},"extended_entities":{"media":[{"id":1186837363017707521,"id_str":"1186837363017707521","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EHh-SyTU8AE2OhI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHh-SyTU8AE2OhI.jpg","url":"https:\/\/t.co\/ouiG0dSJ4N","display_url":"pic.twitter.com\/ouiG0dSJ4N","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186837371842650115\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1186837371842650115,"source_status_id_str":"1186837371842650115","source_user_id":2743313304,"source_user_id_str":"2743313304","ext_alt_text":null},{"id":1186837363013455872,"id_str":"1186837363013455872","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EHh-SySUEAAyd_E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHh-SySUEAAyd_E.jpg","url":"https:\/\/t.co\/ouiG0dSJ4N","display_url":"pic.twitter.com\/ouiG0dSJ4N","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186837371842650115\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1186837371842650115,"source_status_id_str":"1186837371842650115","source_user_id":2743313304,"source_user_id_str":"2743313304","ext_alt_text":null},{"id":1186837363021889536,"id_str":"1186837363021889536","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EHh-SyUUwAA3Cb9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHh-SyUUwAA3Cb9.jpg","url":"https:\/\/t.co\/ouiG0dSJ4N","display_url":"pic.twitter.com\/ouiG0dSJ4N","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186837371842650115\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1186837371842650115,"source_status_id_str":"1186837371842650115","source_user_id":2743313304,"source_user_id_str":"2743313304","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 02:50:54 +0000 2019","id":1186837371842650115,"id_str":"1186837371842650115","full_text":"Saw + some COOL interactive poster presentations today! #aect19 #aect19inspired + https:\/\/t.co\/ouiG0dSJ4N","truncated":false,"display_text_range":[0,77],"entities":{"hashtags":[{"text":"aect19","indices":[54,61]},{"text":"aect19inspired","indices":[62,77]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186837363017707521,"id_str":"1186837363017707521","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/EHh-SyTU8AE2OhI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHh-SyTU8AE2OhI.jpg","url":"https:\/\/t.co\/ouiG0dSJ4N","display_url":"pic.twitter.com\/ouiG0dSJ4N","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186837371842650115\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186837363017707521,"id_str":"1186837363017707521","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/EHh-SyTU8AE2OhI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHh-SyTU8AE2OhI.jpg","url":"https:\/\/t.co\/ouiG0dSJ4N","display_url":"pic.twitter.com\/ouiG0dSJ4N","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186837371842650115\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186837363013455872,"id_str":"1186837363013455872","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/EHh-SySUEAAyd_E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHh-SySUEAAyd_E.jpg","url":"https:\/\/t.co\/ouiG0dSJ4N","display_url":"pic.twitter.com\/ouiG0dSJ4N","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186837371842650115\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186837363021889536,"id_str":"1186837363021889536","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/EHh-SyUUwAA3Cb9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHh-SyUUwAA3Cb9.jpg","url":"https:\/\/t.co\/ouiG0dSJ4N","display_url":"pic.twitter.com\/ouiG0dSJ4N","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186837371842650115\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 06:22:22 +0000 2019","id":1186890589536538625,"id_str":"1186890589536538625","full_text":"Another + cool research on social media. #AECT19 #SocialMedia #fsu2040 https:\/\/t.co\/lO9ga0DXL1","truncated":false,"display_text_range":[0,68],"entities":{"hashtags":[{"text":"AECT19","indices":[39,46]},{"text":"SocialMedia","indices":[47,59]},{"text":"fsu2040","indices":[60,68]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lO9ga0DXL1","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186605683338289153","display_url":"twitter.com\/ISLT_FSU\/statu\u2026","indices":[69,92]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1033854044039729152,"id_str":"1033854044039729152","name":"Hajeen + Choi","screen_name":"hajeenfsu","location":"FL","description":"PhD., Interested + in online teaching and learning, motivation, engagement, othering\/belonging, + networked learning, social media in education","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":178,"listed_count":1,"created_at":"Sun + Aug 26 23:09:46 +0000 2018","favourites_count":653,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1033854044039729152\/1535327544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186605683338289153,"quoted_status_id_str":"1186605683338289153","quoted_status_permalink":{"url":"https:\/\/t.co\/lO9ga0DXL1","expanded":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186605683338289153","display":"twitter.com\/ISLT_FSU\/statu\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 11:30:15 +0000 2019","id":1186605683338289153,"id_str":"1186605683338289153","full_text":"#SocialMedia + and #Undergraduates: Use and Opportunities Across Student Life. Come join + #FSU #FSUCOE #ISLT @vdennen @LaurenBagdy @hajeen2040 Demetrius Rice, & + @Ginny7s, for session 045 on Tuesday, 8:00 am - 8:50 am at Convention Center + - Ballroom B. #AECT19 #AECT2019 #SocialMedia","truncated":false,"display_text_range":[0,283],"entities":{"hashtags":[{"text":"SocialMedia","indices":[0,12]},{"text":"Undergraduates","indices":[17,32]},{"text":"FSU","indices":[87,91]},{"text":"FSUCOE","indices":[92,99]},{"text":"ISLT","indices":[100,105]},{"text":"AECT19","indices":[253,260]},{"text":"AECT2019","indices":[261,270]},{"text":"SocialMedia","indices":[271,283]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[106,114]},{"screen_name":"LaurenBagdy","name":"Lauren + Bagdy","id":22214646,"id_str":"22214646","indices":[115,127]},{"screen_name":"Ginny7s","name":"Dr. + Ginny L. Smith","id":880789090010050560,"id_str":"880789090010050560","indices":[162,170]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 12:49:19 +0000 2019","id":1186987970433150976,"id_str":"1186987970433150976","full_text":"RT + @idtesu: The #AECT2019 Conference is a place of encounters. We ran into Dr. + Sungwoong Lee (former professor for the IDT program), and Da\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT2019","indices":[16,25]}],"symbols":[],"user_mentions":[{"screen_name":"idtesu","name":"ESU + Instructional Design & Technology Program","id":107144043,"id_str":"107144043","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 06:34:41 +0000 2019","id":1186893689827708928,"id_str":"1186893689827708928","full_text":"The + #AECT2019 Conference is a place of encounters. We ran into Dr. Sungwoong Lee + (former professor for the IDT program), and Dan Watanabe (IDT alum), who is + currently visiting from Korea. https:\/\/t.co\/tfGYtasit1","truncated":false,"display_text_range":[0,187],"entities":{"hashtags":[{"text":"AECT2019","indices":[4,13]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186893670538043398,"id_str":"1186893670538043398","indices":[188,211],"media_url":"http:\/\/pbs.twimg.com\/media\/EHixgUKUYAYzoI8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHixgUKUYAYzoI8.jpg","url":"https:\/\/t.co\/tfGYtasit1","display_url":"pic.twitter.com\/tfGYtasit1","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186893689827708928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186893670538043398,"id_str":"1186893670538043398","indices":[188,211],"media_url":"http:\/\/pbs.twimg.com\/media\/EHixgUKUYAYzoI8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHixgUKUYAYzoI8.jpg","url":"https:\/\/t.co\/tfGYtasit1","display_url":"pic.twitter.com\/tfGYtasit1","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186893689827708928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 06:23:50 +0000 2019","id":1186890959654572032,"id_str":"1186890959654572032","full_text":"Honored + to meet Dr. Enilda Romero-Hall. \nESU''s IDT alum. Currently serving as an + Associate Professor in the Department of Education at The University of Tampa, + where she is also the Graduate Coordinator of the Instructional Design and + Technology program.\n\n#AECT2019 #hornetpride https:\/\/t.co\/2bcVqG15lI","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"AECT2019","indices":[256,265]},{"text":"hornetpride","indices":[266,278]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186890949063897089,"id_str":"1186890949063897089","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHivB54UcAEEeer.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHivB54UcAEEeer.jpg","url":"https:\/\/t.co\/2bcVqG15lI","display_url":"pic.twitter.com\/2bcVqG15lI","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186890959654572032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186890949063897089,"id_str":"1186890949063897089","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHivB54UcAEEeer.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHivB54UcAEEeer.jpg","url":"https:\/\/t.co\/2bcVqG15lI","display_url":"pic.twitter.com\/2bcVqG15lI","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186890959654572032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 05:59:09 +0000 2019","id":1186884747282149376,"id_str":"1186884747282149376","full_text":"RT + @FredWBaker: Please consider submitting a proposal for the Systems Thinking + & Change Division''s special issue of @AECTTechTrends!! #aect\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[120,135]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 22:26:19 +0000 2019","id":1186770788797411328,"id_str":"1186770788797411328","full_text":"Please + consider submitting a proposal for the Systems Thinking & Change Division''s + special issue of @AECTTechTrends!! #aect19 #aectstc #aect19inspired https:\/\/t.co\/nQzSaUhgi2","truncated":false,"display_text_range":[0,178],"entities":{"hashtags":[{"text":"aect19","indices":[122,129]},{"text":"aectstc","indices":[130,138]},{"text":"aect19inspired","indices":[139,154]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[104,119]}],"urls":[{"url":"https:\/\/t.co\/nQzSaUhgi2","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[155,178]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 05:58:34 +0000 2019","id":1186884599420317696,"id_str":"1186884599420317696","full_text":"RT + @KuiXieOSU: Found my own name on the @aectddl #WhoInspire board #aect19 #aect19inspired + https:\/\/t.co\/GbcQG36yzS","truncated":false,"display_text_range":[0,114],"entities":{"hashtags":[{"text":"WhoInspire","indices":[49,60]},{"text":"aect19","indices":[67,74]},{"text":"aect19inspired","indices":[75,90]}],"symbols":[],"user_mentions":[{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[40,48]}],"urls":[],"media":[{"id":1186845321101365248,"id_str":"1186845321101365248","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiFiAeU0AAndC0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiFiAeU0AAndC0.jpg","url":"https:\/\/t.co\/GbcQG36yzS","display_url":"pic.twitter.com\/GbcQG36yzS","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186845328172933120\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":1186845328172933120,"source_status_id_str":"1186845328172933120","source_user_id":392067318,"source_user_id_str":"392067318"}]},"extended_entities":{"media":[{"id":1186845321101365248,"id_str":"1186845321101365248","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiFiAeU0AAndC0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiFiAeU0AAndC0.jpg","url":"https:\/\/t.co\/GbcQG36yzS","display_url":"pic.twitter.com\/GbcQG36yzS","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186845328172933120\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":1186845328172933120,"source_status_id_str":"1186845328172933120","source_user_id":392067318,"source_user_id_str":"392067318","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 03:22:31 +0000 2019","id":1186845328172933120,"id_str":"1186845328172933120","full_text":"Found + my own name on the @aectddl #WhoInspire board #aect19 #aect19inspired https:\/\/t.co\/GbcQG36yzS","truncated":false,"display_text_range":[0,75],"entities":{"hashtags":[{"text":"WhoInspire","indices":[34,45]},{"text":"aect19","indices":[52,59]},{"text":"aect19inspired","indices":[60,75]}],"symbols":[],"user_mentions":[{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[25,33]}],"urls":[],"media":[{"id":1186845321101365248,"id_str":"1186845321101365248","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiFiAeU0AAndC0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiFiAeU0AAndC0.jpg","url":"https:\/\/t.co\/GbcQG36yzS","display_url":"pic.twitter.com\/GbcQG36yzS","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186845328172933120\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186845321101365248,"id_str":"1186845321101365248","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiFiAeU0AAndC0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiFiAeU0AAndC0.jpg","url":"https:\/\/t.co\/GbcQG36yzS","display_url":"pic.twitter.com\/GbcQG36yzS","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186845328172933120\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 14:50:53 +0000 2019","id":1187018562466127872,"id_str":"1187018562466127872","full_text":"RT + @Stephsteph83: So sorry I\u2019m missing #KSUMOBILESUMMIT19 while flying + home from #aect19inspired -but I know that my pals are dropping som\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"KSUMOBILESUMMIT19","indices":[40,58]},{"text":"aect19inspired","indices":[82,97]}],"symbols":[],"user_mentions":[{"screen_name":"Stephsteph83","name":"Dr. + Stephanee Stephens","id":427060068,"id_str":"427060068","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":44916231,"id_str":"44916231","name":"Kristen + Brooks #FOREDU","screen_name":"KristenBrooks77","location":"Georgia","description":"Educational + Technology Specialist | Speaker | Consultant | Strategist Facilitator of Learning + #ADE2017 #MIEExpert #AdobeEduLeader #IamNCCE #AppleLearningCoach","url":"https:\/\/t.co\/NxSZBXn8kB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/NxSZBXn8kB","expanded_url":"http:\/\/www.KristenBrooks.net","display_url":"KristenBrooks.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8221,"friends_count":8527,"listed_count":209,"created_at":"Fri + Jun 05 15:28:14 +0000 2009","favourites_count":24868,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12991,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/966489017595281408\/omi04LzM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/966489017595281408\/omi04LzM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/44916231\/1500610349","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 13:59:07 +0000 2019","id":1187005536157351936,"id_str":"1187005536157351936","full_text":"So + sorry I\u2019m missing #KSUMOBILESUMMIT19 while flying home from #aect19inspired + -but I know that my pals are dropping some knowledge \ud83d\udca3 @Durrahville + repping @ksuiteach and @nearpod and @KristenBrooks77 @MissRioux shining an + \ud83c\udf4e \ud83d\udca1! Congrats @drjabaricain @KSUBCOE @KSUITEC https:\/\/t.co\/CrusxDuLhm","truncated":false,"display_text_range":[0,269],"entities":{"hashtags":[{"text":"KSUMOBILESUMMIT19","indices":[22,40]},{"text":"aect19inspired","indices":[64,79]}],"symbols":[],"user_mentions":[{"screen_name":"Durrahville","name":"Tamika + Duffey","id":887647302940340224,"id_str":"887647302940340224","indices":[136,148]},{"screen_name":"ksuiteach","name":"KSU + iTeach","id":129823325,"id_str":"129823325","indices":[157,167]},{"screen_name":"nearpod","name":"Nearpod","id":231176302,"id_str":"231176302","indices":[172,180]},{"screen_name":"KristenBrooks77","name":"Kristen + Brooks #FOREDU","id":44916231,"id_str":"44916231","indices":[185,201]},{"screen_name":"MissRioux","name":"Andrea + Tseng-Rioux","id":243846294,"id_str":"243846294","indices":[202,212]},{"screen_name":"drjabaricain","name":"Dr. + Jabari Cain","id":895269889438560257,"id_str":"895269889438560257","indices":[238,251]},{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[261,269]}],"urls":[],"media":[{"id":1187005527949099008,"id_str":"1187005527949099008","indices":[270,293],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHkXPRfUwAAlshq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHkXPRfUwAAlshq.jpg","url":"https:\/\/t.co\/CrusxDuLhm","display_url":"pic.twitter.com\/CrusxDuLhm","expanded_url":"https:\/\/twitter.com\/Stephsteph83\/status\/1187005536157351936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":264,"resize":"fit"},"large":{"w":480,"h":264,"resize":"fit"},"medium":{"w":480,"h":264,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187005527949099008,"id_str":"1187005527949099008","indices":[270,293],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHkXPRfUwAAlshq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHkXPRfUwAAlshq.jpg","url":"https:\/\/t.co\/CrusxDuLhm","display_url":"pic.twitter.com\/CrusxDuLhm","expanded_url":"https:\/\/twitter.com\/Stephsteph83\/status\/1187005536157351936\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":264,"resize":"fit"},"large":{"w":480,"h":264,"resize":"fit"},"medium":{"w":480,"h":264,"resize":"fit"}},"video_info":{"aspect_ratio":[20,11],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHkXPRfUwAAlshq.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":427060068,"id_str":"427060068","name":"Dr. + Stephanee Stephens","screen_name":"Stephsteph83","location":"Atlanta, GA","description":"Educator, + Challenger, Leader, Innovator @microsoftedu Believe in: #personalizedlearning + \ud83d\udc69\u200d\ud83c\udf93 @utoledo @kennesawstate","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2501,"friends_count":1157,"listed_count":172,"created_at":"Sat + Dec 03 02:01:17 +0000 2011","favourites_count":13627,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8514,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458524672912461825\/JM2qKEcN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458524672912461825\/JM2qKEcN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/427060068\/1636574423","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 06:34:41 +0000 2019","id":1186893689827708928,"id_str":"1186893689827708928","full_text":"The + #AECT2019 Conference is a place of encounters. We ran into Dr. Sungwoong Lee + (former professor for the IDT program), and Dan Watanabe (IDT alum), who is + currently visiting from Korea. https:\/\/t.co\/tfGYtasit1","truncated":false,"display_text_range":[0,187],"entities":{"hashtags":[{"text":"AECT2019","indices":[4,13]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186893670538043398,"id_str":"1186893670538043398","indices":[188,211],"media_url":"http:\/\/pbs.twimg.com\/media\/EHixgUKUYAYzoI8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHixgUKUYAYzoI8.jpg","url":"https:\/\/t.co\/tfGYtasit1","display_url":"pic.twitter.com\/tfGYtasit1","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186893689827708928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186893670538043398,"id_str":"1186893670538043398","indices":[188,211],"media_url":"http:\/\/pbs.twimg.com\/media\/EHixgUKUYAYzoI8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHixgUKUYAYzoI8.jpg","url":"https:\/\/t.co\/tfGYtasit1","display_url":"pic.twitter.com\/tfGYtasit1","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186893689827708928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 14:33:00 +0000 2019","id":1187014061281566721,"id_str":"1187014061281566721","full_text":"RT + @PaulineMuljana: While this already happened, shout out to my co-facilitator + Dr. Meina Zhu and the panelists, Drs. @ifenthaler , @ClaraS\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]},{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[118,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2411486725,"id_str":"2411486725","name":"Andrew + Tawfik","screen_name":"andrewatawfik","location":"Memphis, TN","description":"Husband, + Father, Runner, Believer, Ed Tech Researcher at the University of Memphis, + Matt Murton Fan, Aspiring Hobbit","url":"https:\/\/t.co\/AhT8vHVE0Q","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AhT8vHVE0Q","expanded_url":"https:\/\/www.researchgate.net\/profile\/Andrew_Tawfik","display_url":"researchgate.net\/profile\/Andrew\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":596,"friends_count":898,"listed_count":24,"created_at":"Tue + Mar 25 20:08:19 +0000 2014","favourites_count":899,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1167,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/890710823290720257\/XfJ6f_n-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/890710823290720257\/XfJ6f_n-_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 13:17:12 +0000 2019","id":1186994983527567361,"id_str":"1186994983527567361","full_text":"While + this already happened, shout out to my co-facilitator Dr. Meina Zhu and the + panelists, Drs. @ifenthaler , @ClaraSophiaS , @andrewatawfik , and Dongho + Kim. We ended the session with a room full of attendees. What an inspiring + discussion! #aect19 #aect19inspired https:\/\/t.co\/YUOCHGnOrt","truncated":false,"display_text_range":[0,266],"entities":{"hashtags":[{"text":"aect19","indices":[243,250]},{"text":"aect19inspired","indices":[251,266]}],"symbols":[],"user_mentions":[{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[98,109]},{"screen_name":"ClaraSophiaS","name":"Clara + S. Schumacher","id":599247384,"id_str":"599247384","indices":[112,125]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[128,142]}],"urls":[{"url":"https:\/\/t.co\/YUOCHGnOrt","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848","display_url":"twitter.com\/nateturcotte22\u2026","indices":[267,290]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1186691231738318848,"quoted_status_id_str":"1186691231738318848","quoted_status_permalink":{"url":"https:\/\/t.co\/YUOCHGnOrt","expanded":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848","display":"twitter.com\/nateturcotte22\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 17:10:11 +0000 2019","id":1186691231738318848,"id_str":"1186691231738318848","full_text":"Great + session starting up right now in Conference Room 4: Learning Analytics: Intersections + with ID, Research, and Practice #aect19inspired @gsa_aect https:\/\/t.co\/EvyTanHQ97","truncated":false,"display_text_range":[0,149],"entities":{"hashtags":[{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[140,149]}],"urls":[],"media":[{"id":1186691226214338560,"id_str":"1186691226214338560","indices":[150,173],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","url":"https:\/\/t.co\/EvyTanHQ97","display_url":"pic.twitter.com\/EvyTanHQ97","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186691226214338560,"id_str":"1186691226214338560","indices":[150,173],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","url":"https:\/\/t.co\/EvyTanHQ97","display_url":"pic.twitter.com\/EvyTanHQ97","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":600653284,"id_str":"600653284","name":"Nate + Turcotte","screen_name":"nateturcotte22","location":"Fort Myers, FL","description":"Assistant + Professor at @fgcu_coe | Researching embodied forms of teaching & learning + with data | New England Patriots | Duke Basketball","url":"https:\/\/t.co\/uu8axyn0Bq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uu8axyn0Bq","expanded_url":"http:\/\/nateturcotte.com","display_url":"nateturcotte.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":313,"friends_count":606,"listed_count":4,"created_at":"Wed + Jun 06 03:44:26 +0000 2012","favourites_count":4300,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1349,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/600653284\/1440433455","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186691231738318848,"quoted_status_id_str":"1186691231738318848","quoted_status_permalink":{"url":"https:\/\/t.co\/YUOCHGnOrt","expanded":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848","display":"twitter.com\/nateturcotte22\u2026"},"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 13:22:09 +0000 2019","id":1186996231060574209,"id_str":"1186996231060574209","full_text":"RT + @PaulineMuljana: While this already happened, shout out to my co-facilitator + Dr. Meina Zhu and the panelists, Drs. @ifenthaler , @ClaraS\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]},{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[118,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45137054,"id_str":"45137054","name":"Dirk + Ifenthaler","screen_name":"ifenthaler","location":"","description":"#learninganalytics","url":"https:\/\/t.co\/nGyfFQyRvo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nGyfFQyRvo","expanded_url":"http:\/\/www.ifenthaler.info","display_url":"ifenthaler.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":895,"friends_count":246,"listed_count":35,"created_at":"Sat + Jun 06 14:19:07 +0000 2009","favourites_count":615,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":878,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 13:17:12 +0000 2019","id":1186994983527567361,"id_str":"1186994983527567361","full_text":"While + this already happened, shout out to my co-facilitator Dr. Meina Zhu and the + panelists, Drs. @ifenthaler , @ClaraSophiaS , @andrewatawfik , and Dongho + Kim. We ended the session with a room full of attendees. What an inspiring + discussion! #aect19 #aect19inspired https:\/\/t.co\/YUOCHGnOrt","truncated":false,"display_text_range":[0,266],"entities":{"hashtags":[{"text":"aect19","indices":[243,250]},{"text":"aect19inspired","indices":[251,266]}],"symbols":[],"user_mentions":[{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[98,109]},{"screen_name":"ClaraSophiaS","name":"Clara + S. Schumacher","id":599247384,"id_str":"599247384","indices":[112,125]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[128,142]}],"urls":[{"url":"https:\/\/t.co\/YUOCHGnOrt","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848","display_url":"twitter.com\/nateturcotte22\u2026","indices":[267,290]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1186691231738318848,"quoted_status_id_str":"1186691231738318848","quoted_status_permalink":{"url":"https:\/\/t.co\/YUOCHGnOrt","expanded":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848","display":"twitter.com\/nateturcotte22\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 17:10:11 +0000 2019","id":1186691231738318848,"id_str":"1186691231738318848","full_text":"Great + session starting up right now in Conference Room 4: Learning Analytics: Intersections + with ID, Research, and Practice #aect19inspired @gsa_aect https:\/\/t.co\/EvyTanHQ97","truncated":false,"display_text_range":[0,149],"entities":{"hashtags":[{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[140,149]}],"urls":[],"media":[{"id":1186691226214338560,"id_str":"1186691226214338560","indices":[150,173],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","url":"https:\/\/t.co\/EvyTanHQ97","display_url":"pic.twitter.com\/EvyTanHQ97","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186691226214338560,"id_str":"1186691226214338560","indices":[150,173],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","url":"https:\/\/t.co\/EvyTanHQ97","display_url":"pic.twitter.com\/EvyTanHQ97","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":600653284,"id_str":"600653284","name":"Nate + Turcotte","screen_name":"nateturcotte22","location":"Fort Myers, FL","description":"Assistant + Professor at @fgcu_coe | Researching embodied forms of teaching & learning + with data | New England Patriots | Duke Basketball","url":"https:\/\/t.co\/uu8axyn0Bq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uu8axyn0Bq","expanded_url":"http:\/\/nateturcotte.com","display_url":"nateturcotte.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":313,"friends_count":606,"listed_count":4,"created_at":"Wed + Jun 06 03:44:26 +0000 2012","favourites_count":4300,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1349,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/600653284\/1440433455","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186691231738318848,"quoted_status_id_str":"1186691231738318848","quoted_status_permalink":{"url":"https:\/\/t.co\/YUOCHGnOrt","expanded":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848","display":"twitter.com\/nateturcotte22\u2026"},"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 03:18:13 +0000 2019","id":1186844247539871744,"id_str":"1186844247539871744","full_text":"RT + @FredWBaker: Please consider submitting a proposal for the Systems Thinking + & Change Division''s special issue of @AECTTechTrends!! #aect\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[120,135]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 22:26:19 +0000 2019","id":1186770788797411328,"id_str":"1186770788797411328","full_text":"Please + consider submitting a proposal for the Systems Thinking & Change Division''s + special issue of @AECTTechTrends!! #aect19 #aectstc #aect19inspired https:\/\/t.co\/nQzSaUhgi2","truncated":false,"display_text_range":[0,178],"entities":{"hashtags":[{"text":"aect19","indices":[122,129]},{"text":"aectstc","indices":[130,138]},{"text":"aect19inspired","indices":[139,154]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[104,119]}],"urls":[{"url":"https:\/\/t.co\/nQzSaUhgi2","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[155,178]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 14:27:37 +0000 2019","id":1187012704998871040,"id_str":"1187012704998871040","full_text":"Hi + Angela, I''m looking forward to reading the paper in the proceedings publication + #aect19inspired","truncated":false,"display_text_range":[0,98],"entities":{"hashtags":[{"text":"aect19inspired","indices":[83,98]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1186699469036720128,"in_reply_to_status_id_str":"1186699469036720128","in_reply_to_user_id":459903,"in_reply_to_user_id_str":"459903","in_reply_to_screen_name":"yinbk","user":{"id":459903,"id_str":"459903","name":"\ud83c\uddfa\ud83c\uddf8 + Yin Kreher, PhD","screen_name":"yinbk","location":"","description":"Instructional + Designer | Lead LXD @FourthRev | Boundary-Crosser. Looks for the exquisite + at intersections. All tweets are mine. \ud83d\udc9c #XR #DesignLeadership + \ud83e\udef0","url":"https:\/\/t.co\/nJBVP9cpz7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nJBVP9cpz7","expanded_url":"http:\/\/yinwahkreher.com","display_url":"yinwahkreher.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1043,"friends_count":1124,"listed_count":79,"created_at":"Tue + Jan 02 17:04:05 +0000 2007","favourites_count":7349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"363738","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459903\/1611022238","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"E81C4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 13:22:40 +0000 2019","id":1186996359573819392,"id_str":"1186996359573819392","full_text":"Thanks, + Dr. @ifenthaler , for sharing this with #aect19 attendees. Other @aect and + @gsa_aect members, please check it out as well. #aect19inspired https:\/\/t.co\/oDo2Hftvne","truncated":false,"display_text_range":[0,146],"entities":{"hashtags":[{"text":"aect19","indices":[48,55]},{"text":"aect19inspired","indices":[131,146]}],"symbols":[],"user_mentions":[{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[12,23]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[73,78]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[83,92]}],"urls":[{"url":"https:\/\/t.co\/oDo2Hftvne","expanded_url":"https:\/\/twitter.com\/ifenthaler\/status\/1186702489342676993","display_url":"twitter.com\/ifenthaler\/sta\u2026","indices":[147,170]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186702489342676993,"quoted_status_id_str":"1186702489342676993","quoted_status_permalink":{"url":"https:\/\/t.co\/oDo2Hftvne","expanded":"https:\/\/twitter.com\/ifenthaler\/status\/1186702489342676993","display":"twitter.com\/ifenthaler\/sta\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 17:54:55 +0000 2019","id":1186702489342676993,"id_str":"1186702489342676993","full_text":"Following + up on our panel on #learninganalytics @gsa_aect check out our #MOOC on #educational + #data #analytics here: https:\/\/t.co\/jF8RksFMyg\n\nIf you are interested + in publishing in this field check out our book series and propose your work: + https:\/\/t.co\/VHlUqWSoDh\n#aect19inspired","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"learninganalytics","indices":[29,47]},{"text":"MOOC","indices":[72,77]},{"text":"educational","indices":[81,93]},{"text":"data","indices":[94,99]},{"text":"analytics","indices":[100,110]},{"text":"aect19inspired","indices":[265,280]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[48,57]}],"urls":[{"url":"https:\/\/t.co\/jF8RksFMyg","expanded_url":"http:\/\/tinyurl.com\/yyt9djty","display_url":"tinyurl.com\/yyt9djty","indices":[117,140]},{"url":"https:\/\/t.co\/VHlUqWSoDh","expanded_url":"https:\/\/www.springer.com\/series\/16338","display_url":"springer.com\/series\/16338","indices":[241,264]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45137054,"id_str":"45137054","name":"Dirk + Ifenthaler","screen_name":"ifenthaler","location":"","description":"#learninganalytics","url":"https:\/\/t.co\/nGyfFQyRvo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nGyfFQyRvo","expanded_url":"http:\/\/www.ifenthaler.info","display_url":"ifenthaler.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":895,"friends_count":246,"listed_count":35,"created_at":"Sat + Jun 06 14:19:07 +0000 2009","favourites_count":615,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":878,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 06:43:48 +0000 2019","id":1186895985101815808,"id_str":"1186895985101815808","full_text":"We + would like to congratulate Daniel Agbaji, IDT grad student, who had his research + displayed at the AECT 2019 Gallery Walk and Poster Session.\n\n#AECT2019 #hornetpride + #IDT https:\/\/t.co\/k2GxZUjTOm","truncated":false,"display_text_range":[0,172],"entities":{"hashtags":[{"text":"AECT2019","indices":[145,154]},{"text":"hornetpride","indices":[155,167]},{"text":"IDT","indices":[168,172]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186895973856886784,"id_str":"1186895973856886784","indices":[173,196],"media_url":"http:\/\/pbs.twimg.com\/media\/EHizmYsUwAANKqx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHizmYsUwAANKqx.jpg","url":"https:\/\/t.co\/k2GxZUjTOm","display_url":"pic.twitter.com\/k2GxZUjTOm","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186895985101815808\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186895973856886784,"id_str":"1186895973856886784","indices":[173,196],"media_url":"http:\/\/pbs.twimg.com\/media\/EHizmYsUwAANKqx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHizmYsUwAANKqx.jpg","url":"https:\/\/t.co\/k2GxZUjTOm","display_url":"pic.twitter.com\/k2GxZUjTOm","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186895985101815808\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 05:41:05 +0000 2019","id":1186880197938700288,"id_str":"1186880197938700288","full_text":"RT + @AectInternship: Meet the #aect19 Intern Class.@kiranbudhrani @LaurenBagdy + @nateturcotte22 https:\/\/t.co\/3mSa3aiRry","truncated":false,"display_text_range":[0,117],"entities":{"hashtags":[{"text":"aect19","indices":[29,36]}],"symbols":[],"user_mentions":[{"screen_name":"AectInternship","name":"AECT + Internship","id":966397466475204608,"id_str":"966397466475204608","indices":[3,18]},{"screen_name":"kiranbudhrani","name":"Dr. + Kiran Budhrani","id":6432592,"id_str":"6432592","indices":[50,64]},{"screen_name":"LaurenBagdy","name":"Lauren + Bagdy","id":22214646,"id_str":"22214646","indices":[65,77]},{"screen_name":"nateturcotte22","name":"Nate + Turcotte","id":600653284,"id_str":"600653284","indices":[78,93]}],"urls":[],"media":[{"id":1186535931492192258,"id_str":"1186535931492192258","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdsJKXUUAIkPBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdsJKXUUAIkPBI.jpg","url":"https:\/\/t.co\/3mSa3aiRry","display_url":"pic.twitter.com\/3mSa3aiRry","expanded_url":"https:\/\/twitter.com\/AectInternship\/status\/1186535938916147201\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"source_status_id":1186535938916147201,"source_status_id_str":"1186535938916147201","source_user_id":966397466475204608,"source_user_id_str":"966397466475204608"}]},"extended_entities":{"media":[{"id":1186535931492192258,"id_str":"1186535931492192258","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdsJKXUUAIkPBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdsJKXUUAIkPBI.jpg","url":"https:\/\/t.co\/3mSa3aiRry","display_url":"pic.twitter.com\/3mSa3aiRry","expanded_url":"https:\/\/twitter.com\/AectInternship\/status\/1186535938916147201\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"source_status_id":1186535938916147201,"source_status_id_str":"1186535938916147201","source_user_id":966397466475204608,"source_user_id_str":"966397466475204608","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 06:53:07 +0000 2019","id":1186535938916147201,"id_str":"1186535938916147201","full_text":"Meet + the #aect19 Intern Class.@kiranbudhrani @LaurenBagdy @nateturcotte22 https:\/\/t.co\/3mSa3aiRry","truncated":false,"display_text_range":[0,73],"entities":{"hashtags":[{"text":"aect19","indices":[9,16]}],"symbols":[],"user_mentions":[{"screen_name":"kiranbudhrani","name":"Dr. + Kiran Budhrani","id":6432592,"id_str":"6432592","indices":[30,44]},{"screen_name":"LaurenBagdy","name":"Lauren + Bagdy","id":22214646,"id_str":"22214646","indices":[45,57]},{"screen_name":"nateturcotte22","name":"Nate + Turcotte","id":600653284,"id_str":"600653284","indices":[58,73]}],"urls":[],"media":[{"id":1186535931492192258,"id_str":"1186535931492192258","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdsJKXUUAIkPBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdsJKXUUAIkPBI.jpg","url":"https:\/\/t.co\/3mSa3aiRry","display_url":"pic.twitter.com\/3mSa3aiRry","expanded_url":"https:\/\/twitter.com\/AectInternship\/status\/1186535938916147201\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186535931492192258,"id_str":"1186535931492192258","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdsJKXUUAIkPBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdsJKXUUAIkPBI.jpg","url":"https:\/\/t.co\/3mSa3aiRry","display_url":"pic.twitter.com\/3mSa3aiRry","expanded_url":"https:\/\/twitter.com\/AectInternship\/status\/1186535938916147201\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":966397466475204608,"id_str":"966397466475204608","name":"AECT + Internship","screen_name":"AectInternship","location":"","description":"The + AECT Addie Kinsinger Leadership Development Internship Program supports future + leaders in AECT and the field of IDT.","url":"https:\/\/t.co\/rUfOKlczyK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rUfOKlczyK","expanded_url":"http:\/\/aect.org\/internprogram","display_url":"aect.org\/internprogram","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":180,"friends_count":101,"listed_count":2,"created_at":"Wed + Feb 21 19:41:25 +0000 2018","favourites_count":99,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":92,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/969229525635788802\/x8Bbhxpx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/969229525635788802\/x8Bbhxpx_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":24,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 06:22:19 +0000 2019","id":1186890578153226240,"id_str":"1186890578153226240","full_text":"RT + @Kadeshaaa_: I wonder what will be discussed today during the AECT conference! + What is the theory of virtuality culture and how is it be\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Kadeshaaa_","name":"Kadesha","id":1168889274466545664,"id_str":"1168889274466545664","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":7083172,"id_str":"7083172","name":"Johnnie","screen_name":"Johnnie_Jiao","location":"","description":"Learner, + Birder, Trainer, TEDx Speaker, Apple Distinguished Educator, Common Sense + Educator, Professor of EduTech","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":662,"friends_count":792,"listed_count":11,"created_at":"Tue + Jun 26 05:25:30 +0000 2007","favourites_count":11766,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3486,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1492335623394725889\/5MA06-Z2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1492335623394725889\/5MA06-Z2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7083172\/1552464356","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 05:59:55 +0000 2019","id":1186884939377250306,"id_str":"1186884939377250306","full_text":"I + wonder what will be discussed today during the AECT conference! What is the + theory of virtuality culture and how is it beneficial in the realm of education?!\n#aect2019 + #aect19inspired #fsu2040 #eme2040 https:\/\/t.co\/tG0gdk8Cf7","truncated":false,"display_text_range":[0,203],"entities":{"hashtags":[{"text":"aect2019","indices":[160,169]},{"text":"aect19inspired","indices":[170,185]},{"text":"fsu2040","indices":[186,194]},{"text":"eme2040","indices":[195,203]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tG0gdk8Cf7","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186842680665485312","display_url":"twitter.com\/DrVirtuality\/s\u2026","indices":[204,227]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1168889274466545664,"id_str":"1168889274466545664","name":"Kadesha","screen_name":"Kadeshaaa_","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":14,"listed_count":0,"created_at":"Tue + Sep 03 14:12:28 +0000 2019","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186842680665485312,"quoted_status_id_str":"1186842680665485312","quoted_status_permalink":{"url":"https:\/\/t.co\/tG0gdk8Cf7","expanded":"https:\/\/twitter.com\/DrVirtuality\/status\/1186842680665485312","display":"twitter.com\/DrVirtuality\/s\u2026"},"quoted_status":{"created_at":"Wed + Oct 23 03:12:00 +0000 2019","id":1186842680665485312,"id_str":"1186842680665485312","full_text":"See + you tomorrow @aect! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/rnWKqhSFyl","truncated":false,"display_text_range":[0,56],"entities":{"hashtags":[{"text":"AECT19","indices":[33,40]},{"text":"AECT19inspired","indices":[41,56]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[17,22]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[24,32]}],"urls":[],"media":[{"id":1185705645468577792,"id_str":"1185705645468577792","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","url":"https:\/\/t.co\/rnWKqhSFyl","display_url":"pic.twitter.com\/rnWKqhSFyl","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186842680665485312\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185705645468577792,"id_str":"1185705645468577792","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","url":"https:\/\/t.co\/rnWKqhSFyl","display_url":"pic.twitter.com\/rnWKqhSFyl","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186842680665485312\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186842680665485312,"quoted_status_id_str":"1186842680665485312","quoted_status_permalink":{"url":"https:\/\/t.co\/tG0gdk8Cf7","expanded":"https:\/\/twitter.com\/DrVirtuality\/status\/1186842680665485312","display":"twitter.com\/DrVirtuality\/s\u2026"},"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 12:49:52 +0000 2019","id":1186988107666608129,"id_str":"1186988107666608129","full_text":"RT + @robmoore3: Check out Dr. Baaki and Dr. Tracey''s presentation on the empathic + design process on Wed at 10am in Ballroom B. #aect19 #aect\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[126,133]}],"symbols":[],"user_mentions":[{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 12:05:00 +0000 2019","id":1186976815052554241,"id_str":"1186976815052554241","full_text":"Check + out Dr. Baaki and Dr. Tracey''s presentation on the empathic design process + on Wed at 10am in Ballroom B. #aect19 #aect19inspired https:\/\/t.co\/ublHpFBaRB","truncated":false,"display_text_range":[0,134],"entities":{"hashtags":[{"text":"aect19","indices":[111,118]},{"text":"aect19inspired","indices":[119,134]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1184458750549200896,"id_str":"1184458750549200896","indices":[135,158],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAK9UWWkAAGIcp.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAK9UWWkAAGIcp.png","url":"https:\/\/t.co\/ublHpFBaRB","display_url":"pic.twitter.com\/ublHpFBaRB","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186976815052554241\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":524,"resize":"fit"},"small":{"w":680,"h":495,"resize":"fit"},"medium":{"w":720,"h":524,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1184458750549200896,"id_str":"1184458750549200896","indices":[135,158],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAK9UWWkAAGIcp.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAK9UWWkAAGIcp.png","url":"https:\/\/t.co\/ublHpFBaRB","display_url":"pic.twitter.com\/ublHpFBaRB","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186976815052554241\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":524,"resize":"fit"},"small":{"w":680,"h":495,"resize":"fit"},"medium":{"w":720,"h":524,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 06:20:03 +0000 2019","id":1186890004494049280,"id_str":"1186890004494049280","full_text":"Great + opportunity to build professional network and share ideas! #AECT19 #fsu2040 + https:\/\/t.co\/hQJhmpolGC","truncated":false,"display_text_range":[0,81],"entities":{"hashtags":[{"text":"AECT19","indices":[65,72]},{"text":"fsu2040","indices":[73,81]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/hQJhmpolGC","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186710076242976769","display_url":"twitter.com\/ISLT_FSU\/statu\u2026","indices":[82,105]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1033854044039729152,"id_str":"1033854044039729152","name":"Hajeen + Choi","screen_name":"hajeenfsu","location":"FL","description":"PhD., Interested + in online teaching and learning, motivation, engagement, othering\/belonging, + networked learning, social media in education","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":178,"listed_count":1,"created_at":"Sun + Aug 26 23:09:46 +0000 2018","favourites_count":653,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1033854044039729152\/1535327544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186710076242976769,"quoted_status_id_str":"1186710076242976769","quoted_status_permalink":{"url":"https:\/\/t.co\/hQJhmpolGC","expanded":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186710076242976769","display":"twitter.com\/ISLT_FSU\/statu\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 18:25:04 +0000 2019","id":1186710076242976769,"id_str":"1186710076242976769","full_text":"What + are they talking at digital conference #backchannel? From building #PLN to + establishing online presence: use of membership categorization and #positioning + theory as analytic frameworks. #FSU #ISLT @hajeenzang Tue, 3-3:50pm Paviillion + 9. #AECT19 #AECT2019 #InformalLearning https:\/\/t.co\/2vrEmzSlg0","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"backchannel","indices":[44,56]},{"text":"PLN","indices":[72,76]},{"text":"positioning","indices":[147,159]},{"text":"FSU","indices":[191,195]},{"text":"ISLT","indices":[196,201]},{"text":"AECT19","indices":[242,249]},{"text":"AECT2019","indices":[250,259]},{"text":"InformalLearning","indices":[260,277]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186710074024251392,"id_str":"1186710074024251392","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgKhl2X0AA-1_1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgKhl2X0AA-1_1.jpg","url":"https:\/\/t.co\/2vrEmzSlg0","display_url":"pic.twitter.com\/2vrEmzSlg0","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186710076242976769\/photo\/1","type":"photo","sizes":{"large":{"w":1414,"h":795,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186710074024251392,"id_str":"1186710074024251392","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgKhl2X0AA-1_1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgKhl2X0AA-1_1.jpg","url":"https:\/\/t.co\/2vrEmzSlg0","display_url":"pic.twitter.com\/2vrEmzSlg0","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186710076242976769\/photo\/1","type":"photo","sizes":{"large":{"w":1414,"h":795,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 06:10:31 +0000 2019","id":1186887605926932481,"id_str":"1186887605926932481","full_text":"Wonderful + gathering of @uofsouthalabama IDD alumni, faculty, and graduate students for + the annual aect2 dinner. #GoJags #aect19 @ Westgate Las Vegas Resort & + Casino https:\/\/t.co\/dQKemUxm9T","truncated":false,"display_text_range":[0,192],"entities":{"hashtags":[{"text":"GoJags","indices":[112,119]},{"text":"aect19","indices":[120,127]}],"symbols":[],"user_mentions":[{"screen_name":"UofSouthAlabama","name":"University + of South Alabama","id":928718161,"id_str":"928718161","indices":[23,39]}],"urls":[{"url":"https:\/\/t.co\/dQKemUxm9T","expanded_url":"https:\/\/www.instagram.com\/p\/B38z2agDEuP\/?igshid=uakf0i7nuk6s","display_url":"instagram.com\/p\/B38z2agDEuP\/\u2026","indices":[169,192]}]},"source":"\u003ca + href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":{"type":"Point","coordinates":[36.13625965,-115.15144543]},"coordinates":{"type":"Point","coordinates":[-115.15144543,36.13625965]},"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 14:29:05 +0000 2019","id":1187013077079773184,"id_str":"1187013077079773184","full_text":"Good + morning! #aect19inspired https:\/\/t.co\/Rn3DB8kshK","truncated":false,"display_text_range":[0,29],"entities":{"hashtags":[{"text":"aect19inspired","indices":[14,29]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187013064492609536,"id_str":"1187013064492609536","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkeF9TUcAALGtZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkeF9TUcAALGtZ.jpg","url":"https:\/\/t.co\/Rn3DB8kshK","display_url":"pic.twitter.com\/Rn3DB8kshK","expanded_url":"https:\/\/twitter.com\/yinbk\/status\/1187013077079773184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187013064492609536,"id_str":"1187013064492609536","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkeF9TUcAALGtZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkeF9TUcAALGtZ.jpg","url":"https:\/\/t.co\/Rn3DB8kshK","display_url":"pic.twitter.com\/Rn3DB8kshK","expanded_url":"https:\/\/twitter.com\/yinbk\/status\/1187013077079773184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":"Morning + scene in Las Vegas"}]},"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" + rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":459903,"id_str":"459903","name":"\ud83c\uddfa\ud83c\uddf8 + Yin Kreher, PhD","screen_name":"yinbk","location":"","description":"Instructional + Designer | Lead LXD @FourthRev | Boundary-Crosser. Looks for the exquisite + at intersections. All tweets are mine. \ud83d\udc9c #XR #DesignLeadership + \ud83e\udef0","url":"https:\/\/t.co\/nJBVP9cpz7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nJBVP9cpz7","expanded_url":"http:\/\/yinwahkreher.com","display_url":"yinwahkreher.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1043,"friends_count":1124,"listed_count":79,"created_at":"Tue + Jan 02 17:04:05 +0000 2007","favourites_count":7349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"363738","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459903\/1611022238","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"E81C4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 13:22:51 +0000 2019","id":1186996406810218498,"id_str":"1186996406810218498","full_text":"While + not everyone can relate as much to programming, we can all relate to failure. + It is so cool that you are implementing robotics in an uplifting classroom + enviornment #eme2040 #AECT19 https:\/\/t.co\/grl747FfGv","truncated":false,"display_text_range":[0,187],"entities":{"hashtags":[{"text":"eme2040","indices":[171,179]},{"text":"AECT19","indices":[180,187]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/grl747FfGv","expanded_url":"https:\/\/twitter.com\/SmithShannonM\/status\/1186019834229747712","display_url":"twitter.com\/SmithShannonM\/\u2026","indices":[188,211]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1168887657335799809,"id_str":"1168887657335799809","name":"Lauren + Vetrano","screen_name":"eme2040laurenv","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":29,"listed_count":0,"created_at":"Tue + Sep 03 14:05:30 +0000 2019","favourites_count":6,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1168892786894090240\/HNhYB8fH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1168892786894090240\/HNhYB8fH_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186019834229747712,"quoted_status_id_str":"1186019834229747712","quoted_status_permalink":{"url":"https:\/\/t.co\/grl747FfGv","expanded":"https:\/\/twitter.com\/SmithShannonM\/status\/1186019834229747712","display":"twitter.com\/SmithShannonM\/\u2026"},"quoted_status":{"created_at":"Sun + Oct 20 20:42:18 +0000 2019","id":1186019834229747712,"id_str":"1186019834229747712","full_text":"If + you\u2019re #AECT19 bound, you\u2019ll find me at these two sessions! #maker + #designthinking #AECT19inspired https:\/\/t.co\/Nwl17Au9vO","truncated":false,"display_text_range":[0,101],"entities":{"hashtags":[{"text":"AECT19","indices":[10,17]},{"text":"maker","indices":[63,69]},{"text":"designthinking","indices":[70,85]},{"text":"AECT19inspired","indices":[86,101]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186019828097662976,"id_str":"1186019828097662976","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWWv_ZUwAA3QP2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWWv_ZUwAA3QP2.jpg","url":"https:\/\/t.co\/Nwl17Au9vO","display_url":"pic.twitter.com\/Nwl17Au9vO","expanded_url":"https:\/\/twitter.com\/SmithShannonM\/status\/1186019834229747712\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":1046,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":1046,"resize":"fit"},"small":{"w":488,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186019828097662976,"id_str":"1186019828097662976","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWWv_ZUwAA3QP2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWWv_ZUwAA3QP2.jpg","url":"https:\/\/t.co\/Nwl17Au9vO","display_url":"pic.twitter.com\/Nwl17Au9vO","expanded_url":"https:\/\/twitter.com\/SmithShannonM\/status\/1186019834229747712\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":1046,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":1046,"resize":"fit"},"small":{"w":488,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1186019828093468673,"id_str":"1186019828093468673","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWWv_YUwAEwk_r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWWv_YUwAEwk_r.jpg","url":"https:\/\/t.co\/Nwl17Au9vO","display_url":"pic.twitter.com\/Nwl17Au9vO","expanded_url":"https:\/\/twitter.com\/SmithShannonM\/status\/1186019834229747712\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":1059,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":1059,"resize":"fit"},"small":{"w":482,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1408637941,"id_str":"1408637941","name":"Shannon + M. Smith","screen_name":"SmithShannonM","location":"Boise, ID","description":"Librarian + @BSULibrary + @UW_iSchool alum | OER, OA, Schol Comm, STEM, Design Thinking + | opinions my own | dreaming + reflecting + learning","url":"https:\/\/t.co\/cP2kwcqbcn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cP2kwcqbcn","expanded_url":"https:\/\/orcid.org\/0000-0002-2560-7410","display_url":"orcid.org\/0000-0002-2560\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":421,"friends_count":863,"listed_count":15,"created_at":"Mon + May 06 20:13:09 +0000 2013","favourites_count":5591,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2346,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1528811834257526784\/FoWd_4Uj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1528811834257526784\/FoWd_4Uj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1408637941\/1653332130","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 06:13:50 +0000 2019","id":1186888440165498881,"id_str":"1186888440165498881","full_text":"It + happens!!! #AECT19 #fsu2040 https:\/\/t.co\/iu1bzyglw2","truncated":false,"display_text_range":[0,30],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]},{"text":"fsu2040","indices":[22,30]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iu1bzyglw2","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186724407726596096","display_url":"twitter.com\/nangur1\/status\u2026","indices":[31,54]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1033854044039729152,"id_str":"1033854044039729152","name":"Hajeen + Choi","screen_name":"hajeenfsu","location":"FL","description":"PhD., Interested + in online teaching and learning, motivation, engagement, othering\/belonging, + networked learning, social media in education","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":178,"listed_count":1,"created_at":"Sun + Aug 26 23:09:46 +0000 2018","favourites_count":653,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1033854044039729152\/1535327544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186724407726596096,"quoted_status_id_str":"1186724407726596096","quoted_status_permalink":{"url":"https:\/\/t.co\/iu1bzyglw2","expanded":"https:\/\/twitter.com\/nangur1\/status\/1186724407726596096","display":"twitter.com\/nangur1\/status\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 19:22:01 +0000 2019","id":1186724407726596096,"id_str":"1186724407726596096","full_text":"A + moment when a Twitter friend becomes real! Great to meet you in person! \u2066@eromerohall\u2069 + \ud83d\udc95 #aect19 #aect19inspired https:\/\/t.co\/zt7UxsCPu0","truncated":false,"display_text_range":[0,114],"entities":{"hashtags":[{"text":"aect19","indices":[91,98]},{"text":"aect19inspired","indices":[99,114]}],"symbols":[],"user_mentions":[{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[75,87]}],"urls":[],"media":[{"id":1186724401196089344,"id_str":"1186724401196089344","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgXjiuUwAAREj9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgXjiuUwAAREj9.jpg","url":"https:\/\/t.co\/zt7UxsCPu0","display_url":"pic.twitter.com\/zt7UxsCPu0","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186724407726596096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186724401196089344,"id_str":"1186724401196089344","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgXjiuUwAAREj9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgXjiuUwAAREj9.jpg","url":"https:\/\/t.co\/zt7UxsCPu0","display_url":"pic.twitter.com\/zt7UxsCPu0","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186724407726596096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 13:25:08 +0000 2019","id":1186996982998396928,"id_str":"1186996982998396928","full_text":"#AECT19 + Day 3 highlights: 7 workshops, 12 Inspire! Sessions, Breakfast with Champions + at 7am, Birds of a Feather sessions at 5pm, and the International Dinner & + Auction at 6pm. #aect19inspired https:\/\/t.co\/0Lyo1mAEMR","truncated":false,"display_text_range":[0,196],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"aect19inspired","indices":[181,196]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186996966787432450,"id_str":"1186996966787432450","indices":[197,220],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkPc8rUwAIWcV9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkPc8rUwAIWcV9.jpg","url":"https:\/\/t.co\/0Lyo1mAEMR","display_url":"pic.twitter.com\/0Lyo1mAEMR","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186996982998396928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186996966787432450,"id_str":"1186996966787432450","indices":[197,220],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkPc8rUwAIWcV9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkPc8rUwAIWcV9.jpg","url":"https:\/\/t.co\/0Lyo1mAEMR","display_url":"pic.twitter.com\/0Lyo1mAEMR","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186996982998396928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 13:50:00 +0000 2019","id":1187003238811222016,"id_str":"1187003238811222016","full_text":"See + you today @aect! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/LAtRTrnNKK","truncated":false,"display_text_range":[0,53],"entities":{"hashtags":[{"text":"AECT19","indices":[30,37]},{"text":"AECT19inspired","indices":[38,53]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[14,19]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[21,29]}],"urls":[],"media":[{"id":1185704910639128576,"id_str":"1185704910639128576","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR4VYcU4AA9MNC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR4VYcU4AA9MNC.jpg","url":"https:\/\/t.co\/LAtRTrnNKK","display_url":"pic.twitter.com\/LAtRTrnNKK","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187003238811222016\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185704910639128576,"id_str":"1185704910639128576","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR4VYcU4AA9MNC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR4VYcU4AA9MNC.jpg","url":"https:\/\/t.co\/LAtRTrnNKK","display_url":"pic.twitter.com\/LAtRTrnNKK","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1187003238811222016\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 06:18:07 +0000 2019","id":1186889519850610688,"id_str":"1186889519850610688","full_text":"RT + @kariknisely: If you are a teacher or parent and have kids that are interested + in coding, please have them check this out. #HourOfCode @\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"HourOfCode","indices":[126,137]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 22:56:32 +0000 2019","id":1186778390482735105,"id_str":"1186778390482735105","full_text":"If + you are a teacher or parent and have kids that are interested in coding, please + have them check this out. #HourOfCode @hourofcode #code #coding #kidsthatcode + #girlsthatcode @anotherbrittany #scaffolding #gamification #danceparty #AECT19 + https:\/\/t.co\/9ylOyPUVCh","truncated":false,"display_text_range":[0,239],"entities":{"hashtags":[{"text":"HourOfCode","indices":[109,120]},{"text":"code","indices":[133,138]},{"text":"coding","indices":[139,146]},{"text":"kidsthatcode","indices":[147,160]},{"text":"girlsthatcode","indices":[161,175]},{"text":"scaffolding","indices":[193,205]},{"text":"gamification","indices":[206,219]},{"text":"danceparty","indices":[220,231]},{"text":"AECT19","indices":[232,239]}],"symbols":[],"user_mentions":[{"screen_name":"hourofcode","name":"Hour + of Code","id":2310819848,"id_str":"2310819848","indices":[121,132]},{"screen_name":"anotherbrittany","name":"Brittany + Robinson","id":19326481,"id_str":"19326481","indices":[176,192]}],"urls":[],"media":[{"id":1186778382685495297,"id_str":"1186778382685495297","indices":[240,263],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhIprcU4AEXJrb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhIprcU4AEXJrb.jpg","url":"https:\/\/t.co\/9ylOyPUVCh","display_url":"pic.twitter.com\/9ylOyPUVCh","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186778390482735105\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186778382685495297,"id_str":"1186778382685495297","indices":[240,263],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhIprcU4AEXJrb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhIprcU4AEXJrb.jpg","url":"https:\/\/t.co\/9ylOyPUVCh","display_url":"pic.twitter.com\/9ylOyPUVCh","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186778390482735105\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1186778382685503489,"id_str":"1186778382685503489","indices":[240,263],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhIprcVAAEh0FU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhIprcVAAEh0FU.jpg","url":"https:\/\/t.co\/9ylOyPUVCh","display_url":"pic.twitter.com\/9ylOyPUVCh","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186778390482735105\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 08:07:45 +0000 2019","id":1186917111861579776,"id_str":"1186917111861579776","full_text":"RT + @DKSch: #aect19inspired #acet As promised to two visitors at my poster session + booth: a wiki version of the handout and a link to the po\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]},{"text":"acet","indices":[27,32]}],"symbols":[],"user_mentions":[{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[3,9]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1061009402940063744,"id_str":"1061009402940063744","name":"Lydie + Boufflers","screen_name":"BoufflersLydie","location":"Gen\u00e8ve","description":"PhD + Student & Research and Teaching Assistant @tecfa, University of Geneva. Research + interest : teacher education, digital fabrication","url":"https:\/\/t.co\/H7r6oMhDqE","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/H7r6oMhDqE","expanded_url":"https:\/\/tecfa.unige.ch\/perso\/boufflers\/","display_url":"tecfa.unige.ch\/perso\/bouffler\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":42,"friends_count":51,"listed_count":2,"created_at":"Fri + Nov 09 21:35:29 +0000 2018","favourites_count":90,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":101,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1310548897572573191\/Zu12od0z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1310548897572573191\/Zu12od0z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1061009402940063744\/1601294168","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 04:14:31 +0000 2019","id":1186858413793263616,"id_str":"1186858413793263616","full_text":"#aect19inspired + #acet As promised to two visitors at my poster session booth: a wiki version + of the handout and a link to the poster. https:\/\/t.co\/qjxL268dTY https:\/\/t.co\/730ZIEHz6B","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]},{"text":"acet","indices":[16,21]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qjxL268dTY","expanded_url":"http:\/\/tecfa.unige.ch\/tecfa\/talks\/schneide\/aect19\/","display_url":"tecfa.unige.ch\/tecfa\/talks\/sc\u2026","indices":[134,157]},{"url":"https:\/\/t.co\/730ZIEHz6B","expanded_url":"https:\/\/edutechwiki.unige.ch\/en\/Digital_embroidery_to_teach_ICT_skills_(AECT_2019)","display_url":"edutechwiki.unige.ch\/en\/Digital_emb\u2026","indices":[158,181]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 13:17:35 +0000 2019","id":1186995080021676039,"id_str":"1186995080021676039","full_text":"RT + @PaulineMuljana: While this already happened, shout out to my co-facilitator + Dr. Meina Zhu and the panelists, Drs. @ifenthaler , @ClaraS\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]},{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[118,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 13:17:12 +0000 2019","id":1186994983527567361,"id_str":"1186994983527567361","full_text":"While + this already happened, shout out to my co-facilitator Dr. Meina Zhu and the + panelists, Drs. @ifenthaler , @ClaraSophiaS , @andrewatawfik , and Dongho + Kim. We ended the session with a room full of attendees. What an inspiring + discussion! #aect19 #aect19inspired https:\/\/t.co\/YUOCHGnOrt","truncated":false,"display_text_range":[0,266],"entities":{"hashtags":[{"text":"aect19","indices":[243,250]},{"text":"aect19inspired","indices":[251,266]}],"symbols":[],"user_mentions":[{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[98,109]},{"screen_name":"ClaraSophiaS","name":"Clara + S. Schumacher","id":599247384,"id_str":"599247384","indices":[112,125]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[128,142]}],"urls":[{"url":"https:\/\/t.co\/YUOCHGnOrt","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848","display_url":"twitter.com\/nateturcotte22\u2026","indices":[267,290]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1186691231738318848,"quoted_status_id_str":"1186691231738318848","quoted_status_permalink":{"url":"https:\/\/t.co\/YUOCHGnOrt","expanded":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848","display":"twitter.com\/nateturcotte22\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 17:10:11 +0000 2019","id":1186691231738318848,"id_str":"1186691231738318848","full_text":"Great + session starting up right now in Conference Room 4: Learning Analytics: Intersections + with ID, Research, and Practice #aect19inspired @gsa_aect https:\/\/t.co\/EvyTanHQ97","truncated":false,"display_text_range":[0,149],"entities":{"hashtags":[{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[140,149]}],"urls":[],"media":[{"id":1186691226214338560,"id_str":"1186691226214338560","indices":[150,173],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","url":"https:\/\/t.co\/EvyTanHQ97","display_url":"pic.twitter.com\/EvyTanHQ97","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186691226214338560,"id_str":"1186691226214338560","indices":[150,173],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","url":"https:\/\/t.co\/EvyTanHQ97","display_url":"pic.twitter.com\/EvyTanHQ97","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":600653284,"id_str":"600653284","name":"Nate + Turcotte","screen_name":"nateturcotte22","location":"Fort Myers, FL","description":"Assistant + Professor at @fgcu_coe | Researching embodied forms of teaching & learning + with data | New England Patriots | Duke Basketball","url":"https:\/\/t.co\/uu8axyn0Bq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uu8axyn0Bq","expanded_url":"http:\/\/nateturcotte.com","display_url":"nateturcotte.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":313,"friends_count":606,"listed_count":4,"created_at":"Wed + Jun 06 03:44:26 +0000 2012","favourites_count":4300,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1349,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/600653284\/1440433455","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186691231738318848,"quoted_status_id_str":"1186691231738318848","quoted_status_permalink":{"url":"https:\/\/t.co\/YUOCHGnOrt","expanded":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848","display":"twitter.com\/nateturcotte22\u2026"},"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 02:54:46 +0000 2019","id":1186838345348894722,"id_str":"1186838345348894722","full_text":"#aect19inspired + #aect https:\/\/t.co\/VRGwqlmB77","truncated":false,"display_text_range":[0,21],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]},{"text":"aect","indices":[16,21]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186838338793172992,"id_str":"1186838338793172992","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/EHh_LlWU8AAEQv7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHh_LlWU8AAEQv7.jpg","url":"https:\/\/t.co\/VRGwqlmB77","display_url":"pic.twitter.com\/VRGwqlmB77","expanded_url":"https:\/\/twitter.com\/distance_edu\/status\/1186838345348894722\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186838338793172992,"id_str":"1186838338793172992","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/EHh_LlWU8AAEQv7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHh_LlWU8AAEQv7.jpg","url":"https:\/\/t.co\/VRGwqlmB77","display_url":"pic.twitter.com\/VRGwqlmB77","expanded_url":"https:\/\/twitter.com\/distance_edu\/status\/1186838345348894722\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37890447,"id_str":"37890447","name":"M. + D. Rogers","screen_name":"MDRogers360","location":"","description":"Michelle + is my name and innovation and creativity is my game. A feed about this and + that, ed tech, work, writing, and more.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":500,"friends_count":571,"listed_count":34,"created_at":"Tue + May 05 09:21:16 +0000 2009","favourites_count":58,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1132,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1216550885385482240\/_KpnmYjr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216550885385482240\/_KpnmYjr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37890447\/1400079389","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Wed + Oct 23 04:14:31 +0000 2019","id":1186858413793263616,"id_str":"1186858413793263616","full_text":"#aect19inspired + #acet As promised to two visitors at my poster session booth: a wiki version + of the handout and a link to the poster. https:\/\/t.co\/qjxL268dTY https:\/\/t.co\/730ZIEHz6B","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]},{"text":"acet","indices":[16,21]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qjxL268dTY","expanded_url":"http:\/\/tecfa.unige.ch\/tecfa\/talks\/schneide\/aect19\/","display_url":"tecfa.unige.ch\/tecfa\/talks\/sc\u2026","indices":[134,157]},{"url":"https:\/\/t.co\/730ZIEHz6B","expanded_url":"https:\/\/edutechwiki.unige.ch\/en\/Digital_embroidery_to_teach_ICT_skills_(AECT_2019)","display_url":"edutechwiki.unige.ch\/en\/Digital_emb\u2026","indices":[158,181]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 07:14:36 +0000 2019","id":1186903732354801664,"id_str":"1186903732354801664","full_text":"RT + @idtesu: Getting to meet David Merrill, education researcher and Professor + Emeritus at Utah State University; known for developing \"The\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"idtesu","name":"ESU + Instructional Design & Technology Program","id":107144043,"id_str":"107144043","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":129754385,"id_str":"129754385","name":"\u062f. + \u062a\u0631\u0643\u064a \u0633\u0639\u062f \u0633\u0639\u062f\u064a \u0622\u0644 + \u063a\u0631\u0633\u0627\u0646 Dr.Turki AL-Zahrani","screen_name":"Alhareeri","location":"Virginia","description":"Fulbright + Scholar who wants to teach to the future & integrate technology into his teachings.@UofJeddah + #Hokie @ALCVT Co-Founder\/Ex-VP @HandbyHandorg \u062d\u0633\u0627\u0628 \u0634\u062e\u0635\u064a","url":"https:\/\/t.co\/jd84tJAAAL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jd84tJAAAL","expanded_url":"https:\/\/sa.linkedin.com\/in\/turki-saad-al-zahrani-phd-472b4512","display_url":"sa.linkedin.com\/in\/turki-saad-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1163,"friends_count":1037,"listed_count":10,"created_at":"Mon + Apr 05 08:56:44 +0000 2010","favourites_count":15603,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16155,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1521866468052324359\/oT-dGuoF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1521866468052324359\/oT-dGuoF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/129754385\/1651659104","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 06:15:36 +0000 2019","id":1186888887060140032,"id_str":"1186888887060140032","full_text":"Getting + to meet David Merrill, education researcher and Professor Emeritus at Utah + State University; known for developing \"The Component Display Theory\", \"Instructional + Transaction Theory\" and the \"First Principles of Instruction.\"\n\n#EmporiaStateUniversity + #IDT #AECT2019 https:\/\/t.co\/XQRLMaiL8X","truncated":false,"display_text_range":[0,271],"entities":{"hashtags":[{"text":"EmporiaStateUniversity","indices":[233,256]},{"text":"IDT","indices":[257,261]},{"text":"AECT2019","indices":[262,271]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186888869536382976,"id_str":"1186888869536382976","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHitI3CUwAAvk4g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHitI3CUwAAvk4g.jpg","url":"https:\/\/t.co\/XQRLMaiL8X","display_url":"pic.twitter.com\/XQRLMaiL8X","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186888887060140032\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186888869536382976,"id_str":"1186888869536382976","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHitI3CUwAAvk4g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHitI3CUwAAvk4g.jpg","url":"https:\/\/t.co\/XQRLMaiL8X","display_url":"pic.twitter.com\/XQRLMaiL8X","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186888887060140032\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1186888869536391170,"id_str":"1186888869536391170","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHitI3CU4AIS23v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHitI3CU4AIS23v.jpg","url":"https:\/\/t.co\/XQRLMaiL8X","display_url":"pic.twitter.com\/XQRLMaiL8X","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186888887060140032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":495,"h":680,"resize":"fit"},"large":{"w":1492,"h":2048,"resize":"fit"},"medium":{"w":874,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 11:08:01 +0000 2019","id":1186962473695535104,"id_str":"1186962473695535104","full_text":"RT + @caranorth11: If you are interested in checking out the tool we used to evaluate + open education resources for accessibility, you can fin\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":71032975,"id_str":"71032975","name":"Dawn + Snyder \u2600\ufe0f","screen_name":"DawnMSnyder","location":"Dublin, OH","description":"Organizational + effectiveness consultant, college professor, mother, chocolate junkie, menagerie-keeper","url":"https:\/\/t.co\/9pNxTcD6QO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9pNxTcD6QO","expanded_url":"http:\/\/www.dawnsnyderassoc.com","display_url":"dawnsnyderassoc.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":638,"friends_count":953,"listed_count":0,"created_at":"Wed + Sep 02 18:14:23 +0000 2009","favourites_count":4601,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1693,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417304350242791430\/rB0FyQ5__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417304350242791430\/rB0FyQ5__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/71032975\/1530047976","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:19:25 +0000 2019","id":1186738852947382272,"id_str":"1186738852947382272","full_text":"If + you are interested in checking out the tool we used to evaluate open education + resources for accessibility, you can find it here: https:\/\/t.co\/cMxcEHJf4S + @roycekimmons #aect19 https:\/\/t.co\/RqWAn9hL88","truncated":false,"display_text_range":[0,178],"entities":{"hashtags":[{"text":"aect19","indices":[171,178]}],"symbols":[],"user_mentions":[{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[157,170]}],"urls":[{"url":"https:\/\/t.co\/cMxcEHJf4S","expanded_url":"https:\/\/webaim.org\/","display_url":"webaim.org","indices":[133,156]}],"media":[{"id":1186738846592983040,"id_str":"1186738846592983040","indices":[179,202],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgksYBU4AAFIYf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgksYBU4AAFIYf.jpg","url":"https:\/\/t.co\/RqWAn9hL88","display_url":"pic.twitter.com\/RqWAn9hL88","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186738852947382272\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186738846592983040,"id_str":"1186738846592983040","indices":[179,202],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgksYBU4AAFIYf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgksYBU4AAFIYf.jpg","url":"https:\/\/t.co\/RqWAn9hL88","display_url":"pic.twitter.com\/RqWAn9hL88","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186738852947382272\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 04:45:49 +0000 2019","id":1186866292051120128,"id_str":"1186866292051120128","full_text":"RT + @KathyMansfield: So inspired by the work of Eunice Ofori in designing mobile + learning session. We can all do better here she\u2019s got my de\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"KathyMansfield","name":"Kathy + Mansfield","id":27742120,"id_str":"27742120","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":735659010,"id_str":"735659010","name":"Andrew","screen_name":"Supt_comalisd","location":"Texas, + USA","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4674,"friends_count":176,"listed_count":0,"created_at":"Fri + Aug 03 22:39:31 +0000 2012","favourites_count":104188,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":81551,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1279036137357656064\/sMwRehkF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1279036137357656064\/sMwRehkF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/735659010\/1622132242","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:38:18 +0000 2019","id":1186698306564448256,"id_str":"1186698306564448256","full_text":"So + inspired by the work of Eunice Ofori in designing mobile learning session. + We can all do better here she\u2019s got my design wheels spinning! #aect19","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[{"text":"aect19","indices":[141,148]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27742120,"id_str":"27742120","name":"Kathy + Mansfield","screen_name":"KathyMansfield","location":"New Braunfels, TX","description":"Perky + Privacy Girl. Instructional Ed Tech. Coffee. Instructional Design doctoral + candidate. Student data privacy advocate.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":353,"friends_count":565,"listed_count":4,"created_at":"Mon + Mar 30 22:07:14 +0000 2009","favourites_count":3189,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1363,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1479956065018122245\/3ylxWDWM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1479956065018122245\/3ylxWDWM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27742120\/1589406705","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 06:15:14 +0000 2019","id":1186888794655477760,"id_str":"1186888794655477760","full_text":"RT + @ISLT_FSU: Come visit poster T99: Does My Teacher Smile? An Exploration of + Social Presence and Identity in Online Environments with #FSU\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"FSU","indices":[135,139]}],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1033854044039729152,"id_str":"1033854044039729152","name":"Hajeen + Choi","screen_name":"hajeenfsu","location":"FL","description":"PhD., Interested + in online teaching and learning, motivation, engagement, othering\/belonging, + networked learning, social media in education","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":178,"listed_count":1,"created_at":"Sun + Aug 26 23:09:46 +0000 2018","favourites_count":653,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1033854044039729152\/1535327544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 19:35:05 +0000 2019","id":1186727693808627712,"id_str":"1186727693808627712","full_text":"Come + visit poster T99: Does My Teacher Smile? An Exploration of Social Presence + and Identity in Online Environments with #FSU #FSUCOE #ISLT \u00d6mer Arslan + #AECT19 #AECT2019 #IVLA, #InstructionalDesign, #ED #Smile #Teacher #Identity + #SocialPresence https:\/\/t.co\/CI5MCJu1Fo","truncated":false,"display_text_range":[0,245],"entities":{"hashtags":[{"text":"FSU","indices":[121,125]},{"text":"FSUCOE","indices":[126,133]},{"text":"ISLT","indices":[134,139]},{"text":"AECT19","indices":[152,159]},{"text":"AECT2019","indices":[160,169]},{"text":"IVLA","indices":[171,176]},{"text":"InstructionalDesign","indices":[178,198]},{"text":"ED","indices":[200,203]},{"text":"Smile","indices":[204,210]},{"text":"Teacher","indices":[211,219]},{"text":"Identity","indices":[220,229]},{"text":"SocialPresence","indices":[230,245]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186727691535429632,"id_str":"1186727691535429632","indices":[246,269],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgajEMWsAAspU2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgajEMWsAAspU2.jpg","url":"https:\/\/t.co\/CI5MCJu1Fo","display_url":"pic.twitter.com\/CI5MCJu1Fo","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186727693808627712\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":924,"h":715,"resize":"fit"},"large":{"w":924,"h":715,"resize":"fit"},"small":{"w":680,"h":526,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186727691535429632,"id_str":"1186727691535429632","indices":[246,269],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgajEMWsAAspU2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgajEMWsAAspU2.jpg","url":"https:\/\/t.co\/CI5MCJu1Fo","display_url":"pic.twitter.com\/CI5MCJu1Fo","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186727693808627712\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":924,"h":715,"resize":"fit"},"large":{"w":924,"h":715,"resize":"fit"},"small":{"w":680,"h":526,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 13:59:54 +0000 2019","id":1187005731704229888,"id_str":"1187005731704229888","full_text":"I\u2019m + inspired by the research & practice contributions to the field of #instructionaldesign + by these two amazing colleagues, Dr. Monica Tracey and Dr. Jennifer Maddrell. + #aect19inspired #aectRTD @aectdddivision @JenM @design4learn https:\/\/t.co\/G5VswE0eu0","truncated":false,"display_text_range":[0,235],"entities":{"hashtags":[{"text":"instructionaldesign","indices":[76,96]},{"text":"aect19inspired","indices":[175,190]},{"text":"aectRTD","indices":[191,199]}],"symbols":[],"user_mentions":[{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[200,215]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[216,221]},{"screen_name":"design4learn","name":"Designers + for Learning","id":1610558420,"id_str":"1610558420","indices":[222,235]}],"urls":[],"media":[{"id":1187005725005844480,"id_str":"1187005725005844480","indices":[236,259],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkXavlUEAALckh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkXavlUEAALckh.jpg","url":"https:\/\/t.co\/G5VswE0eu0","display_url":"pic.twitter.com\/G5VswE0eu0","expanded_url":"https:\/\/twitter.com\/DrRossPerkins\/status\/1187005731704229888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187005725005844480,"id_str":"1187005725005844480","indices":[236,259],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkXavlUEAALckh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkXavlUEAALckh.jpg","url":"https:\/\/t.co\/G5VswE0eu0","display_url":"pic.twitter.com\/G5VswE0eu0","expanded_url":"https:\/\/twitter.com\/DrRossPerkins\/status\/1187005731704229888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2905458781,"id_str":"2905458781","name":"Ross + Perkins, PhD","screen_name":"DrRossPerkins","location":"Apex, NC","description":"Asc + Prof @ Boise State. EdS\/EdD ProgCoord. https:\/\/t.co\/8jp7WXqbV1 | Huge + listserv influencer, 1998-2006.","url":"https:\/\/t.co\/8jp7WXqbV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[43,66]}]}},"protected":false,"followers_count":773,"friends_count":485,"listed_count":21,"created_at":"Thu + Nov 20 19:52:09 +0000 2014","favourites_count":3672,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2751,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2905458781\/1618315302","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 10:36:38 +0000 2019","id":1186954576626237445,"id_str":"1186954576626237445","full_text":"RT + @VanekJen: Hey @gsa_aect and\/or #aect2019 are you doing research in areas + of adult esl or adult literacy? Let\u2019s connect #aect19inspired","truncated":false,"display_text_range":[0,138],"entities":{"hashtags":[{"text":"aect2019","indices":[35,44]},{"text":"aect19inspired","indices":[123,138]}],"symbols":[],"user_mentions":[{"screen_name":"VanekJen","name":"Jen + Vanek","id":805816250,"id_str":"805816250","indices":[3,12]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[18,27]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":13515,"id_str":"13515","name":"Jennifer + Maddrell","screen_name":"JenM","location":"Chicago, IL","description":"Teach, + study & design learning experiences","url":"https:\/\/t.co\/725I4m2QWv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/725I4m2QWv","expanded_url":"https:\/\/jennifermaddrell.com","display_url":"jennifermaddrell.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2420,"friends_count":4448,"listed_count":80,"created_at":"Tue + Nov 21 13:57:14 +0000 2006","favourites_count":7779,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3455,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13515\/1604669803","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 21:57:16 +0000 2019","id":1186763476280074240,"id_str":"1186763476280074240","full_text":"Hey + @gsa_aect and\/or #aect2019 are you doing research in areas of adult esl or + adult literacy? Let\u2019s connect #aect19inspired","truncated":false,"display_text_range":[0,124],"entities":{"hashtags":[{"text":"aect2019","indices":[21,30]},{"text":"aect19inspired","indices":[109,124]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[4,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":805816250,"id_str":"805816250","name":"Jen + Vanek","screen_name":"VanekJen","location":"Minneapolis MN","description":"Director + of Digital Learning and Research. EdTech Center @ World Education. Teacher + educator, researcher, and advocate. Opinions expressed here are my own.","url":"https:\/\/t.co\/HfWBBD9lZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HfWBBD9lZC","expanded_url":"http:\/\/www.edtech.worlded.org","display_url":"edtech.worlded.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":270,"listed_count":5,"created_at":"Thu + Sep 06 01:47:18 +0000 2012","favourites_count":432,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":340,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/805816250\/1637458182","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 07:44:27 +0000 2019","id":1186911244642471936,"id_str":"1186911244642471936","full_text":"Thank + you for your service #aect19inspired https:\/\/t.co\/F33a1iM7Rw","truncated":false,"display_text_range":[0,42],"entities":{"hashtags":[{"text":"aect19inspired","indices":[27,42]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186911230990008321,"id_str":"1186911230990008321","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EHjBed8UwAEM36O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHjBed8UwAEM36O.jpg","url":"https:\/\/t.co\/F33a1iM7Rw","display_url":"pic.twitter.com\/F33a1iM7Rw","expanded_url":"https:\/\/twitter.com\/TAmankwatia\/status\/1186911244642471936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186911230990008321,"id_str":"1186911230990008321","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EHjBed8UwAEM36O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHjBed8UwAEM36O.jpg","url":"https:\/\/t.co\/F33a1iM7Rw","display_url":"pic.twitter.com\/F33a1iM7Rw","expanded_url":"https:\/\/twitter.com\/TAmankwatia\/status\/1186911244642471936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":25068789,"id_str":"25068789","name":"Tonya + Amankwatia","screen_name":"TAmankwatia","location":"Greensboro, NC","description":"North + Carolina A&T Assistant Vice Provost-Extended Campus. I evaluate programs, + design models for accessible, supportive online instruction & lifelong learning.","url":"https:\/\/t.co\/JWw4AAXsRF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JWw4AAXsRF","expanded_url":"https:\/\/www.linkedin.com\/in\/tonyalehigh\/","display_url":"linkedin.com\/in\/tonyalehigh\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":339,"friends_count":346,"listed_count":33,"created_at":"Wed + Mar 18 13:10:23 +0000 2009","favourites_count":1300,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1840,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E8CFA9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1185683022684790785\/fBnwhav1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1185683022684790785\/fBnwhav1_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"CC3366","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 13:17:12 +0000 2019","id":1186994983527567361,"id_str":"1186994983527567361","full_text":"While + this already happened, shout out to my co-facilitator Dr. Meina Zhu and the + panelists, Drs. @ifenthaler , @ClaraSophiaS , @andrewatawfik , and Dongho + Kim. We ended the session with a room full of attendees. What an inspiring + discussion! #aect19 #aect19inspired https:\/\/t.co\/YUOCHGnOrt","truncated":false,"display_text_range":[0,266],"entities":{"hashtags":[{"text":"aect19","indices":[243,250]},{"text":"aect19inspired","indices":[251,266]}],"symbols":[],"user_mentions":[{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[98,109]},{"screen_name":"ClaraSophiaS","name":"Clara + S. Schumacher","id":599247384,"id_str":"599247384","indices":[112,125]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[128,142]}],"urls":[{"url":"https:\/\/t.co\/YUOCHGnOrt","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848","display_url":"twitter.com\/nateturcotte22\u2026","indices":[267,290]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1186691231738318848,"quoted_status_id_str":"1186691231738318848","quoted_status_permalink":{"url":"https:\/\/t.co\/YUOCHGnOrt","expanded":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848","display":"twitter.com\/nateturcotte22\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 17:10:11 +0000 2019","id":1186691231738318848,"id_str":"1186691231738318848","full_text":"Great + session starting up right now in Conference Room 4: Learning Analytics: Intersections + with ID, Research, and Practice #aect19inspired @gsa_aect https:\/\/t.co\/EvyTanHQ97","truncated":false,"display_text_range":[0,149],"entities":{"hashtags":[{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[140,149]}],"urls":[],"media":[{"id":1186691226214338560,"id_str":"1186691226214338560","indices":[150,173],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","url":"https:\/\/t.co\/EvyTanHQ97","display_url":"pic.twitter.com\/EvyTanHQ97","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186691226214338560,"id_str":"1186691226214338560","indices":[150,173],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","url":"https:\/\/t.co\/EvyTanHQ97","display_url":"pic.twitter.com\/EvyTanHQ97","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":600653284,"id_str":"600653284","name":"Nate + Turcotte","screen_name":"nateturcotte22","location":"Fort Myers, FL","description":"Assistant + Professor at @fgcu_coe | Researching embodied forms of teaching & learning + with data | New England Patriots | Duke Basketball","url":"https:\/\/t.co\/uu8axyn0Bq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uu8axyn0Bq","expanded_url":"http:\/\/nateturcotte.com","display_url":"nateturcotte.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":313,"friends_count":606,"listed_count":4,"created_at":"Wed + Jun 06 03:44:26 +0000 2012","favourites_count":4300,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1349,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/600653284\/1440433455","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 06:20:08 +0000 2019","id":1186890025750761477,"id_str":"1186890025750761477","full_text":"The + ID theory legend @professordaveme met with @UHCOE students through two of + my courses and answered lots of questions about ID theory and designing instruction + around problems, rather than objectives. #aectRTD #aect19inspired https:\/\/t.co\/HtikIv3lSS","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"aectRTD","indices":[203,211]},{"text":"aect19inspired","indices":[212,227]}],"symbols":[],"user_mentions":[{"screen_name":"professordaveme","name":"DaveMerrill","id":2538506378,"id_str":"2538506378","indices":[21,37]},{"screen_name":"UHCOE","name":"UH + College of Education","id":563967134,"id_str":"563967134","indices":[47,53]}],"urls":[],"media":[{"id":1186890022684770305,"id_str":"1186890022684770305","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiuL-2UwAEAS6n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiuL-2UwAEAS6n.jpg","url":"https:\/\/t.co\/HtikIv3lSS","display_url":"pic.twitter.com\/HtikIv3lSS","expanded_url":"https:\/\/twitter.com\/susiegronseth\/status\/1186890025750761477\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"},"medium":{"w":480,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186890022684770305,"id_str":"1186890022684770305","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiuL-2UwAEAS6n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiuL-2UwAEAS6n.jpg","url":"https:\/\/t.co\/HtikIv3lSS","display_url":"pic.twitter.com\/HtikIv3lSS","expanded_url":"https:\/\/twitter.com\/susiegronseth\/status\/1186890025750761477\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"},"medium":{"w":480,"h":640,"resize":"fit"}},"ext_alt_text":"@susiegronseth + with M. David Merrill"}]},"source":"\u003ca href=\"https:\/\/mobile.twitter.com\" + rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14481157,"id_str":"14481157","name":"Susie + Gronseth","screen_name":"susiegronseth","location":"Houston, TX","description":"@UHouston + faculty in Learning, Design & Technology; instructional designer; @SITEconf + UDL-SIG Co-Chair, wife of @mattgronseth, and mother of 2.","url":"https:\/\/t.co\/p0A1d9XG1V","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p0A1d9XG1V","expanded_url":"http:\/\/coe.uh.edu\/directory\/employee-profile\/index.php?id=618","display_url":"coe.uh.edu\/directory\/empl\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":670,"friends_count":680,"listed_count":0,"created_at":"Tue + Apr 22 21:57:29 +0000 2008","favourites_count":386,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2472,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/786678040344530944\/8Tm9Fpfh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/786678040344530944\/8Tm9Fpfh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14481157\/1449160334","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 14:48:51 +0000 2019","id":1187018050156912642,"id_str":"1187018050156912642","full_text":"Go + check out my friend and brilliant scholar, @kristaruggles, presentations starting + at 9 AM in Conference Room 10! #aect19 #aect19inspired https:\/\/t.co\/9p5Ot5Pvz6","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[116,123]},{"text":"aect19inspired","indices":[125,140]}],"symbols":[],"user_mentions":[{"screen_name":"kristaruggles","name":"Krista + Ruggles, PhD, NBCT","id":1022045132,"id_str":"1022045132","indices":[46,60]}],"urls":[],"media":[{"id":1187018046189096960,"id_str":"1187018046189096960","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkin7kUUAA66ab.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkin7kUUAA66ab.jpg","url":"https:\/\/t.co\/9p5Ot5Pvz6","display_url":"pic.twitter.com\/9p5Ot5Pvz6","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1187018050156912642\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":621,"h":487,"resize":"fit"},"medium":{"w":621,"h":487,"resize":"fit"},"large":{"w":621,"h":487,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187018046189096960,"id_str":"1187018046189096960","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkin7kUUAA66ab.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkin7kUUAA66ab.jpg","url":"https:\/\/t.co\/9p5Ot5Pvz6","display_url":"pic.twitter.com\/9p5Ot5Pvz6","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1187018050156912642\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":621,"h":487,"resize":"fit"},"medium":{"w":621,"h":487,"resize":"fit"},"large":{"w":621,"h":487,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 04:17:33 +0000 2019","id":1186859178196979712,"id_str":"1186859178196979712","full_text":"RT + @LuEMLawrence: Presenting about the theoretical and practical design of the + student CSTEPS tool at #AECT2019 @EmmaMMercier @JJ1206 #CoLe\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT2019","indices":[102,111]}],"symbols":[],"user_mentions":[{"screen_name":"LuEMLawrence","name":"LuEttaMae + (Lu) Lawrence","id":859809032739205121,"id_str":"859809032739205121","indices":[3,16]},{"screen_name":"EmmaMMercier","name":"Emma + Mercier","id":902231366,"id_str":"902231366","indices":[112,125]},{"screen_name":"JJ1206","name":"Jiyoon + Jung","id":24136277,"id_str":"24136277","indices":[126,133]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":899720953,"id_str":"899720953","name":"Sambit + Praharaj, PhD","screen_name":"SambitPhD","location":"CAREER Advice SUBSCRIBE + \ud83d\udc47\ud83d\udc49","description":"Postdoc Research - AI in EdTech | + PhD - Collaborative Learning + Multimodal Learning Analytics | Msc. CS | \ud83c\uddee\ud83c\uddf3 + \ud83c\uddf3\ud83c\uddf1 \ud83c\udde9\ud83c\uddea | https:\/\/t.co\/qcFTbxnvce + | \ud83c\udfa5\ud83d\udc4714K+ Subs","url":"https:\/\/t.co\/y8QcT88xdJ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/y8QcT88xdJ","expanded_url":"https:\/\/www.youtube.com\/sambitphd?sub_confirmation=1","display_url":"youtube.com\/sambitphd?sub_\u2026","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/qcFTbxnvce","expanded_url":"http:\/\/linktr.ee\/sambitphd","display_url":"linktr.ee\/sambitphd","indices":[118,141]}]}},"protected":false,"followers_count":739,"friends_count":1711,"listed_count":20,"created_at":"Tue + Oct 23 11:20:03 +0000 2012","favourites_count":20265,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6191,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FCEBB6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556705553598005253\/ff3r-0bv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556705553598005253\/ff3r-0bv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/899720953\/1651750141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 16:45:56 +0000 2019","id":1186685126312247296,"id_str":"1186685126312247296","full_text":"Presenting + about the theoretical and practical design of the student CSTEPS tool at #AECT2019 + @EmmaMMercier @JJ1206 #CoLearnLab https:\/\/t.co\/nrZ6rdjMUz","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"AECT2019","indices":[84,93]},{"text":"CoLearnLab","indices":[116,127]}],"symbols":[],"user_mentions":[{"screen_name":"EmmaMMercier","name":"Emma + Mercier","id":902231366,"id_str":"902231366","indices":[94,107]},{"screen_name":"JJ1206","name":"Jiyoon + Jung","id":24136277,"id_str":"24136277","indices":[108,115]}],"urls":[],"media":[{"id":1186685116707246081,"id_str":"1186685116707246081","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfz04mUEAEQnWW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfz04mUEAEQnWW.jpg","url":"https:\/\/t.co\/nrZ6rdjMUz","display_url":"pic.twitter.com\/nrZ6rdjMUz","expanded_url":"https:\/\/twitter.com\/LuEMLawrence\/status\/1186685126312247296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":581,"resize":"fit"},"large":{"w":2048,"h":1750,"resize":"fit"},"medium":{"w":1200,"h":1025,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186685116707246081,"id_str":"1186685116707246081","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfz04mUEAEQnWW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfz04mUEAEQnWW.jpg","url":"https:\/\/t.co\/nrZ6rdjMUz","display_url":"pic.twitter.com\/nrZ6rdjMUz","expanded_url":"https:\/\/twitter.com\/LuEMLawrence\/status\/1186685126312247296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":581,"resize":"fit"},"large":{"w":2048,"h":1750,"resize":"fit"},"medium":{"w":1200,"h":1025,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":859809032739205121,"id_str":"859809032739205121","name":"LuEttaMae + (Lu) Lawrence","screen_name":"LuEMLawrence","location":"Irvine, CA","description":"Assistant + Prof @utahstateITLS | AERA SIG ATL Program Chair | Ph.D. from @edILLINOIS + | she\/her","url":"https:\/\/t.co\/FqSG5sT5so","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FqSG5sT5so","expanded_url":"http:\/\/LuEttaMae.com","display_url":"LuEttaMae.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":608,"friends_count":721,"listed_count":4,"created_at":"Wed + May 03 16:37:02 +0000 2017","favourites_count":8450,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1222,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1295117939771871232\/X4YNyZHK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1295117939771871232\/X4YNyZHK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/859809032739205121\/1498653989","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"8fa6d7a33b83ef26","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8fa6d7a33b83ef26.json","place_type":"city","name":"Paradise","full_name":"Paradise, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.2092535,35.984784],[-115.0610763,35.984784],[-115.0610763,36.137145],[-115.2092535,36.137145]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 12:05:00 +0000 2019","id":1186976815052554241,"id_str":"1186976815052554241","full_text":"Check + out Dr. Baaki and Dr. Tracey''s presentation on the empathic design process + on Wed at 10am in Ballroom B. #aect19 #aect19inspired https:\/\/t.co\/ublHpFBaRB","truncated":false,"display_text_range":[0,134],"entities":{"hashtags":[{"text":"aect19","indices":[111,118]},{"text":"aect19inspired","indices":[119,134]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1184458750549200896,"id_str":"1184458750549200896","indices":[135,158],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAK9UWWkAAGIcp.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAK9UWWkAAGIcp.png","url":"https:\/\/t.co\/ublHpFBaRB","display_url":"pic.twitter.com\/ublHpFBaRB","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186976815052554241\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":524,"resize":"fit"},"small":{"w":680,"h":495,"resize":"fit"},"medium":{"w":720,"h":524,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1184458750549200896,"id_str":"1184458750549200896","indices":[135,158],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAK9UWWkAAGIcp.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAK9UWWkAAGIcp.png","url":"https:\/\/t.co\/ublHpFBaRB","display_url":"pic.twitter.com\/ublHpFBaRB","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186976815052554241\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":524,"resize":"fit"},"small":{"w":680,"h":495,"resize":"fit"},"medium":{"w":720,"h":524,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 14:56:06 +0000 2019","id":1187019876428181504,"id_str":"1187019876428181504","full_text":"RT + @RitaFennelly: Make sure to join us for our @AECT panel It\u2019s a Small + World: Decreasing the Distance One Tweet, Snap, & Post at a Time at\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[47,52]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 14:40:54 +0000 2019","id":1187016049515827201,"id_str":"1187016049515827201","full_text":"Make + sure to join us for our @AECT panel It\u2019s a Small World: Decreasing the + Distance One Tweet, Snap, & Post at a Time at 10 AM in Pavillion 11. You + will have fun and learn how the distance grad experience matches up to the + literature. #aect19inspired https:\/\/t.co\/MiiSFEs5Tx","truncated":false,"display_text_range":[0,255],"entities":{"hashtags":[{"text":"aect19inspired","indices":[240,255]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[29,34]}],"urls":[],"media":[{"id":1187016044314943490,"id_str":"1187016044314943490","indices":[256,279],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkgzaAU4AITZKd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkgzaAU4AITZKd.jpg","url":"https:\/\/t.co\/MiiSFEs5Tx","display_url":"pic.twitter.com\/MiiSFEs5Tx","expanded_url":"https:\/\/twitter.com\/RitaFennelly\/status\/1187016049515827201\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":640,"resize":"fit"},"small":{"w":680,"h":387,"resize":"fit"},"medium":{"w":1125,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187016044314943490,"id_str":"1187016044314943490","indices":[256,279],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkgzaAU4AITZKd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkgzaAU4AITZKd.jpg","url":"https:\/\/t.co\/MiiSFEs5Tx","display_url":"pic.twitter.com\/MiiSFEs5Tx","expanded_url":"https:\/\/twitter.com\/RitaFennelly\/status\/1187016049515827201\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":640,"resize":"fit"},"small":{"w":680,"h":387,"resize":"fit"},"medium":{"w":1125,"h":640,"resize":"fit"}},"ext_alt_text":"It’s + a Small World: Decreasing the Distance One Tweet, Snap, & Post at a Time"}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 03:49:37 +0000 2019","id":1186852150464266240,"id_str":"1186852150464266240","full_text":"RT + @AECT: Good morning, AECT! Highlights for today include 5 workshops, 9 Inspire! + Sessions, the Convention Kickoff at 11am, and the Galler\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 13:28:58 +0000 2019","id":1186635559264931841,"id_str":"1186635559264931841","full_text":"Good + morning, AECT! Highlights for today include 5 workshops, 9 Inspire! Sessions, + the Convention Kickoff at 11am, and the Gallery Walk with Poster sessions + and D&D Showcase at 4pm. #aect19inspired\nhttps:\/\/t.co\/HLbut93Hvc https:\/\/t.co\/62T4lvmn0M","truncated":false,"display_text_range":[0,225],"entities":{"hashtags":[{"text":"aect19inspired","indices":[186,201]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HLbut93Hvc","expanded_url":"http:\/\/bit.ly\/AECT19program","display_url":"bit.ly\/AECT19program","indices":[202,225]}],"media":[{"id":1186635555485806595,"id_str":"1186635555485806595","indices":[226,249],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfGwCqUcAMP2T7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfGwCqUcAMP2T7.jpg","url":"https:\/\/t.co\/62T4lvmn0M","display_url":"pic.twitter.com\/62T4lvmn0M","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186635559264931841\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":996,"h":664,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":996,"h":664,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186635555485806595,"id_str":"1186635555485806595","indices":[226,249],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfGwCqUcAMP2T7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfGwCqUcAMP2T7.jpg","url":"https:\/\/t.co\/62T4lvmn0M","display_url":"pic.twitter.com\/62T4lvmn0M","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186635559264931841\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":996,"h":664,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":996,"h":664,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 13:59:07 +0000 2019","id":1187005536157351936,"id_str":"1187005536157351936","full_text":"So + sorry I\u2019m missing #KSUMOBILESUMMIT19 while flying home from #aect19inspired + -but I know that my pals are dropping some knowledge \ud83d\udca3 @Durrahville + repping @ksuiteach and @nearpod and @KristenBrooks77 @MissRioux shining an + \ud83c\udf4e \ud83d\udca1! Congrats @drjabaricain @KSUBCOE @KSUITEC https:\/\/t.co\/CrusxDuLhm","truncated":false,"display_text_range":[0,269],"entities":{"hashtags":[{"text":"KSUMOBILESUMMIT19","indices":[22,40]},{"text":"aect19inspired","indices":[64,79]}],"symbols":[],"user_mentions":[{"screen_name":"Durrahville","name":"Tamika + Duffey","id":887647302940340224,"id_str":"887647302940340224","indices":[136,148]},{"screen_name":"ksuiteach","name":"KSU + iTeach","id":129823325,"id_str":"129823325","indices":[157,167]},{"screen_name":"nearpod","name":"Nearpod","id":231176302,"id_str":"231176302","indices":[172,180]},{"screen_name":"KristenBrooks77","name":"Kristen + Brooks #FOREDU","id":44916231,"id_str":"44916231","indices":[185,201]},{"screen_name":"MissRioux","name":"Andrea + Tseng-Rioux","id":243846294,"id_str":"243846294","indices":[202,212]},{"screen_name":"drjabaricain","name":"Dr. + Jabari Cain","id":895269889438560257,"id_str":"895269889438560257","indices":[238,251]},{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[261,269]}],"urls":[],"media":[{"id":1187005527949099008,"id_str":"1187005527949099008","indices":[270,293],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHkXPRfUwAAlshq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHkXPRfUwAAlshq.jpg","url":"https:\/\/t.co\/CrusxDuLhm","display_url":"pic.twitter.com\/CrusxDuLhm","expanded_url":"https:\/\/twitter.com\/Stephsteph83\/status\/1187005536157351936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":264,"resize":"fit"},"large":{"w":480,"h":264,"resize":"fit"},"medium":{"w":480,"h":264,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187005527949099008,"id_str":"1187005527949099008","indices":[270,293],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHkXPRfUwAAlshq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHkXPRfUwAAlshq.jpg","url":"https:\/\/t.co\/CrusxDuLhm","display_url":"pic.twitter.com\/CrusxDuLhm","expanded_url":"https:\/\/twitter.com\/Stephsteph83\/status\/1187005536157351936\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":264,"resize":"fit"},"large":{"w":480,"h":264,"resize":"fit"},"medium":{"w":480,"h":264,"resize":"fit"}},"video_info":{"aspect_ratio":[20,11],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHkXPRfUwAAlshq.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":427060068,"id_str":"427060068","name":"Dr. + Stephanee Stephens","screen_name":"Stephsteph83","location":"Atlanta, GA","description":"Educator, + Challenger, Leader, Innovator @microsoftedu Believe in: #personalizedlearning + \ud83d\udc69\u200d\ud83c\udf93 @utoledo @kennesawstate","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2501,"friends_count":1157,"listed_count":172,"created_at":"Sat + Dec 03 02:01:17 +0000 2011","favourites_count":13627,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8514,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458524672912461825\/JM2qKEcN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458524672912461825\/JM2qKEcN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/427060068\/1636574423","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 05:17:20 +0000 2019","id":1186874221244207110,"id_str":"1186874221244207110","full_text":"RT + @EmmaMMercier: Wonderful to see @LuEMLawrence presenting on #csteps work at + #AECT2019! @edILLINOIS @CIRCLCenter https:\/\/t.co\/AosGSJQ09T","truncated":false,"display_text_range":[0,138],"entities":{"hashtags":[{"text":"csteps","indices":[63,70]},{"text":"AECT2019","indices":[79,88]}],"symbols":[],"user_mentions":[{"screen_name":"EmmaMMercier","name":"Emma + Mercier","id":902231366,"id_str":"902231366","indices":[3,16]},{"screen_name":"LuEMLawrence","name":"LuEttaMae + (Lu) Lawrence","id":859809032739205121,"id_str":"859809032739205121","indices":[35,48]},{"screen_name":"edILLINOIS","name":"COLLEGE + OF EDUCATION","id":50013575,"id_str":"50013575","indices":[90,101]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":24136277,"id_str":"24136277","name":"Jiyoon + Jung","screen_name":"JJ1206","location":"Valdosta, GA","description":"Focusing + on teacher learning of innovative practices to positively impact student learning + experience","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":149,"listed_count":0,"created_at":"Fri + Mar 13 05:55:45 +0000 2009","favourites_count":121,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":53,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/529611944865443840\/vLrcsfX3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/529611944865443840\/vLrcsfX3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24136277\/1415104354","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 18:43:26 +0000 2019","id":1186714696067506176,"id_str":"1186714696067506176","full_text":"Wonderful + to see @LuEMLawrence presenting on #csteps work at #AECT2019! @edILLINOIS + @CIRCLCenter https:\/\/t.co\/AosGSJQ09T","truncated":false,"display_text_range":[0,96],"entities":{"hashtags":[{"text":"csteps","indices":[45,52]},{"text":"AECT2019","indices":[61,70]}],"symbols":[],"user_mentions":[{"screen_name":"LuEMLawrence","name":"LuEttaMae + (Lu) Lawrence","id":859809032739205121,"id_str":"859809032739205121","indices":[17,30]},{"screen_name":"edILLINOIS","name":"COLLEGE + OF EDUCATION","id":50013575,"id_str":"50013575","indices":[72,83]}],"urls":[{"url":"https:\/\/t.co\/AosGSJQ09T","expanded_url":"https:\/\/twitter.com\/LuEMLawrence\/status\/1186685126312247296","display_url":"twitter.com\/LuEMLawrence\/s\u2026","indices":[97,120]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":902231366,"id_str":"902231366","name":"Emma + Mercier","screen_name":"EmmaMMercier","location":"Champaign, IL","description":"Learning + Scientist, Associate Prof at UIUC, thinking about how to use technology to + support collaboration in classrooms.","url":"https:\/\/t.co\/VSJNVi94YP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VSJNVi94YP","expanded_url":"http:\/\/www.colearnlab.org","display_url":"colearnlab.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":568,"friends_count":651,"listed_count":10,"created_at":"Wed + Oct 24 17:17:53 +0000 2012","favourites_count":1329,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":328,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646453850619166720\/n4nbhwoL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646453850619166720\/n4nbhwoL_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186685126312247296,"quoted_status_id_str":"1186685126312247296","quoted_status_permalink":{"url":"https:\/\/t.co\/AosGSJQ09T","expanded":"https:\/\/twitter.com\/LuEMLawrence\/status\/1186685126312247296","display":"twitter.com\/LuEMLawrence\/s\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 16:45:56 +0000 2019","id":1186685126312247296,"id_str":"1186685126312247296","full_text":"Presenting + about the theoretical and practical design of the student CSTEPS tool at #AECT2019 + @EmmaMMercier @JJ1206 #CoLearnLab https:\/\/t.co\/nrZ6rdjMUz","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"AECT2019","indices":[84,93]},{"text":"CoLearnLab","indices":[116,127]}],"symbols":[],"user_mentions":[{"screen_name":"EmmaMMercier","name":"Emma + Mercier","id":902231366,"id_str":"902231366","indices":[94,107]},{"screen_name":"JJ1206","name":"Jiyoon + Jung","id":24136277,"id_str":"24136277","indices":[108,115]}],"urls":[],"media":[{"id":1186685116707246081,"id_str":"1186685116707246081","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfz04mUEAEQnWW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfz04mUEAEQnWW.jpg","url":"https:\/\/t.co\/nrZ6rdjMUz","display_url":"pic.twitter.com\/nrZ6rdjMUz","expanded_url":"https:\/\/twitter.com\/LuEMLawrence\/status\/1186685126312247296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":581,"resize":"fit"},"large":{"w":2048,"h":1750,"resize":"fit"},"medium":{"w":1200,"h":1025,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186685116707246081,"id_str":"1186685116707246081","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfz04mUEAEQnWW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfz04mUEAEQnWW.jpg","url":"https:\/\/t.co\/nrZ6rdjMUz","display_url":"pic.twitter.com\/nrZ6rdjMUz","expanded_url":"https:\/\/twitter.com\/LuEMLawrence\/status\/1186685126312247296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":581,"resize":"fit"},"large":{"w":2048,"h":1750,"resize":"fit"},"medium":{"w":1200,"h":1025,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":859809032739205121,"id_str":"859809032739205121","name":"LuEttaMae + (Lu) Lawrence","screen_name":"LuEMLawrence","location":"Irvine, CA","description":"Assistant + Prof @utahstateITLS | AERA SIG ATL Program Chair | Ph.D. from @edILLINOIS + | she\/her","url":"https:\/\/t.co\/FqSG5sT5so","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FqSG5sT5so","expanded_url":"http:\/\/LuEttaMae.com","display_url":"LuEttaMae.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":608,"friends_count":721,"listed_count":4,"created_at":"Wed + May 03 16:37:02 +0000 2017","favourites_count":8450,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1222,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1295117939771871232\/X4YNyZHK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1295117939771871232\/X4YNyZHK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/859809032739205121\/1498653989","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"8fa6d7a33b83ef26","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8fa6d7a33b83ef26.json","place_type":"city","name":"Paradise","full_name":"Paradise, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.2092535,35.984784],[-115.0610763,35.984784],[-115.0610763,36.137145],[-115.2092535,36.137145]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186685126312247296,"quoted_status_id_str":"1186685126312247296","quoted_status_permalink":{"url":"https:\/\/t.co\/AosGSJQ09T","expanded":"https:\/\/twitter.com\/LuEMLawrence\/status\/1186685126312247296","display":"twitter.com\/LuEMLawrence\/s\u2026"},"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 14:16:22 +0000 2019","id":1187009874896404481,"id_str":"1187009874896404481","full_text":"#aect19 + Tip #06 - To add inspiration to a presentation, make sure your slides make + a shooting sound every time a new bullet is displayed.","truncated":false,"display_text_range":[0,137],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 13:28:04 +0000 2019","id":1186997720231243778,"id_str":"1186997720231243778","full_text":"Sunrise + over day 3 of #aect19inspired https:\/\/t.co\/MNcvpvUV0B","truncated":false,"display_text_range":[0,37],"entities":{"hashtags":[{"text":"aect19inspired","indices":[22,37]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186997698576052225,"id_str":"1186997698576052225","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkQHizU8AEde96.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkQHizU8AEde96.jpg","url":"https:\/\/t.co\/MNcvpvUV0B","display_url":"pic.twitter.com\/MNcvpvUV0B","expanded_url":"https:\/\/twitter.com\/VanekJen\/status\/1186997720231243778\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186997698576052225,"id_str":"1186997698576052225","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkQHizU8AEde96.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkQHizU8AEde96.jpg","url":"https:\/\/t.co\/MNcvpvUV0B","display_url":"pic.twitter.com\/MNcvpvUV0B","expanded_url":"https:\/\/twitter.com\/VanekJen\/status\/1186997720231243778\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":805816250,"id_str":"805816250","name":"Jen + Vanek","screen_name":"VanekJen","location":"Minneapolis MN","description":"Director + of Digital Learning and Research. EdTech Center @ World Education. Teacher + educator, researcher, and advocate. Opinions expressed here are my own.","url":"https:\/\/t.co\/HfWBBD9lZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HfWBBD9lZC","expanded_url":"http:\/\/www.edtech.worlded.org","display_url":"edtech.worlded.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":270,"listed_count":5,"created_at":"Thu + Sep 06 01:47:18 +0000 2012","favourites_count":432,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":340,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/805816250\/1637458182","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 12:49:11 +0000 2019","id":1186987934232109058,"id_str":"1186987934232109058","full_text":"RT + @FredWBaker: Please consider submitting a proposal for the Systems Thinking + & Change Division''s special issue of @AECTTechTrends!! #aect\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[120,135]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 22:26:19 +0000 2019","id":1186770788797411328,"id_str":"1186770788797411328","full_text":"Please + consider submitting a proposal for the Systems Thinking & Change Division''s + special issue of @AECTTechTrends!! #aect19 #aectstc #aect19inspired https:\/\/t.co\/nQzSaUhgi2","truncated":false,"display_text_range":[0,178],"entities":{"hashtags":[{"text":"aect19","indices":[122,129]},{"text":"aectstc","indices":[130,138]},{"text":"aect19inspired","indices":[139,154]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[104,119]}],"urls":[{"url":"https:\/\/t.co\/nQzSaUhgi2","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[155,178]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 06:12:45 +0000 2019","id":1186888167502204928,"id_str":"1186888167502204928","full_text":"Interesting + topic and fabulous presentation! #AECT19 #fsu2040 #ReciprocalTeaching https:\/\/t.co\/gioNdHiptN","truncated":false,"display_text_range":[0,81],"entities":{"hashtags":[{"text":"AECT19","indices":[45,52]},{"text":"fsu2040","indices":[53,61]},{"text":"ReciprocalTeaching","indices":[62,81]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gioNdHiptN","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186732733516701696","display_url":"twitter.com\/ISLT_FSU\/statu\u2026","indices":[82,105]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1033854044039729152,"id_str":"1033854044039729152","name":"Hajeen + Choi","screen_name":"hajeenfsu","location":"FL","description":"PhD., Interested + in online teaching and learning, motivation, engagement, othering\/belonging, + networked learning, social media in education","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":178,"listed_count":1,"created_at":"Sun + Aug 26 23:09:46 +0000 2018","favourites_count":653,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1033854044039729152\/1535327544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186732733516701696,"quoted_status_id_str":"1186732733516701696","quoted_status_permalink":{"url":"https:\/\/t.co\/gioNdHiptN","expanded":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186732733516701696","display":"twitter.com\/ISLT_FSU\/statu\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 19:55:06 +0000 2019","id":1186732733516701696,"id_str":"1186732733516701696","full_text":"Come + visit poster T38: Online Reciprocal Teaching: Designing an Instructional Approach + that Scaffolds Metacognitive Strategy Use for College Students with #FSU #FSUCOE + #ISLT Jiyae Bong & @vdennen #AECT19 #AECT2019 https:\/\/t.co\/JcnMfDqJv6","truncated":false,"display_text_range":[0,217],"entities":{"hashtags":[{"text":"FSU","indices":[155,159]},{"text":"FSUCOE","indices":[160,167]},{"text":"ISLT","indices":[168,173]},{"text":"AECT19","indices":[200,207]},{"text":"AECT2019","indices":[208,217]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[191,199]}],"urls":[],"media":[{"id":1186732730333179910,"id_str":"1186732730333179910","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","url":"https:\/\/t.co\/JcnMfDqJv6","display_url":"pic.twitter.com\/JcnMfDqJv6","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186732733516701696\/photo\/1","type":"photo","sizes":{"large":{"w":1609,"h":1075,"resize":"fit"},"medium":{"w":1200,"h":802,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1186732730333179910,"id_str":"1186732730333179910","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","url":"https:\/\/t.co\/JcnMfDqJv6","display_url":"pic.twitter.com\/JcnMfDqJv6","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186732733516701696\/photo\/1","type":"photo","sizes":{"large":{"w":1609,"h":1075,"resize":"fit"},"medium":{"w":1200,"h":802,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 14:40:54 +0000 2019","id":1187016049515827201,"id_str":"1187016049515827201","full_text":"Make + sure to join us for our @AECT panel It\u2019s a Small World: Decreasing the + Distance One Tweet, Snap, & Post at a Time at 10 AM in Pavillion 11. You + will have fun and learn how the distance grad experience matches up to the + literature. #aect19inspired https:\/\/t.co\/MiiSFEs5Tx","truncated":false,"display_text_range":[0,255],"entities":{"hashtags":[{"text":"aect19inspired","indices":[240,255]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[29,34]}],"urls":[],"media":[{"id":1187016044314943490,"id_str":"1187016044314943490","indices":[256,279],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkgzaAU4AITZKd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkgzaAU4AITZKd.jpg","url":"https:\/\/t.co\/MiiSFEs5Tx","display_url":"pic.twitter.com\/MiiSFEs5Tx","expanded_url":"https:\/\/twitter.com\/RitaFennelly\/status\/1187016049515827201\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":640,"resize":"fit"},"small":{"w":680,"h":387,"resize":"fit"},"medium":{"w":1125,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187016044314943490,"id_str":"1187016044314943490","indices":[256,279],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkgzaAU4AITZKd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkgzaAU4AITZKd.jpg","url":"https:\/\/t.co\/MiiSFEs5Tx","display_url":"pic.twitter.com\/MiiSFEs5Tx","expanded_url":"https:\/\/twitter.com\/RitaFennelly\/status\/1187016049515827201\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1125,"h":640,"resize":"fit"},"small":{"w":680,"h":387,"resize":"fit"},"medium":{"w":1125,"h":640,"resize":"fit"}},"ext_alt_text":"It’s + a Small World: Decreasing the Distance One Tweet, Snap, & Post at a Time"}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 03:22:31 +0000 2019","id":1186845328172933120,"id_str":"1186845328172933120","full_text":"Found + my own name on the @aectddl #WhoInspire board #aect19 #aect19inspired https:\/\/t.co\/GbcQG36yzS","truncated":false,"display_text_range":[0,75],"entities":{"hashtags":[{"text":"WhoInspire","indices":[34,45]},{"text":"aect19","indices":[52,59]},{"text":"aect19inspired","indices":[60,75]}],"symbols":[],"user_mentions":[{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[25,33]}],"urls":[],"media":[{"id":1186845321101365248,"id_str":"1186845321101365248","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiFiAeU0AAndC0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiFiAeU0AAndC0.jpg","url":"https:\/\/t.co\/GbcQG36yzS","display_url":"pic.twitter.com\/GbcQG36yzS","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186845328172933120\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186845321101365248,"id_str":"1186845321101365248","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHiFiAeU0AAndC0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHiFiAeU0AAndC0.jpg","url":"https:\/\/t.co\/GbcQG36yzS","display_url":"pic.twitter.com\/GbcQG36yzS","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186845328172933120\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 10:35:51 +0000 2019","id":1186954382228836352,"id_str":"1186954382228836352","full_text":"RT + @tadousay: If you couldn''t make it to the #AECT19 #TeacherEd session on innovative + pedagogical space design, be sure to check out all of\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[45,52]},{"text":"TeacherEd","indices":[53,63]}],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":860265492,"id_str":"860265492","name":"James + Ellsworth PhD","screen_name":"EINS_Institute","location":"Albuquerque, NM","description":"Educator\/architect + of instructional systems. Soldier. Muslim. Scholar (but not alim). Retired + General Officer level US military intelligence leader. Yep--weird.","url":"https:\/\/t.co\/GwDIuUtRB1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GwDIuUtRB1","expanded_url":"http:\/\/www.linkedin.com\/in\/ellsworthj","display_url":"linkedin.com\/in\/ellsworthj","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4099,"friends_count":1926,"listed_count":36,"created_at":"Wed + Oct 03 20:09:48 +0000 2012","favourites_count":212736,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":107275,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1393326633336156163\/aiT8Pu7i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1393326633336156163\/aiT8Pu7i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/860265492\/1491924222","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:25:05 +0000 2019","id":1186740275915280384,"id_str":"1186740275915280384","full_text":"If + you couldn''t make it to the #AECT19 #TeacherEd session on innovative pedagogical + space design, be sure to check out all of the virtual flipped posters at https:\/\/t.co\/1pM0umTnEi + #AECTinspired https:\/\/t.co\/NXpMwQC63N","truncated":false,"display_text_range":[0,194],"entities":{"hashtags":[{"text":"AECT19","indices":[31,38]},{"text":"TeacherEd","indices":[39,49]},{"text":"AECTinspired","indices":[181,194]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1pM0umTnEi","expanded_url":"http:\/\/bit.ly\/TED-flipped","display_url":"bit.ly\/TED-flipped","indices":[157,180]}],"media":[{"id":1186740239152271361,"id_str":"1186740239152271361","indices":[195,218],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgl9btVUAEvjnZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgl9btVUAEvjnZ.jpg","url":"https:\/\/t.co\/NXpMwQC63N","display_url":"pic.twitter.com\/NXpMwQC63N","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186740275915280384\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":960,"h":540,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186740239152271361,"id_str":"1186740239152271361","indices":[195,218],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgl9btVUAEvjnZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgl9btVUAEvjnZ.jpg","url":"https:\/\/t.co\/NXpMwQC63N","display_url":"pic.twitter.com\/NXpMwQC63N","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186740275915280384\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":960,"h":540,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 05:45:05 +0000 2019","id":1186881204571660290,"id_str":"1186881204571660290","full_text":"@EdTech_UofSC + Dr. Fatih Ari presenting at #AECT19. \n#aect19inspired https:\/\/t.co\/btUUYghhRm","truncated":false,"display_text_range":[0,67],"entities":{"hashtags":[{"text":"AECT19","indices":[42,49]},{"text":"aect19inspired","indices":[52,67]}],"symbols":[],"user_mentions":[{"screen_name":"EdTech_UofSC","name":"LD&T + and EdTech at UofSC","id":2835369671,"id_str":"2835369671","indices":[0,13]}],"urls":[],"media":[{"id":1186881199186165760,"id_str":"1186881199186165760","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHimKYwUwAAnnSs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHimKYwUwAAnnSs.jpg","url":"https:\/\/t.co\/btUUYghhRm","display_url":"pic.twitter.com\/btUUYghhRm","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186881204571660290\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186881199186165760,"id_str":"1186881199186165760","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHimKYwUwAAnnSs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHimKYwUwAAnnSs.jpg","url":"https:\/\/t.co\/btUUYghhRm","display_url":"pic.twitter.com\/btUUYghhRm","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186881204571660290\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2835369671,"in_reply_to_user_id_str":"2835369671","in_reply_to_screen_name":"EdTech_UofSC","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},{"created_at":"Wed + Oct 23 05:49:49 +0000 2019","id":1186882397154893825,"id_str":"1186882397154893825","full_text":"@EdTech_UofSC + Professor Karen Qian presenting at #AECT19. \n#aect19inspired https:\/\/t.co\/MNHURa3NFk","truncated":false,"display_text_range":[0,74],"entities":{"hashtags":[{"text":"AECT19","indices":[49,56]},{"text":"aect19inspired","indices":[59,74]}],"symbols":[],"user_mentions":[{"screen_name":"EdTech_UofSC","name":"LD&T + and EdTech at UofSC","id":2835369671,"id_str":"2835369671","indices":[0,13]}],"urls":[],"media":[{"id":1186882391010185218,"id_str":"1186882391010185218","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/EHinPwpUEAI1___.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHinPwpUEAI1___.jpg","url":"https:\/\/t.co\/MNHURa3NFk","display_url":"pic.twitter.com\/MNHURa3NFk","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186882397154893825\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1504,"resize":"fit"},"small":{"w":680,"h":499,"resize":"fit"},"medium":{"w":1200,"h":881,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186882391010185218,"id_str":"1186882391010185218","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/EHinPwpUEAI1___.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHinPwpUEAI1___.jpg","url":"https:\/\/t.co\/MNHURa3NFk","display_url":"pic.twitter.com\/MNHURa3NFk","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186882397154893825\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1504,"resize":"fit"},"small":{"w":680,"h":499,"resize":"fit"},"medium":{"w":1200,"h":881,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2835369671,"in_reply_to_user_id_str":"2835369671","in_reply_to_screen_name":"EdTech_UofSC","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"in"},{"created_at":"Wed + Oct 23 13:12:26 +0000 2019","id":1186993787559497733,"id_str":"1186993787559497733","full_text":"It\u2019s + cool that the @AECT conference committee set up a \u201clounge\u201d area + in the pavilion so that you could buy coffee in a much shorter line than fortuna. + #aect19inspired #inspireme by listening to member feedback.","truncated":false,"display_text_range":[0,210],"entities":{"hashtags":[{"text":"aect19inspired","indices":[151,166]},{"text":"inspireme","indices":[167,177]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[19,24]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 14:55:58 +0000 2019","id":1187019840847892480,"id_str":"1187019840847892480","full_text":"RT + @yinbk: Good morning! #aect19inspired https:\/\/t.co\/Rn3DB8kshK","truncated":false,"display_text_range":[0,64],"entities":{"hashtags":[{"text":"aect19inspired","indices":[25,40]}],"symbols":[],"user_mentions":[{"screen_name":"yinbk","name":"\ud83c\uddfa\ud83c\uddf8 + Yin Kreher, PhD","id":459903,"id_str":"459903","indices":[3,9]}],"urls":[],"media":[{"id":1187013064492609536,"id_str":"1187013064492609536","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkeF9TUcAALGtZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkeF9TUcAALGtZ.jpg","url":"https:\/\/t.co\/Rn3DB8kshK","display_url":"pic.twitter.com\/Rn3DB8kshK","expanded_url":"https:\/\/twitter.com\/yinbk\/status\/1187013077079773184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1187013077079773184,"source_status_id_str":"1187013077079773184","source_user_id":459903,"source_user_id_str":"459903"}]},"extended_entities":{"media":[{"id":1187013064492609536,"id_str":"1187013064492609536","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkeF9TUcAALGtZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkeF9TUcAALGtZ.jpg","url":"https:\/\/t.co\/Rn3DB8kshK","display_url":"pic.twitter.com\/Rn3DB8kshK","expanded_url":"https:\/\/twitter.com\/yinbk\/status\/1187013077079773184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1187013077079773184,"source_status_id_str":"1187013077079773184","source_user_id":459903,"source_user_id_str":"459903","ext_alt_text":"Morning + scene in Las Vegas"}]},"source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" + rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 14:29:05 +0000 2019","id":1187013077079773184,"id_str":"1187013077079773184","full_text":"Good + morning! #aect19inspired https:\/\/t.co\/Rn3DB8kshK","truncated":false,"display_text_range":[0,29],"entities":{"hashtags":[{"text":"aect19inspired","indices":[14,29]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187013064492609536,"id_str":"1187013064492609536","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkeF9TUcAALGtZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkeF9TUcAALGtZ.jpg","url":"https:\/\/t.co\/Rn3DB8kshK","display_url":"pic.twitter.com\/Rn3DB8kshK","expanded_url":"https:\/\/twitter.com\/yinbk\/status\/1187013077079773184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187013064492609536,"id_str":"1187013064492609536","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkeF9TUcAALGtZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkeF9TUcAALGtZ.jpg","url":"https:\/\/t.co\/Rn3DB8kshK","display_url":"pic.twitter.com\/Rn3DB8kshK","expanded_url":"https:\/\/twitter.com\/yinbk\/status\/1187013077079773184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":"Morning + scene in Las Vegas"}]},"source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" + rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":459903,"id_str":"459903","name":"\ud83c\uddfa\ud83c\uddf8 + Yin Kreher, PhD","screen_name":"yinbk","location":"","description":"Instructional + Designer | Lead LXD @FourthRev | Boundary-Crosser. Looks for the exquisite + at intersections. All tweets are mine. \ud83d\udc9c #XR #DesignLeadership + \ud83e\udef0","url":"https:\/\/t.co\/nJBVP9cpz7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nJBVP9cpz7","expanded_url":"http:\/\/yinwahkreher.com","display_url":"yinwahkreher.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1043,"friends_count":1124,"listed_count":79,"created_at":"Tue + Jan 02 17:04:05 +0000 2007","favourites_count":7349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"363738","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459903\/1611022238","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"E81C4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 03:02:54 +0000 2019","id":1186840393515786241,"id_str":"1186840393515786241","full_text":"@bretsw + @GingerWatsonPhD Hi @GingerWatsonPhD and welcome to twitter! \ud83d\ude4b\u200d\u2640\ufe0fSo + nice to meet you today at the #aect19 kickoff! Let''s connect and talk more + about #DigitalLiteracy!","truncated":false,"display_text_range":[25,174],"entities":{"hashtags":[{"text":"aect19","indices":[106,113]},{"text":"DigitalLiteracy","indices":[157,173]}],"symbols":[],"user_mentions":[{"screen_name":"bretsw","name":"Dr. + Bret Staudt Willet","id":53167706,"id_str":"53167706","indices":[0,7]},{"screen_name":"GingerWatsonPhD","name":"Ginger + S. Watson, Ph.D.","id":1186720671641915392,"id_str":"1186720671641915392","indices":[8,24]},{"screen_name":"GingerWatsonPhD","name":"Ginger + S. Watson, Ph.D.","id":1186720671641915392,"id_str":"1186720671641915392","indices":[28,44]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1186722955495002112,"in_reply_to_status_id_str":"1186722955495002112","in_reply_to_user_id":53167706,"in_reply_to_user_id_str":"53167706","in_reply_to_screen_name":"bretsw","user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 13:48:12 +0000 2019","id":1187002786187112449,"id_str":"1187002786187112449","full_text":"Thank + you! Having great collaborations has always helped make creating that environment + possible. #aect19inspired https:\/\/t.co\/84f8iLW6MN","truncated":false,"display_text_range":[0,113],"entities":{"hashtags":[{"text":"aect19inspired","indices":[98,113]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/84f8iLW6MN","expanded_url":"https:\/\/twitter.com\/eme2040laurenv\/status\/1186996406810218498","display_url":"twitter.com\/eme2040laurenv\u2026","indices":[114,137]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1408637941,"id_str":"1408637941","name":"Shannon + M. Smith","screen_name":"SmithShannonM","location":"Boise, ID","description":"Librarian + @BSULibrary + @UW_iSchool alum | OER, OA, Schol Comm, STEM, Design Thinking + | opinions my own | dreaming + reflecting + learning","url":"https:\/\/t.co\/cP2kwcqbcn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cP2kwcqbcn","expanded_url":"https:\/\/orcid.org\/0000-0002-2560-7410","display_url":"orcid.org\/0000-0002-2560\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":421,"friends_count":863,"listed_count":15,"created_at":"Mon + May 06 20:13:09 +0000 2013","favourites_count":5591,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2346,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1528811834257526784\/FoWd_4Uj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1528811834257526784\/FoWd_4Uj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1408637941\/1653332130","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186996406810218498,"quoted_status_id_str":"1186996406810218498","quoted_status_permalink":{"url":"https:\/\/t.co\/84f8iLW6MN","expanded":"https:\/\/twitter.com\/eme2040laurenv\/status\/1186996406810218498","display":"twitter.com\/eme2040laurenv\u2026"},"quoted_status":{"created_at":"Wed + Oct 23 13:22:51 +0000 2019","id":1186996406810218498,"id_str":"1186996406810218498","full_text":"While + not everyone can relate as much to programming, we can all relate to failure. + It is so cool that you are implementing robotics in an uplifting classroom + enviornment #eme2040 #AECT19 https:\/\/t.co\/grl747FfGv","truncated":false,"display_text_range":[0,187],"entities":{"hashtags":[{"text":"eme2040","indices":[171,179]},{"text":"AECT19","indices":[180,187]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/grl747FfGv","expanded_url":"https:\/\/twitter.com\/SmithShannonM\/status\/1186019834229747712","display_url":"twitter.com\/SmithShannonM\/\u2026","indices":[188,211]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1168887657335799809,"id_str":"1168887657335799809","name":"Lauren + Vetrano","screen_name":"eme2040laurenv","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":29,"listed_count":0,"created_at":"Tue + Sep 03 14:05:30 +0000 2019","favourites_count":6,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1168892786894090240\/HNhYB8fH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1168892786894090240\/HNhYB8fH_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186019834229747712,"quoted_status_id_str":"1186019834229747712","quoted_status_permalink":{"url":"https:\/\/t.co\/grl747FfGv","expanded":"https:\/\/twitter.com\/SmithShannonM\/status\/1186019834229747712","display":"twitter.com\/SmithShannonM\/\u2026"},"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 06:20:35 +0000 2019","id":1186890141027094528,"id_str":"1186890141027094528","full_text":"RT + @ISLT_FSU: #SocialMedia and #Undergraduates: Use and Opportunities Across + Student Life. Come join #FSU #FSUCOE #ISLT @vdennen @LaurenBag\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"SocialMedia","indices":[14,26]},{"text":"Undergraduates","indices":[31,46]},{"text":"FSU","indices":[101,105]},{"text":"FSUCOE","indices":[106,113]},{"text":"ISLT","indices":[114,119]}],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]},{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[120,128]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1033854044039729152,"id_str":"1033854044039729152","name":"Hajeen + Choi","screen_name":"hajeenfsu","location":"FL","description":"PhD., Interested + in online teaching and learning, motivation, engagement, othering\/belonging, + networked learning, social media in education","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":178,"listed_count":1,"created_at":"Sun + Aug 26 23:09:46 +0000 2018","favourites_count":653,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1033854044039729152\/1535327544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 11:30:15 +0000 2019","id":1186605683338289153,"id_str":"1186605683338289153","full_text":"#SocialMedia + and #Undergraduates: Use and Opportunities Across Student Life. Come join + #FSU #FSUCOE #ISLT @vdennen @LaurenBagdy @hajeen2040 Demetrius Rice, & + @Ginny7s, for session 045 on Tuesday, 8:00 am - 8:50 am at Convention Center + - Ballroom B. #AECT19 #AECT2019 #SocialMedia","truncated":false,"display_text_range":[0,283],"entities":{"hashtags":[{"text":"SocialMedia","indices":[0,12]},{"text":"Undergraduates","indices":[17,32]},{"text":"FSU","indices":[87,91]},{"text":"FSUCOE","indices":[92,99]},{"text":"ISLT","indices":[100,105]},{"text":"AECT19","indices":[253,260]},{"text":"AECT2019","indices":[261,270]},{"text":"SocialMedia","indices":[271,283]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[106,114]},{"screen_name":"LaurenBagdy","name":"Lauren + Bagdy","id":22214646,"id_str":"22214646","indices":[115,127]},{"screen_name":"Ginny7s","name":"Dr. + Ginny L. Smith","id":880789090010050560,"id_str":"880789090010050560","indices":[162,170]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 13:17:42 +0000 2019","id":1186995110459953154,"id_str":"1186995110459953154","full_text":"What + a great way to keep our educators interested and entertained while discussing + important information #AECT19 #eme2040 https:\/\/t.co\/i39KmDGzUD","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"AECT19","indices":[105,112]},{"text":"eme2040","indices":[113,121]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/i39KmDGzUD","expanded_url":"https:\/\/twitter.com\/IdeaCaptain\/status\/1186960304137068544","display_url":"twitter.com\/IdeaCaptain\/st\u2026","indices":[122,145]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1168887657335799809,"id_str":"1168887657335799809","name":"Lauren + Vetrano","screen_name":"eme2040laurenv","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":29,"listed_count":0,"created_at":"Tue + Sep 03 14:05:30 +0000 2019","favourites_count":6,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1168892786894090240\/HNhYB8fH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1168892786894090240\/HNhYB8fH_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186960304137068544,"quoted_status_id_str":"1186960304137068544","quoted_status_permalink":{"url":"https:\/\/t.co\/i39KmDGzUD","expanded":"https:\/\/twitter.com\/IdeaCaptain\/status\/1186960304137068544","display":"twitter.com\/IdeaCaptain\/st\u2026"},"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 05:59:20 +0000 2019","id":1186884791561375745,"id_str":"1186884791561375745","full_text":"RT + @MuratTurkOU: #aect19 #aect19inspired #aect Come to Conference Room 4 for + a conversation with Dr. Xun Ge, AECT President-Elect. Hey Firs\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[17,24]},{"text":"aect19inspired","indices":[25,40]},{"text":"aect","indices":[41,46]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 14:50:08 +0000 2019","id":1186655983994470400,"id_str":"1186655983994470400","full_text":"#aect19 + #aect19inspired #aect Come to Conference Room 4 for a conversation with Dr. + Xun Ge, AECT President-Elect. Hey First-timers, we want to see you here too! + See you soon! @AECT @gsa_aect https:\/\/t.co\/RPP9nVdrrf","truncated":false,"display_text_range":[0,190],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]},{"text":"aect19inspired","indices":[8,23]},{"text":"aect","indices":[24,29]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[175,180]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[181,190]}],"urls":[],"media":[{"id":1186655978952908802,"id_str":"1186655978952908802","indices":[191,214],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfZU2AU4AIVgFS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfZU2AU4AIVgFS.jpg","url":"https:\/\/t.co\/RPP9nVdrrf","display_url":"pic.twitter.com\/RPP9nVdrrf","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1186655983994470400\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186655978952908802,"id_str":"1186655978952908802","indices":[191,214],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfZU2AU4AIVgFS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfZU2AU4AIVgFS.jpg","url":"https:\/\/t.co\/RPP9nVdrrf","display_url":"pic.twitter.com\/RPP9nVdrrf","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1186655983994470400\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186318434964930560,"id_str":"1186318434964930560","name":"Murat + Turk, Ph.D.","screen_name":"MuratTurkEd","location":"Cincinnati, OH","description":"Online + Learning | motivation | engagement | online presences | loving husband of + Sinem Toraman Turk \u2764\ufe0f| loving father of @bgmtrk1\u2764\ufe0f | @FulbrightTurkey","url":"https:\/\/t.co\/DmCPHu9r7d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DmCPHu9r7d","expanded_url":"http:\/\/www.ardat.net","display_url":"ardat.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":853,"listed_count":5,"created_at":"Mon + Oct 21 16:29:13 +0000 2019","favourites_count":4396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2544,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186318434964930560\/1653078596","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 13:18:05 +0000 2019","id":1186995207469813762,"id_str":"1186995207469813762","full_text":"RT + @eme2040laurenv: What a great way to keep our educators interested and entertained + while discussing important information #AECT19 #eme20\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[125,132]}],"symbols":[],"user_mentions":[{"screen_name":"eme2040laurenv","name":"Lauren + Vetrano","id":1168887657335799809,"id_str":"1168887657335799809","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 13:17:42 +0000 2019","id":1186995110459953154,"id_str":"1186995110459953154","full_text":"What + a great way to keep our educators interested and entertained while discussing + important information #AECT19 #eme2040 https:\/\/t.co\/i39KmDGzUD","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"AECT19","indices":[105,112]},{"text":"eme2040","indices":[113,121]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/i39KmDGzUD","expanded_url":"https:\/\/twitter.com\/IdeaCaptain\/status\/1186960304137068544","display_url":"twitter.com\/IdeaCaptain\/st\u2026","indices":[122,145]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1168887657335799809,"id_str":"1168887657335799809","name":"Lauren + Vetrano","screen_name":"eme2040laurenv","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":29,"listed_count":0,"created_at":"Tue + Sep 03 14:05:30 +0000 2019","favourites_count":6,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1168892786894090240\/HNhYB8fH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1168892786894090240\/HNhYB8fH_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186960304137068544,"quoted_status_id_str":"1186960304137068544","quoted_status_permalink":{"url":"https:\/\/t.co\/i39KmDGzUD","expanded":"https:\/\/twitter.com\/IdeaCaptain\/status\/1186960304137068544","display":"twitter.com\/IdeaCaptain\/st\u2026"},"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186960304137068544,"quoted_status_id_str":"1186960304137068544","quoted_status_permalink":{"url":"https:\/\/t.co\/i39KmDGzUD","expanded":"https:\/\/twitter.com\/IdeaCaptain\/status\/1186960304137068544","display":"twitter.com\/IdeaCaptain\/st\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 14:01:37 +0000 2019","id":1187006165109989377,"id_str":"1187006165109989377","full_text":"Super + excited about my jam-packed day at #AECT19! I''m doing a breakfast session + with graduate students, followed by a 3 hr Intro to Open Ed workshop with + @johnhiltoniii , then participating on a panel about the relationship between + affecting change and systems thinking.","truncated":false,"display_text_range":[0,271],"entities":{"hashtags":[{"text":"AECT19","indices":[41,48]}],"symbols":[],"user_mentions":[{"screen_name":"johnhiltoniii","name":"John + Hilton III","id":45002394,"id_str":"45002394","indices":[154,168]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4514361,"id_str":"4514361","name":"David + Wiley","screen_name":"opencontent","location":"WV, USA","description":"#Learning, + #StudentSuccess, #Pedagogy, #InstructionalDesign, #Open, #DataScience, #SocialEntrepreneurship, + #Music, #WestVirginia. WV8EDU on #AmateurRadio","url":"https:\/\/t.co\/cAhKaObC6x","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cAhKaObC6x","expanded_url":"http:\/\/davidwiley.org\/","display_url":"davidwiley.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13528,"friends_count":452,"listed_count":822,"created_at":"Fri + Apr 13 16:07:05 +0000 2007","favourites_count":6762,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":7248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/781256117884030976\/m0ZvHf4j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/781256117884030976\/m0ZvHf4j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4514361\/1547424759","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":23,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 14:13:40 +0000 2019","id":1187009197193359360,"id_str":"1187009197193359360","full_text":"Good + morning #aect19 peeps. This morning I''m having a breakfast of champions https:\/\/t.co\/kx1Cmy2wLD","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"aect19","indices":[13,20]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187009177429794816,"id_str":"1187009177429794816","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHkajs3U4AAXFr-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHkajs3U4AAXFr-.jpg","url":"https:\/\/t.co\/kx1Cmy2wLD","display_url":"pic.twitter.com\/kx1Cmy2wLD","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1187009197193359360\/photo\/1","type":"photo","sizes":{"large":{"w":400,"h":294,"resize":"fit"},"medium":{"w":400,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":294,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187009177429794816,"id_str":"1187009177429794816","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHkajs3U4AAXFr-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHkajs3U4AAXFr-.jpg","url":"https:\/\/t.co\/kx1Cmy2wLD","display_url":"pic.twitter.com\/kx1Cmy2wLD","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1187009197193359360\/photo\/1","type":"animated_gif","sizes":{"large":{"w":400,"h":294,"resize":"fit"},"medium":{"w":400,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":294,"resize":"fit"}},"video_info":{"aspect_ratio":[200,147],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHkajs3U4AAXFr-.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 03:04:10 +0000 2019","id":1186840712635125760,"id_str":"1186840712635125760","full_text":"@Katelenert + @AECT \ud83d\ude42\ud83d\ude42\ud83d\ude42 #aect19inspired!","truncated":false,"display_text_range":[18,38],"entities":{"hashtags":[{"text":"aect19inspired","indices":[22,37]}],"symbols":[],"user_mentions":[{"screen_name":"Katelenert","name":"kate + lenert","id":1243927524,"id_str":"1243927524","indices":[0,11]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[12,17]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1186667212880273408,"in_reply_to_status_id_str":"1186667212880273408","in_reply_to_user_id":1243927524,"in_reply_to_user_id_str":"1243927524","in_reply_to_screen_name":"Katelenert","user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Wed + Oct 23 06:15:36 +0000 2019","id":1186888887060140032,"id_str":"1186888887060140032","full_text":"Getting + to meet David Merrill, education researcher and Professor Emeritus at Utah + State University; known for developing \"The Component Display Theory\", \"Instructional + Transaction Theory\" and the \"First Principles of Instruction.\"\n\n#EmporiaStateUniversity + #IDT #AECT2019 https:\/\/t.co\/XQRLMaiL8X","truncated":false,"display_text_range":[0,271],"entities":{"hashtags":[{"text":"EmporiaStateUniversity","indices":[233,256]},{"text":"IDT","indices":[257,261]},{"text":"AECT2019","indices":[262,271]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186888869536382976,"id_str":"1186888869536382976","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHitI3CUwAAvk4g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHitI3CUwAAvk4g.jpg","url":"https:\/\/t.co\/XQRLMaiL8X","display_url":"pic.twitter.com\/XQRLMaiL8X","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186888887060140032\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186888869536382976,"id_str":"1186888869536382976","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHitI3CUwAAvk4g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHitI3CUwAAvk4g.jpg","url":"https:\/\/t.co\/XQRLMaiL8X","display_url":"pic.twitter.com\/XQRLMaiL8X","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186888887060140032\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1186888869536391170,"id_str":"1186888869536391170","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EHitI3CU4AIS23v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHitI3CU4AIS23v.jpg","url":"https:\/\/t.co\/XQRLMaiL8X","display_url":"pic.twitter.com\/XQRLMaiL8X","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186888887060140032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":495,"h":680,"resize":"fit"},"large":{"w":1492,"h":2048,"resize":"fit"},"medium":{"w":874,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 13:16:31 +0000 2019","id":1186994812064600065,"id_str":"1186994812064600065","full_text":"RT + @DrTerriC: It\u2019s cool that the @AECT conference committee set up a \u201clounge\u201d + area in the pavilion so that you could buy coffee in a much s\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[3,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[33,38]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 13:12:26 +0000 2019","id":1186993787559497733,"id_str":"1186993787559497733","full_text":"It\u2019s + cool that the @AECT conference committee set up a \u201clounge\u201d area + in the pavilion so that you could buy coffee in a much shorter line than fortuna. + #aect19inspired #inspireme by listening to member feedback.","truncated":false,"display_text_range":[0,210],"entities":{"hashtags":[{"text":"aect19inspired","indices":[151,166]},{"text":"inspireme","indices":[167,177]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[19,24]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 12:50:33 +0000 2019","id":1186988280660709376,"id_str":"1186988280660709376","full_text":"RT + @RitaFennelly: Interested in supporting an @Aect presentation? Whether you + can join or not, help us demonstrate the power of social medi\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[46,51]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 22:44:12 +0000 2019","id":1186775286592851968,"id_str":"1186775286592851968","full_text":"Interested + in supporting an @Aect presentation? Whether you can join or not, help us + demonstrate the power of social media for the Wed panel It\u2019s a Small + World: Decreasing the Distance One Tweet, Snap, & Post at a Time by tagging + your home #aect19inspired https:\/\/t.co\/T9ciynGWoI","truncated":false,"display_text_range":[0,283],"entities":{"hashtags":[{"text":"aect19inspired","indices":[244,259]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[28,33]}],"urls":[{"url":"https:\/\/t.co\/T9ciynGWoI","expanded_url":"http:\/\/bit.ly\/mapconnect","display_url":"bit.ly\/mapconnect","indices":[260,283]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 14:56:37 +0000 2019","id":1187020005881212928,"id_str":"1187020005881212928","full_text":"RT + @ChangeIt4Better: #AECT2019 Join us in Vegas Wed, Oct 23, 3:00 to 3:50pm, + Convention Center, Ballroom C! @adriannewilson_ @UT_IDT @utamp\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT2019","indices":[21,30]}],"symbols":[],"user_mentions":[{"screen_name":"ChangeIt4Better","name":"Dr. + Suzanne Ensmann","id":1596150056,"id_str":"1596150056","indices":[3,19]},{"screen_name":"adriannewilson_","name":"Adrianne + Wilson","id":772896038566948864,"id_str":"772896038566948864","indices":[108,124]},{"screen_name":"UT_IDT","name":"UT + IDT Program","id":2205686646,"id_str":"2205686646","indices":[125,132]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2205686646,"id_str":"2205686646","name":"UT + IDT Program","screen_name":"UT_IDT","location":"\ud83d\udccdTampa, Florida","description":"Instructional + Design & Technology Master Program at the @UofTampa \ud83d\udcbb \ud83d\udcda + #instructionaldesign #edtech #learning #design #technology","url":"https:\/\/t.co\/H4Yb0LBXjr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/H4Yb0LBXjr","expanded_url":"http:\/\/www.ut.edu\/idt","display_url":"ut.edu\/idt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":484,"friends_count":637,"listed_count":24,"created_at":"Wed + Nov 20 22:15:34 +0000 2013","favourites_count":1017,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/986987284951126017\/Z93W1kpY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/986987284951126017\/Z93W1kpY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2205686646\/1607182131","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 19:28:35 +0000 2019","id":1185638894160830471,"id_str":"1185638894160830471","full_text":"#AECT2019 + Join us in Vegas Wed, Oct 23, 3:00 to 3:50pm, Convention Center, Ballroom + C! @adriannewilson_ @UT_IDT @utampaedu https:\/\/t.co\/1pox25eQO3","truncated":false,"display_text_range":[0,122],"entities":{"hashtags":[{"text":"AECT2019","indices":[0,9]}],"symbols":[],"user_mentions":[{"screen_name":"adriannewilson_","name":"Adrianne + Wilson","id":772896038566948864,"id_str":"772896038566948864","indices":[87,103]},{"screen_name":"UT_IDT","name":"UT + IDT Program","id":2205686646,"id_str":"2205686646","indices":[104,111]},{"screen_name":"UTampaEDU","name":"UTampa + Dept. of Education","id":1321947258435362817,"id_str":"1321947258435362817","indices":[112,122]}],"urls":[],"media":[{"id":1185638888888586246,"id_str":"1185638888888586246","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQ8SaQX0AYoUj-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQ8SaQX0AYoUj-.jpg","url":"https:\/\/t.co\/1pox25eQO3","display_url":"pic.twitter.com\/1pox25eQO3","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1185638894160830471\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":386,"resize":"fit"},"medium":{"w":1200,"h":681,"resize":"fit"},"large":{"w":1280,"h":726,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185638888888586246,"id_str":"1185638888888586246","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQ8SaQX0AYoUj-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQ8SaQX0AYoUj-.jpg","url":"https:\/\/t.co\/1pox25eQO3","display_url":"pic.twitter.com\/1pox25eQO3","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1185638894160830471\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":386,"resize":"fit"},"medium":{"w":1200,"h":681,"resize":"fit"},"large":{"w":1280,"h":726,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 05:59:55 +0000 2019","id":1186884939377250306,"id_str":"1186884939377250306","full_text":"I + wonder what will be discussed today during the AECT conference! What is the + theory of virtuality culture and how is it beneficial in the realm of education?!\n#aect2019 + #aect19inspired #fsu2040 #eme2040 https:\/\/t.co\/tG0gdk8Cf7","truncated":false,"display_text_range":[0,203],"entities":{"hashtags":[{"text":"aect2019","indices":[160,169]},{"text":"aect19inspired","indices":[170,185]},{"text":"fsu2040","indices":[186,194]},{"text":"eme2040","indices":[195,203]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tG0gdk8Cf7","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186842680665485312","display_url":"twitter.com\/DrVirtuality\/s\u2026","indices":[204,227]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1168889274466545664,"id_str":"1168889274466545664","name":"Kadesha","screen_name":"Kadeshaaa_","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":14,"listed_count":0,"created_at":"Tue + Sep 03 14:12:28 +0000 2019","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":32,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_normal.png","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186842680665485312,"quoted_status_id_str":"1186842680665485312","quoted_status_permalink":{"url":"https:\/\/t.co\/tG0gdk8Cf7","expanded":"https:\/\/twitter.com\/DrVirtuality\/status\/1186842680665485312","display":"twitter.com\/DrVirtuality\/s\u2026"},"quoted_status":{"created_at":"Wed + Oct 23 03:12:00 +0000 2019","id":1186842680665485312,"id_str":"1186842680665485312","full_text":"See + you tomorrow @aect! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/rnWKqhSFyl","truncated":false,"display_text_range":[0,56],"entities":{"hashtags":[{"text":"AECT19","indices":[33,40]},{"text":"AECT19inspired","indices":[41,56]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[17,22]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[24,32]}],"urls":[],"media":[{"id":1185705645468577792,"id_str":"1185705645468577792","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","url":"https:\/\/t.co\/rnWKqhSFyl","display_url":"pic.twitter.com\/rnWKqhSFyl","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186842680665485312\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185705645468577792,"id_str":"1185705645468577792","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","url":"https:\/\/t.co\/rnWKqhSFyl","display_url":"pic.twitter.com\/rnWKqhSFyl","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186842680665485312\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 14:36:24 +0000 2019","id":1187014917653581825,"id_str":"1187014917653581825","full_text":"The + Design competition judges luncheon. The finalist presentations were inspiring! + #aect19 https:\/\/t.co\/xBTNGoEjnu","truncated":false,"display_text_range":[0,90],"entities":{"hashtags":[{"text":"aect19","indices":[83,90]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187014910590406656,"id_str":"1187014910590406656","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkfxajVUAAFTsk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkfxajVUAAFTsk.jpg","url":"https:\/\/t.co\/xBTNGoEjnu","display_url":"pic.twitter.com\/xBTNGoEjnu","expanded_url":"https:\/\/twitter.com\/profoyarzun\/status\/1187014917653581825\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187014910590406656,"id_str":"1187014910590406656","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EHkfxajVUAAFTsk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHkfxajVUAAFTsk.jpg","url":"https:\/\/t.co\/xBTNGoEjnu","display_url":"pic.twitter.com\/xBTNGoEjnu","expanded_url":"https:\/\/twitter.com\/profoyarzun\/status\/1187014917653581825\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19023356,"id_str":"19023356","name":"Beth + Oyarzun","screen_name":"profoyarzun","location":"Charlotte, NC","description":"Clinical + Associate Professor and director of the Learning, Design and Technology program + at UNCC, wife, mom, and scuba diver.","url":"https:\/\/t.co\/GKjzX92eV9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GKjzX92eV9","expanded_url":"https:\/\/sites.google.com\/uncc.edu\/bethoyarzun\/home?authuser=2","display_url":"sites.google.com\/uncc.edu\/betho\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":295,"friends_count":523,"listed_count":15,"created_at":"Thu + Jan 15 14:35:36 +0000 2009","favourites_count":1232,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1082,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650037082346422272\/X3Iy9bMz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650037082346422272\/X3Iy9bMz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19023356\/1566681139","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},{"created_at":"Wed + Oct 23 04:24:27 +0000 2019","id":1186860913619431424,"id_str":"1186860913619431424","full_text":"RT + @DrVirtuality: See you tomorrow @aect! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/rnWKqhSFyl","truncated":false,"display_text_range":[0,98],"entities":{"hashtags":[{"text":"AECT19","indices":[51,58]},{"text":"AECT19inspired","indices":[59,74]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[35,40]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[42,50]}],"urls":[],"media":[{"id":1185705645468577792,"id_str":"1185705645468577792","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","url":"https:\/\/t.co\/rnWKqhSFyl","display_url":"pic.twitter.com\/rnWKqhSFyl","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186842680665485312\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"source_status_id":1186842680665485312,"source_status_id_str":"1186842680665485312","source_user_id":15667548,"source_user_id_str":"15667548"}]},"extended_entities":{"media":[{"id":1185705645468577792,"id_str":"1185705645468577792","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","url":"https:\/\/t.co\/rnWKqhSFyl","display_url":"pic.twitter.com\/rnWKqhSFyl","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186842680665485312\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"source_status_id":1186842680665485312,"source_status_id_str":"1186842680665485312","source_user_id":15667548,"source_user_id_str":"15667548","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 03:12:00 +0000 2019","id":1186842680665485312,"id_str":"1186842680665485312","full_text":"See + you tomorrow @aect! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/rnWKqhSFyl","truncated":false,"display_text_range":[0,56],"entities":{"hashtags":[{"text":"AECT19","indices":[33,40]},{"text":"AECT19inspired","indices":[41,56]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[17,22]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[24,32]}],"urls":[],"media":[{"id":1185705645468577792,"id_str":"1185705645468577792","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","url":"https:\/\/t.co\/rnWKqhSFyl","display_url":"pic.twitter.com\/rnWKqhSFyl","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186842680665485312\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185705645468577792,"id_str":"1185705645468577792","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","url":"https:\/\/t.co\/rnWKqhSFyl","display_url":"pic.twitter.com\/rnWKqhSFyl","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186842680665485312\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 03:12:00 +0000 2019","id":1186842680665485312,"id_str":"1186842680665485312","full_text":"See + you tomorrow @aect! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/rnWKqhSFyl","truncated":false,"display_text_range":[0,56],"entities":{"hashtags":[{"text":"AECT19","indices":[33,40]},{"text":"AECT19inspired","indices":[41,56]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[17,22]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[24,32]}],"urls":[],"media":[{"id":1185705645468577792,"id_str":"1185705645468577792","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","url":"https:\/\/t.co\/rnWKqhSFyl","display_url":"pic.twitter.com\/rnWKqhSFyl","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186842680665485312\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185705645468577792,"id_str":"1185705645468577792","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5AJ5UcAAJdI7.jpg","url":"https:\/\/t.co\/rnWKqhSFyl","display_url":"pic.twitter.com\/rnWKqhSFyl","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186842680665485312\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 14:53:34 +0000 2019","id":1187019235660185600,"id_str":"1187019235660185600","full_text":"Good + morning #AECT19! The Learner Engagement Division is having their membership + meeting at 3pm today in Conf Room 8. Stop by to connect with other members + and hear about open board positions, division awards, and opportunities to + present your work to @AECT and beyond!","truncated":false,"display_text_range":[0,269],"entities":{"hashtags":[{"text":"AECT19","indices":[13,20]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[252,257]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1186837371842650115%2C1186834687211139072%2C1186833541465657344%2C1186832942590517250%2C1186832939167797248%2C1186832497939628033%2C1186832221602082817%2C1186832170607767552%2C1186831896736456704%2C1186831821977210880%2C1186831821977210880%2C1186816999046795264%2C1186816009178664960%2C1186815602859499520%2C1186815044417286144%2C1186814433328324608%2C1186812949052022785%2C1186812330153103360%2C1186811743571337218%2C1186810735906545664%2C1186810577651408897%2C1186810232409772032%2C1186810232409772032%2C1186807555596505088%2C1186805800569696257%2C1186805263245795328%2C1186804701536219137%2C1186802855128158209%2C1186801576842649600%2C1186799142732910592%2C1186796311657381888%2C1186795835872268288%2C1186795720919044096%2C1186795482724667398%2C1186795311567642624%2C1186795062719434752%2C1186794862613417984%2C1186794729691705344%2C1186793882006065152%2C1186793802654085120%2C1186793319214374912%2C1186793319214374912%2C1186792180855132160%2C1186791865732829184%2C1186791619996971008%2C1186790153068564485%2C1186788628166373376%2C1186786917397872640%2C1186785756963958784%2C1186785544778342400%2C1186783813868765184%2C1186783423815282688%2C1186778390482735105%2C1186778085351276544%2C1186778085351276544%2C1186776996946120705%2C1186776194827505665%2C1186775286592851968%2C1186774446876446722%2C1186773398149574657%2C1186770930439049219%2C1186770788797411328%2C1186769501578289152%2C1186768619755036672%2C1186768576310435840%2C1186768192473124865%2C1186768167357448193%2C1186767997341290496%2C1186767638099136512%2C1186767624920678402%2C1186767155347353600%2C1186766815667445760%2C1186766175478439936%2C1186766164099121152%2C1186765619779293186%2C1186765163602436097%2C1186764774362636289%2C1186764622520446978%2C1186764280860819456%2C1186764164103987200%2C1186764080331153408%2C1186763476280074240%2C1186763476280074240%2C1186762490505388032%2C1186762380107104256%2C1186760863052525569%2C1186760380569145344%2C1186759809573408768%2C1186759094247444481%2C1186758135790424064%2C1186757708558417920%2C1186756232557645824%2C1186756032715821056%2C1186756007189331968%2C1186755333139513344%2C1186755006025744384%2C1186754649774125056%2C1186754450095927296%2C1186754241659985920%2C1186753188788985856&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:51 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:51 GMT + x-transaction: 955df0e0517b7c6f + content-length: '54476' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '279' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '377' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Tue Oct 22 22:15:54 +0000 2019","id":1186768167357448193,"id_str":"1186768167357448193","full_text":"Me + presenting at #aect19 https:\/\/t.co\/BsWCVRVdxO","truncated":false,"display_text_range":[0,24],"entities":{"hashtags":[{"text":"aect19","indices":[17,24]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186768159249879040,"id_str":"1186768159249879040","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHg_WmLVUAAH-bH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHg_WmLVUAAH-bH.jpg","url":"https:\/\/t.co\/BsWCVRVdxO","display_url":"pic.twitter.com\/BsWCVRVdxO","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1186768167357448193\/photo\/1","type":"photo","sizes":{"large":{"w":498,"h":194,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":498,"h":194,"resize":"fit"},"medium":{"w":498,"h":194,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186768159249879040,"id_str":"1186768159249879040","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHg_WmLVUAAH-bH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHg_WmLVUAAH-bH.jpg","url":"https:\/\/t.co\/BsWCVRVdxO","display_url":"pic.twitter.com\/BsWCVRVdxO","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1186768167357448193\/photo\/1","type":"animated_gif","sizes":{"large":{"w":498,"h":194,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":498,"h":194,"resize":"fit"},"medium":{"w":498,"h":194,"resize":"fit"}},"video_info":{"aspect_ratio":[249,97],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHg_WmLVUAAH-bH.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:53:21 +0000 2019","id":1186762490505388032,"id_str":"1186762490505388032","full_text":"RT + @tutaleni: So many exciting presentations we have for you at #aect19 \nJoin + us #aect19inspired https:\/\/t.co\/kB8GurdSmP","truncated":false,"display_text_range":[0,120],"entities":{"hashtags":[{"text":"aect19","indices":[64,71]},{"text":"aect19inspired","indices":[81,96]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/kB8GurdSmP","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629","display_url":"twitter.com\/aectclt\/status\u2026","indices":[97,120]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:36:35 +0000 2019","id":1186697872017723392,"id_str":"1186697872017723392","full_text":"So + many exciting presentations we have for you at #aect19 \nJoin us #aect19inspired + https:\/\/t.co\/kB8GurdSmP","truncated":false,"display_text_range":[0,82],"entities":{"hashtags":[{"text":"aect19","indices":[50,57]},{"text":"aect19inspired","indices":[67,82]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kB8GurdSmP","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629","display_url":"twitter.com\/aectclt\/status\u2026","indices":[83,106]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186654169769242629,"quoted_status_id_str":"1186654169769242629","quoted_status_permalink":{"url":"https:\/\/t.co\/kB8GurdSmP","expanded":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629","display":"twitter.com\/aectclt\/status\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 14:42:55 +0000 2019","id":1186654169769242629,"id_str":"1186654169769242629","full_text":"Check + out our @CLT sessions on Tuesday! https:\/\/t.co\/Ac0HzA65hv","truncated":false,"display_text_range":[0,39],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"clt","name":"Carl + Tydingco","id":3867001,"id_str":"3867001","indices":[14,18]}],"urls":[],"media":[{"id":1186654161951084544,"id_str":"1186654161951084544","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfXrFJVUAAqbNi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfXrFJVUAAqbNi.jpg","url":"https:\/\/t.co\/Ac0HzA65hv","display_url":"pic.twitter.com\/Ac0HzA65hv","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1583,"h":2048,"resize":"fit"},"small":{"w":525,"h":680,"resize":"fit"},"medium":{"w":927,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186654161951084544,"id_str":"1186654161951084544","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfXrFJVUAAqbNi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfXrFJVUAAqbNi.jpg","url":"https:\/\/t.co\/Ac0HzA65hv","display_url":"pic.twitter.com\/Ac0HzA65hv","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1583,"h":2048,"resize":"fit"},"small":{"w":525,"h":680,"resize":"fit"},"medium":{"w":927,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905212118127042560,"id_str":"905212118127042560","name":"AECT_CLT","screen_name":"aectclt","location":"","description":"AECT + Division Exploring culture, learning, and technology with particular emphases + on championing inclusiveness and equity. Conversation at #aectclt","url":"https:\/\/t.co\/yc2CmqxA5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yc2CmqxA5M","expanded_url":"https:\/\/sites.google.com\/view\/clt-home","display_url":"sites.google.com\/view\/clt-home","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":26,"listed_count":4,"created_at":"Tue + Sep 05 23:32:41 +0000 2017","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":486,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905212118127042560\/1506184813","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186654169769242629,"quoted_status_id_str":"1186654169769242629","quoted_status_permalink":{"url":"https:\/\/t.co\/kB8GurdSmP","expanded":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629","display":"twitter.com\/aectclt\/status\u2026"},"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:21:12 +0000 2019","id":1186769501578289152,"id_str":"1186769501578289152","full_text":"RT + @SultanMutlaq: #aect19inspired #AECTech2019 Improving Student Performance + https:\/\/t.co\/jB2BHlipl0","truncated":false,"display_text_range":[0,105],"entities":{"hashtags":[{"text":"aect19inspired","indices":[18,33]},{"text":"AECTech2019","indices":[34,46]}],"symbols":[],"user_mentions":[{"screen_name":"SultanMutlaq","name":"SultanMutlaq","id":370132373,"id_str":"370132373","indices":[3,16]}],"urls":[],"media":[{"id":1186765154261749760,"id_str":"1186765154261749760","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","url":"https:\/\/t.co\/jB2BHlipl0","display_url":"pic.twitter.com\/jB2BHlipl0","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186765163602436097\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1186765163602436097,"source_status_id_str":"1186765163602436097","source_user_id":370132373,"source_user_id_str":"370132373"}]},"extended_entities":{"media":[{"id":1186765154261749760,"id_str":"1186765154261749760","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","url":"https:\/\/t.co\/jB2BHlipl0","display_url":"pic.twitter.com\/jB2BHlipl0","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186765163602436097\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1186765163602436097,"source_status_id_str":"1186765163602436097","source_user_id":370132373,"source_user_id_str":"370132373","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":323342808,"id_str":"323342808","name":"Abdulkareem + Omair","screen_name":"Abdulkareem0566","location":"United States","description":"English + Teacher. BA in English and Translation. MA in translation.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":85,"listed_count":3,"created_at":"Fri + Jun 24 17:26:16 +0000 2011","favourites_count":4583,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":47110,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1266065187339145216\/VT1Ue55y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1266065187339145216\/VT1Ue55y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/323342808\/1574650275","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 22:03:58 +0000 2019","id":1186765163602436097,"id_str":"1186765163602436097","full_text":"#aect19inspired + #AECTech2019 Improving Student Performance https:\/\/t.co\/jB2BHlipl0","truncated":false,"display_text_range":[0,63],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]},{"text":"AECTech2019","indices":[16,28]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186765154261749760,"id_str":"1186765154261749760","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","url":"https:\/\/t.co\/jB2BHlipl0","display_url":"pic.twitter.com\/jB2BHlipl0","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186765163602436097\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186765154261749760,"id_str":"1186765154261749760","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","url":"https:\/\/t.co\/jB2BHlipl0","display_url":"pic.twitter.com\/jB2BHlipl0","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186765163602436097\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186759650869268480,"in_reply_to_status_id_str":"1186759650869268480","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 01:22:11 +0000 2019","id":1186815044417286144,"id_str":"1186815044417286144","full_text":"Saw + a great @aect poster presentation called An exploration of K-12 students\u2019 + conceptions of learning with technology: A drawing analysis for students in + a 1:1 #Chromebook environment Looking forward to reading the paper #aect19inspired + #aect2019","truncated":false,"display_text_range":[0,246],"entities":{"hashtags":[{"text":"Chromebook","indices":[160,171]},{"text":"aect19inspired","indices":[221,236]},{"text":"aect2019","indices":[237,246]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[12,17]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:17:42 +0000 2019","id":1186768619755036672,"id_str":"1186768619755036672","full_text":"RT + @EdTech_Books: Excited to present on our open textbook platform at the Poster + Session walkthrough at @ 4pm #aect19 https:\/\/t.co\/5FduWqSg\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[110,117]}],"symbols":[],"user_mentions":[{"screen_name":"EdTech_Books","name":"EdTech + Books","id":1113476916076367872,"id_str":"1113476916076367872","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17639668,"id_str":"17639668","name":"Rick + West","screen_name":"richardewest","location":"Provo, ut","description":"Instructional + Designer, Researcher, & Evaluator at Brigham Young University","url":"http:\/\/t.co\/Nc39wWEhGM","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Nc39wWEhGM","expanded_url":"http:\/\/richardewest.com","display_url":"richardewest.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":223,"listed_count":39,"created_at":"Wed + Nov 26 02:26:26 +0000 2008","favourites_count":799,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3339,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17639668\/1446650027","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 21:09:41 +0000 2019","id":1186751501214990336,"id_str":"1186751501214990336","full_text":"Excited + to present on our open textbook platform at the Poster Session walkthrough + at @ 4pm #aect19 https:\/\/t.co\/5FduWqSgsE #opentextbooks #oer https:\/\/t.co\/TMjdrWbpCK","truncated":false,"display_text_range":[0,143],"entities":{"hashtags":[{"text":"aect19","indices":[92,99]},{"text":"opentextbooks","indices":[124,138]},{"text":"oer","indices":[139,143]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5FduWqSgsE","expanded_url":"http:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[100,123]}],"media":[{"id":1186751395464015872,"id_str":"1186751395464015872","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","url":"https:\/\/t.co\/TMjdrWbpCK","display_url":"pic.twitter.com\/TMjdrWbpCK","expanded_url":"https:\/\/twitter.com\/EdTech_Books\/status\/1186751501214990336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186751395464015872,"id_str":"1186751395464015872","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","url":"https:\/\/t.co\/TMjdrWbpCK","display_url":"pic.twitter.com\/TMjdrWbpCK","expanded_url":"https:\/\/twitter.com\/EdTech_Books\/status\/1186751501214990336\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHgwG0NU8AA4CR1.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1113476916076367872,"id_str":"1113476916076367872","name":"EdTech + Books","screen_name":"EdTech_Books","location":"","description":"All free + textbooks, all the time. Knowledge should be free, and ed tech should lead + the way! #oer #opentextbooks https:\/\/t.co\/IXVNmS1hst\n@roycekimmons","url":"https:\/\/t.co\/IXVNmSiSk1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IXVNmSiSk1","expanded_url":"https:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/IXVNmS1hst","expanded_url":"https:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[113,136]}]}},"protected":false,"followers_count":88,"friends_count":0,"listed_count":1,"created_at":"Wed + Apr 03 16:22:38 +0000 2019","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1167102969390567424\/zPs5eiTv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1167102969390567424\/zPs5eiTv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1113476916076367872\/1568320929","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 00:43:19 +0000 2019","id":1186805263245795328,"id_str":"1186805263245795328","full_text":"#aect19inspired + work completed \ud83c\udf88 the folks who came see me did like the idea. + @tecfa @FacLabUnige https:\/\/t.co\/qjxL268dTY https:\/\/t.co\/95uTnVQAqo","truncated":false,"display_text_range":[0,122],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[{"screen_name":"tecfa","name":"TECFA","id":24355006,"id_str":"24355006","indices":[79,85]},{"screen_name":"FacLabUnige","name":"FacLabUnige","id":781887225088933888,"id_str":"781887225088933888","indices":[86,98]}],"urls":[{"url":"https:\/\/t.co\/qjxL268dTY","expanded_url":"http:\/\/tecfa.unige.ch\/tecfa\/talks\/schneide\/aect19\/","display_url":"tecfa.unige.ch\/tecfa\/talks\/sc\u2026","indices":[99,122]}],"media":[{"id":1186805199043612672,"id_str":"1186805199043612672","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhhCmKU0AAiGXX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhhCmKU0AAiGXX.jpg","url":"https:\/\/t.co\/95uTnVQAqo","display_url":"pic.twitter.com\/95uTnVQAqo","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1186805263245795328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1442,"h":2048,"resize":"fit"},"medium":{"w":845,"h":1200,"resize":"fit"},"small":{"w":479,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186805199043612672,"id_str":"1186805199043612672","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhhCmKU0AAiGXX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhhCmKU0AAiGXX.jpg","url":"https:\/\/t.co\/95uTnVQAqo","display_url":"pic.twitter.com\/95uTnVQAqo","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1186805263245795328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1442,"h":2048,"resize":"fit"},"medium":{"w":845,"h":1200,"resize":"fit"},"small":{"w":479,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:00:00 +0000 2019","id":1186764164103987200,"id_str":"1186764164103987200","full_text":"Presenting + in 1 hour! Hope to see you there! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/pFWYy6ajeJ","truncated":false,"display_text_range":[0,77],"entities":{"hashtags":[{"text":"AECT19","indices":[54,61]},{"text":"AECT19inspired","indices":[62,77]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[45,53]}],"urls":[],"media":[{"id":1185701984361299968,"id_str":"1185701984361299968","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR1rDNUwAAtT_O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR1rDNUwAAtT_O.jpg","url":"https:\/\/t.co\/pFWYy6ajeJ","display_url":"pic.twitter.com\/pFWYy6ajeJ","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186764164103987200\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185701984361299968,"id_str":"1185701984361299968","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR1rDNUwAAtT_O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR1rDNUwAAtT_O.jpg","url":"https:\/\/t.co\/pFWYy6ajeJ","display_url":"pic.twitter.com\/pFWYy6ajeJ","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186764164103987200\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 23:16:32 +0000 2019","id":1186783423815282688,"id_str":"1186783423815282688","full_text":"Get + INSPIRED by my original Cards Against AECT at the @tedaect Game Night TONIGHT + from 6-8pm - Convention Center, Ballroom G - BE THERE! #aect2019 #aect19inspired + https:\/\/t.co\/YBEdFOmpC3","truncated":false,"display_text_range":[0,162],"entities":{"hashtags":[{"text":"aect2019","indices":[137,146]},{"text":"aect19inspired","indices":[147,162]}],"symbols":[],"user_mentions":[{"screen_name":"tedaect","name":"TED + AECT","id":2165058337,"id_str":"2165058337","indices":[54,62]}],"urls":[],"media":[{"id":1186783418958303232,"id_str":"1186783418958303232","indices":[163,186],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhNO1BVUAAtwoH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhNO1BVUAAtwoH.jpg","url":"https:\/\/t.co\/YBEdFOmpC3","display_url":"pic.twitter.com\/YBEdFOmpC3","expanded_url":"https:\/\/twitter.com\/NeumannKL\/status\/1186783423815282688\/photo\/1","type":"photo","sizes":{"medium":{"w":960,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":960,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186783418958303232,"id_str":"1186783418958303232","indices":[163,186],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhNO1BVUAAtwoH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhNO1BVUAAtwoH.jpg","url":"https:\/\/t.co\/YBEdFOmpC3","display_url":"pic.twitter.com\/YBEdFOmpC3","expanded_url":"https:\/\/twitter.com\/NeumannKL\/status\/1186783423815282688\/photo\/1","type":"photo","sizes":{"medium":{"w":960,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":960,"h":720,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":281735316,"id_str":"281735316","name":"Dr. + Kalianne L. Neumann","screen_name":"NeumannKL","location":"Stillwater, OK","description":"Assistant + Professor \u2013 Oklahoma State University \u2013 Learning, Design, and Technology","url":"https:\/\/t.co\/C5ihHdSiId","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/C5ihHdSiId","expanded_url":"http:\/\/bit.ly\/RevisionAssistanttoo","display_url":"bit.ly\/RevisionAssist\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":200,"friends_count":194,"listed_count":15,"created_at":"Wed + Apr 13 21:33:05 +0000 2011","favourites_count":445,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":276,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204971265573961729\/UF8Xgwm2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281735316\/1412853928","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:26:19 +0000 2019","id":1186770788797411328,"id_str":"1186770788797411328","full_text":"Please + consider submitting a proposal for the Systems Thinking & Change Division''s + special issue of @AECTTechTrends!! #aect19 #aectstc #aect19inspired https:\/\/t.co\/nQzSaUhgi2","truncated":false,"display_text_range":[0,178],"entities":{"hashtags":[{"text":"aect19","indices":[122,129]},{"text":"aectstc","indices":[130,138]},{"text":"aect19inspired","indices":[139,154]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[104,119]}],"urls":[{"url":"https:\/\/t.co\/nQzSaUhgi2","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[155,178]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 02:31:32 +0000 2019","id":1186832497939628033,"id_str":"1186832497939628033","full_text":"RT + @ZhenXu0905: Presented two studies with @edneuro @smreeves1 and @tshepppky\nabout + visuospatial learning at #aect19 https:\/\/t.co\/eSswSqzcT9","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ZhenXu0905","name":"Zhen + Xu (\u5f90\u771f)","id":726269193092489216,"id_str":"726269193092489216","indices":[3,14]},{"screen_name":"edneuro","name":"Pasha + Antonenko","id":4070273452,"id_str":"4070273452","indices":[43,51]},{"screen_name":"smreeves1","name":"Shalaunda + Reeves","id":2845958981,"id_str":"2845958981","indices":[52,62]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 01:09:04 +0000 2019","id":1186811743571337218,"id_str":"1186811743571337218","full_text":"Presented + two studies with @edneuro @smreeves1 and @tshepppky\nabout visuospatial learning + at #aect19 https:\/\/t.co\/eSswSqzcT9","truncated":false,"display_text_range":[0,100],"entities":{"hashtags":[{"text":"aect19","indices":[93,100]}],"symbols":[],"user_mentions":[{"screen_name":"edneuro","name":"Pasha + Antonenko","id":4070273452,"id_str":"4070273452","indices":[27,35]},{"screen_name":"smreeves1","name":"Shalaunda + Reeves","id":2845958981,"id_str":"2845958981","indices":[36,46]}],"urls":[],"media":[{"id":1186811721979052032,"id_str":"1186811721979052032","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhm-R_UwAAALat.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhm-R_UwAAALat.jpg","url":"https:\/\/t.co\/eSswSqzcT9","display_url":"pic.twitter.com\/eSswSqzcT9","expanded_url":"https:\/\/twitter.com\/ZhenXu0905\/status\/1186811743571337218\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186811721979052032,"id_str":"1186811721979052032","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhm-R_UwAAALat.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhm-R_UwAAALat.jpg","url":"https:\/\/t.co\/eSswSqzcT9","display_url":"pic.twitter.com\/eSswSqzcT9","expanded_url":"https:\/\/twitter.com\/ZhenXu0905\/status\/1186811743571337218\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1186811733521780736,"id_str":"1186811733521780736","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhm-8_U0AAi972.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhm-8_U0AAi972.jpg","url":"https:\/\/t.co\/eSswSqzcT9","display_url":"pic.twitter.com\/eSswSqzcT9","expanded_url":"https:\/\/twitter.com\/ZhenXu0905\/status\/1186811743571337218\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":726269193092489216,"id_str":"726269193092489216","name":"Zhen + Xu (\u5f90\u771f)","screen_name":"ZhenXu0905","location":"Gainesville, FL","description":"Ph.D. + in Ed Tech @UF | STEM for ALL | visuospatial scaffolding | maker | gourmet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":97,"friends_count":146,"listed_count":2,"created_at":"Sat + Apr 30 04:37:23 +0000 2016","favourites_count":464,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":104,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513678812449591298\/8NTJQM6f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513678812449591298\/8NTJQM6f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/726269193092489216\/1540525669","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:16:00 +0000 2019","id":1186768192473124865,"id_str":"1186768192473124865","full_text":"aect2 + Systems Thinking & Change committee board meeting \ud83d\ude00 Thank you + Dr. Bond for a great past year as President! #aect19 #aectinspired19 https:\/\/t.co\/3QzjzVkFjb","truncated":false,"display_text_range":[0,164],"entities":{"hashtags":[{"text":"aect19","indices":[117,124]},{"text":"aectinspired19","indices":[125,140]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/3QzjzVkFjb","expanded_url":"https:\/\/www.instagram.com\/p\/B379jLsDJhB\/?igshid=11094yzu8ay1v","display_url":"instagram.com\/p\/B379jLsDJhB\/\u2026","indices":[141,164]}]},"source":"\u003ca + href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:46:53 +0000 2019","id":1186760863052525569,"id_str":"1186760863052525569","full_text":"RT + @Gaston_teach: Enjoyed presenting this morning. #aect19inspired @USACOE @USouthAL_CoInS + https:\/\/t.co\/urUUxCIdv5","truncated":false,"display_text_range":[0,114],"entities":{"hashtags":[{"text":"aect19inspired","indices":[51,66]}],"symbols":[],"user_mentions":[{"screen_name":"Gaston_teach","name":"Dr. + Joe Gaston","id":874874000,"id_str":"874874000","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 18:53:18 +0000 2019","id":1186717179049209856,"id_str":"1186717179049209856","full_text":"Enjoyed + presenting this morning. #aect19inspired @USACOE @USouthAL_CoInS https:\/\/t.co\/urUUxCIdv5","truncated":false,"display_text_range":[0,72],"entities":{"hashtags":[{"text":"aect19inspired","indices":[33,48]}],"symbols":[],"user_mentions":[{"screen_name":"USouthAL_CoInS","name":"Couns + & Instr Sci","id":784214336407470080,"id_str":"784214336407470080","indices":[57,72]}],"urls":[],"media":[{"id":1186717173126856705,"id_str":"1186717173126856705","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQ-0EVAAEE3ek.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQ-0EVAAEE3ek.jpg","url":"https:\/\/t.co\/urUUxCIdv5","display_url":"pic.twitter.com\/urUUxCIdv5","expanded_url":"https:\/\/twitter.com\/Gaston_teach\/status\/1186717179049209856\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186717173126856705,"id_str":"1186717173126856705","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQ-0EVAAEE3ek.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQ-0EVAAEE3ek.jpg","url":"https:\/\/t.co\/urUUxCIdv5","display_url":"pic.twitter.com\/urUUxCIdv5","expanded_url":"https:\/\/twitter.com\/Gaston_teach\/status\/1186717179049209856\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":874874000,"id_str":"874874000","name":"Dr. + Joe Gaston","screen_name":"Gaston_teach","location":"","description":"father, + husband, teacher, life-long learner, doctor of education, assistant professor, + researcher","url":"https:\/\/t.co\/j9z9kEvRKT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/j9z9kEvRKT","expanded_url":"http:\/\/joepgaston.wordpress.com","display_url":"joepgaston.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1122,"friends_count":939,"listed_count":10,"created_at":"Fri + Oct 12 03:42:10 +0000 2012","favourites_count":1699,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1506,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1266080873516093441\/zLYl8Eo1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1266080873516093441\/zLYl8Eo1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/874874000\/1455820517","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:11:53 +0000 2019","id":1186767155347353600,"id_str":"1186767155347353600","full_text":"Be + sure to come to my \u201c9 events of instruction\u201d presentation Thursday + at 8:53am in pavilion 19. Just kidding, I am dead. #aect19","truncated":false,"display_text_range":[0,128],"entities":{"hashtags":[{"text":"aect19","indices":[121,128]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 02:33:18 +0000 2019","id":1186832942590517250,"id_str":"1186832942590517250","full_text":"RT + @pazureka: Best presentation I saw today at #aect19! Enjoyed hearing abt @SBarksway''s + work using tech integrated menus for students to p\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[47,54]}],"symbols":[],"user_mentions":[{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[3,12]},{"screen_name":"SBarksway","name":"Sarah + Barksdale","id":908737706699710464,"id_str":"908737706699710464","indices":[76,86]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":195877781,"id_str":"195877781","name":"Learning + Technologies @ University of Minnesota","screen_name":"LT_UMN","location":"University + of Minnesota","description":"Learning Technologies Program within the Department + of Curriculum and Instruction, College of Education and Human Development","url":"http:\/\/t.co\/PSBggPI6MD","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/PSBggPI6MD","expanded_url":"http:\/\/lt.umn.edu","display_url":"lt.umn.edu","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":2254,"friends_count":1540,"listed_count":109,"created_at":"Mon + Sep 27 20:02:07 +0000 2010","favourites_count":3503,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3535,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1260656941778362370\/DDYyxywe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1260656941778362370\/DDYyxywe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/195877781\/1593118359","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 23:43:16 +0000 2019","id":1186790153068564485,"id_str":"1186790153068564485","full_text":"Best + presentation I saw today at #aect19! Enjoyed hearing abt @SBarksway''s work + using tech integrated menus for students to pursue their interests while demonstrating + competence in more meaningful + creative ways. @AECT @UMN_CI https:\/\/t.co\/TAjYOVLoO9","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"aect19","indices":[33,40]}],"symbols":[],"user_mentions":[{"screen_name":"SBarksway","name":"Sarah + Barksdale","id":908737706699710464,"id_str":"908737706699710464","indices":[62,72]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[214,219]},{"screen_name":"UMN_CI","name":"U + of MN CEHD C&I","id":759684692,"id_str":"759684692","indices":[220,227]}],"urls":[],"media":[{"id":1186790142003908608,"id_str":"1186790142003908608","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","url":"https:\/\/t.co\/TAjYOVLoO9","display_url":"pic.twitter.com\/TAjYOVLoO9","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":972,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":645,"resize":"fit"},"large":{"w":1024,"h":972,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186790142003908608,"id_str":"1186790142003908608","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","url":"https:\/\/t.co\/TAjYOVLoO9","display_url":"pic.twitter.com\/TAjYOVLoO9","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":972,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":645,"resize":"fit"},"large":{"w":1024,"h":972,"resize":"fit"}},"ext_alt_text":null},{"id":1186790148622569473,"id_str":"1186790148622569473","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhTWi-U0AEx9jJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhTWi-U0AEx9jJ.jpg","url":"https:\/\/t.co\/TAjYOVLoO9","display_url":"pic.twitter.com\/TAjYOVLoO9","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":601,"resize":"fit"},"large":{"w":1024,"h":601,"resize":"fit"},"small":{"w":680,"h":399,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 23:24:57 +0000 2019","id":1186785544778342400,"id_str":"1186785544778342400","full_text":"#aect19 + Gallery Walk! https:\/\/t.co\/mLVUW2Myyk","truncated":false,"display_text_range":[0,21],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186783424712888320,"id_str":"1186783424712888320","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhNPKdVUAAR4RU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhNPKdVUAAR4RU.jpg","url":"https:\/\/t.co\/mLVUW2Myyk","display_url":"pic.twitter.com\/mLVUW2Myyk","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785544778342400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186783424712888320,"id_str":"1186783424712888320","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhNPKdVUAAR4RU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhNPKdVUAAR4RU.jpg","url":"https:\/\/t.co\/mLVUW2Myyk","display_url":"pic.twitter.com\/mLVUW2Myyk","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785544778342400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null},{"id":1186783424717053952,"id_str":"1186783424717053952","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhNPKeU4AAV_4t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhNPKeU4AAV_4t.jpg","url":"https:\/\/t.co\/mLVUW2Myyk","display_url":"pic.twitter.com\/mLVUW2Myyk","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785544778342400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null},{"id":1186783424717058048,"id_str":"1186783424717058048","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhNPKeU8AAKGuo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhNPKeU8AAKGuo.jpg","url":"https:\/\/t.co\/mLVUW2Myyk","display_url":"pic.twitter.com\/mLVUW2Myyk","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785544778342400\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null},{"id":1186783424712867842,"id_str":"1186783424712867842","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhNPKdVAAImuEJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhNPKdVAAImuEJ.jpg","url":"https:\/\/t.co\/mLVUW2Myyk","display_url":"pic.twitter.com\/mLVUW2Myyk","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785544778342400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:00:28 +0000 2019","id":1186764280860819456,"id_str":"1186764280860819456","full_text":"RT + @nicolapallitt reflection and discussion on intercultural collaborative research, + cultural responsiveness, inclusion, equity, fairness, ethics, sponsoring agency, + partnership, DBR #aect19 #aect19inspired @AECT @aectclt @ge_xun @KuiXieOSU + Dr. Reeves @amy_c_bradshaw DeepakS Thx https:\/\/t.co\/0v7FBWrxxN","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"aect19","indices":[184,191]},{"text":"aect19inspired","indices":[192,207]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[208,213]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[214,222]},{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[223,230]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[253,268]}],"urls":[{"url":"https:\/\/t.co\/0v7FBWrxxN","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944","display_url":"twitter.com\/nicolapallitt\/\u2026","indices":[281,304]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186692181618130944,"quoted_status_id_str":"1186692181618130944","quoted_status_permalink":{"url":"https:\/\/t.co\/0v7FBWrxxN","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944","display":"twitter.com\/nicolapallitt\/\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 17:13:58 +0000 2019","id":1186692181618130944,"id_str":"1186692181618130944","full_text":"Great + panel about collaborative research just started in Conf Room 1 @AECT @aectclt + #aect19inspired https:\/\/t.co\/Po9ALRdpN7","truncated":false,"display_text_range":[0,99],"entities":{"hashtags":[{"text":"aect19inspired","indices":[84,99]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[69,74]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[75,83]}],"urls":[],"media":[{"id":1186692170176057344,"id_str":"1186692170176057344","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf6Pc0U0AAHbIs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf6Pc0U0AAHbIs.jpg","url":"https:\/\/t.co\/Po9ALRdpN7","display_url":"pic.twitter.com\/Po9ALRdpN7","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":291,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":438,"resize":"fit"},"medium":{"w":1024,"h":438,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186692170176057344,"id_str":"1186692170176057344","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf6Pc0U0AAHbIs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf6Pc0U0AAHbIs.jpg","url":"https:\/\/t.co\/Po9ALRdpN7","display_url":"pic.twitter.com\/Po9ALRdpN7","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":291,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":438,"resize":"fit"},"medium":{"w":1024,"h":438,"resize":"fit"}},"ext_alt_text":null},{"id":1186692177092476928,"id_str":"1186692177092476928","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf6P2lVAAATT7U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf6P2lVAAATT7U.jpg","url":"https:\/\/t.co\/Po9ALRdpN7","display_url":"pic.twitter.com\/Po9ALRdpN7","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":655,"resize":"fit"},"large":{"w":1024,"h":655,"resize":"fit"},"small":{"w":680,"h":435,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"8fa6d7a33b83ef26","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8fa6d7a33b83ef26.json","place_type":"city","name":"Paradise","full_name":"Paradise, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.2092535,35.984784],[-115.0610763,35.984784],[-115.0610763,36.137145],[-115.2092535,36.137145]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:03:58 +0000 2019","id":1186765163602436097,"id_str":"1186765163602436097","full_text":"#aect19inspired + #AECTech2019 Improving Student Performance https:\/\/t.co\/jB2BHlipl0","truncated":false,"display_text_range":[0,63],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]},{"text":"AECTech2019","indices":[16,28]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186765154261749760,"id_str":"1186765154261749760","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","url":"https:\/\/t.co\/jB2BHlipl0","display_url":"pic.twitter.com\/jB2BHlipl0","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186765163602436097\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186765154261749760,"id_str":"1186765154261749760","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","url":"https:\/\/t.co\/jB2BHlipl0","display_url":"pic.twitter.com\/jB2BHlipl0","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186765163602436097\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186759650869268480,"in_reply_to_status_id_str":"1186759650869268480","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:59:40 +0000 2019","id":1186764080331153408,"id_str":"1186764080331153408","full_text":"RT + @VanekJen: Hey @gsa_aect and\/or #aect2019 are you doing research in areas + of adult esl or adult literacy? Let\u2019s connect #aect19inspired","truncated":false,"display_text_range":[0,138],"entities":{"hashtags":[{"text":"aect2019","indices":[35,44]},{"text":"aect19inspired","indices":[123,138]}],"symbols":[],"user_mentions":[{"screen_name":"VanekJen","name":"Jen + Vanek","id":805816250,"id_str":"805816250","indices":[3,12]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[18,27]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64769037,"id_str":"64769037","name":"jenn\u03b9\u0493er + engl\u03c5nd","screen_name":"jmenglund03","location":"Settler on Dakota homelands","description":"@UMN_CI + LT PhD Candidate \u2022 @UMNews instructional designer \u2022 @GOGN_OER scholar + \u2022 @femedtech member \u2022 #OEP advocate \u2022 Pronouns: she\/her","url":"https:\/\/t.co\/cjLLex1JDn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cjLLex1JDn","expanded_url":"https:\/\/jenniferenglund.net\/","display_url":"jenniferenglund.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":662,"friends_count":627,"listed_count":72,"created_at":"Tue + Aug 11 17:10:00 +0000 2009","favourites_count":2052,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2918,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B7C8E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64769037\/1500750705","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"452568","profile_sidebar_border_color":"204207","profile_sidebar_fill_color":"060A00","profile_text_color":"618238","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 21:57:16 +0000 2019","id":1186763476280074240,"id_str":"1186763476280074240","full_text":"Hey + @gsa_aect and\/or #aect2019 are you doing research in areas of adult esl or + adult literacy? Let\u2019s connect #aect19inspired","truncated":false,"display_text_range":[0,124],"entities":{"hashtags":[{"text":"aect2019","indices":[21,30]},{"text":"aect19inspired","indices":[109,124]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[4,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":805816250,"id_str":"805816250","name":"Jen + Vanek","screen_name":"VanekJen","location":"Minneapolis MN","description":"Director + of Digital Learning and Research. EdTech Center @ World Education. Teacher + educator, researcher, and advocate. Opinions expressed here are my own.","url":"https:\/\/t.co\/HfWBBD9lZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HfWBBD9lZC","expanded_url":"http:\/\/www.edtech.worlded.org","display_url":"edtech.worlded.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":270,"listed_count":5,"created_at":"Thu + Sep 06 01:47:18 +0000 2012","favourites_count":432,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":340,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/805816250\/1637458182","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 00:03:46 +0000 2019","id":1186795311567642624,"id_str":"1186795311567642624","full_text":"RT + @SultanMutlaq: #aect19inspired #acet2019 Poster Sessions https:\/\/t.co\/bkIkXmD8I4","truncated":false,"display_text_range":[0,90],"entities":{"hashtags":[{"text":"aect19inspired","indices":[18,33]},{"text":"acet2019","indices":[34,43]}],"symbols":[],"user_mentions":[{"screen_name":"SultanMutlaq","name":"SultanMutlaq","id":370132373,"id_str":"370132373","indices":[3,16]}],"urls":[],"media":[{"id":1186794723236671488,"id_str":"1186794723236671488","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}},"source_status_id":1186794729691705344,"source_status_id_str":"1186794729691705344","source_user_id":370132373,"source_user_id_str":"370132373"}]},"extended_entities":{"media":[{"id":1186794723236671488,"id_str":"1186794723236671488","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}},"source_status_id":1186794729691705344,"source_status_id_str":"1186794729691705344","source_user_id":370132373,"source_user_id_str":"370132373","ext_alt_text":null},{"id":1186794723240890368,"id_str":"1186794723240890368","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg0wU0AAiXBP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg0wU0AAiXBP.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1186794729691705344,"source_status_id_str":"1186794729691705344","source_user_id":370132373,"source_user_id_str":"370132373","ext_alt_text":null},{"id":1186794723282845697,"id_str":"1186794723282845697","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg06VAAE_iQD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg06VAAE_iQD.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1334,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1186794729691705344,"source_status_id_str":"1186794729691705344","source_user_id":370132373,"source_user_id_str":"370132373","ext_alt_text":null},{"id":1186794723287035905,"id_str":"1186794723287035905","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg07U8AEE5Ce.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg07U8AEE5Ce.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1186794729691705344,"source_status_id_str":"1186794729691705344","source_user_id":370132373,"source_user_id_str":"370132373","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":323342808,"id_str":"323342808","name":"Abdulkareem + Omair","screen_name":"Abdulkareem0566","location":"United States","description":"English + Teacher. BA in English and Translation. MA in translation.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":85,"listed_count":3,"created_at":"Fri + Jun 24 17:26:16 +0000 2011","favourites_count":4583,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":47110,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1266065187339145216\/VT1Ue55y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1266065187339145216\/VT1Ue55y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/323342808\/1574650275","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 00:01:27 +0000 2019","id":1186794729691705344,"id_str":"1186794729691705344","full_text":"#aect19inspired + #acet2019 Poster Sessions https:\/\/t.co\/bkIkXmD8I4","truncated":false,"display_text_range":[0,48],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]},{"text":"acet2019","indices":[16,25]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186794723236671488,"id_str":"1186794723236671488","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186794723236671488,"id_str":"1186794723236671488","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}},"ext_alt_text":null},{"id":1186794723240890368,"id_str":"1186794723240890368","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg0wU0AAiXBP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg0wU0AAiXBP.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1186794723282845697,"id_str":"1186794723282845697","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg06VAAE_iQD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg06VAAE_iQD.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1334,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1186794723287035905,"id_str":"1186794723287035905","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg07U8AEE5Ce.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg07U8AEE5Ce.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186765163602436097,"in_reply_to_status_id_str":"1186765163602436097","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:28:29 +0000 2019","id":1186756232557645824,"id_str":"1186756232557645824","full_text":"RT + @EdTech_Books: Excited to present on our open textbook platform at the Poster + Session walkthrough at @ 4pm #aect19 https:\/\/t.co\/5FduWqSg\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[110,117]}],"symbols":[],"user_mentions":[{"screen_name":"EdTech_Books","name":"EdTech + Books","id":1113476916076367872,"id_str":"1113476916076367872","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 21:09:41 +0000 2019","id":1186751501214990336,"id_str":"1186751501214990336","full_text":"Excited + to present on our open textbook platform at the Poster Session walkthrough + at @ 4pm #aect19 https:\/\/t.co\/5FduWqSgsE #opentextbooks #oer https:\/\/t.co\/TMjdrWbpCK","truncated":false,"display_text_range":[0,143],"entities":{"hashtags":[{"text":"aect19","indices":[92,99]},{"text":"opentextbooks","indices":[124,138]},{"text":"oer","indices":[139,143]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5FduWqSgsE","expanded_url":"http:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[100,123]}],"media":[{"id":1186751395464015872,"id_str":"1186751395464015872","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","url":"https:\/\/t.co\/TMjdrWbpCK","display_url":"pic.twitter.com\/TMjdrWbpCK","expanded_url":"https:\/\/twitter.com\/EdTech_Books\/status\/1186751501214990336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186751395464015872,"id_str":"1186751395464015872","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","url":"https:\/\/t.co\/TMjdrWbpCK","display_url":"pic.twitter.com\/TMjdrWbpCK","expanded_url":"https:\/\/twitter.com\/EdTech_Books\/status\/1186751501214990336\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHgwG0NU8AA4CR1.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1113476916076367872,"id_str":"1113476916076367872","name":"EdTech + Books","screen_name":"EdTech_Books","location":"","description":"All free + textbooks, all the time. Knowledge should be free, and ed tech should lead + the way! #oer #opentextbooks https:\/\/t.co\/IXVNmS1hst\n@roycekimmons","url":"https:\/\/t.co\/IXVNmSiSk1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IXVNmSiSk1","expanded_url":"https:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/IXVNmS1hst","expanded_url":"https:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[113,136]}]}},"protected":false,"followers_count":88,"friends_count":0,"listed_count":1,"created_at":"Wed + Apr 03 16:22:38 +0000 2019","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1167102969390567424\/zPs5eiTv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1167102969390567424\/zPs5eiTv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1113476916076367872\/1568320929","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 00:01:59 +0000 2019","id":1186794862613417984,"id_str":"1186794862613417984","full_text":"One + more hour until our first book club meeting of the semester! So excited we + will be discussing The Culture Code by @DanielCoyle #aect19 #aect2019 #aectstc","truncated":false,"display_text_range":[0,157],"entities":{"hashtags":[{"text":"aect19","indices":[131,138]},{"text":"aect2019","indices":[139,148]},{"text":"aectstc","indices":[149,157]}],"symbols":[],"user_mentions":[{"screen_name":"DanielCoyle","name":"DanielCoyle","id":15224467,"id_str":"15224467","indices":[118,130]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":25740539,"id_str":"25740539","name":"Samantha + Blevins","screen_name":"sjblevin","location":"Dublin, VA","description":"Instructional + Designer. Learning Architect. ePortfolio Enthusiast. Maker. Connector.","url":"https:\/\/t.co\/MiKrTm0s7C","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MiKrTm0s7C","expanded_url":"http:\/\/about.me\/samanthajblevins","display_url":"about.me\/samanthajblevi\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":296,"friends_count":423,"listed_count":10,"created_at":"Sat + Mar 21 22:40:49 +0000 2009","favourites_count":467,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1094,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/902546685682966531\/gPHFejMt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/902546685682966531\/gPHFejMt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25740539\/1603239627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:26:53 +0000 2019","id":1186770930439049219,"id_str":"1186770930439049219","full_text":"RT + @veletsianos: May I suggest *Resurrect* as the 10th event of instruction? + #aect19 https:\/\/t.co\/tu7IjqqqZx","truncated":false,"display_text_range":[0,108],"entities":{"hashtags":[{"text":"aect19","indices":[77,84]}],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[{"url":"https:\/\/t.co\/tu7IjqqqZx","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1186767155347353600","display_url":"twitter.com\/FakeBobGagne\/s\u2026","indices":[85,108]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 22:17:32 +0000 2019","id":1186768576310435840,"id_str":"1186768576310435840","full_text":"May + I suggest *Resurrect* as the 10th event of instruction? #aect19 https:\/\/t.co\/tu7IjqqqZx","truncated":false,"display_text_range":[0,67],"entities":{"hashtags":[{"text":"aect19","indices":[60,67]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tu7IjqqqZx","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1186767155347353600","display_url":"twitter.com\/FakeBobGagne\/s\u2026","indices":[68,91]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186767155347353600,"quoted_status_id_str":"1186767155347353600","quoted_status_permalink":{"url":"https:\/\/t.co\/tu7IjqqqZx","expanded":"https:\/\/twitter.com\/FakeBobGagne\/status\/1186767155347353600","display":"twitter.com\/FakeBobGagne\/s\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 22:11:53 +0000 2019","id":1186767155347353600,"id_str":"1186767155347353600","full_text":"Be + sure to come to my \u201c9 events of instruction\u201d presentation Thursday + at 8:53am in pavilion 19. Just kidding, I am dead. #aect19","truncated":false,"display_text_range":[0,128],"entities":{"hashtags":[{"text":"aect19","indices":[121,128]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186767155347353600,"quoted_status_id_str":"1186767155347353600","quoted_status_permalink":{"url":"https:\/\/t.co\/tu7IjqqqZx","expanded":"https:\/\/twitter.com\/FakeBobGagne\/status\/1186767155347353600","display":"twitter.com\/FakeBobGagne\/s\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:20:34 +0000 2019","id":1186754241659985920,"id_str":"1186754241659985920","full_text":"RT + @LearnEngage: The Engaging Your Students #aect19inspired session features + researchers from @okstate and how they used @NASA to make int\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[44,59]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]},{"screen_name":"okstate","name":"Oklahoma + State Univ.","id":16011832,"id_str":"16011832","indices":[95,103]},{"screen_name":"NASA","name":"NASA","id":11348282,"id_str":"11348282","indices":[122,127]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 21:15:00 +0000 2019","id":1186752838753488903,"id_str":"1186752838753488903","full_text":"The + Engaging Your Students #aect19inspired session features researchers from + @okstate and how they used @NASA to make inter-disciplinary design challenges! + 3pm in Conf Room 8 #aect19 #studentengagement @aect @NASASTEM https:\/\/t.co\/DhykFQTcoX","truncated":false,"display_text_range":[0,218],"entities":{"hashtags":[{"text":"aect19inspired","indices":[27,42]},{"text":"aect19","indices":[176,183]},{"text":"studentengagement","indices":[184,202]}],"symbols":[],"user_mentions":[{"screen_name":"okstate","name":"Oklahoma + State Univ.","id":16011832,"id_str":"16011832","indices":[78,86]},{"screen_name":"NASA","name":"NASA","id":11348282,"id_str":"11348282","indices":[105,110]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[203,208]},{"screen_name":"NASASTEM","name":"NASA + STEM","id":238285207,"id_str":"238285207","indices":[209,218]}],"urls":[],"media":[{"id":1186683393750077440,"id_str":"1186683393750077440","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfyQmFUEAAwDY4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfyQmFUEAAwDY4.jpg","url":"https:\/\/t.co\/DhykFQTcoX","display_url":"pic.twitter.com\/DhykFQTcoX","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1186752838753488903\/photo\/1","type":"photo","sizes":{"small":{"w":453,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":1200,"resize":"fit"},"large":{"w":1366,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186683393750077440,"id_str":"1186683393750077440","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfyQmFUEAAwDY4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfyQmFUEAAwDY4.jpg","url":"https:\/\/t.co\/DhykFQTcoX","display_url":"pic.twitter.com\/DhykFQTcoX","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1186752838753488903\/photo\/1","type":"photo","sizes":{"small":{"w":453,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":1200,"resize":"fit"},"large":{"w":1366,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 02:29:09 +0000 2019","id":1186831896736456704,"id_str":"1186831896736456704","full_text":"RT + @art_brownlow: Awesome session today by @DrTerriC on using built-in iOS apps + for creativity in teaching & learning @AECT. #aect19 #aect1\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19","indices":[129,136]}],"symbols":[],"user_mentions":[{"screen_name":"art_brownlow","name":"Art + Brownlow","id":887813304311087104,"id_str":"887813304311087104","indices":[3,16]},{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[43,52]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[122,127]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 01:05:03 +0000 2019","id":1186810735906545664,"id_str":"1186810735906545664","full_text":"Awesome + session today by @DrTerriC on using built-in iOS apps for creativity in teaching + & learning @AECT. #aect19 #aect19inspired","truncated":false,"display_text_range":[0,134],"entities":{"hashtags":[{"text":"aect19","indices":[111,118]},{"text":"aect19inspired","indices":[119,134]}],"symbols":[],"user_mentions":[{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[25,34]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[104,109]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":887813304311087104,"id_str":"887813304311087104","name":"Art + Brownlow","screen_name":"art_brownlow","location":"Brownsville, TX","description":"UTRGV + Music Prof & Academic Innovation Fellow, UT System Academy of Distinguished + Teachers, ROTA 2016, \uf8ffADE 2015, Braves fan, Husband & Dad","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":291,"friends_count":338,"listed_count":5,"created_at":"Wed + Jul 19 23:16:01 +0000 2017","favourites_count":237,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":132,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887813304311087104\/1500521777","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 00:05:51 +0000 2019","id":1186795835872268288,"id_str":"1186795835872268288","full_text":"Hey + it''s @edtech_prokes presenting his poster! Go @edtechbsu at #aect19 #aect19inspired + https:\/\/t.co\/MrFUOGIQ0h","truncated":false,"display_text_range":[0,87],"entities":{"hashtags":[{"text":"aect19","indices":[64,71]},{"text":"aect19inspired","indices":[72,87]}],"symbols":[],"user_mentions":[{"screen_name":"edtech_prokes","name":"Dr. + Chris Prokes","id":757930304438931456,"id_str":"757930304438931456","indices":[9,23]},{"screen_name":"edtechbsu","name":"EDTECH@Boise + State","id":29818149,"id_str":"29818149","indices":[50,60]}],"urls":[],"media":[{"id":1186795824631541760,"id_str":"1186795824631541760","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhYg7wUcAAQYde.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhYg7wUcAAQYde.jpg","url":"https:\/\/t.co\/MrFUOGIQ0h","display_url":"pic.twitter.com\/MrFUOGIQ0h","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1186795835872268288\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186795824631541760,"id_str":"1186795824631541760","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhYg7wUcAAQYde.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhYg7wUcAAQYde.jpg","url":"https:\/\/t.co\/MrFUOGIQ0h","display_url":"pic.twitter.com\/MrFUOGIQ0h","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1186795835872268288\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3733671685,"id_str":"3733671685","name":"Jenn + Kepka","screen_name":"jennkepka","location":"Oregon, USA","description":"Outreach\/retention\/tutoring + faculty in OR; doc student in #edtech at Boise St. Past: UO, WOU, KU. \u2764 + #oer & \u2615 & \u26f8. Views my own. she\/her\/hers","url":"https:\/\/t.co\/nvazHyg5JB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nvazHyg5JB","expanded_url":"http:\/\/jennkepka.com","display_url":"jennkepka.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":700,"friends_count":1225,"listed_count":45,"created_at":"Wed + Sep 30 05:39:55 +0000 2015","favourites_count":19836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3733671685\/1446791014","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:39:51 +0000 2019","id":1186759094247444481,"id_str":"1186759094247444481","full_text":"I + will be sharing research on #virtualityculture theory! Hope to see you there! + #aect19 #aect19inspired @aect https:\/\/t.co\/PR95yPPsDn","truncated":false,"display_text_range":[0,109],"entities":{"hashtags":[{"text":"virtualityculture","indices":[30,48]},{"text":"aect19","indices":[80,87]},{"text":"aect19inspired","indices":[88,103]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[104,109]}],"urls":[{"url":"https:\/\/t.co\/PR95yPPsDn","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186743620847558656","display_url":"twitter.com\/michaelmgrant\/\u2026","indices":[110,133]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1186743620847558656,"quoted_status_id_str":"1186743620847558656","quoted_status_permalink":{"url":"https:\/\/t.co\/PR95yPPsDn","expanded":"https:\/\/twitter.com\/michaelmgrant\/status\/1186743620847558656","display":"twitter.com\/michaelmgrant\/\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 20:38:22 +0000 2019","id":1186743620847558656,"id_str":"1186743620847558656","full_text":"Gallery + walk begins at 4 pm today in the Pavilion Walkthru! #aect19 https:\/\/t.co\/vGES7YN0Mh","truncated":false,"display_text_range":[0,67],"entities":{"hashtags":[{"text":"aect19","indices":[60,67]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186743617009795072,"id_str":"1186743617009795072","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","url":"https:\/\/t.co\/vGES7YN0Mh","display_url":"pic.twitter.com\/vGES7YN0Mh","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186743620847558656\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":358,"resize":"fit"},"small":{"w":680,"h":304,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186743617009795072,"id_str":"1186743617009795072","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","url":"https:\/\/t.co\/vGES7YN0Mh","display_url":"pic.twitter.com\/vGES7YN0Mh","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186743620847558656\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":358,"resize":"fit"},"small":{"w":680,"h":304,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 02:33:17 +0000 2019","id":1186832939167797248,"id_str":"1186832939167797248","full_text":"RT + @SBarksway: When 1 of the people you admire and look up to for their amazing + pedagogy, work as a scholar, and leadership comes to your s\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SBarksway","name":"Sarah + Barksdale","id":908737706699710464,"id_str":"908737706699710464","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 23:51:20 +0000 2019","id":1186792180855132160,"id_str":"1186792180855132160","full_text":"When + 1 of the people you admire and look up to for their amazing pedagogy, work + as a scholar, and leadership comes to your session...and likes it!!! \ud83e\udd17\ud83e\udd29\ud83e\udd73 + #aect19inspired #aect19 https:\/\/t.co\/UMpsANDI3H https:\/\/t.co\/sifijU6xdm","truncated":false,"display_text_range":[0,200],"entities":{"hashtags":[{"text":"aect19inspired","indices":[153,168]},{"text":"aect19","indices":[169,176]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UMpsANDI3H","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485","display_url":"twitter.com\/pazureka\/statu\u2026","indices":[177,200]}],"media":[{"id":1186792173255004160,"id_str":"1186792173255004160","indices":[201,224],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHhVMZUUEAAW8rN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHhVMZUUEAAW8rN.jpg","url":"https:\/\/t.co\/sifijU6xdm","display_url":"pic.twitter.com\/sifijU6xdm","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1186792180855132160\/photo\/1","type":"photo","sizes":{"small":{"w":220,"h":164,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":220,"h":164,"resize":"fit"},"medium":{"w":220,"h":164,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186792173255004160,"id_str":"1186792173255004160","indices":[201,224],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHhVMZUUEAAW8rN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHhVMZUUEAAW8rN.jpg","url":"https:\/\/t.co\/sifijU6xdm","display_url":"pic.twitter.com\/sifijU6xdm","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1186792180855132160\/photo\/1","type":"animated_gif","sizes":{"small":{"w":220,"h":164,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":220,"h":164,"resize":"fit"},"medium":{"w":220,"h":164,"resize":"fit"}},"video_info":{"aspect_ratio":[55,41],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHhVMZUUEAAW8rN.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":908737706699710464,"id_str":"908737706699710464","name":"Sarah + Barksdale","screen_name":"SBarksway","location":"","description":"Educator + \ud83d\udcda Researcher \u270d\ud83c\udffb Instructional Design \ud83d\udc69\u200d\ud83c\udfa8 + PhD Cand.\u2615\ufe0f Learning Technologies \ud83d\udcbb Adventurer & Travelholic + \ud83c\udfd4\ufe0f \ud83d\udc99: #edtech #CSforALL #teachered #pd","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":329,"friends_count":480,"listed_count":5,"created_at":"Fri + Sep 15 17:02:07 +0000 2017","favourites_count":2160,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":428,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/908737706699710464\/1506899531","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186790153068564485,"quoted_status_id_str":"1186790153068564485","quoted_status_permalink":{"url":"https:\/\/t.co\/UMpsANDI3H","expanded":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485","display":"twitter.com\/pazureka\/statu\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 23:43:16 +0000 2019","id":1186790153068564485,"id_str":"1186790153068564485","full_text":"Best + presentation I saw today at #aect19! Enjoyed hearing abt @SBarksway''s work + using tech integrated menus for students to pursue their interests while demonstrating + competence in more meaningful + creative ways. @AECT @UMN_CI https:\/\/t.co\/TAjYOVLoO9","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"aect19","indices":[33,40]}],"symbols":[],"user_mentions":[{"screen_name":"SBarksway","name":"Sarah + Barksdale","id":908737706699710464,"id_str":"908737706699710464","indices":[62,72]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[214,219]},{"screen_name":"UMN_CI","name":"U + of MN CEHD C&I","id":759684692,"id_str":"759684692","indices":[220,227]}],"urls":[],"media":[{"id":1186790142003908608,"id_str":"1186790142003908608","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","url":"https:\/\/t.co\/TAjYOVLoO9","display_url":"pic.twitter.com\/TAjYOVLoO9","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":972,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":645,"resize":"fit"},"large":{"w":1024,"h":972,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186790142003908608,"id_str":"1186790142003908608","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","url":"https:\/\/t.co\/TAjYOVLoO9","display_url":"pic.twitter.com\/TAjYOVLoO9","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":972,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":645,"resize":"fit"},"large":{"w":1024,"h":972,"resize":"fit"}},"ext_alt_text":null},{"id":1186790148622569473,"id_str":"1186790148622569473","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhTWi-U0AEx9jJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhTWi-U0AEx9jJ.jpg","url":"https:\/\/t.co\/TAjYOVLoO9","display_url":"pic.twitter.com\/TAjYOVLoO9","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":601,"resize":"fit"},"large":{"w":1024,"h":601,"resize":"fit"},"small":{"w":680,"h":399,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186790153068564485,"quoted_status_id_str":"1186790153068564485","quoted_status_permalink":{"url":"https:\/\/t.co\/UMpsANDI3H","expanded":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485","display":"twitter.com\/pazureka\/statu\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:50:59 +0000 2019","id":1186776996946120705,"id_str":"1186776996946120705","full_text":"What + if I''m interested in difficult authoring of closed educational resource texts, + guess I''m out of luck. #aect19 https:\/\/t.co\/oWApfkf760","truncated":false,"display_text_range":[0,114],"entities":{"hashtags":[{"text":"aect19","indices":[107,114]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oWApfkf760","expanded_url":"https:\/\/twitter.com\/richardewest\/status\/1186769592229646336","display_url":"twitter.com\/richardewest\/s\u2026","indices":[115,138]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186769592229646336,"quoted_status_id_str":"1186769592229646336","quoted_status_permalink":{"url":"https:\/\/t.co\/oWApfkf760","expanded":"https:\/\/twitter.com\/richardewest\/status\/1186769592229646336","display":"twitter.com\/richardewest\/s\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 22:21:34 +0000 2019","id":1186769592229646336,"id_str":"1186769592229646336","full_text":"If + you are interested in creating on OER book for @EdTech_Books, come see Royce''s + demo at 4 p.m. You will be surprised how easy it can be to author OER texts. + https:\/\/t.co\/ZUWRg9QoMb","truncated":false,"display_text_range":[0,158],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EdTech_Books","name":"EdTech + Books","id":1113476916076367872,"id_str":"1113476916076367872","indices":[50,63]}],"urls":[{"url":"https:\/\/t.co\/ZUWRg9QoMb","expanded_url":"https:\/\/twitter.com\/EdTech_Books\/status\/1186751501214990336","display_url":"twitter.com\/EdTech_Books\/s\u2026","indices":[159,182]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17639668,"id_str":"17639668","name":"Rick + West","screen_name":"richardewest","location":"Provo, ut","description":"Instructional + Designer, Researcher, & Evaluator at Brigham Young University","url":"http:\/\/t.co\/Nc39wWEhGM","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Nc39wWEhGM","expanded_url":"http:\/\/richardewest.com","display_url":"richardewest.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":223,"listed_count":39,"created_at":"Wed + Nov 26 02:26:26 +0000 2008","favourites_count":799,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3339,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17639668\/1446650027","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186751501214990336,"quoted_status_id_str":"1186751501214990336","quoted_status_permalink":{"url":"https:\/\/t.co\/ZUWRg9QoMb","expanded":"https:\/\/twitter.com\/EdTech_Books\/status\/1186751501214990336","display":"twitter.com\/EdTech_Books\/s\u2026"},"retweet_count":0,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 23:25:48 +0000 2019","id":1186785756963958784,"id_str":"1186785756963958784","full_text":"More + #AECT19 Gallery Walk photos! #inspiredme #betterposter https:\/\/t.co\/1a08lBscKC","truncated":false,"display_text_range":[0,59],"entities":{"hashtags":[{"text":"AECT19","indices":[5,12]},{"text":"inspiredme","indices":[34,45]},{"text":"betterposter","indices":[46,59]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186785553439547393,"id_str":"1186785553439547393","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhPLElUYAE3Iqn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhPLElUYAE3Iqn.jpg","url":"https:\/\/t.co\/1a08lBscKC","display_url":"pic.twitter.com\/1a08lBscKC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785756963958784\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186785553439547393,"id_str":"1186785553439547393","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhPLElUYAE3Iqn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhPLElUYAE3Iqn.jpg","url":"https:\/\/t.co\/1a08lBscKC","display_url":"pic.twitter.com\/1a08lBscKC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785756963958784\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null},{"id":1186785553447976961,"id_str":"1186785553447976961","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhPLEnVAAEtR29.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhPLEnVAAEtR29.jpg","url":"https:\/\/t.co\/1a08lBscKC","display_url":"pic.twitter.com\/1a08lBscKC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785756963958784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":768,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1186785553439543296,"id_str":"1186785553439543296","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhPLElUUAAGvIl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhPLElUUAAGvIl.jpg","url":"https:\/\/t.co\/1a08lBscKC","display_url":"pic.twitter.com\/1a08lBscKC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785756963958784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1186785553456324608,"id_str":"1186785553456324608","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhPLEpUYAA5g6s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhPLEpUYAA5g6s.jpg","url":"https:\/\/t.co\/1a08lBscKC","display_url":"pic.twitter.com\/1a08lBscKC","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186785756963958784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:42:42 +0000 2019","id":1186759809573408768,"id_str":"1186759809573408768","full_text":"I + am thankful to @GingerWatsonPhD and @eromerohall for their dedication to service + and strength in leadership. I\u2019ve enjoyed serving on AECT\u2019s Research + and Theory board with them. It\u2019s great to have wonderful academic role + models! #aect19inspired #aect19 #aectRTD https:\/\/t.co\/6fimEqCaoZ","truncated":false,"display_text_range":[0,263],"entities":{"hashtags":[{"text":"aect19inspired","indices":[230,245]},{"text":"aect19","indices":[246,253]},{"text":"aectRTD","indices":[255,263]}],"symbols":[],"user_mentions":[{"screen_name":"GingerWatsonPhD","name":"Ginger + S. Watson, Ph.D.","id":1186720671641915392,"id_str":"1186720671641915392","indices":[17,33]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[38,50]}],"urls":[],"media":[{"id":1186759805051883520,"id_str":"1186759805051883520","indices":[264,287],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg3wUXUUAA9G7Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg3wUXUUAA9G7Q.jpg","url":"https:\/\/t.co\/6fimEqCaoZ","display_url":"pic.twitter.com\/6fimEqCaoZ","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186759809573408768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1200,"h":1600,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186759805051883520,"id_str":"1186759805051883520","indices":[264,287],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg3wUXUUAA9G7Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg3wUXUUAA9G7Q.jpg","url":"https:\/\/t.co\/6fimEqCaoZ","display_url":"pic.twitter.com\/6fimEqCaoZ","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186759809573408768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1200,"h":1600,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:36:41 +0000 2019","id":1186773398149574657,"id_str":"1186773398149574657","full_text":"RT + @hodgesc: Share a link to the @AECTTechTrends article that has inspired your + research or practice. #aect19inspired #aect19 https:\/\/t.co\/\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[102,117]},{"text":"aect19","indices":[118,125]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[33,48]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":804807943,"id_str":"804807943","name":"TechTrends + Editor","screen_name":"AECTTechTrends","location":"","description":"Tweets + from the Editor of TechTrends, an AECT journal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2050,"friends_count":15,"listed_count":57,"created_at":"Wed + Sep 05 15:17:03 +0000 2012","favourites_count":772,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/804807943\/1483653902","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 14:00:00 +0000 2019","id":1186643367674777600,"id_str":"1186643367674777600","full_text":"Share + a link to the @AECTTechTrends article that has inspired your research or practice. + #aect19inspired #aect19 https:\/\/t.co\/vhcJvdgSTq","truncated":false,"display_text_range":[0,112],"entities":{"hashtags":[{"text":"aect19inspired","indices":[89,104]},{"text":"aect19","indices":[105,112]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[20,35]}],"urls":[],"media":[{"id":1185596558705856513,"id_str":"1185596558705856513","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","url":"https:\/\/t.co\/vhcJvdgSTq","display_url":"pic.twitter.com\/vhcJvdgSTq","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1186643367674777600\/photo\/1","type":"photo","sizes":{"medium":{"w":316,"h":416,"resize":"fit"},"large":{"w":316,"h":416,"resize":"fit"},"small":{"w":316,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1185596558705856513,"id_str":"1185596558705856513","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","url":"https:\/\/t.co\/vhcJvdgSTq","display_url":"pic.twitter.com\/vhcJvdgSTq","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1186643367674777600\/photo\/1","type":"photo","sizes":{"medium":{"w":316,"h":416,"resize":"fit"},"large":{"w":316,"h":416,"resize":"fit"},"small":{"w":316,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:24:54 +0000 2019","id":1186755333139513344,"id_str":"1186755333139513344","full_text":"RT + @EdTech_Books: Excited to present on our open textbook platform at the Poster + Session walkthrough at @ 4pm #aect19 https:\/\/t.co\/5FduWqSg\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[110,117]}],"symbols":[],"user_mentions":[{"screen_name":"EdTech_Books","name":"EdTech + Books","id":1113476916076367872,"id_str":"1113476916076367872","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 21:09:41 +0000 2019","id":1186751501214990336,"id_str":"1186751501214990336","full_text":"Excited + to present on our open textbook platform at the Poster Session walkthrough + at @ 4pm #aect19 https:\/\/t.co\/5FduWqSgsE #opentextbooks #oer https:\/\/t.co\/TMjdrWbpCK","truncated":false,"display_text_range":[0,143],"entities":{"hashtags":[{"text":"aect19","indices":[92,99]},{"text":"opentextbooks","indices":[124,138]},{"text":"oer","indices":[139,143]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5FduWqSgsE","expanded_url":"http:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[100,123]}],"media":[{"id":1186751395464015872,"id_str":"1186751395464015872","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","url":"https:\/\/t.co\/TMjdrWbpCK","display_url":"pic.twitter.com\/TMjdrWbpCK","expanded_url":"https:\/\/twitter.com\/EdTech_Books\/status\/1186751501214990336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186751395464015872,"id_str":"1186751395464015872","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","url":"https:\/\/t.co\/TMjdrWbpCK","display_url":"pic.twitter.com\/TMjdrWbpCK","expanded_url":"https:\/\/twitter.com\/EdTech_Books\/status\/1186751501214990336\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHgwG0NU8AA4CR1.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1113476916076367872,"id_str":"1113476916076367872","name":"EdTech + Books","screen_name":"EdTech_Books","location":"","description":"All free + textbooks, all the time. Knowledge should be free, and ed tech should lead + the way! #oer #opentextbooks https:\/\/t.co\/IXVNmS1hst\n@roycekimmons","url":"https:\/\/t.co\/IXVNmSiSk1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IXVNmSiSk1","expanded_url":"https:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/IXVNmS1hst","expanded_url":"https:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[113,136]}]}},"protected":false,"followers_count":88,"friends_count":0,"listed_count":1,"created_at":"Wed + Apr 03 16:22:38 +0000 2019","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1167102969390567424\/zPs5eiTv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1167102969390567424\/zPs5eiTv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1113476916076367872\/1568320929","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:56:32 +0000 2019","id":1186778390482735105,"id_str":"1186778390482735105","full_text":"If + you are a teacher or parent and have kids that are interested in coding, please + have them check this out. #HourOfCode @hourofcode #code #coding #kidsthatcode + #girlsthatcode @anotherbrittany #scaffolding #gamification #danceparty #AECT19 + https:\/\/t.co\/9ylOyPUVCh","truncated":false,"display_text_range":[0,239],"entities":{"hashtags":[{"text":"HourOfCode","indices":[109,120]},{"text":"code","indices":[133,138]},{"text":"coding","indices":[139,146]},{"text":"kidsthatcode","indices":[147,160]},{"text":"girlsthatcode","indices":[161,175]},{"text":"scaffolding","indices":[193,205]},{"text":"gamification","indices":[206,219]},{"text":"danceparty","indices":[220,231]},{"text":"AECT19","indices":[232,239]}],"symbols":[],"user_mentions":[{"screen_name":"hourofcode","name":"Hour + of Code","id":2310819848,"id_str":"2310819848","indices":[121,132]},{"screen_name":"anotherbrittany","name":"Brittany + Robinson","id":19326481,"id_str":"19326481","indices":[176,192]}],"urls":[],"media":[{"id":1186778382685495297,"id_str":"1186778382685495297","indices":[240,263],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhIprcU4AEXJrb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhIprcU4AEXJrb.jpg","url":"https:\/\/t.co\/9ylOyPUVCh","display_url":"pic.twitter.com\/9ylOyPUVCh","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186778390482735105\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186778382685495297,"id_str":"1186778382685495297","indices":[240,263],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhIprcU4AEXJrb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhIprcU4AEXJrb.jpg","url":"https:\/\/t.co\/9ylOyPUVCh","display_url":"pic.twitter.com\/9ylOyPUVCh","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186778390482735105\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1186778382685503489,"id_str":"1186778382685503489","indices":[240,263],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhIprcVAAEh0FU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhIprcVAAEh0FU.jpg","url":"https:\/\/t.co\/9ylOyPUVCh","display_url":"pic.twitter.com\/9ylOyPUVCh","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186778390482735105\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 23:58:05 +0000 2019","id":1186793882006065152,"id_str":"1186793882006065152","full_text":"RT + @pazureka: Best presentation I saw today at #aect19! Enjoyed hearing abt @SBarksway''s + work using tech integrated menus for students to p\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[47,54]}],"symbols":[],"user_mentions":[{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[3,12]},{"screen_name":"SBarksway","name":"Sarah + Barksdale","id":908737706699710464,"id_str":"908737706699710464","indices":[76,86]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 23:43:16 +0000 2019","id":1186790153068564485,"id_str":"1186790153068564485","full_text":"Best + presentation I saw today at #aect19! Enjoyed hearing abt @SBarksway''s work + using tech integrated menus for students to pursue their interests while demonstrating + competence in more meaningful + creative ways. @AECT @UMN_CI https:\/\/t.co\/TAjYOVLoO9","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"aect19","indices":[33,40]}],"symbols":[],"user_mentions":[{"screen_name":"SBarksway","name":"Sarah + Barksdale","id":908737706699710464,"id_str":"908737706699710464","indices":[62,72]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[214,219]},{"screen_name":"UMN_CI","name":"U + of MN CEHD C&I","id":759684692,"id_str":"759684692","indices":[220,227]}],"urls":[],"media":[{"id":1186790142003908608,"id_str":"1186790142003908608","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","url":"https:\/\/t.co\/TAjYOVLoO9","display_url":"pic.twitter.com\/TAjYOVLoO9","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":972,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":645,"resize":"fit"},"large":{"w":1024,"h":972,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186790142003908608,"id_str":"1186790142003908608","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","url":"https:\/\/t.co\/TAjYOVLoO9","display_url":"pic.twitter.com\/TAjYOVLoO9","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":972,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":645,"resize":"fit"},"large":{"w":1024,"h":972,"resize":"fit"}},"ext_alt_text":null},{"id":1186790148622569473,"id_str":"1186790148622569473","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhTWi-U0AEx9jJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhTWi-U0AEx9jJ.jpg","url":"https:\/\/t.co\/TAjYOVLoO9","display_url":"pic.twitter.com\/TAjYOVLoO9","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":601,"resize":"fit"},"large":{"w":1024,"h":601,"resize":"fit"},"small":{"w":680,"h":399,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:27:41 +0000 2019","id":1186756032715821056,"id_str":"1186756032715821056","full_text":"Amazing + mentors and mentees at the Early Career Symposium #aect19inspired https:\/\/t.co\/HAiMzcKf3j","truncated":false,"display_text_range":[0,73],"entities":{"hashtags":[{"text":"aect19inspired","indices":[58,73]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186756024746659840,"id_str":"1186756024746659840","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg0URoUUAApB6k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg0URoUUAApB6k.jpg","url":"https:\/\/t.co\/HAiMzcKf3j","display_url":"pic.twitter.com\/HAiMzcKf3j","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186756032715821056\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":652,"resize":"fit"},"large":{"w":2048,"h":1112,"resize":"fit"},"small":{"w":680,"h":369,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186756024746659840,"id_str":"1186756024746659840","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg0URoUUAApB6k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg0URoUUAApB6k.jpg","url":"https:\/\/t.co\/HAiMzcKf3j","display_url":"pic.twitter.com\/HAiMzcKf3j","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186756032715821056\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":652,"resize":"fit"},"large":{"w":2048,"h":1112,"resize":"fit"},"small":{"w":680,"h":369,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:34:21 +0000 2019","id":1186757708558417920,"id_str":"1186757708558417920","full_text":"Real + lively discussion happening right now in \u201cResearching how Designers Design\u201d + #aect19inspired @gsa_aect https:\/\/t.co\/Dfjn4YXwHe","truncated":false,"display_text_range":[0,106],"entities":{"hashtags":[{"text":"aect19inspired","indices":[81,96]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[97,106]}],"urls":[],"media":[{"id":1186757678959230977,"id_str":"1186757678959230977","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg10kDVAAEnD5-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg10kDVAAEnD5-.jpg","url":"https:\/\/t.co\/Dfjn4YXwHe","display_url":"pic.twitter.com\/Dfjn4YXwHe","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186757708558417920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186757678959230977,"id_str":"1186757678959230977","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg10kDVAAEnD5-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg10kDVAAEnD5-.jpg","url":"https:\/\/t.co\/Dfjn4YXwHe","display_url":"pic.twitter.com\/Dfjn4YXwHe","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186757708558417920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":600653284,"id_str":"600653284","name":"Nate + Turcotte","screen_name":"nateturcotte22","location":"Fort Myers, FL","description":"Assistant + Professor at @fgcu_coe | Researching embodied forms of teaching & learning + with data | New England Patriots | Duke Basketball","url":"https:\/\/t.co\/uu8axyn0Bq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uu8axyn0Bq","expanded_url":"http:\/\/nateturcotte.com","display_url":"nateturcotte.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":313,"friends_count":606,"listed_count":4,"created_at":"Wed + Jun 06 03:44:26 +0000 2012","favourites_count":4300,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1349,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/600653284\/1440433455","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:52:55 +0000 2019","id":1186762380107104256,"id_str":"1186762380107104256","full_text":"Thanks + for the easy to immediately implement tips on UX\/LX testing, Andrew & + Matt! https:\/\/t.co\/WBN6UdiHQj #aect19inspired","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"aect19inspired","indices":[112,127]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/WBN6UdiHQj","expanded_url":"http:\/\/tinyurl.com\/y576zsfa","display_url":"tinyurl.com\/y576zsfa","indices":[87,110]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":720930385,"id_str":"720930385","name":"Dr. + Allison Barsnica Hall","screen_name":"AllisonHallAZ","location":"Tempe, AZ","description":"Director + of Learning Experience Design @ ASU. Lifelong Learner. Interested in how to + help ALL learners. she\/her\/hers","url":"https:\/\/t.co\/Pi5aZFLirT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Pi5aZFLirT","expanded_url":"https:\/\/www.linkedin.com\/in\/allisonbhall\/","display_url":"linkedin.com\/in\/allisonbhal\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":417,"friends_count":563,"listed_count":30,"created_at":"Fri + Jul 27 21:42:06 +0000 2012","favourites_count":3118,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1022,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/981993480833515520\/S96xaBm1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/981993480833515520\/S96xaBm1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/720930385\/1581027324","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:47:48 +0000 2019","id":1186776194827505665,"id_str":"1186776194827505665","full_text":"Poster + session all set up. See you in 15 minutes! #virtualityculture #aect19 #aect19inspired + @AECT https:\/\/t.co\/Dasoo6PPf8","truncated":false,"display_text_range":[0,98],"entities":{"hashtags":[{"text":"virtualityculture","indices":[50,68]},{"text":"aect19","indices":[69,76]},{"text":"aect19inspired","indices":[77,92]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[93,98]}],"urls":[],"media":[{"id":1186775770498093056,"id_str":"1186775770498093056","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhGRoSUUAA2QSC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhGRoSUUAA2QSC.jpg","url":"https:\/\/t.co\/Dasoo6PPf8","display_url":"pic.twitter.com\/Dasoo6PPf8","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186776194827505665\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186775770498093056,"id_str":"1186775770498093056","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhGRoSUUAA2QSC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhGRoSUUAA2QSC.jpg","url":"https:\/\/t.co\/Dasoo6PPf8","display_url":"pic.twitter.com\/Dasoo6PPf8","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186776194827505665\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1186775770493902848,"id_str":"1186775770493902848","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhGRoRUYAAEaVk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhGRoRUYAAEaVk.jpg","url":"https:\/\/t.co\/Dasoo6PPf8","display_url":"pic.twitter.com\/Dasoo6PPf8","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186776194827505665\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1758,"resize":"fit"},"medium":{"w":1200,"h":1030,"resize":"fit"},"small":{"w":680,"h":584,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 01:04:26 +0000 2019","id":1186810577651408897,"id_str":"1186810577651408897","full_text":"Let''s + go Astros! Yes, I brought my 2017 WS championship koozie to Vegas to watch + my team. \ud83d\ude0d\u26be #aect19 #worldseries https:\/\/t.co\/YI2JWnxD5m + https:\/\/t.co\/ClEM3jTNRl","truncated":false,"display_text_range":[0,137],"entities":{"hashtags":[{"text":"aect19","indices":[93,100]},{"text":"worldseries","indices":[101,113]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YI2JWnxD5m","expanded_url":"http:\/\/bit.ly\/2W3PRoC","display_url":"bit.ly\/2W3PRoC","indices":[114,137]}],"media":[{"id":1186810576137314310,"id_str":"1186810576137314310","indices":[138,161],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhl7lZXYAYYUC5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhl7lZXYAYYUC5.jpg","url":"https:\/\/t.co\/ClEM3jTNRl","display_url":"pic.twitter.com\/ClEM3jTNRl","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186810577651408897\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186810576137314310,"id_str":"1186810576137314310","indices":[138,161],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhl7lZXYAYYUC5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhl7lZXYAYYUC5.jpg","url":"https:\/\/t.co\/ClEM3jTNRl","display_url":"pic.twitter.com\/ClEM3jTNRl","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186810577651408897\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 01:09:04 +0000 2019","id":1186811743571337218,"id_str":"1186811743571337218","full_text":"Presented + two studies with @edneuro @smreeves1 and @tshepppky\nabout visuospatial learning + at #aect19 https:\/\/t.co\/eSswSqzcT9","truncated":false,"display_text_range":[0,100],"entities":{"hashtags":[{"text":"aect19","indices":[93,100]}],"symbols":[],"user_mentions":[{"screen_name":"edneuro","name":"Pasha + Antonenko","id":4070273452,"id_str":"4070273452","indices":[27,35]},{"screen_name":"smreeves1","name":"Shalaunda + Reeves","id":2845958981,"id_str":"2845958981","indices":[36,46]}],"urls":[],"media":[{"id":1186811721979052032,"id_str":"1186811721979052032","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhm-R_UwAAALat.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhm-R_UwAAALat.jpg","url":"https:\/\/t.co\/eSswSqzcT9","display_url":"pic.twitter.com\/eSswSqzcT9","expanded_url":"https:\/\/twitter.com\/ZhenXu0905\/status\/1186811743571337218\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186811721979052032,"id_str":"1186811721979052032","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhm-R_UwAAALat.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhm-R_UwAAALat.jpg","url":"https:\/\/t.co\/eSswSqzcT9","display_url":"pic.twitter.com\/eSswSqzcT9","expanded_url":"https:\/\/twitter.com\/ZhenXu0905\/status\/1186811743571337218\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1186811733521780736,"id_str":"1186811733521780736","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhm-8_U0AAi972.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhm-8_U0AAi972.jpg","url":"https:\/\/t.co\/eSswSqzcT9","display_url":"pic.twitter.com\/eSswSqzcT9","expanded_url":"https:\/\/twitter.com\/ZhenXu0905\/status\/1186811743571337218\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":726269193092489216,"id_str":"726269193092489216","name":"Zhen + Xu (\u5f90\u771f)","screen_name":"ZhenXu0905","location":"Gainesville, FL","description":"Ph.D. + in Ed Tech @UF | STEM for ALL | visuospatial scaffolding | maker | gourmet","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":97,"friends_count":146,"listed_count":2,"created_at":"Sat + Apr 30 04:37:23 +0000 2016","favourites_count":464,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":104,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513678812449591298\/8NTJQM6f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513678812449591298\/8NTJQM6f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/726269193092489216\/1540525669","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 01:19:45 +0000 2019","id":1186814433328324608,"id_str":"1186814433328324608","full_text":"RT + @RitaFennelly: More great writing advice from the @aect session How-To Review + Manuscripts & Proposals w\/ @andrewatawfik 1) Start w\/ the\u2026","truncated":false,"display_text_range":[0,143],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[53,58]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[112,126]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2563684237,"id_str":"2563684237","name":"\ud835\ude1a\ud835\ude26\ud835\ude23\ud835\ude22\ud835\ude34\ud835\ude35\ud835\ude2a\ud835\ude22\ud835\ude2f + \ud835\ude13\ud835\ude30\ud835\ude31\ud835\ude26\ud835\ude3b \ud835\ude11\ud835\ude33., + M.Ed.","screen_name":"SebLopJr","location":"Beaumont, TX","description":"-Network + Admin -Ed.D student at @ISDT_SHSU -M.Ed. of Inst Tech from @SamHoustonState + -BAAS from @LamarUniversity -Google EDU *views expressed are my own*","url":"https:\/\/t.co\/UzLzwoVtIk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UzLzwoVtIk","expanded_url":"http:\/\/SebLopezJr.net","display_url":"SebLopezJr.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":760,"friends_count":2605,"listed_count":12,"created_at":"Thu + Jun 12 16:09:12 +0000 2014","favourites_count":13587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2025,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1129071740854951937\/YDv04AoR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1129071740854951937\/YDv04AoR_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2563684237\/1405631793","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0000A0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:28:50 +0000 2019","id":1186741221307252736,"id_str":"1186741221307252736","full_text":"More + great writing advice from the @aect session How-To Review Manuscripts & + Proposals w\/ @andrewatawfik 1) Start w\/ the learning problem 2) Then talk + about how the tech is related 3) Connect it to theory #aect19inspired Thanks! + Using this to rewrite my intro for a working paper","truncated":false,"display_text_range":[0,284],"entities":{"hashtags":[{"text":"aect19inspired","indices":[209,224]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[35,40]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[94,108]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:13:45 +0000 2019","id":1186767624920678402,"id_str":"1186767624920678402","full_text":"RT + @tadousay: When you realize it''s your 10th anniversary in #AECT. \u2764\ufe0f\ud83c\udf89 + #aect19 #aectinspired https:\/\/t.co\/RyzxGQjRjQ https:\/\/t.co\/gbLIBDbD\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT","indices":[61,66]},{"text":"aect19","indices":[72,79]},{"text":"aectinspired","indices":[80,93]}],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/RyzxGQjRjQ","expanded_url":"http:\/\/bit.ly\/2MAVsQk","display_url":"bit.ly\/2MAVsQk","indices":[94,117]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1613204671,"id_str":"1613204671","name":"ETC + Research Lab","screen_name":"okstate_etc","location":"OSU 326 Willard Hall","description":"Exploring + Innovative, Creative and Imaginative Ways to Improve Teaching and Learning + with Emerging Technologies.","url":"https:\/\/t.co\/hWiysnAxXW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hWiysnAxXW","expanded_url":"https:\/\/techplaygroundblog.wordpress.com\/","display_url":"techplaygroundblog.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":475,"friends_count":204,"listed_count":39,"created_at":"Mon + Jul 22 16:29:05 +0000 2013","favourites_count":592,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1292,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000370545468\/7abdcb924b2a422e3cffdfa95c339a2d_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000370545468\/7abdcb924b2a422e3cffdfa95c339a2d_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1613204671\/1398954413","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 01:04:19 +0000 2019","id":1186448160195043328,"id_str":"1186448160195043328","full_text":"When + you realize it''s your 10th anniversary in #AECT. \u2764\ufe0f\ud83c\udf89 + #aect19 #aectinspired https:\/\/t.co\/RyzxGQjRjQ https:\/\/t.co\/gbLIBDbDj7","truncated":false,"display_text_range":[0,103],"entities":{"hashtags":[{"text":"AECT","indices":[47,52]},{"text":"aect19","indices":[58,65]},{"text":"aectinspired","indices":[66,79]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RyzxGQjRjQ","expanded_url":"http:\/\/bit.ly\/2MAVsQk","display_url":"bit.ly\/2MAVsQk","indices":[80,103]}],"media":[{"id":1186448159104524288,"id_str":"1186448159104524288","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/EHccUIvXYAA61He.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHccUIvXYAA61He.jpg","url":"https:\/\/t.co\/gbLIBDbDj7","display_url":"pic.twitter.com\/gbLIBDbDj7","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186448160195043328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186448159104524288,"id_str":"1186448159104524288","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/EHccUIvXYAA61He.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHccUIvXYAA61He.jpg","url":"https:\/\/t.co\/gbLIBDbDj7","display_url":"pic.twitter.com\/gbLIBDbDj7","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186448160195043328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":32,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 00:41:05 +0000 2019","id":1186804701536219137,"id_str":"1186804701536219137","full_text":"RT + @christieliuidtr: RT @nicolapallitt reflection and discussion on intercultural + collaborative research, cultural responsiveness, inclusio\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[24,38]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 22:00:28 +0000 2019","id":1186764280860819456,"id_str":"1186764280860819456","full_text":"RT + @nicolapallitt reflection and discussion on intercultural collaborative research, + cultural responsiveness, inclusion, equity, fairness, ethics, sponsoring agency, + partnership, DBR #aect19 #aect19inspired @AECT @aectclt @ge_xun @KuiXieOSU + Dr. Reeves @amy_c_bradshaw DeepakS Thx https:\/\/t.co\/0v7FBWrxxN","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"aect19","indices":[184,191]},{"text":"aect19inspired","indices":[192,207]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[208,213]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[214,222]},{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[223,230]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[253,268]}],"urls":[{"url":"https:\/\/t.co\/0v7FBWrxxN","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944","display_url":"twitter.com\/nicolapallitt\/\u2026","indices":[281,304]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186692181618130944,"quoted_status_id_str":"1186692181618130944","quoted_status_permalink":{"url":"https:\/\/t.co\/0v7FBWrxxN","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944","display":"twitter.com\/nicolapallitt\/\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 17:13:58 +0000 2019","id":1186692181618130944,"id_str":"1186692181618130944","full_text":"Great + panel about collaborative research just started in Conf Room 1 @AECT @aectclt + #aect19inspired https:\/\/t.co\/Po9ALRdpN7","truncated":false,"display_text_range":[0,99],"entities":{"hashtags":[{"text":"aect19inspired","indices":[84,99]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[69,74]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[75,83]}],"urls":[],"media":[{"id":1186692170176057344,"id_str":"1186692170176057344","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf6Pc0U0AAHbIs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf6Pc0U0AAHbIs.jpg","url":"https:\/\/t.co\/Po9ALRdpN7","display_url":"pic.twitter.com\/Po9ALRdpN7","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":291,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":438,"resize":"fit"},"medium":{"w":1024,"h":438,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186692170176057344,"id_str":"1186692170176057344","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf6Pc0U0AAHbIs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf6Pc0U0AAHbIs.jpg","url":"https:\/\/t.co\/Po9ALRdpN7","display_url":"pic.twitter.com\/Po9ALRdpN7","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":291,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":438,"resize":"fit"},"medium":{"w":1024,"h":438,"resize":"fit"}},"ext_alt_text":null},{"id":1186692177092476928,"id_str":"1186692177092476928","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf6P2lVAAATT7U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf6P2lVAAATT7U.jpg","url":"https:\/\/t.co\/Po9ALRdpN7","display_url":"pic.twitter.com\/Po9ALRdpN7","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":655,"resize":"fit"},"large":{"w":1024,"h":655,"resize":"fit"},"small":{"w":680,"h":435,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"8fa6d7a33b83ef26","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8fa6d7a33b83ef26.json","place_type":"city","name":"Paradise","full_name":"Paradise, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.2092535,35.984784],[-115.0610763,35.984784],[-115.0610763,36.137145],[-115.2092535,36.137145]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186692181618130944,"quoted_status_id_str":"1186692181618130944","quoted_status_permalink":{"url":"https:\/\/t.co\/0v7FBWrxxN","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944","display":"twitter.com\/nicolapallitt\/\u2026"},"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 00:05:24 +0000 2019","id":1186795720919044096,"id_str":"1186795720919044096","full_text":"Having + a blast presenting on our poster! Stop by number 70 and say hello! \ud83d\ude0a + #aect19 https:\/\/t.co\/lGDBJS2LBc","truncated":false,"display_text_range":[0,83],"entities":{"hashtags":[{"text":"aect19","indices":[76,83]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186795692565524480,"id_str":"1186795692565524480","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhYZPxU8AAJPp2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhYZPxU8AAJPp2.jpg","url":"https:\/\/t.co\/lGDBJS2LBc","display_url":"pic.twitter.com\/lGDBJS2LBc","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1186795720919044096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186795692565524480,"id_str":"1186795692565524480","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhYZPxU8AAJPp2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhYZPxU8AAJPp2.jpg","url":"https:\/\/t.co\/lGDBJS2LBc","display_url":"pic.twitter.com\/lGDBJS2LBc","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1186795720919044096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 00:33:45 +0000 2019","id":1186802855128158209,"id_str":"1186802855128158209","full_text":"@jonbecker + We had a great poster session, lots of interaction. Conference is not too + big, like AERA. It''s all about ID and edtech. What''s not to love? #aect19 + #aect19inspired","truncated":false,"display_text_range":[11,174],"entities":{"hashtags":[{"text":"aect19","indices":[151,158]},{"text":"aect19inspired","indices":[159,174]}],"symbols":[],"user_mentions":[{"screen_name":"jonbecker","name":"Jon + Becker","id":12363792,"id_str":"12363792","indices":[0,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1186801978648727552,"in_reply_to_status_id_str":"1186801978648727552","in_reply_to_user_id":12363792,"in_reply_to_user_id_str":"12363792","in_reply_to_screen_name":"jonbecker","user":{"id":459903,"id_str":"459903","name":"\ud83c\uddfa\ud83c\uddf8 + Yin Kreher, PhD","screen_name":"yinbk","location":"","description":"Instructional + Designer | Lead LXD @FourthRev | Boundary-Crosser. Looks for the exquisite + at intersections. All tweets are mine. \ud83d\udc9c #XR #DesignLeadership + \ud83e\udef0","url":"https:\/\/t.co\/nJBVP9cpz7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nJBVP9cpz7","expanded_url":"http:\/\/yinwahkreher.com","display_url":"yinwahkreher.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1043,"friends_count":1124,"listed_count":79,"created_at":"Tue + Jan 02 17:04:05 +0000 2007","favourites_count":7349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"363738","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459903\/1611022238","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"E81C4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:57:16 +0000 2019","id":1186763476280074240,"id_str":"1186763476280074240","full_text":"Hey + @gsa_aect and\/or #aect2019 are you doing research in areas of adult esl or + adult literacy? Let\u2019s connect #aect19inspired","truncated":false,"display_text_range":[0,124],"entities":{"hashtags":[{"text":"aect2019","indices":[21,30]},{"text":"aect19inspired","indices":[109,124]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[4,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":805816250,"id_str":"805816250","name":"Jen + Vanek","screen_name":"VanekJen","location":"Minneapolis MN","description":"Director + of Digital Learning and Research. EdTech Center @ World Education. Teacher + educator, researcher, and advocate. Opinions expressed here are my own.","url":"https:\/\/t.co\/HfWBBD9lZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HfWBBD9lZC","expanded_url":"http:\/\/www.edtech.worlded.org","display_url":"edtech.worlded.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":270,"listed_count":5,"created_at":"Thu + Sep 06 01:47:18 +0000 2012","favourites_count":432,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":340,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/805816250\/1637458182","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 23:49:06 +0000 2019","id":1186791619996971008,"id_str":"1186791619996971008","full_text":"@pazureka + @AECT @UMN_CI Aw you made my day! Thank you for being there, it meant so much + \ud83d\ude0d So grateful for you, and how you\u2019re making the #aect19 experience + so welcoming!","truncated":false,"display_text_range":[24,169],"entities":{"hashtags":[{"text":"aect19","indices":[137,144]}],"symbols":[],"user_mentions":[{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[0,9]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[10,15]},{"screen_name":"UMN_CI","name":"U + of MN CEHD C&I","id":759684692,"id_str":"759684692","indices":[16,23]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186790153068564485,"in_reply_to_status_id_str":"1186790153068564485","in_reply_to_user_id":22419218,"in_reply_to_user_id_str":"22419218","in_reply_to_screen_name":"pazureka","user":{"id":908737706699710464,"id_str":"908737706699710464","name":"Sarah + Barksdale","screen_name":"SBarksway","location":"","description":"Educator + \ud83d\udcda Researcher \u270d\ud83c\udffb Instructional Design \ud83d\udc69\u200d\ud83c\udfa8 + PhD Cand.\u2615\ufe0f Learning Technologies \ud83d\udcbb Adventurer & Travelholic + \ud83c\udfd4\ufe0f \ud83d\udc99: #edtech #CSforALL #teachered #pd","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":329,"friends_count":480,"listed_count":5,"created_at":"Fri + Sep 15 17:02:07 +0000 2017","favourites_count":2160,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":428,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/908737706699710464\/1506899531","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:07:59 +0000 2019","id":1186766175478439936,"id_str":"1186766175478439936","full_text":"RT + @SultanMutlaq: #aect19inspired #AECTech2019 Improving Student Performance + https:\/\/t.co\/jB2BHlipl0","truncated":false,"display_text_range":[0,105],"entities":{"hashtags":[{"text":"aect19inspired","indices":[18,33]},{"text":"AECTech2019","indices":[34,46]}],"symbols":[],"user_mentions":[{"screen_name":"SultanMutlaq","name":"SultanMutlaq","id":370132373,"id_str":"370132373","indices":[3,16]}],"urls":[],"media":[{"id":1186765154261749760,"id_str":"1186765154261749760","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","url":"https:\/\/t.co\/jB2BHlipl0","display_url":"pic.twitter.com\/jB2BHlipl0","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186765163602436097\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1186765163602436097,"source_status_id_str":"1186765163602436097","source_user_id":370132373,"source_user_id_str":"370132373"}]},"extended_entities":{"media":[{"id":1186765154261749760,"id_str":"1186765154261749760","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","url":"https:\/\/t.co\/jB2BHlipl0","display_url":"pic.twitter.com\/jB2BHlipl0","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186765163602436097\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1186765163602436097,"source_status_id_str":"1186765163602436097","source_user_id":370132373,"source_user_id_str":"370132373","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":320094261,"id_str":"320094261","name":"Osamah + Alzahrani","screen_name":"OsamahAlzahrani","location":"Kingdom of Saudi Arabia","description":"\ud83c\uddf8\ud83c\udde6\ud83c\uddf8\ud83c\udde6\ud83c\uddf8\ud83c\udde6\ud83c\uddf8\ud83c\udde6\ud83c\uddf8\ud83c\udde6\ud83c\uddf8\ud83c\udde6","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":121,"friends_count":1056,"listed_count":0,"created_at":"Sun + Jun 19 08:53:28 +0000 2011","favourites_count":693,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1483,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1303185434634264576\/mDKxumCM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1303185434634264576\/mDKxumCM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/320094261\/1357168447","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 22:03:58 +0000 2019","id":1186765163602436097,"id_str":"1186765163602436097","full_text":"#aect19inspired + #AECTech2019 Improving Student Performance https:\/\/t.co\/jB2BHlipl0","truncated":false,"display_text_range":[0,63],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]},{"text":"AECTech2019","indices":[16,28]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186765154261749760,"id_str":"1186765154261749760","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","url":"https:\/\/t.co\/jB2BHlipl0","display_url":"pic.twitter.com\/jB2BHlipl0","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186765163602436097\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186765154261749760,"id_str":"1186765154261749760","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","url":"https:\/\/t.co\/jB2BHlipl0","display_url":"pic.twitter.com\/jB2BHlipl0","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186765163602436097\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186759650869268480,"in_reply_to_status_id_str":"1186759650869268480","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 01:03:03 +0000 2019","id":1186810232409772032,"id_str":"1186810232409772032","full_text":"#aect19inspired + game night started. Come and get fun and a free t-shirt while they last. https:\/\/t.co\/JikJl1sFVP","truncated":false,"display_text_range":[0,88],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186810224838995968,"id_str":"1186810224838995968","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhlnItUcAAlGjM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhlnItUcAAlGjM.jpg","url":"https:\/\/t.co\/JikJl1sFVP","display_url":"pic.twitter.com\/JikJl1sFVP","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1186810232409772032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186810224838995968,"id_str":"1186810224838995968","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhlnItUcAAlGjM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhlnItUcAAlGjM.jpg","url":"https:\/\/t.co\/JikJl1sFVP","display_url":"pic.twitter.com\/JikJl1sFVP","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1186810232409772032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 02:30:26 +0000 2019","id":1186832221602082817,"id_str":"1186832221602082817","full_text":"RT + @SultanMutlaq: #aect19inspired #acet2019 Poster Sessions https:\/\/t.co\/bkIkXmD8I4","truncated":false,"display_text_range":[0,90],"entities":{"hashtags":[{"text":"aect19inspired","indices":[18,33]},{"text":"acet2019","indices":[34,43]}],"symbols":[],"user_mentions":[{"screen_name":"SultanMutlaq","name":"SultanMutlaq","id":370132373,"id_str":"370132373","indices":[3,16]}],"urls":[],"media":[{"id":1186794723236671488,"id_str":"1186794723236671488","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}},"source_status_id":1186794729691705344,"source_status_id_str":"1186794729691705344","source_user_id":370132373,"source_user_id_str":"370132373"}]},"extended_entities":{"media":[{"id":1186794723236671488,"id_str":"1186794723236671488","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}},"source_status_id":1186794729691705344,"source_status_id_str":"1186794729691705344","source_user_id":370132373,"source_user_id_str":"370132373","ext_alt_text":null},{"id":1186794723240890368,"id_str":"1186794723240890368","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg0wU0AAiXBP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg0wU0AAiXBP.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1186794729691705344,"source_status_id_str":"1186794729691705344","source_user_id":370132373,"source_user_id_str":"370132373","ext_alt_text":null},{"id":1186794723282845697,"id_str":"1186794723282845697","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg06VAAE_iQD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg06VAAE_iQD.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1334,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1186794729691705344,"source_status_id_str":"1186794729691705344","source_user_id":370132373,"source_user_id_str":"370132373","ext_alt_text":null},{"id":1186794723287035905,"id_str":"1186794723287035905","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg07U8AEE5Ce.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg07U8AEE5Ce.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1186794729691705344,"source_status_id_str":"1186794729691705344","source_user_id":370132373,"source_user_id_str":"370132373","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 00:01:27 +0000 2019","id":1186794729691705344,"id_str":"1186794729691705344","full_text":"#aect19inspired + #acet2019 Poster Sessions https:\/\/t.co\/bkIkXmD8I4","truncated":false,"display_text_range":[0,48],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]},{"text":"acet2019","indices":[16,25]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186794723236671488,"id_str":"1186794723236671488","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186794723236671488,"id_str":"1186794723236671488","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}},"ext_alt_text":null},{"id":1186794723240890368,"id_str":"1186794723240890368","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg0wU0AAiXBP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg0wU0AAiXBP.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1186794723282845697,"id_str":"1186794723282845697","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg06VAAE_iQD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg06VAAE_iQD.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1334,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1186794723287035905,"id_str":"1186794723287035905","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg07U8AEE5Ce.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg07U8AEE5Ce.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186765163602436097,"in_reply_to_status_id_str":"1186765163602436097","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:02:25 +0000 2019","id":1186764774362636289,"id_str":"1186764774362636289","full_text":"Chinese + scholars met in #aect2019 great to know u all\uff01\u2764\ufe0f https:\/\/t.co\/jLZOZd5LWl","truncated":false,"display_text_range":[0,56],"entities":{"hashtags":[{"text":"aect2019","indices":[24,33]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186764241702772736,"id_str":"1186764241702772736","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg7ykLUYAACJxH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg7ykLUYAACJxH.jpg","url":"https:\/\/t.co\/jLZOZd5LWl","display_url":"pic.twitter.com\/jLZOZd5LWl","expanded_url":"https:\/\/twitter.com\/AlianaZhu\/status\/1186764774362636289\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186764241702772736,"id_str":"1186764241702772736","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg7ykLUYAACJxH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg7ykLUYAACJxH.jpg","url":"https:\/\/t.co\/jLZOZd5LWl","display_url":"pic.twitter.com\/jLZOZd5LWl","expanded_url":"https:\/\/twitter.com\/AlianaZhu\/status\/1186764774362636289\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1125373237,"id_str":"1125373237","name":"Jiawen + Aliana Zhu","screen_name":"AlianaZhu","location":"Shanghai, People''s Republic + of China","description":"PhD \u00b7 EdTech University of Florida Alumni \u00b7 + postdoc","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":68,"friends_count":74,"listed_count":0,"created_at":"Sun + Jan 27 15:31:41 +0000 2013","favourites_count":189,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":52,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1479013445219414018\/Hf6s6Ssq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1479013445219414018\/Hf6s6Ssq_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:07:57 +0000 2019","id":1186766164099121152,"id_str":"1186766164099121152","full_text":"Zihang + Shao from @IndianaUniv Just shared research on what makes badging effective + in PD for instructors. Taking thinking back to @WorldEdUS #aect19inspired + https:\/\/t.co\/6X53eZPVgs","truncated":false,"display_text_range":[0,159],"entities":{"hashtags":[{"text":"aect19inspired","indices":[144,159]}],"symbols":[],"user_mentions":[{"screen_name":"IndianaUniv","name":"Indiana + University","id":100367386,"id_str":"100367386","indices":[17,29]},{"screen_name":"WorldEdUS","name":"World + Education - US","id":615387166,"id_str":"615387166","indices":[133,143]}],"urls":[],"media":[{"id":1186766158902394880,"id_str":"1186766158902394880","indices":[160,183],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg9iKTVAAAZvhy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg9iKTVAAAZvhy.jpg","url":"https:\/\/t.co\/6X53eZPVgs","display_url":"pic.twitter.com\/6X53eZPVgs","expanded_url":"https:\/\/twitter.com\/VanekJen\/status\/1186766164099121152\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186766158902394880,"id_str":"1186766158902394880","indices":[160,183],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg9iKTVAAAZvhy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg9iKTVAAAZvhy.jpg","url":"https:\/\/t.co\/6X53eZPVgs","display_url":"pic.twitter.com\/6X53eZPVgs","expanded_url":"https:\/\/twitter.com\/VanekJen\/status\/1186766164099121152\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":805816250,"id_str":"805816250","name":"Jen + Vanek","screen_name":"VanekJen","location":"Minneapolis MN","description":"Director + of Digital Learning and Research. EdTech Center @ World Education. Teacher + educator, researcher, and advocate. Opinions expressed here are my own.","url":"https:\/\/t.co\/HfWBBD9lZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HfWBBD9lZC","expanded_url":"http:\/\/www.edtech.worlded.org","display_url":"edtech.worlded.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":270,"listed_count":5,"created_at":"Thu + Sep 06 01:47:18 +0000 2012","favourites_count":432,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":340,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/805816250\/1637458182","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 02:35:41 +0000 2019","id":1186833541465657344,"id_str":"1186833541465657344","full_text":"RT + @DKSch: #aect19inspired game night started. Come and get fun and a free t-shirt + while they last. https:\/\/t.co\/JikJl1sFVP","truncated":false,"display_text_range":[0,123],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]}],"symbols":[],"user_mentions":[{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[3,9]}],"urls":[],"media":[{"id":1186810224838995968,"id_str":"1186810224838995968","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhlnItUcAAlGjM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhlnItUcAAlGjM.jpg","url":"https:\/\/t.co\/JikJl1sFVP","display_url":"pic.twitter.com\/JikJl1sFVP","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1186810232409772032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1186810232409772032,"source_status_id_str":"1186810232409772032","source_user_id":38657815,"source_user_id_str":"38657815"}]},"extended_entities":{"media":[{"id":1186810224838995968,"id_str":"1186810224838995968","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhlnItUcAAlGjM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhlnItUcAAlGjM.jpg","url":"https:\/\/t.co\/JikJl1sFVP","display_url":"pic.twitter.com\/JikJl1sFVP","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1186810232409772032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"source_status_id":1186810232409772032,"source_status_id_str":"1186810232409772032","source_user_id":38657815,"source_user_id_str":"38657815","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 01:03:03 +0000 2019","id":1186810232409772032,"id_str":"1186810232409772032","full_text":"#aect19inspired + game night started. Come and get fun and a free t-shirt while they last. https:\/\/t.co\/JikJl1sFVP","truncated":false,"display_text_range":[0,88],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186810224838995968,"id_str":"1186810224838995968","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhlnItUcAAlGjM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhlnItUcAAlGjM.jpg","url":"https:\/\/t.co\/JikJl1sFVP","display_url":"pic.twitter.com\/JikJl1sFVP","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1186810232409772032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186810224838995968,"id_str":"1186810224838995968","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhlnItUcAAlGjM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhlnItUcAAlGjM.jpg","url":"https:\/\/t.co\/JikJl1sFVP","display_url":"pic.twitter.com\/JikJl1sFVP","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1186810232409772032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 23:30:25 +0000 2019","id":1186786917397872640,"id_str":"1186786917397872640","full_text":"Hall + and Oates CAN go for my research #aect19","truncated":false,"display_text_range":[0,45],"entities":{"hashtags":[{"text":"aect19","indices":[38,45]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:01:49 +0000 2019","id":1186764622520446978,"id_str":"1186764622520446978","full_text":"This + place is brimming with people who are inspiring #aect19","truncated":false,"display_text_range":[0,61],"entities":{"hashtags":[{"text":"aect19","indices":[54,61]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":16,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 00:07:44 +0000 2019","id":1186796311657381888,"id_str":"1186796311657381888","full_text":"Need + I say more? #aect19 https:\/\/t.co\/K7I3Q7r1OP","truncated":false,"display_text_range":[0,24],"entities":{"hashtags":[{"text":"aect19","indices":[17,24]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186796205512114176,"id_str":"1186796205512114176","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhY3GpUwAAv17b.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhY3GpUwAAv17b.jpg","url":"https:\/\/t.co\/K7I3Q7r1OP","display_url":"pic.twitter.com\/K7I3Q7r1OP","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186796311657381888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186796205512114176,"id_str":"1186796205512114176","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhY3GpUwAAv17b.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhY3GpUwAAv17b.jpg","url":"https:\/\/t.co\/K7I3Q7r1OP","display_url":"pic.twitter.com\/K7I3Q7r1OP","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186796311657381888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186767997341290496,"in_reply_to_status_id_str":"1186767997341290496","in_reply_to_user_id":6848632,"in_reply_to_user_id_str":"6848632","in_reply_to_screen_name":"jeroen69","user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:15:14 +0000 2019","id":1186767997341290496,"id_str":"1186767997341290496","full_text":"I\u2019ll + be rocking my #betterposter from 4pm at the #aect19 #gallery walk. #otp T69 + (oh a #goodyear !). \u201cUsing tools available to inspire learning in your + organization.\u201d https:\/\/t.co\/LkOdmdrXkK","truncated":false,"display_text_range":[0,166],"entities":{"hashtags":[{"text":"betterposter","indices":[19,32]},{"text":"aect19","indices":[49,56]},{"text":"gallery","indices":[57,65]},{"text":"otp","indices":[72,76]},{"text":"goodyear","indices":[87,96]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186767963946270721,"id_str":"1186767963946270721","indices":[167,190],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg_LOnUwAERisM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg_LOnUwAERisM.jpg","url":"https:\/\/t.co\/LkOdmdrXkK","display_url":"pic.twitter.com\/LkOdmdrXkK","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186767997341290496\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":499,"resize":"fit"},"large":{"w":1024,"h":752,"resize":"fit"},"medium":{"w":1024,"h":752,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186767963946270721,"id_str":"1186767963946270721","indices":[167,190],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg_LOnUwAERisM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg_LOnUwAERisM.jpg","url":"https:\/\/t.co\/LkOdmdrXkK","display_url":"pic.twitter.com\/LkOdmdrXkK","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186767997341290496\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":499,"resize":"fit"},"large":{"w":1024,"h":752,"resize":"fit"},"medium":{"w":1024,"h":752,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 23:18:05 +0000 2019","id":1186783813868765184,"id_str":"1186783813868765184","full_text":"RT + @jeroen69: I\u2019ll be rocking my #betterposter from 4pm at the #aect19 #gallery + walk. #otp T69 (oh a #goodyear !). \u201cUsing tools available t\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"betterposter","indices":[33,46]},{"text":"aect19","indices":[63,70]},{"text":"gallery","indices":[71,79]},{"text":"otp","indices":[86,90]},{"text":"goodyear","indices":[101,110]}],"symbols":[],"user_mentions":[{"screen_name":"jeroen69","name":"Jeroen","id":6848632,"id_str":"6848632","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 22:15:14 +0000 2019","id":1186767997341290496,"id_str":"1186767997341290496","full_text":"I\u2019ll + be rocking my #betterposter from 4pm at the #aect19 #gallery walk. #otp T69 + (oh a #goodyear !). \u201cUsing tools available to inspire learning in your + organization.\u201d https:\/\/t.co\/LkOdmdrXkK","truncated":false,"display_text_range":[0,166],"entities":{"hashtags":[{"text":"betterposter","indices":[19,32]},{"text":"aect19","indices":[49,56]},{"text":"gallery","indices":[57,65]},{"text":"otp","indices":[72,76]},{"text":"goodyear","indices":[87,96]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186767963946270721,"id_str":"1186767963946270721","indices":[167,190],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg_LOnUwAERisM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg_LOnUwAERisM.jpg","url":"https:\/\/t.co\/LkOdmdrXkK","display_url":"pic.twitter.com\/LkOdmdrXkK","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186767997341290496\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":499,"resize":"fit"},"large":{"w":1024,"h":752,"resize":"fit"},"medium":{"w":1024,"h":752,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186767963946270721,"id_str":"1186767963946270721","indices":[167,190],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg_LOnUwAERisM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg_LOnUwAERisM.jpg","url":"https:\/\/t.co\/LkOdmdrXkK","display_url":"pic.twitter.com\/LkOdmdrXkK","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186767997341290496\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":499,"resize":"fit"},"large":{"w":1024,"h":752,"resize":"fit"},"medium":{"w":1024,"h":752,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 23:37:13 +0000 2019","id":1186788628166373376,"id_str":"1186788628166373376","full_text":"@design4learn + poster session about adult basic ed OER evaluation project. @JenM is the reason + ABE has been represented at #aect for the past three years. 5 sessions this + year #aect19inspired","truncated":false,"display_text_range":[0,190],"entities":{"hashtags":[{"text":"aect","indices":[122,127]},{"text":"aect19inspired","indices":[175,190]}],"symbols":[],"user_mentions":[{"screen_name":"design4learn","name":"Designers + for Learning","id":1610558420,"id_str":"1610558420","indices":[0,13]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[74,79]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1610558420,"in_reply_to_user_id_str":"1610558420","in_reply_to_screen_name":"design4learn","user":{"id":805816250,"id_str":"805816250","name":"Jen + Vanek","screen_name":"VanekJen","location":"Minneapolis MN","description":"Director + of Digital Learning and Research. EdTech Center @ World Education. Teacher + educator, researcher, and advocate. Opinions expressed here are my own.","url":"https:\/\/t.co\/HfWBBD9lZC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HfWBBD9lZC","expanded_url":"http:\/\/www.edtech.worlded.org","display_url":"edtech.worlded.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":270,"listed_count":5,"created_at":"Thu + Sep 06 01:47:18 +0000 2012","favourites_count":432,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":340,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1462231397117141001\/zUOXXFo2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/805816250\/1637458182","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 23:43:16 +0000 2019","id":1186790153068564485,"id_str":"1186790153068564485","full_text":"Best + presentation I saw today at #aect19! Enjoyed hearing abt @SBarksway''s work + using tech integrated menus for students to pursue their interests while demonstrating + competence in more meaningful + creative ways. @AECT @UMN_CI https:\/\/t.co\/TAjYOVLoO9","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"aect19","indices":[33,40]}],"symbols":[],"user_mentions":[{"screen_name":"SBarksway","name":"Sarah + Barksdale","id":908737706699710464,"id_str":"908737706699710464","indices":[62,72]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[214,219]},{"screen_name":"UMN_CI","name":"U + of MN CEHD C&I","id":759684692,"id_str":"759684692","indices":[220,227]}],"urls":[],"media":[{"id":1186790142003908608,"id_str":"1186790142003908608","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","url":"https:\/\/t.co\/TAjYOVLoO9","display_url":"pic.twitter.com\/TAjYOVLoO9","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":972,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":645,"resize":"fit"},"large":{"w":1024,"h":972,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186790142003908608,"id_str":"1186790142003908608","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","url":"https:\/\/t.co\/TAjYOVLoO9","display_url":"pic.twitter.com\/TAjYOVLoO9","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":972,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":645,"resize":"fit"},"large":{"w":1024,"h":972,"resize":"fit"}},"ext_alt_text":null},{"id":1186790148622569473,"id_str":"1186790148622569473","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhTWi-U0AEx9jJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhTWi-U0AEx9jJ.jpg","url":"https:\/\/t.co\/TAjYOVLoO9","display_url":"pic.twitter.com\/TAjYOVLoO9","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":601,"resize":"fit"},"large":{"w":1024,"h":601,"resize":"fit"},"small":{"w":680,"h":399,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 02:50:54 +0000 2019","id":1186837371842650115,"id_str":"1186837371842650115","full_text":"Saw + some COOL interactive poster presentations today! #aect19 #aect19inspired + https:\/\/t.co\/ouiG0dSJ4N","truncated":false,"display_text_range":[0,77],"entities":{"hashtags":[{"text":"aect19","indices":[54,61]},{"text":"aect19inspired","indices":[62,77]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186837363017707521,"id_str":"1186837363017707521","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/EHh-SyTU8AE2OhI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHh-SyTU8AE2OhI.jpg","url":"https:\/\/t.co\/ouiG0dSJ4N","display_url":"pic.twitter.com\/ouiG0dSJ4N","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186837371842650115\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186837363017707521,"id_str":"1186837363017707521","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/EHh-SyTU8AE2OhI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHh-SyTU8AE2OhI.jpg","url":"https:\/\/t.co\/ouiG0dSJ4N","display_url":"pic.twitter.com\/ouiG0dSJ4N","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186837371842650115\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186837363013455872,"id_str":"1186837363013455872","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/EHh-SySUEAAyd_E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHh-SySUEAAyd_E.jpg","url":"https:\/\/t.co\/ouiG0dSJ4N","display_url":"pic.twitter.com\/ouiG0dSJ4N","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186837371842650115\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186837363021889536,"id_str":"1186837363021889536","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/EHh-SyUUwAA3Cb9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHh-SyUUwAA3Cb9.jpg","url":"https:\/\/t.co\/ouiG0dSJ4N","display_url":"pic.twitter.com\/ouiG0dSJ4N","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186837371842650115\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 01:05:03 +0000 2019","id":1186810735906545664,"id_str":"1186810735906545664","full_text":"Awesome + session today by @DrTerriC on using built-in iOS apps for creativity in teaching + & learning @AECT. #aect19 #aect19inspired","truncated":false,"display_text_range":[0,134],"entities":{"hashtags":[{"text":"aect19","indices":[111,118]},{"text":"aect19inspired","indices":[119,134]}],"symbols":[],"user_mentions":[{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[25,34]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[104,109]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":887813304311087104,"id_str":"887813304311087104","name":"Art + Brownlow","screen_name":"art_brownlow","location":"Brownsville, TX","description":"UTRGV + Music Prof & Academic Innovation Fellow, UT System Academy of Distinguished + Teachers, ROTA 2016, \uf8ffADE 2015, Braves fan, Husband & Dad","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":291,"friends_count":338,"listed_count":5,"created_at":"Wed + Jul 19 23:16:01 +0000 2017","favourites_count":237,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":132,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887813304311087104\/1500521777","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 23:55:51 +0000 2019","id":1186793319214374912,"id_str":"1186793319214374912","full_text":"@edtech_prokes + discussing his research (done with @plowenthal) at the @AECT conference. #aect19inspired + https:\/\/t.co\/cXl3GxCjRB","truncated":false,"display_text_range":[0,103],"entities":{"hashtags":[{"text":"aect19inspired","indices":[88,103]}],"symbols":[],"user_mentions":[{"screen_name":"edtech_prokes","name":"Dr. + Chris Prokes","id":757930304438931456,"id_str":"757930304438931456","indices":[0,14]},{"screen_name":"plowenthal","name":"Patrick + Lowenthal","id":14364665,"id_str":"14364665","indices":[50,61]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[70,75]}],"urls":[],"media":[{"id":1186793295126523904,"id_str":"1186793295126523904","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhWNsnU8AAJbc4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhWNsnU8AAJbc4.jpg","url":"https:\/\/t.co\/cXl3GxCjRB","display_url":"pic.twitter.com\/cXl3GxCjRB","expanded_url":"https:\/\/twitter.com\/edtechdoc\/status\/1186793319214374912\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186793295126523904,"id_str":"1186793295126523904","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhWNsnU8AAJbc4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhWNsnU8AAJbc4.jpg","url":"https:\/\/t.co\/cXl3GxCjRB","display_url":"pic.twitter.com\/cXl3GxCjRB","expanded_url":"https:\/\/twitter.com\/edtechdoc\/status\/1186793319214374912\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":757930304438931456,"in_reply_to_user_id_str":"757930304438931456","in_reply_to_screen_name":"edtech_prokes","user":{"id":1101331518692184065,"id_str":"1101331518692184065","name":"BSU + EdTech AGP","screen_name":"EdTechAGP","location":"Boise, ID","description":"Advanced + Grad Programs. 100% online Ed Specialist & Doctoral programs in educational + technology at Boise State University. EdD founded 2012. EdS founded 2016.","url":"https:\/\/t.co\/27jpLvNAsW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/27jpLvNAsW","expanded_url":"https:\/\/sites.google.com\/boisestate.edu\/edtech-advanced-grad-programs\/home","display_url":"sites.google.com\/boisestate.edu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":147,"friends_count":89,"listed_count":4,"created_at":"Fri + Mar 01 04:01:10 +0000 2019","favourites_count":201,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":142,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1101332437634826241\/bPwzWhxZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1101332437634826241\/bPwzWhxZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1101331518692184065\/1551413241","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 00:28:40 +0000 2019","id":1186801576842649600,"id_str":"1186801576842649600","full_text":"After + 4 years of online friendship, it just took a love of #GBBO and assessment + design to unite us at #aect19 #aect19inspired https:\/\/t.co\/K82l7X81JX","truncated":false,"display_text_range":[0,125],"entities":{"hashtags":[{"text":"GBBO","indices":[59,64]},{"text":"aect19","indices":[102,109]},{"text":"aect19inspired","indices":[110,125]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/K82l7X81JX","expanded_url":"https:\/\/twitter.com\/yinbk\/status\/1186799142732910592","display_url":"twitter.com\/yinbk\/status\/1\u2026","indices":[126,149]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27256471,"id_str":"27256471","name":"Tanya + O''Reilly","screen_name":"TenaciousTan","location":"Stockholm, Sweden","description":"A + bookish tea-guzzler interested in digital education, digital culture, multimodality, + New Materialism, innovative assessment practices in Higher Education","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":279,"friends_count":783,"listed_count":12,"created_at":"Sat + Mar 28 16:22:04 +0000 2009","favourites_count":2510,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1513,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/113025390\/manga_me_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/113025390\/manga_me_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27256471\/1452114046","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186799142732910592,"quoted_status_id_str":"1186799142732910592","quoted_status_permalink":{"url":"https:\/\/t.co\/K82l7X81JX","expanded":"https:\/\/twitter.com\/yinbk\/status\/1186799142732910592","display":"twitter.com\/yinbk\/status\/1\u2026"},"quoted_status":{"created_at":"Wed + Oct 23 00:18:59 +0000 2019","id":1186799142732910592,"id_str":"1186799142732910592","full_text":"Tanya + and I finally met! You still have some time to come talk to us at the poster + session. #aect19 #aect19inspired @TenaciousTan https:\/\/t.co\/5Q3x6ysCyE","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[{"text":"aect19","indices":[92,99]},{"text":"aect19inspired","indices":[100,115]}],"symbols":[],"user_mentions":[{"screen_name":"TenaciousTan","name":"Tanya + O''Reilly","id":27256471,"id_str":"27256471","indices":[116,129]}],"urls":[],"media":[{"id":1186799118309441538,"id_str":"1186799118309441538","indices":[130,153],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhbgpqUwAItnHW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhbgpqUwAItnHW.jpg","url":"https:\/\/t.co\/5Q3x6ysCyE","display_url":"pic.twitter.com\/5Q3x6ysCyE","expanded_url":"https:\/\/twitter.com\/yinbk\/status\/1186799142732910592\/photo\/1","type":"photo","sizes":{"large":{"w":1025,"h":825,"resize":"fit"},"medium":{"w":1025,"h":825,"resize":"fit"},"small":{"w":680,"h":547,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1186799118309441538,"id_str":"1186799118309441538","indices":[130,153],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhbgpqUwAItnHW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhbgpqUwAItnHW.jpg","url":"https:\/\/t.co\/5Q3x6ysCyE","display_url":"pic.twitter.com\/5Q3x6ysCyE","expanded_url":"https:\/\/twitter.com\/yinbk\/status\/1186799142732910592\/photo\/1","type":"photo","sizes":{"large":{"w":1025,"h":825,"resize":"fit"},"medium":{"w":1025,"h":825,"resize":"fit"},"small":{"w":680,"h":547,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":459903,"id_str":"459903","name":"\ud83c\uddfa\ud83c\uddf8 + Yin Kreher, PhD","screen_name":"yinbk","location":"","description":"Instructional + Designer | Lead LXD @FourthRev | Boundary-Crosser. Looks for the exquisite + at intersections. All tweets are mine. \ud83d\udc9c #XR #DesignLeadership + \ud83e\udef0","url":"https:\/\/t.co\/nJBVP9cpz7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nJBVP9cpz7","expanded_url":"http:\/\/yinwahkreher.com","display_url":"yinwahkreher.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1043,"friends_count":1124,"listed_count":79,"created_at":"Tue + Jan 02 17:04:05 +0000 2007","favourites_count":7349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"363738","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459903\/1611022238","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"E81C4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:21:24 +0000 2019","id":1186754450095927296,"id_str":"1186754450095927296","full_text":"RT + @WorldEdUS: Over 18 months, Jen worked with 6 @AmeriCorps members to help + them best support adult #refugees and #immigrant learners in t\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"refugees","indices":[101,110]},{"text":"immigrant","indices":[115,125]}],"symbols":[],"user_mentions":[{"screen_name":"WorldEdUS","name":"World + Education - US","id":615387166,"id_str":"615387166","indices":[3,13]},{"screen_name":"AmeriCorps","name":"AmeriCorps","id":17967675,"id_str":"17967675","indices":[49,60]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 21:08:49 +0000 2019","id":1186751282234757123,"id_str":"1186751282234757123","full_text":"Over + 18 months, Jen worked with 6 @AmeriCorps members to help them best support + adult #refugees and #immigrant learners in their community-based computer + labs. You can learn more about Jen''s #digitalliteracy work here: https:\/\/t.co\/C35W440f24 + #AECT19 #AECT19inspired","truncated":false,"display_text_range":[0,266],"entities":{"hashtags":[{"text":"refugees","indices":[86,95]},{"text":"immigrant","indices":[100,110]},{"text":"digitalliteracy","indices":[191,207]},{"text":"AECT19","indices":[243,250]},{"text":"AECT19inspired","indices":[251,266]}],"symbols":[],"user_mentions":[{"screen_name":"AmeriCorps","name":"AmeriCorps","id":17967675,"id_str":"17967675","indices":[34,45]}],"urls":[{"url":"https:\/\/t.co\/C35W440f24","expanded_url":"http:\/\/ctep.weebly.com","display_url":"ctep.weebly.com","indices":[219,242]}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":1186662492170260482,"in_reply_to_status_id_str":"1186662492170260482","in_reply_to_user_id":615387166,"in_reply_to_user_id_str":"615387166","in_reply_to_screen_name":"WorldEdUS","user":{"id":615387166,"id_str":"615387166","name":"World + Education - US","screen_name":"WorldEdUS","location":"United States","description":"Tweeting + about #adultedu: college and career readiness, workforce devel., edtech, equity, + ESOL, immigrant integration, and learner persistence. Part of @WorldEd","url":"https:\/\/t.co\/OPkpvea3n6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OPkpvea3n6","expanded_url":"http:\/\/bit.ly\/13MenuZ","display_url":"bit.ly\/13MenuZ","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1805,"friends_count":409,"listed_count":62,"created_at":"Fri + Jun 22 17:51:07 +0000 2012","favourites_count":1110,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4118,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1522290880492752898\/Njh-L4f__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1522290880492752898\/Njh-L4f__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/615387166\/1512058949","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"A42A2E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:55:19 +0000 2019","id":1186778085351276544,"id_str":"1186778085351276544","full_text":"Come + and see my PBL-based EFL writing instruction design enhanced by a web-app + @goformative #aect19inspired #aect #aect2019 https:\/\/t.co\/udFEFaciEN","truncated":false,"display_text_range":[0,123],"entities":{"hashtags":[{"text":"aect19inspired","indices":[92,107]},{"text":"aect","indices":[108,113]},{"text":"aect2019","indices":[114,123]}],"symbols":[],"user_mentions":[{"screen_name":"goformative","name":"formative","id":2977995193,"id_str":"2977995193","indices":[79,91]}],"urls":[],"media":[{"id":1186778079303106560,"id_str":"1186778079303106560","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhIYBQVAAAUHqV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhIYBQVAAAUHqV.jpg","url":"https:\/\/t.co\/udFEFaciEN","display_url":"pic.twitter.com\/udFEFaciEN","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1186778085351276544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186778079303106560,"id_str":"1186778079303106560","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhIYBQVAAAUHqV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhIYBQVAAAUHqV.jpg","url":"https:\/\/t.co\/udFEFaciEN","display_url":"pic.twitter.com\/udFEFaciEN","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1186778085351276544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186318434964930560,"id_str":"1186318434964930560","name":"Murat + Turk, Ph.D.","screen_name":"MuratTurkEd","location":"Cincinnati, OH","description":"Online + Learning | motivation | engagement | online presences | loving husband of + Sinem Toraman Turk \u2764\ufe0f| loving father of @bgmtrk1\u2764\ufe0f | @FulbrightTurkey","url":"https:\/\/t.co\/DmCPHu9r7d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DmCPHu9r7d","expanded_url":"http:\/\/www.ardat.net","display_url":"ardat.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":853,"listed_count":5,"created_at":"Mon + Oct 21 16:29:13 +0000 2019","favourites_count":4396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2544,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186318434964930560\/1653078596","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"0acf1acaf0d62001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0acf1acaf0d62001.json","place_type":"poi","name":"Paradise + Event Center - Westgate Hotel & Casino","full_name":"Paradise Event Center + - Westgate Hotel & Casino","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.15302074946543,36.13441948267438],[-115.15302074946543,36.13441948267438],[-115.15302074946543,36.13441948267438],[-115.15302074946543,36.13441948267438]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:05:47 +0000 2019","id":1186765619779293186,"id_str":"1186765619779293186","full_text":"RT + @LF_Hampton: Technology might not be the best solution, especially as students + get older. Check out implications... too much independenc\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LF_Hampton","name":"Lindsey + Hampton","id":743784287024087040,"id_str":"743784287024087040","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3280609324,"id_str":"3280609324","name":"Don + Marlett","screen_name":"MarlettDon","location":"Marion, NC","description":"Proud + dad, lucky husband, wishful runner. Obsessed with connecting #research, #instruction, + #leadership to help educators grow a culture of success.","url":"https:\/\/t.co\/ZaSUXePcIZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ZaSUXePcIZ","expanded_url":"https:\/\/learningfocused.com\/accelerating-learning\/","display_url":"learningfocused.com\/accelerating-l\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":519,"friends_count":1192,"listed_count":1,"created_at":"Sun + May 17 19:45:50 +0000 2015","favourites_count":2326,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1061410244746768385\/Hb_59crR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1061410244746768385\/Hb_59crR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3280609324\/1649066225","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 20 15:24:31 +0000 2019","id":1185939862928711680,"id_str":"1185939862928711680","full_text":"Technology + might not be the best solution, especially as students get older. Check out + implications... too much independence may negate positive impact of using + tech. #aect19 #edchat @LearningFocused https:\/\/t.co\/iNqeax0RhG","truncated":false,"display_text_range":[0,199],"entities":{"hashtags":[{"text":"aect19","indices":[167,174]},{"text":"edchat","indices":[175,182]}],"symbols":[],"user_mentions":[{"screen_name":"LearningFocused","name":"Learning-Focused","id":44679243,"id_str":"44679243","indices":[183,199]}],"urls":[{"url":"https:\/\/t.co\/iNqeax0RhG","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1185585902699106315","display_url":"twitter.com\/hampthephd\/sta\u2026","indices":[200,223]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":743784287024087040,"id_str":"743784287024087040","name":"Lindsey + Hampton","screen_name":"LF_Hampton","location":"Ocala, FL","description":"Chief + Academic Officer of LEARNING-FOCUSED. Obsessed with exemplary practices and + helping schools connect the instructional dots! #withLF","url":"https:\/\/t.co\/PYvm0PVz02","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/PYvm0PVz02","expanded_url":"http:\/\/learningfocused.com","display_url":"learningfocused.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":235,"friends_count":392,"listed_count":1,"created_at":"Fri + Jun 17 12:36:07 +0000 2016","favourites_count":908,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":555,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1141874670398050309\/MlUYgJJw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1141874670398050309\/MlUYgJJw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/743784287024087040\/1517936193","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1185585902699106315,"quoted_status_id_str":"1185585902699106315","quoted_status_permalink":{"url":"https:\/\/t.co\/iNqeax0RhG","expanded":"https:\/\/twitter.com\/hampthephd\/status\/1185585902699106315","display":"twitter.com\/hampthephd\/sta\u2026"},"quoted_status":{"created_at":"Sat + Oct 19 15:58:00 +0000 2019","id":1185585902699106315,"id_str":"1185585902699106315","full_text":"Excited + to announce our poster for \"K-12 Students'' Conceptions of Learning with + Technology: A Drawing Analysis\" \ud83d\udcbb\u270f\ufe0f\ud83d\udcdc is finished! + Shout out to my team for all their hard work! Come see us at 4 pm on Tuesday! + #AECT19 @AECT https:\/\/t.co\/PlzabmW8s5","truncated":false,"display_text_range":[0,221],"entities":{"hashtags":[{"text":"AECT19","indices":[208,215]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[216,221]}],"urls":[],"media":[{"id":1185585896474722309,"id_str":"1185585896474722309","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","url":"https:\/\/t.co\/PlzabmW8s5","display_url":"pic.twitter.com\/PlzabmW8s5","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1185585902699106315\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":511,"resize":"fit"},"large":{"w":2048,"h":1539,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185585896474722309,"id_str":"1185585896474722309","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","url":"https:\/\/t.co\/PlzabmW8s5","display_url":"pic.twitter.com\/PlzabmW8s5","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1185585902699106315\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":511,"resize":"fit"},"large":{"w":2048,"h":1539,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1185585902699106315,"quoted_status_id_str":"1185585902699106315","quoted_status_permalink":{"url":"https:\/\/t.co\/iNqeax0RhG","expanded":"https:\/\/twitter.com\/hampthephd\/status\/1185585902699106315","display":"twitter.com\/hampthephd\/sta\u2026"},"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 00:45:27 +0000 2019","id":1186805800569696257,"id_str":"1186805800569696257","full_text":"#aect19 + selfie from today at the Westgate. https:\/\/t.co\/Pst1gK3iOa","truncated":false,"display_text_range":[0,42],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186805798191517696,"id_str":"1186805798191517696","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhhleKUUAAriqI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhhleKUUAAriqI.jpg","url":"https:\/\/t.co\/Pst1gK3iOa","display_url":"pic.twitter.com\/Pst1gK3iOa","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1186805800569696257\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":255,"h":198,"resize":"fit"},"large":{"w":255,"h":198,"resize":"fit"},"small":{"w":255,"h":198,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186805798191517696,"id_str":"1186805798191517696","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhhleKUUAAriqI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhhleKUUAAriqI.jpg","url":"https:\/\/t.co\/Pst1gK3iOa","display_url":"pic.twitter.com\/Pst1gK3iOa","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1186805800569696257\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":255,"h":198,"resize":"fit"},"large":{"w":255,"h":198,"resize":"fit"},"small":{"w":255,"h":198,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:17:32 +0000 2019","id":1186768576310435840,"id_str":"1186768576310435840","full_text":"May + I suggest *Resurrect* as the 10th event of instruction? #aect19 https:\/\/t.co\/tu7IjqqqZx","truncated":false,"display_text_range":[0,67],"entities":{"hashtags":[{"text":"aect19","indices":[60,67]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tu7IjqqqZx","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1186767155347353600","display_url":"twitter.com\/FakeBobGagne\/s\u2026","indices":[68,91]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186767155347353600,"quoted_status_id_str":"1186767155347353600","quoted_status_permalink":{"url":"https:\/\/t.co\/tu7IjqqqZx","expanded":"https:\/\/twitter.com\/FakeBobGagne\/status\/1186767155347353600","display":"twitter.com\/FakeBobGagne\/s\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 22:11:53 +0000 2019","id":1186767155347353600,"id_str":"1186767155347353600","full_text":"Be + sure to come to my \u201c9 events of instruction\u201d presentation Thursday + at 8:53am in pavilion 19. Just kidding, I am dead. #aect19","truncated":false,"display_text_range":[0,128],"entities":{"hashtags":[{"text":"aect19","indices":[121,128]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 02:28:51 +0000 2019","id":1186831821977210880,"id_str":"1186831821977210880","full_text":"RT + @RitaFennelly: Saw a great @aect poster presentation called An exploration + of K-12 students\u2019 conceptions of learning with technology: A\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[30,35]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 01:22:11 +0000 2019","id":1186815044417286144,"id_str":"1186815044417286144","full_text":"Saw + a great @aect poster presentation called An exploration of K-12 students\u2019 + conceptions of learning with technology: A drawing analysis for students in + a 1:1 #Chromebook environment Looking forward to reading the paper #aect19inspired + #aect2019","truncated":false,"display_text_range":[0,246],"entities":{"hashtags":[{"text":"Chromebook","indices":[160,171]},{"text":"aect19inspired","indices":[221,236]},{"text":"aect2019","indices":[237,246]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[12,17]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:23:36 +0000 2019","id":1186755006025744384,"id_str":"1186755006025744384","full_text":"Augmented + Reality and Virtual Reality are so popular, probably because they\u2019re + better than Actual Reality. #aect19","truncated":false,"display_text_range":[0,114],"entities":{"hashtags":[{"text":"aect19","indices":[107,114]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 22:44:12 +0000 2019","id":1186775286592851968,"id_str":"1186775286592851968","full_text":"Interested + in supporting an @Aect presentation? Whether you can join or not, help us + demonstrate the power of social media for the Wed panel It\u2019s a Small + World: Decreasing the Distance One Tweet, Snap, & Post at a Time by tagging + your home #aect19inspired https:\/\/t.co\/T9ciynGWoI","truncated":false,"display_text_range":[0,283],"entities":{"hashtags":[{"text":"aect19inspired","indices":[244,259]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[28,33]}],"urls":[{"url":"https:\/\/t.co\/T9ciynGWoI","expanded_url":"http:\/\/bit.ly\/mapconnect","display_url":"bit.ly\/mapconnect","indices":[260,283]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 23:51:20 +0000 2019","id":1186792180855132160,"id_str":"1186792180855132160","full_text":"When + 1 of the people you admire and look up to for their amazing pedagogy, work + as a scholar, and leadership comes to your session...and likes it!!! \ud83e\udd17\ud83e\udd29\ud83e\udd73 + #aect19inspired #aect19 https:\/\/t.co\/UMpsANDI3H https:\/\/t.co\/sifijU6xdm","truncated":false,"display_text_range":[0,200],"entities":{"hashtags":[{"text":"aect19inspired","indices":[153,168]},{"text":"aect19","indices":[169,176]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UMpsANDI3H","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485","display_url":"twitter.com\/pazureka\/statu\u2026","indices":[177,200]}],"media":[{"id":1186792173255004160,"id_str":"1186792173255004160","indices":[201,224],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHhVMZUUEAAW8rN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHhVMZUUEAAW8rN.jpg","url":"https:\/\/t.co\/sifijU6xdm","display_url":"pic.twitter.com\/sifijU6xdm","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1186792180855132160\/photo\/1","type":"photo","sizes":{"small":{"w":220,"h":164,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":220,"h":164,"resize":"fit"},"medium":{"w":220,"h":164,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186792173255004160,"id_str":"1186792173255004160","indices":[201,224],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHhVMZUUEAAW8rN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHhVMZUUEAAW8rN.jpg","url":"https:\/\/t.co\/sifijU6xdm","display_url":"pic.twitter.com\/sifijU6xdm","expanded_url":"https:\/\/twitter.com\/SBarksway\/status\/1186792180855132160\/photo\/1","type":"animated_gif","sizes":{"small":{"w":220,"h":164,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":220,"h":164,"resize":"fit"},"medium":{"w":220,"h":164,"resize":"fit"}},"video_info":{"aspect_ratio":[55,41],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHhVMZUUEAAW8rN.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":908737706699710464,"id_str":"908737706699710464","name":"Sarah + Barksdale","screen_name":"SBarksway","location":"","description":"Educator + \ud83d\udcda Researcher \u270d\ud83c\udffb Instructional Design \ud83d\udc69\u200d\ud83c\udfa8 + PhD Cand.\u2615\ufe0f Learning Technologies \ud83d\udcbb Adventurer & Travelholic + \ud83c\udfd4\ufe0f \ud83d\udc99: #edtech #CSforALL #teachered #pd","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":329,"friends_count":480,"listed_count":5,"created_at":"Fri + Sep 15 17:02:07 +0000 2017","favourites_count":2160,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":428,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/914629172219252737\/GmJVX3WV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/908737706699710464\/1506899531","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186790153068564485,"quoted_status_id_str":"1186790153068564485","quoted_status_permalink":{"url":"https:\/\/t.co\/UMpsANDI3H","expanded":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485","display":"twitter.com\/pazureka\/statu\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 23:43:16 +0000 2019","id":1186790153068564485,"id_str":"1186790153068564485","full_text":"Best + presentation I saw today at #aect19! Enjoyed hearing abt @SBarksway''s work + using tech integrated menus for students to pursue their interests while demonstrating + competence in more meaningful + creative ways. @AECT @UMN_CI https:\/\/t.co\/TAjYOVLoO9","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"aect19","indices":[33,40]}],"symbols":[],"user_mentions":[{"screen_name":"SBarksway","name":"Sarah + Barksdale","id":908737706699710464,"id_str":"908737706699710464","indices":[62,72]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[214,219]},{"screen_name":"UMN_CI","name":"U + of MN CEHD C&I","id":759684692,"id_str":"759684692","indices":[220,227]}],"urls":[],"media":[{"id":1186790142003908608,"id_str":"1186790142003908608","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","url":"https:\/\/t.co\/TAjYOVLoO9","display_url":"pic.twitter.com\/TAjYOVLoO9","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":972,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":645,"resize":"fit"},"large":{"w":1024,"h":972,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186790142003908608,"id_str":"1186790142003908608","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhTWKUUEAAMoW5.jpg","url":"https:\/\/t.co\/TAjYOVLoO9","display_url":"pic.twitter.com\/TAjYOVLoO9","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":972,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":645,"resize":"fit"},"large":{"w":1024,"h":972,"resize":"fit"}},"ext_alt_text":null},{"id":1186790148622569473,"id_str":"1186790148622569473","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhTWi-U0AEx9jJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhTWi-U0AEx9jJ.jpg","url":"https:\/\/t.co\/TAjYOVLoO9","display_url":"pic.twitter.com\/TAjYOVLoO9","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186790153068564485\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":601,"resize":"fit"},"large":{"w":1024,"h":601,"resize":"fit"},"small":{"w":680,"h":399,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:27:35 +0000 2019","id":1186756007189331968,"id_str":"1186756007189331968","full_text":"RT + @FakeBobGagne: Augmented Reality and Virtual Reality are so popular, probably + because they\u2019re better than Actual Reality. #aect19","truncated":false,"display_text_range":[0,132],"entities":{"hashtags":[{"text":"aect19","indices":[125,132]}],"symbols":[],"user_mentions":[{"screen_name":"FakeBobGagne","name":"FakeBobGagne","id":4130346912,"id_str":"4130346912","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 21:23:36 +0000 2019","id":1186755006025744384,"id_str":"1186755006025744384","full_text":"Augmented + Reality and Virtual Reality are so popular, probably because they\u2019re + better than Actual Reality. #aect19","truncated":false,"display_text_range":[0,114],"entities":{"hashtags":[{"text":"aect19","indices":[107,114]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 23 00:52:25 +0000 2019","id":1186807555596505088,"id_str":"1186807555596505088","full_text":"RT + @MarcusChildress: Enjoying the #AECT19 Convention kickoff with @kcsabina_ + and Qing Zhang. https:\/\/t.co\/JQsWgzp8YI","truncated":false,"display_text_range":[0,116],"entities":{"hashtags":[{"text":"AECT19","indices":[34,41]}],"symbols":[],"user_mentions":[{"screen_name":"MarcusChildress","name":"Marcus + Childress, Ph.D.","id":62390382,"id_str":"62390382","indices":[3,19]},{"screen_name":"kcsabina_","name":"Sabina + KC","id":930858708258738178,"id_str":"930858708258738178","indices":[66,76]}],"urls":[],"media":[{"id":1186717814133907456,"id_str":"1186717814133907456","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgRkIAUYAAwcLZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgRkIAUYAAwcLZ.jpg","url":"https:\/\/t.co\/JQsWgzp8YI","display_url":"pic.twitter.com\/JQsWgzp8YI","expanded_url":"https:\/\/twitter.com\/MarcusChildress\/status\/1186717823319412736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1186717823319412736,"source_status_id_str":"1186717823319412736","source_user_id":62390382,"source_user_id_str":"62390382"}]},"extended_entities":{"media":[{"id":1186717814133907456,"id_str":"1186717814133907456","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgRkIAUYAAwcLZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgRkIAUYAAwcLZ.jpg","url":"https:\/\/t.co\/JQsWgzp8YI","display_url":"pic.twitter.com\/JQsWgzp8YI","expanded_url":"https:\/\/twitter.com\/MarcusChildress\/status\/1186717823319412736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1186717823319412736,"source_status_id_str":"1186717823319412736","source_user_id":62390382,"source_user_id_str":"62390382","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":930858708258738178,"id_str":"930858708258738178","name":"Sabina + KC","screen_name":"kcsabina_","location":"Odessa, TX","description":"Ed.D, + Instructional Design and Performance Technology, Instructional Designer, Life + Coach, Dreamer, Do-er, Achiever, Optimist, Learner, Teacher","url":"https:\/\/t.co\/IBPYKJja50","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IBPYKJja50","expanded_url":"https:\/\/www.linkedin.com\/in\/sabina-k-c-044b77133\/","display_url":"linkedin.com\/in\/sabina-k-c-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":496,"listed_count":2,"created_at":"Wed + Nov 15 18:03:05 +0000 2017","favourites_count":3136,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":415,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1390058813223575560\/eKI3EIR__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1390058813223575560\/eKI3EIR__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/930858708258738178\/1613749154","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 18:55:51 +0000 2019","id":1186717823319412736,"id_str":"1186717823319412736","full_text":"Enjoying + the #AECT19 Convention kickoff with @kcsabina_ and Qing Zhang. https:\/\/t.co\/JQsWgzp8YI","truncated":false,"display_text_range":[0,71],"entities":{"hashtags":[{"text":"AECT19","indices":[13,20]}],"symbols":[],"user_mentions":[{"screen_name":"kcsabina_","name":"Sabina + KC","id":930858708258738178,"id_str":"930858708258738178","indices":[45,55]}],"urls":[],"media":[{"id":1186717814133907456,"id_str":"1186717814133907456","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgRkIAUYAAwcLZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgRkIAUYAAwcLZ.jpg","url":"https:\/\/t.co\/JQsWgzp8YI","display_url":"pic.twitter.com\/JQsWgzp8YI","expanded_url":"https:\/\/twitter.com\/MarcusChildress\/status\/1186717823319412736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186717814133907456,"id_str":"1186717814133907456","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgRkIAUYAAwcLZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgRkIAUYAAwcLZ.jpg","url":"https:\/\/t.co\/JQsWgzp8YI","display_url":"pic.twitter.com\/JQsWgzp8YI","expanded_url":"https:\/\/twitter.com\/MarcusChildress\/status\/1186717823319412736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62390382,"id_str":"62390382","name":"Marcus + Childress, Ph.D.","screen_name":"MarcusChildress","location":"Overland Park, + KS","description":"Founder and Owner of Course Jockey; Former Chief Academic + Officer; Instructional Designer; Past-President @aect; @Virginia_Tech alum; + @AppState alum","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":661,"friends_count":1023,"listed_count":27,"created_at":"Mon + Aug 03 00:34:28 +0000 2009","favourites_count":782,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":833,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1421500685036699650\/4Dx2SRoe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1421500685036699650\/4Dx2SRoe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62390382\/1516048344","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 00:01:27 +0000 2019","id":1186794729691705344,"id_str":"1186794729691705344","full_text":"#aect19inspired + #acet2019 Poster Sessions https:\/\/t.co\/bkIkXmD8I4","truncated":false,"display_text_range":[0,48],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]},{"text":"acet2019","indices":[16,25]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186794723236671488,"id_str":"1186794723236671488","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186794723236671488,"id_str":"1186794723236671488","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}},"ext_alt_text":null},{"id":1186794723240890368,"id_str":"1186794723240890368","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg0wU0AAiXBP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg0wU0AAiXBP.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1186794723282845697,"id_str":"1186794723282845697","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg06VAAE_iQD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg06VAAE_iQD.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1334,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1186794723287035905,"id_str":"1186794723287035905","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg07U8AEE5Ce.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg07U8AEE5Ce.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186765163602436097,"in_reply_to_status_id_str":"1186765163602436097","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 23 00:18:59 +0000 2019","id":1186799142732910592,"id_str":"1186799142732910592","full_text":"Tanya + and I finally met! You still have some time to come talk to us at the poster + session. #aect19 #aect19inspired @TenaciousTan https:\/\/t.co\/5Q3x6ysCyE","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[{"text":"aect19","indices":[92,99]},{"text":"aect19inspired","indices":[100,115]}],"symbols":[],"user_mentions":[{"screen_name":"TenaciousTan","name":"Tanya + O''Reilly","id":27256471,"id_str":"27256471","indices":[116,129]}],"urls":[],"media":[{"id":1186799118309441538,"id_str":"1186799118309441538","indices":[130,153],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhbgpqUwAItnHW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhbgpqUwAItnHW.jpg","url":"https:\/\/t.co\/5Q3x6ysCyE","display_url":"pic.twitter.com\/5Q3x6ysCyE","expanded_url":"https:\/\/twitter.com\/yinbk\/status\/1186799142732910592\/photo\/1","type":"photo","sizes":{"large":{"w":1025,"h":825,"resize":"fit"},"medium":{"w":1025,"h":825,"resize":"fit"},"small":{"w":680,"h":547,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1186799118309441538,"id_str":"1186799118309441538","indices":[130,153],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhbgpqUwAItnHW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhbgpqUwAItnHW.jpg","url":"https:\/\/t.co\/5Q3x6ysCyE","display_url":"pic.twitter.com\/5Q3x6ysCyE","expanded_url":"https:\/\/twitter.com\/yinbk\/status\/1186799142732910592\/photo\/1","type":"photo","sizes":{"large":{"w":1025,"h":825,"resize":"fit"},"medium":{"w":1025,"h":825,"resize":"fit"},"small":{"w":680,"h":547,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":459903,"id_str":"459903","name":"\ud83c\uddfa\ud83c\uddf8 + Yin Kreher, PhD","screen_name":"yinbk","location":"","description":"Instructional + Designer | Lead LXD @FourthRev | Boundary-Crosser. Looks for the exquisite + at intersections. All tweets are mine. \ud83d\udc9c #XR #DesignLeadership + \ud83e\udef0","url":"https:\/\/t.co\/nJBVP9cpz7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nJBVP9cpz7","expanded_url":"http:\/\/yinwahkreher.com","display_url":"yinwahkreher.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1043,"friends_count":1124,"listed_count":79,"created_at":"Tue + Jan 02 17:04:05 +0000 2007","favourites_count":7349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"363738","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459903\/1611022238","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"E81C4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 23:57:46 +0000 2019","id":1186793802654085120,"id_str":"1186793802654085120","full_text":"RT + @edtechdoc: @edtech_prokes discussing his research (done with @plowenthal) + at the @AECT conference. #aect19inspired https:\/\/t.co\/cXl3GxC\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[103,118]}],"symbols":[],"user_mentions":[{"screen_name":"edtech_prokes","name":"Dr. + Chris Prokes","id":757930304438931456,"id_str":"757930304438931456","indices":[15,29]},{"screen_name":"plowenthal","name":"Patrick + Lowenthal","id":14364665,"id_str":"14364665","indices":[65,76]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[85,90]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 23:55:51 +0000 2019","id":1186793319214374912,"id_str":"1186793319214374912","full_text":"@edtech_prokes + discussing his research (done with @plowenthal) at the @AECT conference. #aect19inspired + https:\/\/t.co\/cXl3GxCjRB","truncated":false,"display_text_range":[0,103],"entities":{"hashtags":[{"text":"aect19inspired","indices":[88,103]}],"symbols":[],"user_mentions":[{"screen_name":"edtech_prokes","name":"Dr. + Chris Prokes","id":757930304438931456,"id_str":"757930304438931456","indices":[0,14]},{"screen_name":"plowenthal","name":"Patrick + Lowenthal","id":14364665,"id_str":"14364665","indices":[50,61]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[70,75]}],"urls":[],"media":[{"id":1186793295126523904,"id_str":"1186793295126523904","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhWNsnU8AAJbc4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhWNsnU8AAJbc4.jpg","url":"https:\/\/t.co\/cXl3GxCjRB","display_url":"pic.twitter.com\/cXl3GxCjRB","expanded_url":"https:\/\/twitter.com\/edtechdoc\/status\/1186793319214374912\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186793295126523904,"id_str":"1186793295126523904","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhWNsnU8AAJbc4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhWNsnU8AAJbc4.jpg","url":"https:\/\/t.co\/cXl3GxCjRB","display_url":"pic.twitter.com\/cXl3GxCjRB","expanded_url":"https:\/\/twitter.com\/edtechdoc\/status\/1186793319214374912\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":757930304438931456,"in_reply_to_user_id_str":"757930304438931456","in_reply_to_screen_name":"edtech_prokes","user":{"id":1101331518692184065,"id_str":"1101331518692184065","name":"BSU + EdTech AGP","screen_name":"EdTechAGP","location":"Boise, ID","description":"Advanced + Grad Programs. 100% online Ed Specialist & Doctoral programs in educational + technology at Boise State University. EdD founded 2012. EdS founded 2016.","url":"https:\/\/t.co\/27jpLvNAsW","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/27jpLvNAsW","expanded_url":"https:\/\/sites.google.com\/boisestate.edu\/edtech-advanced-grad-programs\/home","display_url":"sites.google.com\/boisestate.edu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":147,"friends_count":89,"listed_count":4,"created_at":"Fri + Mar 01 04:01:10 +0000 2019","favourites_count":201,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":142,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1101332437634826241\/bPwzWhxZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1101332437634826241\/bPwzWhxZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1101331518692184065\/1551413241","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 23:50:04 +0000 2019","id":1186791865732829184,"id_str":"1186791865732829184","full_text":"I + had a great day of technology workshops #aect19inspired. Dr. Thomas Wilson + just invited me to his presentation tomorrow to learn how to use cognitive + humor to enhance student learning. I\u2019ll be there! Check out his website. + https:\/\/t.co\/BTHIPnMzq8","truncated":false,"display_text_range":[0,248],"entities":{"hashtags":[{"text":"aect19inspired","indices":[42,57]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/BTHIPnMzq8","expanded_url":"https:\/\/images.app.goo.gl\/22Jvxg2V2tp68ssT7","display_url":"images.app.goo.gl\/22Jvxg2V2tp68s\u2026","indices":[225,248]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22522505,"id_str":"22522505","name":"Dr. + Sandra Owens, LCSW","screen_name":"DrSandraOK","location":"The Las Vegas Strip, + Nevada","description":"A therapist, advocate, professor, researcher & administrator + of $5.3M in grants & contracts to improve the wellbeing of children, adults, + seniors & caregivers.","url":"https:\/\/t.co\/Qlmx6JTo9k","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Qlmx6JTo9k","expanded_url":"https:\/\/www.linkedin.com\/in\/drsandraowens-lcsw\/","display_url":"linkedin.com\/in\/drsandraowe\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":639,"friends_count":2442,"listed_count":1,"created_at":"Mon + Mar 02 14:19:05 +0000 2009","favourites_count":3511,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":497,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1317820042617122817\/ohwoERcq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1317820042617122817\/ohwoERcq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22522505\/1506579363","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1186752838753488903%2C1186751685135220736%2C1186751501214990336%2C1186751329730850816%2C1186751301213802496%2C1186751282234757123%2C1186751113329905664%2C1186751043427651584%2C1186750907981021184%2C1186750858974785536%2C1186750809033175041%2C1186750782835585028%2C1186750748584857600%2C1186750672961589250%2C1186750610051227648%2C1186750539368763392%2C1186750493634117632%2C1186749966175178752%2C1186749315890532354%2C1186749315890532354%2C1186746969571483649%2C1186746749441855488%2C1186745325530140672%2C1186744800294236165%2C1186744089468780544%2C1186743771167449089%2C1186743757313470469%2C1186743620847558656%2C1186743620524638208%2C1186743460704862208%2C1186743381302448128%2C1186743178646343680%2C1186742262656487424%2C1186742258579587072%2C1186742194679365632%2C1186741754206150656%2C1186741515306975232%2C1186741246364024832%2C1186741221307252736%2C1186740973746831360%2C1186740752740564992%2C1186740451237253120%2C1186740371868405761%2C1186740275915280384%2C1186740261101031424%2C1186740255258398720%2C1186739820355149825%2C1186739523922714624%2C1186738852947382272%2C1186738424041992192%2C1186738289174122496%2C1186737643276517376%2C1186737555523268608%2C1186737013384368128%2C1186736547212587008%2C1186736526329139200%2C1186736433781858304%2C1186736392358907904%2C1186736108584878081%2C1186735897422651392%2C1186735853831241728%2C1186735606442782720%2C1186735541343023104%2C1186735410463924224%2C1186735338368241667%2C1186735134835298304%2C1186735096033730561%2C1186735076081451009%2C1186734952919887872%2C1186734827183071232%2C1186734751496884224%2C1186734721595662338%2C1186734585473667077%2C1186734336747261952%2C1186733913118347264%2C1186732733516701696%2C1186732733516701696%2C1186732355483881473%2C1186732326538997760%2C1186731466375479296%2C1186731114284478465%2C1186731063164301312%2C1186730975591428096%2C1186730677317668866%2C1186730225096450051%2C1186728958789931012%2C1186728014203109376%2C1186727693808627712%2C1186727489072062464%2C1186727244829511681%2C1186727100759334912%2C1186726606577909767%2C1186726095418056704%2C1186725901729316865%2C1186725674649714688%2C1186724407726596096%2C1186722955495002112%2C1186720651521871877%2C1186720455899537408%2C1186720386999697408&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:52 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:52 GMT + x-transaction: 8023ad3b74956578 + content-length: '51592' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '278' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '353' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Tue Oct 22 20:12:07 +0000 2019","id":1186737013384368128,"id_str":"1186737013384368128","full_text":"Thank + you for joining our \"How do Pre-service teachers understandings of computational + thinking change?\" session! @jweeble #aect19inspired #aect19 https:\/\/t.co\/ihXT0d8BG3","truncated":false,"display_text_range":[0,146],"entities":{"hashtags":[{"text":"aect19inspired","indices":[123,138]},{"text":"aect19","indices":[139,146]}],"symbols":[],"user_mentions":[{"screen_name":"jweeble","name":"Jennifer + Weible","id":28419864,"id_str":"28419864","indices":[114,122]}],"urls":[],"media":[{"id":1186737008883855360,"id_str":"1186737008883855360","indices":[147,170],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgjBaBU8AA0Azi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgjBaBU8AA0Azi.jpg","url":"https:\/\/t.co\/ihXT0d8BG3","display_url":"pic.twitter.com\/ihXT0d8BG3","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1186737013384368128\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":405,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":720,"h":405,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186737008883855360,"id_str":"1186737008883855360","indices":[147,170],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgjBaBU8AA0Azi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgjBaBU8AA0Azi.jpg","url":"https:\/\/t.co\/ihXT0d8BG3","display_url":"pic.twitter.com\/ihXT0d8BG3","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1186737013384368128\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":405,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":720,"h":405,"resize":"fit"}},"ext_alt_text":null},{"id":1186737008883879936,"id_str":"1186737008883879936","indices":[147,170],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgjBaBVUAADlTU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgjBaBVUAADlTU.jpg","url":"https:\/\/t.co\/ihXT0d8BG3","display_url":"pic.twitter.com\/ihXT0d8BG3","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1186737013384368128\/photo\/1","type":"photo","sizes":{"medium":{"w":720,"h":405,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":405,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:30:57 +0000 2019","id":1186741754206150656,"id_str":"1186741754206150656","full_text":"RT + @matt_m_schmidt: Connecting with fantastic colleagues at #aect19! https:\/\/t.co\/cUOmROnmoa","truncated":false,"display_text_range":[0,92],"entities":{"hashtags":[{"text":"aect19","indices":[60,67]}],"symbols":[],"user_mentions":[{"screen_name":"matt_m_schmidt","name":"Matthew + Schmidt","id":9806452,"id_str":"9806452","indices":[3,18]}],"urls":[],"media":[{"id":1186716637170294784,"id_str":"1186716637170294784","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQfneU4AAV0Ax.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQfneU4AAV0Ax.jpg","url":"https:\/\/t.co\/cUOmROnmoa","display_url":"pic.twitter.com\/cUOmROnmoa","expanded_url":"https:\/\/twitter.com\/matt_m_schmidt\/status\/1186716644455796736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":901,"resize":"fit"},"large":{"w":2048,"h":1538,"resize":"fit"},"small":{"w":680,"h":511,"resize":"fit"}},"source_status_id":1186716644455796736,"source_status_id_str":"1186716644455796736","source_user_id":9806452,"source_user_id_str":"9806452"}]},"extended_entities":{"media":[{"id":1186716637170294784,"id_str":"1186716637170294784","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQfneU4AAV0Ax.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQfneU4AAV0Ax.jpg","url":"https:\/\/t.co\/cUOmROnmoa","display_url":"pic.twitter.com\/cUOmROnmoa","expanded_url":"https:\/\/twitter.com\/matt_m_schmidt\/status\/1186716644455796736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":901,"resize":"fit"},"large":{"w":2048,"h":1538,"resize":"fit"},"small":{"w":680,"h":511,"resize":"fit"}},"source_status_id":1186716644455796736,"source_status_id_str":"1186716644455796736","source_user_id":9806452,"source_user_id_str":"9806452","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 18:51:10 +0000 2019","id":1186716644455796736,"id_str":"1186716644455796736","full_text":"Connecting + with fantastic colleagues at #aect19! https:\/\/t.co\/cUOmROnmoa","truncated":false,"display_text_range":[0,48],"entities":{"hashtags":[{"text":"aect19","indices":[40,47]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186716637170294784,"id_str":"1186716637170294784","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQfneU4AAV0Ax.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQfneU4AAV0Ax.jpg","url":"https:\/\/t.co\/cUOmROnmoa","display_url":"pic.twitter.com\/cUOmROnmoa","expanded_url":"https:\/\/twitter.com\/matt_m_schmidt\/status\/1186716644455796736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":901,"resize":"fit"},"large":{"w":2048,"h":1538,"resize":"fit"},"small":{"w":680,"h":511,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186716637170294784,"id_str":"1186716637170294784","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQfneU4AAV0Ax.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQfneU4AAV0Ax.jpg","url":"https:\/\/t.co\/cUOmROnmoa","display_url":"pic.twitter.com\/cUOmROnmoa","expanded_url":"https:\/\/twitter.com\/matt_m_schmidt\/status\/1186716644455796736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":901,"resize":"fit"},"large":{"w":2048,"h":1538,"resize":"fit"},"small":{"w":680,"h":511,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":9806452,"id_str":"9806452","name":"Matthew + Schmidt","screen_name":"matt_m_schmidt","location":"Gainesville, FL","description":"Editor-in-Chief + of Learner & User Experience Research. Read & share here: https:\/\/t.co\/nMBaOeqjpy","url":"https:\/\/t.co\/MQBbLAksSX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MQBbLAksSX","expanded_url":"http:\/\/matthewschmidt.info","display_url":"matthewschmidt.info","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/nMBaOeqjpy","expanded_url":"https:\/\/edtechbooks.org\/ux","display_url":"edtechbooks.org\/ux","indices":[74,97]}]}},"protected":false,"followers_count":668,"friends_count":404,"listed_count":17,"created_at":"Tue + Oct 30 21:35:53 +0000 2007","favourites_count":698,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":564,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9806452\/1603124176","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:40:14 +0000 2019","id":1186744089468780544,"id_str":"1186744089468780544","full_text":"RT + @michaelmgrant: Gallery walk begins at 4 pm today in the Pavilion Walkthru! + #aect19 https:\/\/t.co\/vGES7YN0Mh","truncated":false,"display_text_range":[0,110],"entities":{"hashtags":[{"text":"aect19","indices":[79,86]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[3,17]}],"urls":[],"media":[{"id":1186743617009795072,"id_str":"1186743617009795072","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","url":"https:\/\/t.co\/vGES7YN0Mh","display_url":"pic.twitter.com\/vGES7YN0Mh","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186743620847558656\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":358,"resize":"fit"},"small":{"w":680,"h":304,"resize":"fit"}},"source_status_id":1186743620847558656,"source_status_id_str":"1186743620847558656","source_user_id":132653457,"source_user_id_str":"132653457"}]},"extended_entities":{"media":[{"id":1186743617009795072,"id_str":"1186743617009795072","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","url":"https:\/\/t.co\/vGES7YN0Mh","display_url":"pic.twitter.com\/vGES7YN0Mh","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186743620847558656\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":358,"resize":"fit"},"small":{"w":680,"h":304,"resize":"fit"}},"source_status_id":1186743620847558656,"source_status_id_str":"1186743620847558656","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186318434964930560,"id_str":"1186318434964930560","name":"Murat + Turk, Ph.D.","screen_name":"MuratTurkEd","location":"Cincinnati, OH","description":"Online + Learning | motivation | engagement | online presences | loving husband of + Sinem Toraman Turk \u2764\ufe0f| loving father of @bgmtrk1\u2764\ufe0f | @FulbrightTurkey","url":"https:\/\/t.co\/DmCPHu9r7d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DmCPHu9r7d","expanded_url":"http:\/\/www.ardat.net","display_url":"ardat.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":853,"listed_count":5,"created_at":"Mon + Oct 21 16:29:13 +0000 2019","favourites_count":4396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2544,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186318434964930560\/1653078596","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:38:22 +0000 2019","id":1186743620847558656,"id_str":"1186743620847558656","full_text":"Gallery + walk begins at 4 pm today in the Pavilion Walkthru! #aect19 https:\/\/t.co\/vGES7YN0Mh","truncated":false,"display_text_range":[0,67],"entities":{"hashtags":[{"text":"aect19","indices":[60,67]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186743617009795072,"id_str":"1186743617009795072","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","url":"https:\/\/t.co\/vGES7YN0Mh","display_url":"pic.twitter.com\/vGES7YN0Mh","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186743620847558656\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":358,"resize":"fit"},"small":{"w":680,"h":304,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186743617009795072,"id_str":"1186743617009795072","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","url":"https:\/\/t.co\/vGES7YN0Mh","display_url":"pic.twitter.com\/vGES7YN0Mh","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186743620847558656\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":358,"resize":"fit"},"small":{"w":680,"h":304,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:07:30 +0000 2019","id":1186735853831241728,"id_str":"1186735853831241728","full_text":"RT + @jbrishke: Really enjoying @AECT so far (what other conference lets you play + with Play-Doh?!), but not forgetting that it''s fall and tha\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jbrishke","name":"J","id":1431588780,"id_str":"1431588780","indices":[3,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[30,35]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:03:00 +0000 2019","id":1186734721595662338,"id_str":"1186734721595662338","full_text":"Really + enjoying @AECT so far (what other conference lets you play with Play-Doh?!), + but not forgetting that it''s fall and that I''m a @GatorsFB gal. #GoGators + #evenonabyeweek #aect19 https:\/\/t.co\/AsCCG2JbKm","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"GoGators","indices":[148,157]},{"text":"evenonabyeweek","indices":[158,173]},{"text":"aect19","indices":[174,181]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[16,21]},{"screen_name":"GatorsFB","name":"Florida + Gators Football","id":39533864,"id_str":"39533864","indices":[133,142]}],"urls":[],"media":[{"id":1186734713030840321,"id_str":"1186734713030840321","indices":[182,205],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgg7xTUEAEZUx0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgg7xTUEAEZUx0.jpg","url":"https:\/\/t.co\/AsCCG2JbKm","display_url":"pic.twitter.com\/AsCCG2JbKm","expanded_url":"https:\/\/twitter.com\/jbrishke\/status\/1186734721595662338\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186734713030840321,"id_str":"1186734713030840321","indices":[182,205],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgg7xTUEAEZUx0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgg7xTUEAEZUx0.jpg","url":"https:\/\/t.co\/AsCCG2JbKm","display_url":"pic.twitter.com\/AsCCG2JbKm","expanded_url":"https:\/\/twitter.com\/jbrishke\/status\/1186734721595662338\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1431588780,"id_str":"1431588780","name":"J","screen_name":"jbrishke","location":"Florida","description":"Guitar + strummer, slow runner, and pet lover. All content represents my POV and does + not represent anyone else.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":500,"listed_count":3,"created_at":"Wed + May 15 22:12:29 +0000 2013","favourites_count":1986,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1511,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3667419958\/07000f2094da3613d23a1ea34d8b17f0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3667419958\/07000f2094da3613d23a1ea34d8b17f0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1431588780\/1380253133","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:14:16 +0000 2019","id":1186737555523268608,"id_str":"1186737555523268608","full_text":"#aect19 + Tip #11 - Develop your skills by playing video games in your hotel room all + through the conference.","truncated":false,"display_text_range":[0,107],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:27:57 +0000 2019","id":1186725901729316865,"id_str":"1186725901729316865","full_text":"Just + missed this due to my presentation prep..Let''s make slides earlier and enjoy + conference more..This is the lesson for #AECT19. Thanks for @bretsw + I can find the slides and learn anout the topic. This is what I expect for + my #fsu2040 class this week! https:\/\/t.co\/IJi4tmYZoW","truncated":false,"display_text_range":[0,259],"entities":{"hashtags":[{"text":"AECT19","indices":[122,129]},{"text":"fsu2040","indices":[234,242]}],"symbols":[],"user_mentions":[{"screen_name":"bretsw","name":"Dr. + Bret Staudt Willet","id":53167706,"id_str":"53167706","indices":[148,155]}],"urls":[{"url":"https:\/\/t.co\/IJi4tmYZoW","expanded_url":"https:\/\/twitter.com\/bretsw\/status\/1186701732270632960","display_url":"twitter.com\/bretsw\/status\/\u2026","indices":[260,283]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1033854044039729152,"id_str":"1033854044039729152","name":"Hajeen + Choi","screen_name":"hajeenfsu","location":"FL","description":"PhD., Interested + in online teaching and learning, motivation, engagement, othering\/belonging, + networked learning, social media in education","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":178,"listed_count":1,"created_at":"Sun + Aug 26 23:09:46 +0000 2018","favourites_count":653,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1033854044039729152\/1535327544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186701732270632960,"quoted_status_id_str":"1186701732270632960","quoted_status_permalink":{"url":"https:\/\/t.co\/IJi4tmYZoW","expanded":"https:\/\/twitter.com\/bretsw\/status\/1186701732270632960","display":"twitter.com\/bretsw\/status\/\u2026"},"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:22:05 +0000 2019","id":1186739523922714624,"id_str":"1186739523922714624","full_text":"RT + @caranorth11: If you are interested in checking out the tool we used to evaluate + open education resources for accessibility, you can fin\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17639668,"id_str":"17639668","name":"Rick + West","screen_name":"richardewest","location":"Provo, ut","description":"Instructional + Designer, Researcher, & Evaluator at Brigham Young University","url":"http:\/\/t.co\/Nc39wWEhGM","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/Nc39wWEhGM","expanded_url":"http:\/\/richardewest.com","display_url":"richardewest.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":223,"listed_count":39,"created_at":"Wed + Nov 26 02:26:26 +0000 2008","favourites_count":799,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3339,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/753792287528714243\/IHhEuPQL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17639668\/1446650027","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:19:25 +0000 2019","id":1186738852947382272,"id_str":"1186738852947382272","full_text":"If + you are interested in checking out the tool we used to evaluate open education + resources for accessibility, you can find it here: https:\/\/t.co\/cMxcEHJf4S + @roycekimmons #aect19 https:\/\/t.co\/RqWAn9hL88","truncated":false,"display_text_range":[0,178],"entities":{"hashtags":[{"text":"aect19","indices":[171,178]}],"symbols":[],"user_mentions":[{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[157,170]}],"urls":[{"url":"https:\/\/t.co\/cMxcEHJf4S","expanded_url":"https:\/\/webaim.org\/","display_url":"webaim.org","indices":[133,156]}],"media":[{"id":1186738846592983040,"id_str":"1186738846592983040","indices":[179,202],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgksYBU4AAFIYf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgksYBU4AAFIYf.jpg","url":"https:\/\/t.co\/RqWAn9hL88","display_url":"pic.twitter.com\/RqWAn9hL88","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186738852947382272\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186738846592983040,"id_str":"1186738846592983040","indices":[179,202],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgksYBU4AAFIYf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgksYBU4AAFIYf.jpg","url":"https:\/\/t.co\/RqWAn9hL88","display_url":"pic.twitter.com\/RqWAn9hL88","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186738852947382272\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:40:06 +0000 2019","id":1186728958789931012,"id_str":"1186728958789931012","full_text":"Come + visit poster T97: Examining Technology Integration in Burkina Faso: Inspiration + of Taiwanese L2 Chinese Teachers\u2019 Beliefs and Practices with #FSU #FSUCOE + #ISLT @ChihPuDai #AECT19 #AECT2019 #teacherbeliefs #africa #technologyintegration + #Chinese #Taiwanese https:\/\/t.co\/08gs2YRY38","truncated":false,"display_text_range":[0,260],"entities":{"hashtags":[{"text":"FSU","indices":[146,150]},{"text":"FSUCOE","indices":[151,158]},{"text":"ISLT","indices":[159,164]},{"text":"AECT19","indices":[176,183]},{"text":"AECT2019","indices":[184,193]},{"text":"teacherbeliefs","indices":[194,209]},{"text":"africa","indices":[210,217]},{"text":"technologyintegration","indices":[218,240]},{"text":"Chinese","indices":[241,249]},{"text":"Taiwanese","indices":[250,260]}],"symbols":[],"user_mentions":[{"screen_name":"ChihPuDai","name":"Chih-Pu + Dai","id":203606146,"id_str":"203606146","indices":[165,175]}],"urls":[],"media":[{"id":1186728956692750339,"id_str":"1186728956692750339","indices":[261,284],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgbstRXYAMzo06.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgbstRXYAMzo06.png","url":"https:\/\/t.co\/08gs2YRY38","display_url":"pic.twitter.com\/08gs2YRY38","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186728958789931012\/photo\/1","type":"photo","sizes":{"medium":{"w":821,"h":615,"resize":"fit"},"small":{"w":680,"h":509,"resize":"fit"},"large":{"w":821,"h":615,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1186728956692750339,"id_str":"1186728956692750339","indices":[261,284],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgbstRXYAMzo06.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgbstRXYAMzo06.png","url":"https:\/\/t.co\/08gs2YRY38","display_url":"pic.twitter.com\/08gs2YRY38","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186728958789931012\/photo\/1","type":"photo","sizes":{"medium":{"w":821,"h":615,"resize":"fit"},"small":{"w":680,"h":509,"resize":"fit"},"large":{"w":821,"h":615,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:03:25 +0000 2019","id":1186734827183071232,"id_str":"1186734827183071232","full_text":"RT + @gsa_aect: The GSA International Division presents the Night Out event on + Oct 22nd, Tuesday, 6:30 - 8:30 pm, at Silk Road Asian Bistro.\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:54:31 +0000 2019","id":1186702385747578880,"id_str":"1186702385747578880","full_text":"The + GSA International Division presents the Night Out event on Oct 22nd, Tuesday, + 6:30 - 8:30 pm, at Silk Road Asian Bistro. Relax and grab some food with your + friends and even meet some new people. RSVP for the event at https:\/\/t.co\/L4vzuz89JO. + #aect19inspired #aectgsa https:\/\/t.co\/oO3w6ybJxg","truncated":false,"display_text_range":[0,270],"entities":{"hashtags":[{"text":"aect19inspired","indices":[246,261]},{"text":"aectgsa","indices":[262,270]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/L4vzuz89JO","expanded_url":"https:\/\/forms.gle\/sy2tUDAVS2U3PtPD9","display_url":"forms.gle\/sy2tUDAVS2U3Pt\u2026","indices":[221,244]}],"media":[{"id":1186702383931383814,"id_str":"1186702383931383814","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgDh-BW4AY1fBz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgDh-BW4AY1fBz.jpg","url":"https:\/\/t.co\/oO3w6ybJxg","display_url":"pic.twitter.com\/oO3w6ybJxg","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1186702385747578880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"},"large":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186702383931383814,"id_str":"1186702383931383814","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgDh-BW4AY1fBz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgDh-BW4AY1fBz.jpg","url":"https:\/\/t.co\/oO3w6ybJxg","display_url":"pic.twitter.com\/oO3w6ybJxg","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1186702385747578880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"},"large":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:25:00 +0000 2019","id":1186740255258398720,"id_str":"1186740255258398720","full_text":"Best + writing advice from the @aect session How-To Review Manuscripts and Proposals + with @dctrcurry 1) APA, \u2018nuff said 2) Grammar & punctuation 3) Solid + methodology In other words, check yourself and edit! #aect19inspired @DrLaPrairie + made me think of you","truncated":false,"display_text_range":[0,258],"entities":{"hashtags":[{"text":"aect19inspired","indices":[209,224]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[29,34]},{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[88,98]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:38:22 +0000 2019","id":1186743620847558656,"id_str":"1186743620847558656","full_text":"Gallery + walk begins at 4 pm today in the Pavilion Walkthru! #aect19 https:\/\/t.co\/vGES7YN0Mh","truncated":false,"display_text_range":[0,67],"entities":{"hashtags":[{"text":"aect19","indices":[60,67]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186743617009795072,"id_str":"1186743617009795072","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","url":"https:\/\/t.co\/vGES7YN0Mh","display_url":"pic.twitter.com\/vGES7YN0Mh","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186743620847558656\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":358,"resize":"fit"},"small":{"w":680,"h":304,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186743617009795072,"id_str":"1186743617009795072","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","url":"https:\/\/t.co\/vGES7YN0Mh","display_url":"pic.twitter.com\/vGES7YN0Mh","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186743620847558656\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":358,"resize":"fit"},"small":{"w":680,"h":304,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:32:57 +0000 2019","id":1186742258579587072,"id_str":"1186742258579587072","full_text":"RT + @MuratTurkOU: Come and see my poster on my instructional design project for + EFL writing instruction #aect #aect19 #aect19inspired https:\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect","indices":[103,108]},{"text":"aect19","indices":[109,116]},{"text":"aect19inspired","indices":[117,132]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:33:20 +0000 2019","id":1186697055667802112,"id_str":"1186697055667802112","full_text":"Come + and see my poster on my instructional design project for EFL writing instruction + #aect #aect19 #aect19inspired https:\/\/t.co\/q8Ygg907uz","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect","indices":[86,91]},{"text":"aect19","indices":[92,99]},{"text":"aect19inspired","indices":[100,115]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186697043881779200,"id_str":"1186697043881779200","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf-rIyUYAA8OXU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf-rIyUYAA8OXU.jpg","url":"https:\/\/t.co\/q8Ygg907uz","display_url":"pic.twitter.com\/q8Ygg907uz","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1186697055667802112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186697043881779200,"id_str":"1186697043881779200","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf-rIyUYAA8OXU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf-rIyUYAA8OXU.jpg","url":"https:\/\/t.co\/q8Ygg907uz","display_url":"pic.twitter.com\/q8Ygg907uz","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1186697055667802112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186318434964930560,"id_str":"1186318434964930560","name":"Murat + Turk, Ph.D.","screen_name":"MuratTurkEd","location":"Cincinnati, OH","description":"Online + Learning | motivation | engagement | online presences | loving husband of + Sinem Toraman Turk \u2764\ufe0f| loving father of @bgmtrk1\u2764\ufe0f | @FulbrightTurkey","url":"https:\/\/t.co\/DmCPHu9r7d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DmCPHu9r7d","expanded_url":"http:\/\/www.ardat.net","display_url":"ardat.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":853,"listed_count":5,"created_at":"Mon + Oct 21 16:29:13 +0000 2019","favourites_count":4396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2544,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186318434964930560\/1653078596","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"0acf1acaf0d62001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0acf1acaf0d62001.json","place_type":"poi","name":"Paradise + Event Center - Westgate Hotel & Casino","full_name":"Paradise Event Center + - Westgate Hotel & Casino","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.15302074946543,36.13441948267438],[-115.15302074946543,36.13441948267438],[-115.15302074946543,36.13441948267438],[-115.15302074946543,36.13441948267438]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:10:11 +0000 2019","id":1186736526329139200,"id_str":"1186736526329139200","full_text":"RT + @RitaFennelly: Great point from Dr. @ifenthaler about how instructional designers + should define which data we want to collect rather tha\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[39,50]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":207345575,"id_str":"207345575","name":"Michelle + Webb","screen_name":"Livn2Learn","location":"Denver, CO","description":"Exploring + the world of learning, one day at a time and as part of a great #PLN. Voracious + reader. Talent and L&D nerd. Opinions are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":451,"friends_count":795,"listed_count":25,"created_at":"Mon + Oct 25 03:22:04 +0000 2010","favourites_count":1956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1738,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1321182029099241472\/tEqwLQx3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1321182029099241472\/tEqwLQx3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/207345575\/1446144967","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:35:33 +0000 2019","id":1186697614311350272,"id_str":"1186697614311350272","full_text":"Great + point from Dr. @ifenthaler about how instructional designers should define + which data we want to collect rather than relying on which data we have. Great + learning @AECT session Learning Analytics: Intersections with ID, Research, + and Practice #aect19inspired","truncated":false,"display_text_range":[0,264],"entities":{"hashtags":[{"text":"aect19inspired","indices":[249,264]}],"symbols":[],"user_mentions":[{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[21,32]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[169,174]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:07:41 +0000 2019","id":1186735897422651392,"id_str":"1186735897422651392","full_text":"RT + @FiratSarsar: One more year is passing without me. \nAs being a former @gsa_aect + president and one of Cochran internship recipients, I mi\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FiratSarsar","name":"FIRAT + SARSAR","id":85487846,"id_str":"85487846","indices":[3,15]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[73,82]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:05:27 +0000 2019","id":1186735338368241667,"id_str":"1186735338368241667","full_text":"One + more year is passing without me. \nAs being a former @gsa_aect president and + one of Cochran internship recipients, I miss my Professional home. @AECT #aect19inspired + #aect19","truncated":false,"display_text_range":[0,176],"entities":{"hashtags":[{"text":"aect19inspired","indices":[153,168]},{"text":"aect19","indices":[169,176]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[56,65]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[147,152]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":85487846,"id_str":"85487846","name":"FIRAT + SARSAR","screen_name":"FiratSarsar","location":"Izmir, Turkey","description":"https:\/\/t.co\/ZQbt4Z1jsv. + @universiteege,PhD @GeorgiaStateU, Instructional Technologist,Fulbright Fellow + @fulbrightprgrm,Director of Distance Learning Center,CTO @eduji_","url":"https:\/\/t.co\/0OkY3GHnCq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OkY3GHnCq","expanded_url":"https:\/\/www.instagram.com\/firatsarsar","display_url":"instagram.com\/firatsarsar","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ZQbt4Z1jsv","expanded_url":"http:\/\/Assoc.Prof","display_url":"Assoc.Prof","indices":[0,23]}]}},"protected":false,"followers_count":1306,"friends_count":478,"listed_count":1,"created_at":"Tue + Oct 27 03:19:46 +0000 2009","favourites_count":3501,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1897,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1449430866573369348\/KeQPATCB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1449430866573369348\/KeQPATCB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/85487846\/1543658697","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:30:45 +0000 2019","id":1186726606577909767,"id_str":"1186726606577909767","full_text":"There + are three kinds of people in the world, those who believe in numbers, and + those who don''t. #aect19","truncated":false,"display_text_range":[0,104],"entities":{"hashtags":[{"text":"aect19","indices":[97,104]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:22:01 +0000 2019","id":1186724407726596096,"id_str":"1186724407726596096","full_text":"A + moment when a Twitter friend becomes real! Great to meet you in person! \u2066@eromerohall\u2069 + \ud83d\udc95 #aect19 #aect19inspired https:\/\/t.co\/zt7UxsCPu0","truncated":false,"display_text_range":[0,114],"entities":{"hashtags":[{"text":"aect19","indices":[91,98]},{"text":"aect19inspired","indices":[99,114]}],"symbols":[],"user_mentions":[{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[75,87]}],"urls":[],"media":[{"id":1186724401196089344,"id_str":"1186724401196089344","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgXjiuUwAAREj9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgXjiuUwAAREj9.jpg","url":"https:\/\/t.co\/zt7UxsCPu0","display_url":"pic.twitter.com\/zt7UxsCPu0","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186724407726596096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186724401196089344,"id_str":"1186724401196089344","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgXjiuUwAAREj9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgXjiuUwAAREj9.jpg","url":"https:\/\/t.co\/zt7UxsCPu0","display_url":"pic.twitter.com\/zt7UxsCPu0","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186724407726596096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:35:05 +0000 2019","id":1186727693808627712,"id_str":"1186727693808627712","full_text":"Come + visit poster T99: Does My Teacher Smile? An Exploration of Social Presence + and Identity in Online Environments with #FSU #FSUCOE #ISLT \u00d6mer Arslan + #AECT19 #AECT2019 #IVLA, #InstructionalDesign, #ED #Smile #Teacher #Identity + #SocialPresence https:\/\/t.co\/CI5MCJu1Fo","truncated":false,"display_text_range":[0,245],"entities":{"hashtags":[{"text":"FSU","indices":[121,125]},{"text":"FSUCOE","indices":[126,133]},{"text":"ISLT","indices":[134,139]},{"text":"AECT19","indices":[152,159]},{"text":"AECT2019","indices":[160,169]},{"text":"IVLA","indices":[171,176]},{"text":"InstructionalDesign","indices":[178,198]},{"text":"ED","indices":[200,203]},{"text":"Smile","indices":[204,210]},{"text":"Teacher","indices":[211,219]},{"text":"Identity","indices":[220,229]},{"text":"SocialPresence","indices":[230,245]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186727691535429632,"id_str":"1186727691535429632","indices":[246,269],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgajEMWsAAspU2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgajEMWsAAspU2.jpg","url":"https:\/\/t.co\/CI5MCJu1Fo","display_url":"pic.twitter.com\/CI5MCJu1Fo","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186727693808627712\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":924,"h":715,"resize":"fit"},"large":{"w":924,"h":715,"resize":"fit"},"small":{"w":680,"h":526,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186727691535429632,"id_str":"1186727691535429632","indices":[246,269],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgajEMWsAAspU2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgajEMWsAAspU2.jpg","url":"https:\/\/t.co\/CI5MCJu1Fo","display_url":"pic.twitter.com\/CI5MCJu1Fo","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186727693808627712\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":924,"h":715,"resize":"fit"},"large":{"w":924,"h":715,"resize":"fit"},"small":{"w":680,"h":526,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:23:16 +0000 2019","id":1186739820355149825,"id_str":"1186739820355149825","full_text":"Fun + use of a dashboard by @roycekimmons to visualize the average Likert ratings + for evaluating open educational resources. #aect19 https:\/\/t.co\/mDdYdH2R2y","truncated":false,"display_text_range":[0,130],"entities":{"hashtags":[{"text":"aect19","indices":[123,130]}],"symbols":[],"user_mentions":[{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[26,39]}],"urls":[],"media":[{"id":1186739813442965504,"id_str":"1186739813442965504","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHglkp0U0AAuK9H.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHglkp0U0AAuK9H.jpg","url":"https:\/\/t.co\/mDdYdH2R2y","display_url":"pic.twitter.com\/mDdYdH2R2y","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186739820355149825\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186739813442965504,"id_str":"1186739813442965504","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHglkp0U0AAuK9H.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHglkp0U0AAuK9H.jpg","url":"https:\/\/t.co\/mDdYdH2R2y","display_url":"pic.twitter.com\/mDdYdH2R2y","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186739820355149825\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:50:04 +0000 2019","id":1186731466375479296,"id_str":"1186731466375479296","full_text":"Come + visit poster T55: What Makes a Learning Game Effective?: A Literature Review + of Game Design Elements with #FSU #FSUCOE #ISLT @ChihPuDai #AECT19 #AECT2019 #gamebasedlearning + #educationalgames #gamedesign https:\/\/t.co\/SMbdkBqg3P","truncated":false,"display_text_range":[0,208],"entities":{"hashtags":[{"text":"FSU","indices":[111,115]},{"text":"FSUCOE","indices":[116,123]},{"text":"ISLT","indices":[124,129]},{"text":"AECT19","indices":[141,148]},{"text":"AECT2019","indices":[149,158]},{"text":"gamebasedlearning","indices":[160,178]},{"text":"educationalgames","indices":[179,196]},{"text":"gamedesign","indices":[197,208]}],"symbols":[],"user_mentions":[{"screen_name":"ChihPuDai","name":"Chih-Pu + Dai","id":203606146,"id_str":"203606146","indices":[130,140]}],"urls":[],"media":[{"id":1186731464580313090,"id_str":"1186731464580313090","indices":[209,232],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgd-r4WsAIKkPq.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgd-r4WsAIKkPq.png","url":"https:\/\/t.co\/SMbdkBqg3P","display_url":"pic.twitter.com\/SMbdkBqg3P","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186731466375479296\/photo\/1","type":"photo","sizes":{"medium":{"w":824,"h":634,"resize":"fit"},"small":{"w":680,"h":523,"resize":"fit"},"large":{"w":824,"h":634,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1186731464580313090,"id_str":"1186731464580313090","indices":[209,232],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgd-r4WsAIKkPq.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgd-r4WsAIKkPq.png","url":"https:\/\/t.co\/SMbdkBqg3P","display_url":"pic.twitter.com\/SMbdkBqg3P","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186731466375479296\/photo\/1","type":"photo","sizes":{"medium":{"w":824,"h":634,"resize":"fit"},"small":{"w":680,"h":523,"resize":"fit"},"large":{"w":824,"h":634,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:06:19 +0000 2019","id":1186720455899537408,"id_str":"1186720455899537408","full_text":"#aect19 + https:\/\/t.co\/fn8Bk8ovR4","truncated":false,"display_text_range":[0,7],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186720449029234689,"id_str":"1186720449029234689","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgT9fwUYAEk5wi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgT9fwUYAEk5wi.jpg","url":"https:\/\/t.co\/fn8Bk8ovR4","display_url":"pic.twitter.com\/fn8Bk8ovR4","expanded_url":"https:\/\/twitter.com\/OlgaCataliina\/status\/1186720455899537408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186720449029234689,"id_str":"1186720449029234689","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgT9fwUYAEk5wi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgT9fwUYAEk5wi.jpg","url":"https:\/\/t.co\/fn8Bk8ovR4","display_url":"pic.twitter.com\/fn8Bk8ovR4","expanded_url":"https:\/\/twitter.com\/OlgaCataliina\/status\/1186720455899537408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237995125,"id_str":"237995125","name":"Olga + Catalina","screen_name":"OlgaCataliina","location":"United States","description":"\ud83d\udc9a\ud83d\udc52\ud83d\udcac + Lo que entiendo, lo que pienso, como se ve el mundo con mis ojos. \u00a1Ah! + y pedazos de poes\u00eda que me ecuentro o que hago.","url":"https:\/\/t.co\/Tjg6hOr32h","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Tjg6hOr32h","expanded_url":"https:\/\/ocastillo.netlify.com","display_url":"ocastillo.netlify.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":334,"friends_count":182,"listed_count":1,"created_at":"Fri + Jan 14 03:32:25 +0000 2011","favourites_count":81,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":159,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DB1B41","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1175542685568065537\/unEOUvaQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1175542685568065537\/unEOUvaQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/237995125\/1590254156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F030FF","profile_text_color":"A8D860","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Tue + Oct 22 21:03:35 +0000 2019","id":1186749966175178752,"id_str":"1186749966175178752","full_text":"I + shot the sheriff, and also the deputy, and Bob Marley #aect19","truncated":false,"display_text_range":[0,63],"entities":{"hashtags":[{"text":"aect19","indices":[56,63]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:06:16 +0000 2019","id":1186735541343023104,"id_str":"1186735541343023104","full_text":"RT + @yinbk: Interested to learn more. Thanks! Using dungeons and dragons to teach + hpi by @allonsdanser #aect2019 #games https:\/\/t.co\/tuEltHS\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect2019","indices":[102,111]},{"text":"games","indices":[112,118]}],"symbols":[],"user_mentions":[{"screen_name":"yinbk","name":"\ud83c\uddfa\ud83c\uddf8 + Yin Kreher, PhD","id":459903,"id_str":"459903","indices":[3,9]},{"screen_name":"AllonsDanser","name":"Allons + Danser","id":1187276311653502977,"id_str":"1187276311653502977","indices":[88,101]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:42:55 +0000 2019","id":1186699469036720128,"id_str":"1186699469036720128","full_text":"Interested + to learn more. Thanks! Using dungeons and dragons to teach hpi by @allonsdanser + #aect2019 #games https:\/\/t.co\/tuEltHS5vL via @SlideShare #aect19inspired","truncated":false,"display_text_range":[0,163],"entities":{"hashtags":[{"text":"aect2019","indices":[91,100]},{"text":"games","indices":[101,107]},{"text":"aect19inspired","indices":[148,163]}],"symbols":[],"user_mentions":[{"screen_name":"AllonsDanser","name":"Allons + Danser","id":1187276311653502977,"id_str":"1187276311653502977","indices":[77,90]},{"screen_name":"SlideShare","name":"SlideShare","id":9676152,"id_str":"9676152","indices":[136,147]}],"urls":[{"url":"https:\/\/t.co\/tuEltHS5vL","expanded_url":"https:\/\/www.slideshare.net\/angelarand\/using-dungeons-and-dragons-to-teach-hpi","display_url":"slideshare.net\/angelarand\/usi\u2026","indices":[108,131]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":459903,"id_str":"459903","name":"\ud83c\uddfa\ud83c\uddf8 + Yin Kreher, PhD","screen_name":"yinbk","location":"","description":"Instructional + Designer | Lead LXD @FourthRev | Boundary-Crosser. Looks for the exquisite + at intersections. All tweets are mine. \ud83d\udc9c #XR #DesignLeadership + \ud83e\udef0","url":"https:\/\/t.co\/nJBVP9cpz7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nJBVP9cpz7","expanded_url":"http:\/\/yinwahkreher.com","display_url":"yinwahkreher.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1043,"friends_count":1124,"listed_count":79,"created_at":"Tue + Jan 02 17:04:05 +0000 2007","favourites_count":7349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"363738","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459903\/1611022238","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"E81C4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:32:58 +0000 2019","id":1186742262656487424,"id_str":"1186742262656487424","full_text":"RT + @LearnEngage: What factors are important in student engagement for #onlinelearning? + What does history say of the approaches? Learn more\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"onlinelearning","indices":[70,85]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64769037,"id_str":"64769037","name":"jenn\u03b9\u0493er + engl\u03c5nd","screen_name":"jmenglund03","location":"Settler on Dakota homelands","description":"@UMN_CI + LT PhD Candidate \u2022 @UMNews instructional designer \u2022 @GOGN_OER scholar + \u2022 @femedtech member \u2022 #OEP advocate \u2022 Pronouns: she\/her","url":"https:\/\/t.co\/cjLLex1JDn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cjLLex1JDn","expanded_url":"https:\/\/jenniferenglund.net\/","display_url":"jenniferenglund.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":662,"friends_count":627,"listed_count":72,"created_at":"Tue + Aug 11 17:10:00 +0000 2009","favourites_count":2052,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2918,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B7C8E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64769037\/1500750705","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"452568","profile_sidebar_border_color":"204207","profile_sidebar_fill_color":"060A00","profile_text_color":"618238","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:30:00 +0000 2019","id":1186741515306975232,"id_str":"1186741515306975232","full_text":"What + factors are important in student engagement for #onlinelearning? What does + history say of the approaches? Learn more at the Online Learning session at + 2pm in Conf Room 8! #aect19 https:\/\/t.co\/Av2VQvgmyK","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"onlinelearning","indices":[53,68]},{"text":"aect19","indices":[176,183]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186655962586701825,"id_str":"1186655962586701825","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfZT5CUYAEwXo-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfZT5CUYAEwXo-.jpg","url":"https:\/\/t.co\/Av2VQvgmyK","display_url":"pic.twitter.com\/Av2VQvgmyK","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1186741515306975232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":1920,"h":1280,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186655962586701825,"id_str":"1186655962586701825","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfZT5CUYAEwXo-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfZT5CUYAEwXo-.jpg","url":"https:\/\/t.co\/Av2VQvgmyK","display_url":"pic.twitter.com\/Av2VQvgmyK","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1186741515306975232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":1920,"h":1280,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:09:48 +0000 2019","id":1186736433781858304,"id_str":"1186736433781858304","full_text":"RT + @Gaston_teach: Enjoyed presenting this morning. #aect19inspired @USACOE @USouthAL_CoInS + https:\/\/t.co\/urUUxCIdv5","truncated":false,"display_text_range":[0,114],"entities":{"hashtags":[{"text":"aect19inspired","indices":[51,66]}],"symbols":[],"user_mentions":[{"screen_name":"Gaston_teach","name":"Dr. + Joe Gaston","id":874874000,"id_str":"874874000","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 18:53:18 +0000 2019","id":1186717179049209856,"id_str":"1186717179049209856","full_text":"Enjoyed + presenting this morning. #aect19inspired @USACOE @USouthAL_CoInS https:\/\/t.co\/urUUxCIdv5","truncated":false,"display_text_range":[0,72],"entities":{"hashtags":[{"text":"aect19inspired","indices":[33,48]}],"symbols":[],"user_mentions":[{"screen_name":"USouthAL_CoInS","name":"Couns + & Instr Sci","id":784214336407470080,"id_str":"784214336407470080","indices":[57,72]}],"urls":[],"media":[{"id":1186717173126856705,"id_str":"1186717173126856705","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQ-0EVAAEE3ek.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQ-0EVAAEE3ek.jpg","url":"https:\/\/t.co\/urUUxCIdv5","display_url":"pic.twitter.com\/urUUxCIdv5","expanded_url":"https:\/\/twitter.com\/Gaston_teach\/status\/1186717179049209856\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186717173126856705,"id_str":"1186717173126856705","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQ-0EVAAEE3ek.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQ-0EVAAEE3ek.jpg","url":"https:\/\/t.co\/urUUxCIdv5","display_url":"pic.twitter.com\/urUUxCIdv5","expanded_url":"https:\/\/twitter.com\/Gaston_teach\/status\/1186717179049209856\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":874874000,"id_str":"874874000","name":"Dr. + Joe Gaston","screen_name":"Gaston_teach","location":"","description":"father, + husband, teacher, life-long learner, doctor of education, assistant professor, + researcher","url":"https:\/\/t.co\/j9z9kEvRKT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/j9z9kEvRKT","expanded_url":"http:\/\/joepgaston.wordpress.com","display_url":"joepgaston.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1122,"friends_count":939,"listed_count":10,"created_at":"Fri + Oct 12 03:42:10 +0000 2012","favourites_count":1699,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1506,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1266080873516093441\/zLYl8Eo1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1266080873516093441\/zLYl8Eo1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/874874000\/1455820517","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:08:31 +0000 2019","id":1186736108584878081,"id_str":"1186736108584878081","full_text":"RT + @jeroen69: Paraphrasing Thomas Reeves: If you can\u2019t link your work to + any of these goals, you should probably rethink what you are doing\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jeroen69","name":"Jeroen","id":6848632,"id_str":"6848632","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 16:27:08 +0000 2019","id":1186680396076875776,"id_str":"1186680396076875776","full_text":"Paraphrasing + Thomas Reeves: If you can\u2019t link your work to any of these goals, you + should probably rethink what you are doing. #aect19 #aectinspired https:\/\/t.co\/S4OYny9Oy7","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[{"text":"aect19","indices":[127,134]},{"text":"aectinspired","indices":[135,148]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186680255118884864,"id_str":"1186680255118884864","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","url":"https:\/\/t.co\/S4OYny9Oy7","display_url":"pic.twitter.com\/S4OYny9Oy7","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186680396076875776\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186680255118884864,"id_str":"1186680255118884864","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","url":"https:\/\/t.co\/S4OYny9Oy7","display_url":"pic.twitter.com\/S4OYny9Oy7","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186680396076875776\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:30:00 +0000 2019","id":1186741515306975232,"id_str":"1186741515306975232","full_text":"What + factors are important in student engagement for #onlinelearning? What does + history say of the approaches? Learn more at the Online Learning session at + 2pm in Conf Room 8! #aect19 https:\/\/t.co\/Av2VQvgmyK","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"onlinelearning","indices":[53,68]},{"text":"aect19","indices":[176,183]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186655962586701825,"id_str":"1186655962586701825","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfZT5CUYAEwXo-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfZT5CUYAEwXo-.jpg","url":"https:\/\/t.co\/Av2VQvgmyK","display_url":"pic.twitter.com\/Av2VQvgmyK","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1186741515306975232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":1920,"h":1280,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186655962586701825,"id_str":"1186655962586701825","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfZT5CUYAEwXo-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfZT5CUYAEwXo-.jpg","url":"https:\/\/t.co\/Av2VQvgmyK","display_url":"pic.twitter.com\/Av2VQvgmyK","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1186741515306975232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":1920,"h":1280,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:17:11 +0000 2019","id":1186738289174122496,"id_str":"1186738289174122496","full_text":"So + much great insight in how to provide feedback and improve your own writing + during the session How-To Review Manuscripts and Proposals @aect with @dctrcurry + and @andrewatawfik First take-away, don\u2019t shy away from reviewing opportunities + as a grad student #aect19inspired","truncated":false,"display_text_range":[0,272],"entities":{"hashtags":[{"text":"aect19inspired","indices":[257,272]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[137,142]},{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[148,158]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[163,177]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:36:21 +0000 2019","id":1186728014203109376,"id_str":"1186728014203109376","full_text":"RT + @caranorth11: Presentation #1 of 5.\nToday I''m at #aect19 presenting with + an awesome crew including @JenM @roycekimmons & others about an\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19","indices":[52,59]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[102,107]},{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[108,121]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 13:32:34 +0000 2019","id":1186636463305195520,"id_str":"1186636463305195520","full_text":"Presentation + #1 of 5.\nToday I''m at #aect19 presenting with an awesome crew including + @JenM @roycekimmons & others about an evaluation of open education resources. + The eval assessed accessibility & quality of #oer. Our presentation can + be found here: https:\/\/t.co\/VwQ4k9htF8 https:\/\/t.co\/ysuflHymFA","truncated":false,"display_text_range":[0,281],"entities":{"hashtags":[{"text":"aect19","indices":[35,42]},{"text":"oer","indices":[216,220]}],"symbols":[],"user_mentions":[{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[85,90]},{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[91,104]}],"urls":[{"url":"https:\/\/t.co\/VwQ4k9htF8","expanded_url":"http:\/\/bit.ly\/aect19eval","display_url":"bit.ly\/aect19eval","indices":[258,281]}],"media":[{"id":1186636458225831938,"id_str":"1186636458225831938","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","url":"https:\/\/t.co\/ysuflHymFA","display_url":"pic.twitter.com\/ysuflHymFA","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186636463305195520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":317,"resize":"fit"},"large":{"w":1562,"h":728,"resize":"fit"},"medium":{"w":1200,"h":559,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186636458225831938,"id_str":"1186636458225831938","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","url":"https:\/\/t.co\/ysuflHymFA","display_url":"pic.twitter.com\/ysuflHymFA","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186636463305195520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":317,"resize":"fit"},"large":{"w":1562,"h":728,"resize":"fit"},"medium":{"w":1200,"h":559,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":23,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:08:49 +0000 2019","id":1186751282234757123,"id_str":"1186751282234757123","full_text":"Over + 18 months, Jen worked with 6 @AmeriCorps members to help them best support + adult #refugees and #immigrant learners in their community-based computer + labs. You can learn more about Jen''s #digitalliteracy work here: https:\/\/t.co\/C35W440f24 + #AECT19 #AECT19inspired","truncated":false,"display_text_range":[0,266],"entities":{"hashtags":[{"text":"refugees","indices":[86,95]},{"text":"immigrant","indices":[100,110]},{"text":"digitalliteracy","indices":[191,207]},{"text":"AECT19","indices":[243,250]},{"text":"AECT19inspired","indices":[251,266]}],"symbols":[],"user_mentions":[{"screen_name":"AmeriCorps","name":"AmeriCorps","id":17967675,"id_str":"17967675","indices":[34,45]}],"urls":[{"url":"https:\/\/t.co\/C35W440f24","expanded_url":"http:\/\/ctep.weebly.com","display_url":"ctep.weebly.com","indices":[219,242]}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":1186662492170260482,"in_reply_to_status_id_str":"1186662492170260482","in_reply_to_user_id":615387166,"in_reply_to_user_id_str":"615387166","in_reply_to_screen_name":"WorldEdUS","user":{"id":615387166,"id_str":"615387166","name":"World + Education - US","screen_name":"WorldEdUS","location":"United States","description":"Tweeting + about #adultedu: college and career readiness, workforce devel., edtech, equity, + ESOL, immigrant integration, and learner persistence. Part of @WorldEd","url":"https:\/\/t.co\/OPkpvea3n6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OPkpvea3n6","expanded_url":"http:\/\/bit.ly\/13MenuZ","display_url":"bit.ly\/13MenuZ","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1805,"friends_count":409,"listed_count":62,"created_at":"Fri + Jun 22 17:51:07 +0000 2012","favourites_count":1110,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4118,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1522290880492752898\/Njh-L4f__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1522290880492752898\/Njh-L4f__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/615387166\/1512058949","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"A42A2E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:37:25 +0000 2019","id":1186743381302448128,"id_str":"1186743381302448128","full_text":"#aect19 + Tip #864 - inspire the people you meet at AECT by sprinkling them with glitter + during a conversation.","truncated":false,"display_text_range":[0,109],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:05:44 +0000 2019","id":1186735410463924224,"id_str":"1186735410463924224","full_text":"RT + @caranorth11: In about an hour, join me as I share my perspective using a + design sprint evaluation form to analyze #oer. Evaluating Open\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"oer","indices":[118,122]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 19:00:52 +0000 2019","id":1186719083741343744,"id_str":"1186719083741343744","full_text":"In + about an hour, join me as I share my perspective using a design sprint evaluation + form to analyze #oer. Evaluating Open Educational Resources: Results of a + Collaborative Evaluation of Crowdsourced Lesson Plans Convention Center | + Pavilion 11, 1:00PM\n#aect19 #aect19inspired https:\/\/t.co\/yTCBk64rcG","truncated":false,"display_text_range":[0,276],"entities":{"hashtags":[{"text":"oer","indices":[101,105]},{"text":"aect19","indices":[253,260]},{"text":"aect19inspired","indices":[261,276]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186719079672897537,"id_str":"1186719079672897537","indices":[277,300],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgStygU4AEAYvr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgStygU4AEAYvr.jpg","url":"https:\/\/t.co\/yTCBk64rcG","display_url":"pic.twitter.com\/yTCBk64rcG","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186719083741343744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1446,"h":804,"resize":"fit"},"medium":{"w":1200,"h":667,"resize":"fit"},"small":{"w":680,"h":378,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186719079672897537,"id_str":"1186719079672897537","indices":[277,300],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgStygU4AEAYvr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgStygU4AEAYvr.jpg","url":"https:\/\/t.co\/yTCBk64rcG","display_url":"pic.twitter.com\/yTCBk64rcG","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186719083741343744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1446,"h":804,"resize":"fit"},"medium":{"w":1200,"h":667,"resize":"fit"},"small":{"w":680,"h":378,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:10:25 +0000 2019","id":1186751685135220736,"id_str":"1186751685135220736","full_text":"RT + @EdTech_Books: Excited to present on our open textbook platform at the Poster + Session walkthrough at @ 4pm #aect19 https:\/\/t.co\/5FduWqSg\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[110,117]}],"symbols":[],"user_mentions":[{"screen_name":"EdTech_Books","name":"EdTech + Books","id":1113476916076367872,"id_str":"1113476916076367872","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":104967963,"id_str":"104967963","name":"Royce + Kimmons","screen_name":"roycekimmons","location":"Provo, UT","description":"Associate + professor, BYU-IPT: openness, OER, tech in education, social media. https:\/\/t.co\/iktkhjAzCw + https:\/\/t.co\/vhHYSEYZSN https:\/\/t.co\/9E4HWYRF9R","url":"https:\/\/t.co\/KsbltQYZa0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KsbltQYZa0","expanded_url":"http:\/\/roycekimmons.com","display_url":"roycekimmons.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/iktkhjAzCw","expanded_url":"http:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[78,101]},{"url":"https:\/\/t.co\/vhHYSEYZSN","expanded_url":"http:\/\/equitypress.org","display_url":"equitypress.org","indices":[102,125]},{"url":"https:\/\/t.co\/9E4HWYRF9R","expanded_url":"http:\/\/edtechnica.org","display_url":"edtechnica.org","indices":[126,149]}]}},"protected":false,"followers_count":1430,"friends_count":2250,"listed_count":57,"created_at":"Thu + Jan 14 23:25:41 +0000 2010","favourites_count":930,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1841,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104967963\/1585782658","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"354770","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EDF0FF","profile_text_color":"1A1A1A","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 21:09:41 +0000 2019","id":1186751501214990336,"id_str":"1186751501214990336","full_text":"Excited + to present on our open textbook platform at the Poster Session walkthrough + at @ 4pm #aect19 https:\/\/t.co\/5FduWqSgsE #opentextbooks #oer https:\/\/t.co\/TMjdrWbpCK","truncated":false,"display_text_range":[0,143],"entities":{"hashtags":[{"text":"aect19","indices":[92,99]},{"text":"opentextbooks","indices":[124,138]},{"text":"oer","indices":[139,143]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5FduWqSgsE","expanded_url":"http:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[100,123]}],"media":[{"id":1186751395464015872,"id_str":"1186751395464015872","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","url":"https:\/\/t.co\/TMjdrWbpCK","display_url":"pic.twitter.com\/TMjdrWbpCK","expanded_url":"https:\/\/twitter.com\/EdTech_Books\/status\/1186751501214990336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186751395464015872,"id_str":"1186751395464015872","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","url":"https:\/\/t.co\/TMjdrWbpCK","display_url":"pic.twitter.com\/TMjdrWbpCK","expanded_url":"https:\/\/twitter.com\/EdTech_Books\/status\/1186751501214990336\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHgwG0NU8AA4CR1.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1113476916076367872,"id_str":"1113476916076367872","name":"EdTech + Books","screen_name":"EdTech_Books","location":"","description":"All free + textbooks, all the time. Knowledge should be free, and ed tech should lead + the way! #oer #opentextbooks https:\/\/t.co\/IXVNmS1hst\n@roycekimmons","url":"https:\/\/t.co\/IXVNmSiSk1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IXVNmSiSk1","expanded_url":"https:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/IXVNmS1hst","expanded_url":"https:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[113,136]}]}},"protected":false,"followers_count":88,"friends_count":0,"listed_count":1,"created_at":"Wed + Apr 03 16:22:38 +0000 2019","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1167102969390567424\/zPs5eiTv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1167102969390567424\/zPs5eiTv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1113476916076367872\/1568320929","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:48:28 +0000 2019","id":1186731063164301312,"id_str":"1186731063164301312","full_text":"RT + @kolorkid: Members of the Leadership Development Committee inspire me! #AECT19 + #inspiredme #inspiresme https:\/\/t.co\/xJA3lKnZmw","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[{"text":"AECT19","indices":[74,81]},{"text":"inspiredme","indices":[82,93]},{"text":"inspiresme","indices":[94,105]}],"symbols":[],"user_mentions":[{"screen_name":"kolorkid","name":"Dr. + Heather Leary","id":14669702,"id_str":"14669702","indices":[3,12]}],"urls":[],"media":[{"id":1186303839785275394,"id_str":"1186303839785275394","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EHaZDpYVUAI0mjs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHaZDpYVUAI0mjs.jpg","url":"https:\/\/t.co\/xJA3lKnZmw","display_url":"pic.twitter.com\/xJA3lKnZmw","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186303845309149184\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1186303845309149184,"source_status_id_str":"1186303845309149184","source_user_id":14669702,"source_user_id_str":"14669702"}]},"extended_entities":{"media":[{"id":1186303839785275394,"id_str":"1186303839785275394","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EHaZDpYVUAI0mjs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHaZDpYVUAI0mjs.jpg","url":"https:\/\/t.co\/xJA3lKnZmw","display_url":"pic.twitter.com\/xJA3lKnZmw","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186303845309149184\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1186303845309149184,"source_status_id_str":"1186303845309149184","source_user_id":14669702,"source_user_id_str":"14669702","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 15:30:51 +0000 2019","id":1186303845309149184,"id_str":"1186303845309149184","full_text":"Members + of the Leadership Development Committee inspire me! #AECT19 #inspiredme #inspiresme + https:\/\/t.co\/xJA3lKnZmw","truncated":false,"display_text_range":[0,91],"entities":{"hashtags":[{"text":"AECT19","indices":[60,67]},{"text":"inspiredme","indices":[68,79]},{"text":"inspiresme","indices":[80,91]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186303839785275394,"id_str":"1186303839785275394","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHaZDpYVUAI0mjs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHaZDpYVUAI0mjs.jpg","url":"https:\/\/t.co\/xJA3lKnZmw","display_url":"pic.twitter.com\/xJA3lKnZmw","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186303845309149184\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186303839785275394,"id_str":"1186303839785275394","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHaZDpYVUAI0mjs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHaZDpYVUAI0mjs.jpg","url":"https:\/\/t.co\/xJA3lKnZmw","display_url":"pic.twitter.com\/xJA3lKnZmw","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186303845309149184\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:14:37 +0000 2019","id":1186737643276517376,"id_str":"1186737643276517376","full_text":"It + was a great workshop group this morning - so lucky to continue to collaborate + with these colleagues. #aect19 #aect19inspired https:\/\/t.co\/3OPlEJq7wt","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"aect19","indices":[104,111]},{"text":"aect19inspired","indices":[112,127]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186737623395516417,"id_str":"1186737623395516417","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgjlLQUwAEpsIe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgjlLQUwAEpsIe.jpg","url":"https:\/\/t.co\/3OPlEJq7wt","display_url":"pic.twitter.com\/3OPlEJq7wt","expanded_url":"https:\/\/twitter.com\/SmithShannonM\/status\/1186737643276517376\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186737623395516417,"id_str":"1186737623395516417","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgjlLQUwAEpsIe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgjlLQUwAEpsIe.jpg","url":"https:\/\/t.co\/3OPlEJq7wt","display_url":"pic.twitter.com\/3OPlEJq7wt","expanded_url":"https:\/\/twitter.com\/SmithShannonM\/status\/1186737643276517376\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1408637941,"id_str":"1408637941","name":"Shannon + M. Smith","screen_name":"SmithShannonM","location":"Boise, ID","description":"Librarian + @BSULibrary + @UW_iSchool alum | OER, OA, Schol Comm, STEM, Design Thinking + | opinions my own | dreaming + reflecting + learning","url":"https:\/\/t.co\/cP2kwcqbcn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cP2kwcqbcn","expanded_url":"https:\/\/orcid.org\/0000-0002-2560-7410","display_url":"orcid.org\/0000-0002-2560\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":421,"friends_count":863,"listed_count":15,"created_at":"Mon + May 06 20:13:09 +0000 2013","favourites_count":5591,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2346,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1528811834257526784\/FoWd_4Uj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1528811834257526784\/FoWd_4Uj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1408637941\/1653332130","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:10:16 +0000 2019","id":1186736547212587008,"id_str":"1186736547212587008","full_text":"Made + it to #aect19inspired! Ran into some @edtechbsu folks and then started learning + right away! Larson, M.B., & Lockee, B.B. (2019). Streamlined ID: A practical + guide to instructional design. (2nd ed.) Routledge\/Taylor & Francis.","truncated":false,"display_text_range":[0,238],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]}],"symbols":[],"user_mentions":[{"screen_name":"edtechbsu","name":"EDTECH@Boise + State","id":29818149,"id_str":"29818149","indices":[42,52]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":720930385,"id_str":"720930385","name":"Dr. + Allison Barsnica Hall","screen_name":"AllisonHallAZ","location":"Tempe, AZ","description":"Director + of Learning Experience Design @ ASU. Lifelong Learner. Interested in how to + help ALL learners. she\/her\/hers","url":"https:\/\/t.co\/Pi5aZFLirT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Pi5aZFLirT","expanded_url":"https:\/\/www.linkedin.com\/in\/allisonbhall\/","display_url":"linkedin.com\/in\/allisonbhal\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":417,"friends_count":563,"listed_count":30,"created_at":"Fri + Jul 27 21:42:06 +0000 2012","favourites_count":3118,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1022,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/981993480833515520\/S96xaBm1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/981993480833515520\/S96xaBm1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/720930385\/1581027324","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":12,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:19:25 +0000 2019","id":1186738852947382272,"id_str":"1186738852947382272","full_text":"If + you are interested in checking out the tool we used to evaluate open education + resources for accessibility, you can find it here: https:\/\/t.co\/cMxcEHJf4S + @roycekimmons #aect19 https:\/\/t.co\/RqWAn9hL88","truncated":false,"display_text_range":[0,178],"entities":{"hashtags":[{"text":"aect19","indices":[171,178]}],"symbols":[],"user_mentions":[{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[157,170]}],"urls":[{"url":"https:\/\/t.co\/cMxcEHJf4S","expanded_url":"https:\/\/webaim.org\/","display_url":"webaim.org","indices":[133,156]}],"media":[{"id":1186738846592983040,"id_str":"1186738846592983040","indices":[179,202],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgksYBU4AAFIYf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgksYBU4AAFIYf.jpg","url":"https:\/\/t.co\/RqWAn9hL88","display_url":"pic.twitter.com\/RqWAn9hL88","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186738852947382272\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186738846592983040,"id_str":"1186738846592983040","indices":[179,202],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgksYBU4AAFIYf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgksYBU4AAFIYf.jpg","url":"https:\/\/t.co\/RqWAn9hL88","display_url":"pic.twitter.com\/RqWAn9hL88","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186738852947382272\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:15:00 +0000 2019","id":1186752838753488903,"id_str":"1186752838753488903","full_text":"The + Engaging Your Students #aect19inspired session features researchers from + @okstate and how they used @NASA to make inter-disciplinary design challenges! + 3pm in Conf Room 8 #aect19 #studentengagement @aect @NASASTEM https:\/\/t.co\/DhykFQTcoX","truncated":false,"display_text_range":[0,218],"entities":{"hashtags":[{"text":"aect19inspired","indices":[27,42]},{"text":"aect19","indices":[176,183]},{"text":"studentengagement","indices":[184,202]}],"symbols":[],"user_mentions":[{"screen_name":"okstate","name":"Oklahoma + State Univ.","id":16011832,"id_str":"16011832","indices":[78,86]},{"screen_name":"NASA","name":"NASA","id":11348282,"id_str":"11348282","indices":[105,110]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[203,208]},{"screen_name":"NASASTEM","name":"NASA + STEM","id":238285207,"id_str":"238285207","indices":[209,218]}],"urls":[],"media":[{"id":1186683393750077440,"id_str":"1186683393750077440","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfyQmFUEAAwDY4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfyQmFUEAAwDY4.jpg","url":"https:\/\/t.co\/DhykFQTcoX","display_url":"pic.twitter.com\/DhykFQTcoX","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1186752838753488903\/photo\/1","type":"photo","sizes":{"small":{"w":453,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":1200,"resize":"fit"},"large":{"w":1366,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186683393750077440,"id_str":"1186683393750077440","indices":[219,242],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfyQmFUEAAwDY4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfyQmFUEAAwDY4.jpg","url":"https:\/\/t.co\/DhykFQTcoX","display_url":"pic.twitter.com\/DhykFQTcoX","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1186752838753488903\/photo\/1","type":"photo","sizes":{"small":{"w":453,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":1200,"resize":"fit"},"large":{"w":1366,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:27:51 +0000 2019","id":1186740973746831360,"id_str":"1186740973746831360","full_text":"Ooh! + #betterposter design!\n#aect19inspired https:\/\/t.co\/ndDFGq7MIi","truncated":false,"display_text_range":[0,42],"entities":{"hashtags":[{"text":"betterposter","indices":[5,18]},{"text":"aect19inspired","indices":[27,42]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ndDFGq7MIi","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186732733516701696","display_url":"twitter.com\/ISLT_FSU\/statu\u2026","indices":[43,66]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1186732733516701696,"quoted_status_id_str":"1186732733516701696","quoted_status_permalink":{"url":"https:\/\/t.co\/ndDFGq7MIi","expanded":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186732733516701696","display":"twitter.com\/ISLT_FSU\/statu\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 19:55:06 +0000 2019","id":1186732733516701696,"id_str":"1186732733516701696","full_text":"Come + visit poster T38: Online Reciprocal Teaching: Designing an Instructional Approach + that Scaffolds Metacognitive Strategy Use for College Students with #FSU #FSUCOE + #ISLT Jiyae Bong & @vdennen #AECT19 #AECT2019 https:\/\/t.co\/JcnMfDqJv6","truncated":false,"display_text_range":[0,217],"entities":{"hashtags":[{"text":"FSU","indices":[155,159]},{"text":"FSUCOE","indices":[160,167]},{"text":"ISLT","indices":[168,173]},{"text":"AECT19","indices":[200,207]},{"text":"AECT2019","indices":[208,217]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[191,199]}],"urls":[],"media":[{"id":1186732730333179910,"id_str":"1186732730333179910","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","url":"https:\/\/t.co\/JcnMfDqJv6","display_url":"pic.twitter.com\/JcnMfDqJv6","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186732733516701696\/photo\/1","type":"photo","sizes":{"large":{"w":1609,"h":1075,"resize":"fit"},"medium":{"w":1200,"h":802,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1186732730333179910,"id_str":"1186732730333179910","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","url":"https:\/\/t.co\/JcnMfDqJv6","display_url":"pic.twitter.com\/JcnMfDqJv6","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186732733516701696\/photo\/1","type":"photo","sizes":{"large":{"w":1609,"h":1075,"resize":"fit"},"medium":{"w":1200,"h":802,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:05:27 +0000 2019","id":1186735338368241667,"id_str":"1186735338368241667","full_text":"One + more year is passing without me. \nAs being a former @gsa_aect president and + one of Cochran internship recipients, I miss my Professional home. @AECT #aect19inspired + #aect19","truncated":false,"display_text_range":[0,176],"entities":{"hashtags":[{"text":"aect19inspired","indices":[153,168]},{"text":"aect19","indices":[169,176]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[56,65]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[147,152]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":85487846,"id_str":"85487846","name":"FIRAT + SARSAR","screen_name":"FiratSarsar","location":"Izmir, Turkey","description":"https:\/\/t.co\/ZQbt4Z1jsv. + @universiteege,PhD @GeorgiaStateU, Instructional Technologist,Fulbright Fellow + @fulbrightprgrm,Director of Distance Learning Center,CTO @eduji_","url":"https:\/\/t.co\/0OkY3GHnCq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OkY3GHnCq","expanded_url":"https:\/\/www.instagram.com\/firatsarsar","display_url":"instagram.com\/firatsarsar","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/ZQbt4Z1jsv","expanded_url":"http:\/\/Assoc.Prof","display_url":"Assoc.Prof","indices":[0,23]}]}},"protected":false,"followers_count":1306,"friends_count":478,"listed_count":1,"created_at":"Tue + Oct 27 03:19:46 +0000 2009","favourites_count":3501,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1897,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1449430866573369348\/KeQPATCB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1449430866573369348\/KeQPATCB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/85487846\/1543658697","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:06:23 +0000 2019","id":1186750672961589250,"id_str":"1186750672961589250","full_text":"RT + @RitaFennelly: So much great insight in how to provide feedback and improve + your own writing during the session How-To Review Manuscript\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:17:11 +0000 2019","id":1186738289174122496,"id_str":"1186738289174122496","full_text":"So + much great insight in how to provide feedback and improve your own writing + during the session How-To Review Manuscripts and Proposals @aect with @dctrcurry + and @andrewatawfik First take-away, don\u2019t shy away from reviewing opportunities + as a grad student #aect19inspired","truncated":false,"display_text_range":[0,272],"entities":{"hashtags":[{"text":"aect19inspired","indices":[257,272]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[137,142]},{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[148,158]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[163,177]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:45:08 +0000 2019","id":1186730225096450051,"id_str":"1186730225096450051","full_text":"Come + visit poster T82: Learning Ecosystems: A Framework for Systems Thinking with + #FSU #FSUCOE #ISLT Anita Mitchell #AECT19 #AECT2019 #Learning #Systems #SystemsThinking + #SNA #LearningEcosystem #KnowledgeNetwork https:\/\/t.co\/eqG8shCc4U","truncated":false,"display_text_range":[0,212],"entities":{"hashtags":[{"text":"FSU","indices":[82,86]},{"text":"FSUCOE","indices":[87,94]},{"text":"ISLT","indices":[95,100]},{"text":"AECT19","indices":[116,123]},{"text":"AECT2019","indices":[124,133]},{"text":"Learning","indices":[135,144]},{"text":"Systems","indices":[145,153]},{"text":"SystemsThinking","indices":[154,170]},{"text":"SNA","indices":[171,175]},{"text":"LearningEcosystem","indices":[176,194]},{"text":"KnowledgeNetwork","indices":[195,212]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186730223057997825,"id_str":"1186730223057997825","indices":[213,236],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgc2a2XkAEHauc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgc2a2XkAEHauc.jpg","url":"https:\/\/t.co\/eqG8shCc4U","display_url":"pic.twitter.com\/eqG8shCc4U","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186730225096450051\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":521,"resize":"fit"},"large":{"w":920,"h":705,"resize":"fit"},"medium":{"w":920,"h":705,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186730223057997825,"id_str":"1186730223057997825","indices":[213,236],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgc2a2XkAEHauc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgc2a2XkAEHauc.jpg","url":"https:\/\/t.co\/eqG8shCc4U","display_url":"pic.twitter.com\/eqG8shCc4U","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186730225096450051\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":521,"resize":"fit"},"large":{"w":920,"h":705,"resize":"fit"},"medium":{"w":920,"h":705,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:06:08 +0000 2019","id":1186750610051227648,"id_str":"1186750610051227648","full_text":"RT + @RitaFennelly: More great writing advice from the @aect session How-To Review + Manuscripts & Proposals w\/ @andrewatawfik 1) Start w\/ the\u2026","truncated":false,"display_text_range":[0,143],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[53,58]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[112,126]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:28:50 +0000 2019","id":1186741221307252736,"id_str":"1186741221307252736","full_text":"More + great writing advice from the @aect session How-To Review Manuscripts & + Proposals w\/ @andrewatawfik 1) Start w\/ the learning problem 2) Then talk + about how the tech is related 3) Connect it to theory #aect19inspired Thanks! + Using this to rewrite my intro for a working paper","truncated":false,"display_text_range":[0,284],"entities":{"hashtags":[{"text":"aect19inspired","indices":[209,224]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[35,40]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[94,108]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:04:30 +0000 2019","id":1186735096033730561,"id_str":"1186735096033730561","full_text":"RT + @jeroen69: @michaelmgrant Kicking it off #aect19 https:\/\/t.co\/hTEvP7t1t4","truncated":false,"display_text_range":[0,75],"entities":{"hashtags":[{"text":"aect19","indices":[44,51]}],"symbols":[],"user_mentions":[{"screen_name":"jeroen69","name":"Jeroen","id":6848632,"id_str":"6848632","indices":[3,12]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[14,28]}],"urls":[],"media":[{"id":1186716441313079296,"id_str":"1186716441313079296","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQUN2U8AAWCSs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQUN2U8AAWCSs.jpg","url":"https:\/\/t.co\/hTEvP7t1t4","display_url":"pic.twitter.com\/hTEvP7t1t4","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186716447365455872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1186716447365455872,"source_status_id_str":"1186716447365455872","source_user_id":6848632,"source_user_id_str":"6848632"}]},"extended_entities":{"media":[{"id":1186716441313079296,"id_str":"1186716441313079296","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQUN2U8AAWCSs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQUN2U8AAWCSs.jpg","url":"https:\/\/t.co\/hTEvP7t1t4","display_url":"pic.twitter.com\/hTEvP7t1t4","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186716447365455872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1186716447365455872,"source_status_id_str":"1186716447365455872","source_user_id":6848632,"source_user_id_str":"6848632","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 18:50:23 +0000 2019","id":1186716447365455872,"id_str":"1186716447365455872","full_text":"@michaelmgrant + Kicking it off #aect19 https:\/\/t.co\/hTEvP7t1t4","truncated":false,"display_text_range":[0,37],"entities":{"hashtags":[{"text":"aect19","indices":[30,37]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[0,14]}],"urls":[],"media":[{"id":1186716441313079296,"id_str":"1186716441313079296","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQUN2U8AAWCSs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQUN2U8AAWCSs.jpg","url":"https:\/\/t.co\/hTEvP7t1t4","display_url":"pic.twitter.com\/hTEvP7t1t4","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186716447365455872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186716441313079296,"id_str":"1186716441313079296","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQUN2U8AAWCSs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQUN2U8AAWCSs.jpg","url":"https:\/\/t.co\/hTEvP7t1t4","display_url":"pic.twitter.com\/hTEvP7t1t4","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186716447365455872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":132653457,"in_reply_to_user_id_str":"132653457","in_reply_to_screen_name":"michaelmgrant","user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:51:40 +0000 2019","id":1186746969571483649,"id_str":"1186746969571483649","full_text":"#aect19 + Tip #03 - Sometimes, cows fart.","truncated":false,"display_text_range":[0,39],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:04:25 +0000 2019","id":1186735076081451009,"id_str":"1186735076081451009","full_text":"RT + @michaelmgrant: #AECT19 Kickoff! \n#aect19inspired https:\/\/t.co\/TnVngVrgq1","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"AECT19","indices":[19,26]},{"text":"aect19inspired","indices":[37,52]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[3,17]}],"urls":[],"media":[{"id":1186730932461424640,"id_str":"1186730932461424640","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgdftlU0AA9lA6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgdftlU0AA9lA6.jpg","url":"https:\/\/t.co\/TnVngVrgq1","display_url":"pic.twitter.com\/TnVngVrgq1","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186730975591428096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1186730975591428096,"source_status_id_str":"1186730975591428096","source_user_id":132653457,"source_user_id_str":"132653457"}]},"extended_entities":{"media":[{"id":1186730932461424640,"id_str":"1186730932461424640","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgdftlU0AA9lA6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgdftlU0AA9lA6.jpg","url":"https:\/\/t.co\/TnVngVrgq1","display_url":"pic.twitter.com\/TnVngVrgq1","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186730975591428096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1186730975591428096,"source_status_id_str":"1186730975591428096","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null},{"id":1186730932461457409,"id_str":"1186730932461457409","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgdftlVUAEBBGE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgdftlVUAEBBGE.jpg","url":"https:\/\/t.co\/TnVngVrgq1","display_url":"pic.twitter.com\/TnVngVrgq1","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186730975591428096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1186730975591428096,"source_status_id_str":"1186730975591428096","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null},{"id":1186730932461391872,"id_str":"1186730932461391872","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgdftlUUAAepLk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgdftlUUAAepLk.jpg","url":"https:\/\/t.co\/TnVngVrgq1","display_url":"pic.twitter.com\/TnVngVrgq1","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186730975591428096\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1186730975591428096,"source_status_id_str":"1186730975591428096","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null},{"id":1186730932465651712,"id_str":"1186730932465651712","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgdftmVUAAJhJt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgdftmVUAAJhJt.jpg","url":"https:\/\/t.co\/TnVngVrgq1","display_url":"pic.twitter.com\/TnVngVrgq1","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186730975591428096\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":1186730975591428096,"source_status_id_str":"1186730975591428096","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 19:48:07 +0000 2019","id":1186730975591428096,"id_str":"1186730975591428096","full_text":"#AECT19 + Kickoff! \n#aect19inspired https:\/\/t.co\/TnVngVrgq1","truncated":false,"display_text_range":[0,33],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"aect19inspired","indices":[18,33]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186730932461424640,"id_str":"1186730932461424640","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgdftlU0AA9lA6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgdftlU0AA9lA6.jpg","url":"https:\/\/t.co\/TnVngVrgq1","display_url":"pic.twitter.com\/TnVngVrgq1","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186730975591428096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186730932461424640,"id_str":"1186730932461424640","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgdftlU0AA9lA6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgdftlU0AA9lA6.jpg","url":"https:\/\/t.co\/TnVngVrgq1","display_url":"pic.twitter.com\/TnVngVrgq1","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186730975591428096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1186730932461457409,"id_str":"1186730932461457409","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgdftlVUAEBBGE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgdftlVUAEBBGE.jpg","url":"https:\/\/t.co\/TnVngVrgq1","display_url":"pic.twitter.com\/TnVngVrgq1","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186730975591428096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1186730932461391872,"id_str":"1186730932461391872","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgdftlUUAAepLk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgdftlUUAAepLk.jpg","url":"https:\/\/t.co\/TnVngVrgq1","display_url":"pic.twitter.com\/TnVngVrgq1","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186730975591428096\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1186730932465651712,"id_str":"1186730932465651712","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgdftmVUAAJhJt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgdftmVUAAJhJt.jpg","url":"https:\/\/t.co\/TnVngVrgq1","display_url":"pic.twitter.com\/TnVngVrgq1","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186730975591428096\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:07:06 +0000 2019","id":1186720651521871877,"id_str":"1186720651521871877","full_text":"Thanks + for the green playdoh @tedaect #aect19inspired https:\/\/t.co\/Se6WEsEx7r","truncated":false,"display_text_range":[0,53],"entities":{"hashtags":[{"text":"aect19inspired","indices":[38,53]}],"symbols":[],"user_mentions":[{"screen_name":"tedaect","name":"TED + AECT","id":2165058337,"id_str":"2165058337","indices":[29,37]}],"urls":[],"media":[{"id":1186720631527636992,"id_str":"1186720631527636992","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186720631527636992\/pu\/img\/YapDK4A4tIt2arva.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186720631527636992\/pu\/img\/YapDK4A4tIt2arva.jpg","url":"https:\/\/t.co\/Se6WEsEx7r","display_url":"pic.twitter.com\/Se6WEsEx7r","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1186720651521871877\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186720631527636992,"id_str":"1186720631527636992","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186720631527636992\/pu\/img\/YapDK4A4tIt2arva.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186720631527636992\/pu\/img\/YapDK4A4tIt2arva.jpg","url":"https:\/\/t.co\/Se6WEsEx7r","display_url":"pic.twitter.com\/Se6WEsEx7r","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1186720651521871877\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":3400,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186720631527636992\/pu\/pl\/xyTssDu0WdWj3GSF.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186720631527636992\/pu\/vid\/640x360\/QZDKcoL_RZ2VGOPl.mp4?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186720631527636992\/pu\/vid\/480x270\/IoFCwuoLYWf375kd.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186720631527636992\/pu\/vid\/1280x720\/XLSvI3fy4DgWcGjD.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:28:50 +0000 2019","id":1186741221307252736,"id_str":"1186741221307252736","full_text":"More + great writing advice from the @aect session How-To Review Manuscripts & + Proposals w\/ @andrewatawfik 1) Start w\/ the learning problem 2) Then talk + about how the tech is related 3) Connect it to theory #aect19inspired Thanks! + Using this to rewrite my intro for a working paper","truncated":false,"display_text_range":[0,284],"entities":{"hashtags":[{"text":"aect19inspired","indices":[209,224]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[35,40]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[94,108]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:07:19 +0000 2019","id":1186750907981021184,"id_str":"1186750907981021184","full_text":"RT + @hampthephd: Congratulations to Jiawen for doing a fabulous job presenting + her dyslexia study! #aect19 https:\/\/t.co\/RNuGghDK2z","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[{"text":"aect19","indices":[98,105]}],"symbols":[],"user_mentions":[{"screen_name":"hampthephd","name":"John + Hampton, PhD","id":936686250,"id_str":"936686250","indices":[3,14]}],"urls":[],"media":[{"id":1186709780494086144,"id_str":"1186709780494086144","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgKQgXU8AAJF_W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgKQgXU8AAJF_W.jpg","url":"https:\/\/t.co\/RNuGghDK2z","display_url":"pic.twitter.com\/RNuGghDK2z","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1186709788719116288\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":462,"resize":"fit"},"large":{"w":2048,"h":1391,"resize":"fit"},"medium":{"w":1200,"h":815,"resize":"fit"}},"source_status_id":1186709788719116288,"source_status_id_str":"1186709788719116288","source_user_id":936686250,"source_user_id_str":"936686250"}]},"extended_entities":{"media":[{"id":1186709780494086144,"id_str":"1186709780494086144","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgKQgXU8AAJF_W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgKQgXU8AAJF_W.jpg","url":"https:\/\/t.co\/RNuGghDK2z","display_url":"pic.twitter.com\/RNuGghDK2z","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1186709788719116288\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":462,"resize":"fit"},"large":{"w":2048,"h":1391,"resize":"fit"},"medium":{"w":1200,"h":815,"resize":"fit"}},"source_status_id":1186709788719116288,"source_status_id_str":"1186709788719116288","source_user_id":936686250,"source_user_id_str":"936686250","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 18:23:56 +0000 2019","id":1186709788719116288,"id_str":"1186709788719116288","full_text":"Congratulations + to Jiawen for doing a fabulous job presenting her dyslexia study! #aect19 + https:\/\/t.co\/RNuGghDK2z","truncated":false,"display_text_range":[0,89],"entities":{"hashtags":[{"text":"aect19","indices":[82,89]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186709780494086144,"id_str":"1186709780494086144","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgKQgXU8AAJF_W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgKQgXU8AAJF_W.jpg","url":"https:\/\/t.co\/RNuGghDK2z","display_url":"pic.twitter.com\/RNuGghDK2z","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1186709788719116288\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":462,"resize":"fit"},"large":{"w":2048,"h":1391,"resize":"fit"},"medium":{"w":1200,"h":815,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186709780494086144,"id_str":"1186709780494086144","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgKQgXU8AAJF_W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgKQgXU8AAJF_W.jpg","url":"https:\/\/t.co\/RNuGghDK2z","display_url":"pic.twitter.com\/RNuGghDK2z","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1186709788719116288\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":462,"resize":"fit"},"large":{"w":2048,"h":1391,"resize":"fit"},"medium":{"w":1200,"h":815,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:09:41 +0000 2019","id":1186751501214990336,"id_str":"1186751501214990336","full_text":"Excited + to present on our open textbook platform at the Poster Session walkthrough + at @ 4pm #aect19 https:\/\/t.co\/5FduWqSgsE #opentextbooks #oer https:\/\/t.co\/TMjdrWbpCK","truncated":false,"display_text_range":[0,143],"entities":{"hashtags":[{"text":"aect19","indices":[92,99]},{"text":"opentextbooks","indices":[124,138]},{"text":"oer","indices":[139,143]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5FduWqSgsE","expanded_url":"http:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[100,123]}],"media":[{"id":1186751395464015872,"id_str":"1186751395464015872","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","url":"https:\/\/t.co\/TMjdrWbpCK","display_url":"pic.twitter.com\/TMjdrWbpCK","expanded_url":"https:\/\/twitter.com\/EdTech_Books\/status\/1186751501214990336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186751395464015872,"id_str":"1186751395464015872","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHgwG0NU8AA4CR1.jpg","url":"https:\/\/t.co\/TMjdrWbpCK","display_url":"pic.twitter.com\/TMjdrWbpCK","expanded_url":"https:\/\/twitter.com\/EdTech_Books\/status\/1186751501214990336\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":640,"h":360,"resize":"fit"},"small":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHgwG0NU8AA4CR1.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1113476916076367872,"id_str":"1113476916076367872","name":"EdTech + Books","screen_name":"EdTech_Books","location":"","description":"All free + textbooks, all the time. Knowledge should be free, and ed tech should lead + the way! #oer #opentextbooks https:\/\/t.co\/IXVNmS1hst\n@roycekimmons","url":"https:\/\/t.co\/IXVNmSiSk1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IXVNmSiSk1","expanded_url":"https:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/IXVNmS1hst","expanded_url":"https:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[113,136]}]}},"protected":false,"followers_count":88,"friends_count":0,"listed_count":1,"created_at":"Wed + Apr 03 16:22:38 +0000 2019","favourites_count":5,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1167102969390567424\/zPs5eiTv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1167102969390567424\/zPs5eiTv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1113476916076367872\/1568320929","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:09:00 +0000 2019","id":1186751329730850816,"id_str":"1186751329730850816","full_text":"RT + @tadousay: If you couldn''t make it to the #AECT19 #TeacherEd session on innovative + pedagogical space design, be sure to check out all of\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[45,52]},{"text":"TeacherEd","indices":[53,63]}],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:25:05 +0000 2019","id":1186740275915280384,"id_str":"1186740275915280384","full_text":"If + you couldn''t make it to the #AECT19 #TeacherEd session on innovative pedagogical + space design, be sure to check out all of the virtual flipped posters at https:\/\/t.co\/1pM0umTnEi + #AECTinspired https:\/\/t.co\/NXpMwQC63N","truncated":false,"display_text_range":[0,194],"entities":{"hashtags":[{"text":"AECT19","indices":[31,38]},{"text":"TeacherEd","indices":[39,49]},{"text":"AECTinspired","indices":[181,194]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1pM0umTnEi","expanded_url":"http:\/\/bit.ly\/TED-flipped","display_url":"bit.ly\/TED-flipped","indices":[157,180]}],"media":[{"id":1186740239152271361,"id_str":"1186740239152271361","indices":[195,218],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgl9btVUAEvjnZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgl9btVUAEvjnZ.jpg","url":"https:\/\/t.co\/NXpMwQC63N","display_url":"pic.twitter.com\/NXpMwQC63N","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186740275915280384\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":960,"h":540,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186740239152271361,"id_str":"1186740239152271361","indices":[195,218],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgl9btVUAEvjnZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgl9btVUAEvjnZ.jpg","url":"https:\/\/t.co\/NXpMwQC63N","display_url":"pic.twitter.com\/NXpMwQC63N","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186740275915280384\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":960,"h":540,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:01:00 +0000 2019","id":1186749315890532354,"id_str":"1186749315890532354","full_text":"Presenting + tomorrow! Hope to see you there! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/7QzdwkwAVq","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"AECT19","indices":[53,60]},{"text":"AECT19inspired","indices":[61,76]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[44,52]}],"urls":[],"media":[{"id":1185701472282927104,"id_str":"1185701472282927104","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR1NPkU4AA5UIM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR1NPkU4AA5UIM.jpg","url":"https:\/\/t.co\/7QzdwkwAVq","display_url":"pic.twitter.com\/7QzdwkwAVq","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186749315890532354\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185701472282927104,"id_str":"1185701472282927104","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR1NPkU4AA5UIM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR1NPkU4AA5UIM.jpg","url":"https:\/\/t.co\/7QzdwkwAVq","display_url":"pic.twitter.com\/7QzdwkwAVq","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186749315890532354\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:05:41 +0000 2019","id":1186750493634117632,"id_str":"1186750493634117632","full_text":"RT + @michelestork: Getting #aect19inspired with @lpemusicguru. Love introducing + a student to all the wonderful learning and networking oppor\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"michelestork","name":"Dr. + Michele Stork","id":36073247,"id_str":"36073247","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:37:44 +0000 2019","id":1186743460704862208,"id_str":"1186743460704862208","full_text":"Getting + #aect19inspired with @lpemusicguru. Love introducing a student to all the + wonderful learning and networking opportunities @AECT offers in the #edtech + field. #storkteach @AECTTIL https:\/\/t.co\/Ppx2Ct5Uak","truncated":false,"display_text_range":[0,185],"entities":{"hashtags":[{"text":"aect19inspired","indices":[8,23]},{"text":"edtech","indices":[150,157]},{"text":"storkteach","indices":[165,176]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[130,135]},{"screen_name":"AECTTIL","name":"AECT + TIL","id":4921781685,"id_str":"4921781685","indices":[177,185]}],"urls":[],"media":[{"id":1186743452165267456,"id_str":"1186743452165267456","indices":[186,209],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgo4dHU4AAhW2e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgo4dHU4AAhW2e.jpg","url":"https:\/\/t.co\/Ppx2Ct5Uak","display_url":"pic.twitter.com\/Ppx2Ct5Uak","expanded_url":"https:\/\/twitter.com\/michelestork\/status\/1186743460704862208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":583,"h":680,"resize":"fit"},"large":{"w":1755,"h":2048,"resize":"fit"},"medium":{"w":1028,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186743452165267456,"id_str":"1186743452165267456","indices":[186,209],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgo4dHU4AAhW2e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgo4dHU4AAhW2e.jpg","url":"https:\/\/t.co\/Ppx2Ct5Uak","display_url":"pic.twitter.com\/Ppx2Ct5Uak","expanded_url":"https:\/\/twitter.com\/michelestork\/status\/1186743460704862208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":583,"h":680,"resize":"fit"},"large":{"w":1755,"h":2048,"resize":"fit"},"medium":{"w":1028,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":36073247,"id_str":"36073247","name":"Dr. + Michele Stork","screen_name":"michelestork","location":"","description":"Associate + Professor, #edtech #edleadership. Committed to empowering learners. Views + expressed here are my own. #storkteach","url":"https:\/\/t.co\/Qhw0mZ4Y4K","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Qhw0mZ4Y4K","expanded_url":"http:\/\/www.michelestork.com","display_url":"michelestork.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1421,"friends_count":395,"listed_count":18,"created_at":"Tue + Apr 28 14:09:17 +0000 2009","favourites_count":2318,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1522,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"464646","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471984303252946948\/Dx8iRa3C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471984303252946948\/Dx8iRa3C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36073247\/1549417573","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"464646","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:26:58 +0000 2019","id":1186740752740564992,"id_str":"1186740752740564992","full_text":"RT + @ISLT_FSU: Come visit poster T38: Online Reciprocal Teaching: Designing an + Instructional Approach that Scaffolds Metacognitive Strategy\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 19:55:06 +0000 2019","id":1186732733516701696,"id_str":"1186732733516701696","full_text":"Come + visit poster T38: Online Reciprocal Teaching: Designing an Instructional Approach + that Scaffolds Metacognitive Strategy Use for College Students with #FSU #FSUCOE + #ISLT Jiyae Bong & @vdennen #AECT19 #AECT2019 https:\/\/t.co\/JcnMfDqJv6","truncated":false,"display_text_range":[0,217],"entities":{"hashtags":[{"text":"FSU","indices":[155,159]},{"text":"FSUCOE","indices":[160,167]},{"text":"ISLT","indices":[168,173]},{"text":"AECT19","indices":[200,207]},{"text":"AECT2019","indices":[208,217]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[191,199]}],"urls":[],"media":[{"id":1186732730333179910,"id_str":"1186732730333179910","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","url":"https:\/\/t.co\/JcnMfDqJv6","display_url":"pic.twitter.com\/JcnMfDqJv6","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186732733516701696\/photo\/1","type":"photo","sizes":{"large":{"w":1609,"h":1075,"resize":"fit"},"medium":{"w":1200,"h":802,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1186732730333179910,"id_str":"1186732730333179910","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","url":"https:\/\/t.co\/JcnMfDqJv6","display_url":"pic.twitter.com\/JcnMfDqJv6","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186732733516701696\/photo\/1","type":"photo","sizes":{"large":{"w":1609,"h":1075,"resize":"fit"},"medium":{"w":1200,"h":802,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:34:16 +0000 2019","id":1186727489072062464,"id_str":"1186727489072062464","full_text":"RT + @AECT: Join us for the AECT & Division Convention Kickoff in Paradise + North! #aect19inspired https:\/\/t.co\/XJc5AKhwkp","truncated":false,"display_text_range":[0,123],"entities":{"hashtags":[{"text":"aect19inspired","indices":[84,99]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[],"media":[{"id":1186711844498444289,"id_str":"1186711844498444289","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgMIpYUEAEbpOw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgMIpYUEAEbpOw.jpg","url":"https:\/\/t.co\/XJc5AKhwkp","display_url":"pic.twitter.com\/XJc5AKhwkp","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186712050640113664\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":427,"resize":"fit"},"large":{"w":2048,"h":1286,"resize":"fit"},"medium":{"w":1200,"h":754,"resize":"fit"}},"source_status_id":1186712050640113664,"source_status_id_str":"1186712050640113664","source_user_id":12030342,"source_user_id_str":"12030342"}]},"extended_entities":{"media":[{"id":1186711844498444289,"id_str":"1186711844498444289","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgMIpYUEAEbpOw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgMIpYUEAEbpOw.jpg","url":"https:\/\/t.co\/XJc5AKhwkp","display_url":"pic.twitter.com\/XJc5AKhwkp","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186712050640113664\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":427,"resize":"fit"},"large":{"w":2048,"h":1286,"resize":"fit"},"medium":{"w":1200,"h":754,"resize":"fit"}},"source_status_id":1186712050640113664,"source_status_id_str":"1186712050640113664","source_user_id":12030342,"source_user_id_str":"12030342","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 18:32:55 +0000 2019","id":1186712050640113664,"id_str":"1186712050640113664","full_text":"Join + us for the AECT & Division Convention Kickoff in Paradise North! #aect19inspired + https:\/\/t.co\/XJc5AKhwkp","truncated":false,"display_text_range":[0,89],"entities":{"hashtags":[{"text":"aect19inspired","indices":[74,89]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186711844498444289,"id_str":"1186711844498444289","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgMIpYUEAEbpOw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgMIpYUEAEbpOw.jpg","url":"https:\/\/t.co\/XJc5AKhwkp","display_url":"pic.twitter.com\/XJc5AKhwkp","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186712050640113664\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":427,"resize":"fit"},"large":{"w":2048,"h":1286,"resize":"fit"},"medium":{"w":1200,"h":754,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186711844498444289,"id_str":"1186711844498444289","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgMIpYUEAEbpOw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgMIpYUEAEbpOw.jpg","url":"https:\/\/t.co\/XJc5AKhwkp","display_url":"pic.twitter.com\/XJc5AKhwkp","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186712050640113664\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":427,"resize":"fit"},"large":{"w":2048,"h":1286,"resize":"fit"},"medium":{"w":1200,"h":754,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:08:08 +0000 2019","id":1186751113329905664,"id_str":"1186751113329905664","full_text":"RT + @OlgaCataliina: #aect19 https:\/\/t.co\/fn8Bk8ovR4","truncated":false,"display_text_range":[0,50],"entities":{"hashtags":[{"text":"aect19","indices":[19,26]}],"symbols":[],"user_mentions":[{"screen_name":"OlgaCataliina","name":"Olga + Catalina","id":237995125,"id_str":"237995125","indices":[3,17]}],"urls":[],"media":[{"id":1186720449029234689,"id_str":"1186720449029234689","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgT9fwUYAEk5wi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgT9fwUYAEk5wi.jpg","url":"https:\/\/t.co\/fn8Bk8ovR4","display_url":"pic.twitter.com\/fn8Bk8ovR4","expanded_url":"https:\/\/twitter.com\/OlgaCataliina\/status\/1186720455899537408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1186720455899537408,"source_status_id_str":"1186720455899537408","source_user_id":237995125,"source_user_id_str":"237995125"}]},"extended_entities":{"media":[{"id":1186720449029234689,"id_str":"1186720449029234689","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgT9fwUYAEk5wi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgT9fwUYAEk5wi.jpg","url":"https:\/\/t.co\/fn8Bk8ovR4","display_url":"pic.twitter.com\/fn8Bk8ovR4","expanded_url":"https:\/\/twitter.com\/OlgaCataliina\/status\/1186720455899537408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1186720455899537408,"source_status_id_str":"1186720455899537408","source_user_id":237995125,"source_user_id_str":"237995125","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 19:06:19 +0000 2019","id":1186720455899537408,"id_str":"1186720455899537408","full_text":"#aect19 + https:\/\/t.co\/fn8Bk8ovR4","truncated":false,"display_text_range":[0,7],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186720449029234689,"id_str":"1186720449029234689","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgT9fwUYAEk5wi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgT9fwUYAEk5wi.jpg","url":"https:\/\/t.co\/fn8Bk8ovR4","display_url":"pic.twitter.com\/fn8Bk8ovR4","expanded_url":"https:\/\/twitter.com\/OlgaCataliina\/status\/1186720455899537408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186720449029234689,"id_str":"1186720449029234689","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgT9fwUYAEk5wi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgT9fwUYAEk5wi.jpg","url":"https:\/\/t.co\/fn8Bk8ovR4","display_url":"pic.twitter.com\/fn8Bk8ovR4","expanded_url":"https:\/\/twitter.com\/OlgaCataliina\/status\/1186720455899537408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237995125,"id_str":"237995125","name":"Olga + Catalina","screen_name":"OlgaCataliina","location":"United States","description":"\ud83d\udc9a\ud83d\udc52\ud83d\udcac + Lo que entiendo, lo que pienso, como se ve el mundo con mis ojos. \u00a1Ah! + y pedazos de poes\u00eda que me ecuentro o que hago.","url":"https:\/\/t.co\/Tjg6hOr32h","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Tjg6hOr32h","expanded_url":"https:\/\/ocastillo.netlify.com","display_url":"ocastillo.netlify.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":334,"friends_count":182,"listed_count":1,"created_at":"Fri + Jan 14 03:32:25 +0000 2011","favourites_count":81,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":159,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DB1B41","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1175542685568065537\/unEOUvaQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1175542685568065537\/unEOUvaQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/237995125\/1590254156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F030FF","profile_text_color":"A8D860","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Tue + Oct 22 21:06:50 +0000 2019","id":1186750782835585028,"id_str":"1186750782835585028","full_text":"RT + @DrVirtuality: Presenting tomorrow! Hope to see you there! @aectclt #AECT19 + #AECT19inspired https:\/\/t.co\/7QzdwkwAVq","truncated":false,"display_text_range":[0,118],"entities":{"hashtags":[{"text":"AECT19","indices":[71,78]},{"text":"AECT19inspired","indices":[79,94]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[3,16]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[62,70]}],"urls":[],"media":[{"id":1185701472282927104,"id_str":"1185701472282927104","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR1NPkU4AA5UIM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR1NPkU4AA5UIM.jpg","url":"https:\/\/t.co\/7QzdwkwAVq","display_url":"pic.twitter.com\/7QzdwkwAVq","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186749315890532354\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"source_status_id":1186749315890532354,"source_status_id_str":"1186749315890532354","source_user_id":15667548,"source_user_id_str":"15667548"}]},"extended_entities":{"media":[{"id":1185701472282927104,"id_str":"1185701472282927104","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR1NPkU4AA5UIM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR1NPkU4AA5UIM.jpg","url":"https:\/\/t.co\/7QzdwkwAVq","display_url":"pic.twitter.com\/7QzdwkwAVq","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186749315890532354\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"source_status_id":1186749315890532354,"source_status_id_str":"1186749315890532354","source_user_id":15667548,"source_user_id_str":"15667548","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 21:01:00 +0000 2019","id":1186749315890532354,"id_str":"1186749315890532354","full_text":"Presenting + tomorrow! Hope to see you there! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/7QzdwkwAVq","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"AECT19","indices":[53,60]},{"text":"AECT19inspired","indices":[61,76]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[44,52]}],"urls":[],"media":[{"id":1185701472282927104,"id_str":"1185701472282927104","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR1NPkU4AA5UIM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR1NPkU4AA5UIM.jpg","url":"https:\/\/t.co\/7QzdwkwAVq","display_url":"pic.twitter.com\/7QzdwkwAVq","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186749315890532354\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185701472282927104,"id_str":"1185701472282927104","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR1NPkU4AA5UIM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR1NPkU4AA5UIM.jpg","url":"https:\/\/t.co\/7QzdwkwAVq","display_url":"pic.twitter.com\/7QzdwkwAVq","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186749315890532354\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:32:42 +0000 2019","id":1186742194679365632,"id_str":"1186742194679365632","full_text":"RT + @tammyhuangrui: My first presentation experience at #aect19. More to come... + \ud83d\ude00 https:\/\/t.co\/7kEWG6Iwii","truncated":false,"display_text_range":[0,105],"entities":{"hashtags":[{"text":"aect19","indices":[55,62]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186699812227305472,"id_str":"1186699812227305472","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgBMRrU0AARJQv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgBMRrU0AARJQv.jpg","url":"https:\/\/t.co\/7kEWG6Iwii","display_url":"pic.twitter.com\/7kEWG6Iwii","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1186699816786464768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1464,"resize":"fit"},"medium":{"w":1200,"h":858,"resize":"fit"},"small":{"w":680,"h":486,"resize":"fit"}},"source_status_id":1186699816786464768,"source_status_id_str":"1186699816786464768","source_user_id":2988637594,"source_user_id_str":"2988637594"}]},"extended_entities":{"media":[{"id":1186699812227305472,"id_str":"1186699812227305472","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgBMRrU0AARJQv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgBMRrU0AARJQv.jpg","url":"https:\/\/t.co\/7kEWG6Iwii","display_url":"pic.twitter.com\/7kEWG6Iwii","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1186699816786464768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1464,"resize":"fit"},"medium":{"w":1200,"h":858,"resize":"fit"},"small":{"w":680,"h":486,"resize":"fit"}},"source_status_id":1186699816786464768,"source_status_id_str":"1186699816786464768","source_user_id":2988637594,"source_user_id_str":"2988637594","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:44:18 +0000 2019","id":1186699816786464768,"id_str":"1186699816786464768","full_text":"My + first presentation experience at #aect19. More to come... \ud83d\ude00 https:\/\/t.co\/7kEWG6Iwii","truncated":false,"display_text_range":[0,62],"entities":{"hashtags":[{"text":"aect19","indices":[36,43]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186699812227305472,"id_str":"1186699812227305472","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgBMRrU0AARJQv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgBMRrU0AARJQv.jpg","url":"https:\/\/t.co\/7kEWG6Iwii","display_url":"pic.twitter.com\/7kEWG6Iwii","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1186699816786464768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1464,"resize":"fit"},"medium":{"w":1200,"h":858,"resize":"fit"},"small":{"w":680,"h":486,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186699812227305472,"id_str":"1186699812227305472","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgBMRrU0AARJQv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgBMRrU0AARJQv.jpg","url":"https:\/\/t.co\/7kEWG6Iwii","display_url":"pic.twitter.com\/7kEWG6Iwii","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1186699816786464768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1464,"resize":"fit"},"medium":{"w":1200,"h":858,"resize":"fit"},"small":{"w":680,"h":486,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988637594,"id_str":"2988637594","name":"Rui + \"Tammy\" Huang","screen_name":"ruitammyhuang","location":"FL","description":"PhD, + fellow in Ed Tech @UF_COE, game-based learning and immersive technology researcher, + designer & developer. Learning experience design researcher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":185,"listed_count":6,"created_at":"Wed + Jan 21 02:08:50 +0000 2015","favourites_count":399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988637594\/1621697544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:53:29 +0000 2019","id":1186732326538997760,"id_str":"1186732326538997760","full_text":"RT + @RitaFennelly: Great ethical reminder from Dr @andrewatawfik that we should + be mindful of biases generated from large learning analytics\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[49,63]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:47:14 +0000 2019","id":1186700552299638784,"id_str":"1186700552299638784","full_text":"Great + ethical reminder from Dr @andrewatawfik that we should be mindful of biases + generated from large learning analytics data that may reinforce existing biases + during the @AECT session Learning Analytics: Intersections with ID, Research, + and Practice #aect19inspired","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"aect19inspired","indices":[253,268]}],"symbols":[],"user_mentions":[{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[31,45]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[173,178]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:25:27 +0000 2019","id":1186740371868405761,"id_str":"1186740371868405761","full_text":"RT + @SmithShannonM: It was a great workshop group this morning - so lucky to continue + to collaborate with these colleagues. #aect19 #aect19i\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[123,130]}],"symbols":[],"user_mentions":[{"screen_name":"SmithShannonM","name":"Shannon + M. Smith","id":1408637941,"id_str":"1408637941","indices":[3,17]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:14:37 +0000 2019","id":1186737643276517376,"id_str":"1186737643276517376","full_text":"It + was a great workshop group this morning - so lucky to continue to collaborate + with these colleagues. #aect19 #aect19inspired https:\/\/t.co\/3OPlEJq7wt","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"aect19","indices":[104,111]},{"text":"aect19inspired","indices":[112,127]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186737623395516417,"id_str":"1186737623395516417","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgjlLQUwAEpsIe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgjlLQUwAEpsIe.jpg","url":"https:\/\/t.co\/3OPlEJq7wt","display_url":"pic.twitter.com\/3OPlEJq7wt","expanded_url":"https:\/\/twitter.com\/SmithShannonM\/status\/1186737643276517376\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186737623395516417,"id_str":"1186737623395516417","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgjlLQUwAEpsIe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgjlLQUwAEpsIe.jpg","url":"https:\/\/t.co\/3OPlEJq7wt","display_url":"pic.twitter.com\/3OPlEJq7wt","expanded_url":"https:\/\/twitter.com\/SmithShannonM\/status\/1186737643276517376\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1408637941,"id_str":"1408637941","name":"Shannon + M. Smith","screen_name":"SmithShannonM","location":"Boise, ID","description":"Librarian + @BSULibrary + @UW_iSchool alum | OER, OA, Schol Comm, STEM, Design Thinking + | opinions my own | dreaming + reflecting + learning","url":"https:\/\/t.co\/cP2kwcqbcn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cP2kwcqbcn","expanded_url":"https:\/\/orcid.org\/0000-0002-2560-7410","display_url":"orcid.org\/0000-0002-2560\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":421,"friends_count":863,"listed_count":15,"created_at":"Mon + May 06 20:13:09 +0000 2013","favourites_count":5591,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2346,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1528811834257526784\/FoWd_4Uj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1528811834257526784\/FoWd_4Uj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1408637941\/1653332130","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:09:39 +0000 2019","id":1186736392358907904,"id_str":"1186736392358907904","full_text":"RT + @X1Tab: 2019 AECT #inspiredteam #aect19inspired https:\/\/t.co\/bPV1Tr9YMD","truncated":false,"display_text_range":[0,74],"entities":{"hashtags":[{"text":"inspiredteam","indices":[21,34]},{"text":"aect19inspired","indices":[35,50]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186720281903058945,"id_str":"1186720281903058945","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgTzxKVUAEePpS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgTzxKVUAEePpS.jpg","url":"https:\/\/t.co\/bPV1Tr9YMD","display_url":"pic.twitter.com\/bPV1Tr9YMD","expanded_url":"https:\/\/twitter.com\/X1Tab\/status\/1186720386999697408\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"source_status_id":1186720386999697408,"source_status_id_str":"1186720386999697408","source_user_id":2950104673,"source_user_id_str":"2950104673"}]},"extended_entities":{"media":[{"id":1186720281903058945,"id_str":"1186720281903058945","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgTzxKVUAEePpS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgTzxKVUAEePpS.jpg","url":"https:\/\/t.co\/bPV1Tr9YMD","display_url":"pic.twitter.com\/bPV1Tr9YMD","expanded_url":"https:\/\/twitter.com\/X1Tab\/status\/1186720386999697408\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"source_status_id":1186720386999697408,"source_status_id_str":"1186720386999697408","source_user_id":2950104673,"source_user_id_str":"2950104673","ext_alt_text":null},{"id":1186720303369486336,"id_str":"1186720303369486336","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgT1BIVAAAqjJc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgT1BIVAAAqjJc.jpg","url":"https:\/\/t.co\/bPV1Tr9YMD","display_url":"pic.twitter.com\/bPV1Tr9YMD","expanded_url":"https:\/\/twitter.com\/X1Tab\/status\/1186720386999697408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1186720386999697408,"source_status_id_str":"1186720386999697408","source_user_id":2950104673,"source_user_id_str":"2950104673","ext_alt_text":null},{"id":1186720357673136128,"id_str":"1186720357673136128","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgT4LbU8AAyr8e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgT4LbU8AAyr8e.jpg","url":"https:\/\/t.co\/bPV1Tr9YMD","display_url":"pic.twitter.com\/bPV1Tr9YMD","expanded_url":"https:\/\/twitter.com\/X1Tab\/status\/1186720386999697408\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"}},"source_status_id":1186720386999697408,"source_status_id_str":"1186720386999697408","source_user_id":2950104673,"source_user_id_str":"2950104673","ext_alt_text":null},{"id":1186720373808623616,"id_str":"1186720373808623616","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgT5HiU8AAgJus.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgT5HiU8AAgJus.jpg","url":"https:\/\/t.co\/bPV1Tr9YMD","display_url":"pic.twitter.com\/bPV1Tr9YMD","expanded_url":"https:\/\/twitter.com\/X1Tab\/status\/1186720386999697408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"source_status_id":1186720386999697408,"source_status_id_str":"1186720386999697408","source_user_id":2950104673,"source_user_id_str":"2950104673","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 19:06:03 +0000 2019","id":1186720386999697408,"id_str":"1186720386999697408","full_text":"2019 + AECT #inspiredteam #aect19inspired https:\/\/t.co\/bPV1Tr9YMD","truncated":false,"display_text_range":[0,39],"entities":{"hashtags":[{"text":"inspiredteam","indices":[10,23]},{"text":"aect19inspired","indices":[24,39]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186720281903058945,"id_str":"1186720281903058945","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgTzxKVUAEePpS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgTzxKVUAEePpS.jpg","url":"https:\/\/t.co\/bPV1Tr9YMD","display_url":"pic.twitter.com\/bPV1Tr9YMD","expanded_url":"https:\/\/twitter.com\/X1Tab\/status\/1186720386999697408\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186720281903058945,"id_str":"1186720281903058945","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgTzxKVUAEePpS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgTzxKVUAEePpS.jpg","url":"https:\/\/t.co\/bPV1Tr9YMD","display_url":"pic.twitter.com\/bPV1Tr9YMD","expanded_url":"https:\/\/twitter.com\/X1Tab\/status\/1186720386999697408\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null},{"id":1186720303369486336,"id_str":"1186720303369486336","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgT1BIVAAAqjJc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgT1BIVAAAqjJc.jpg","url":"https:\/\/t.co\/bPV1Tr9YMD","display_url":"pic.twitter.com\/bPV1Tr9YMD","expanded_url":"https:\/\/twitter.com\/X1Tab\/status\/1186720386999697408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null},{"id":1186720357673136128,"id_str":"1186720357673136128","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgT4LbU8AAyr8e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgT4LbU8AAyr8e.jpg","url":"https:\/\/t.co\/bPV1Tr9YMD","display_url":"pic.twitter.com\/bPV1Tr9YMD","expanded_url":"https:\/\/twitter.com\/X1Tab\/status\/1186720386999697408\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null},{"id":1186720373808623616,"id_str":"1186720373808623616","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgT5HiU8AAgJus.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgT5HiU8AAgJus.jpg","url":"https:\/\/t.co\/bPV1Tr9YMD","display_url":"pic.twitter.com\/bPV1Tr9YMD","expanded_url":"https:\/\/twitter.com\/X1Tab\/status\/1186720386999697408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1186720271463415808,"in_reply_to_status_id_str":"1186720271463415808","in_reply_to_user_id":2950104673,"in_reply_to_user_id_str":"2950104673","in_reply_to_screen_name":"lbukunAA","user":{"id":2950104673,"id_str":"2950104673","name":"Ayodeji + Ibukun","screen_name":"lbukunAA","location":"Oklahoma, USA","description":"B.Engrg + MS MNSE","url":"https:\/\/t.co\/kVfuPQQfYs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kVfuPQQfYs","expanded_url":"http:\/\/www.ayoibukun.com","display_url":"ayoibukun.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":489,"listed_count":0,"created_at":"Mon + Dec 29 12:06:33 +0000 2014","favourites_count":665,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":154,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2950104673\/1574622610","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:55:06 +0000 2019","id":1186732733516701696,"id_str":"1186732733516701696","full_text":"Come + visit poster T38: Online Reciprocal Teaching: Designing an Instructional Approach + that Scaffolds Metacognitive Strategy Use for College Students with #FSU #FSUCOE + #ISLT Jiyae Bong & @vdennen #AECT19 #AECT2019 https:\/\/t.co\/JcnMfDqJv6","truncated":false,"display_text_range":[0,217],"entities":{"hashtags":[{"text":"FSU","indices":[155,159]},{"text":"FSUCOE","indices":[160,167]},{"text":"ISLT","indices":[168,173]},{"text":"AECT19","indices":[200,207]},{"text":"AECT2019","indices":[208,217]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[191,199]}],"urls":[],"media":[{"id":1186732730333179910,"id_str":"1186732730333179910","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","url":"https:\/\/t.co\/JcnMfDqJv6","display_url":"pic.twitter.com\/JcnMfDqJv6","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186732733516701696\/photo\/1","type":"photo","sizes":{"large":{"w":1609,"h":1075,"resize":"fit"},"medium":{"w":1200,"h":802,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1186732730333179910,"id_str":"1186732730333179910","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgfIXLWsAYiZwG.png","url":"https:\/\/t.co\/JcnMfDqJv6","display_url":"pic.twitter.com\/JcnMfDqJv6","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186732733516701696\/photo\/1","type":"photo","sizes":{"large":{"w":1609,"h":1075,"resize":"fit"},"medium":{"w":1200,"h":802,"resize":"fit"},"small":{"w":680,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:38:55 +0000 2019","id":1186743757313470469,"id_str":"1186743757313470469","full_text":"RT + @AnnaRoseLeach: @caranorth11 shares her experience being a part of a team + of evaluators of adult basic education lesson plans #aect19ins\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[3,17]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[19,31]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1059123581156700160,"id_str":"1059123581156700160","name":"80K + at Wembley","screen_name":"the80kcrew","location":"","description":"Quality + content from a quality bloke. Quote tweeted by John Cusack once. #boxing mostly","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":307,"friends_count":252,"listed_count":3,"created_at":"Sun + Nov 04 16:41:54 +0000 2018","favourites_count":8676,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7212,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494825221924081667\/yw2J2Rvj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494825221924081667\/yw2J2Rvj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1059123581156700160\/1582607612","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:17:43 +0000 2019","id":1186738424041992192,"id_str":"1186738424041992192","full_text":"@caranorth11 + shares her experience being a part of a team of evaluators of adult basic + education lesson plans #aect19inspired #aect19 https:\/\/t.co\/pNAiwqufx9","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"aect19inspired","indices":[110,125]},{"text":"aect19","indices":[126,133]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[0,12]}],"urls":[],"media":[{"id":1186738411811434497,"id_str":"1186738411811434497","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgkTEVU8AE5MGe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgkTEVU8AE5MGe.jpg","url":"https:\/\/t.co\/pNAiwqufx9","display_url":"pic.twitter.com\/pNAiwqufx9","expanded_url":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1186738424041992192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186738411811434497,"id_str":"1186738411811434497","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgkTEVU8AE5MGe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgkTEVU8AE5MGe.jpg","url":"https:\/\/t.co\/pNAiwqufx9","display_url":"pic.twitter.com\/pNAiwqufx9","expanded_url":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1186738424041992192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":715304516791451648,"in_reply_to_user_id_str":"715304516791451648","in_reply_to_screen_name":"caranorth11","user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:06:56 +0000 2019","id":1186750809033175041,"id_str":"1186750809033175041","full_text":"RT + @tammyhuangrui: My first presentation experience at #aect19. More to come... + \ud83d\ude00 https:\/\/t.co\/7kEWG6Iwii","truncated":false,"display_text_range":[0,105],"entities":{"hashtags":[{"text":"aect19","indices":[55,62]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186699812227305472,"id_str":"1186699812227305472","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgBMRrU0AARJQv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgBMRrU0AARJQv.jpg","url":"https:\/\/t.co\/7kEWG6Iwii","display_url":"pic.twitter.com\/7kEWG6Iwii","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1186699816786464768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1464,"resize":"fit"},"medium":{"w":1200,"h":858,"resize":"fit"},"small":{"w":680,"h":486,"resize":"fit"}},"source_status_id":1186699816786464768,"source_status_id_str":"1186699816786464768","source_user_id":2988637594,"source_user_id_str":"2988637594"}]},"extended_entities":{"media":[{"id":1186699812227305472,"id_str":"1186699812227305472","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgBMRrU0AARJQv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgBMRrU0AARJQv.jpg","url":"https:\/\/t.co\/7kEWG6Iwii","display_url":"pic.twitter.com\/7kEWG6Iwii","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1186699816786464768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1464,"resize":"fit"},"medium":{"w":1200,"h":858,"resize":"fit"},"small":{"w":680,"h":486,"resize":"fit"}},"source_status_id":1186699816786464768,"source_status_id_str":"1186699816786464768","source_user_id":2988637594,"source_user_id_str":"2988637594","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:44:18 +0000 2019","id":1186699816786464768,"id_str":"1186699816786464768","full_text":"My + first presentation experience at #aect19. More to come... \ud83d\ude00 https:\/\/t.co\/7kEWG6Iwii","truncated":false,"display_text_range":[0,62],"entities":{"hashtags":[{"text":"aect19","indices":[36,43]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186699812227305472,"id_str":"1186699812227305472","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgBMRrU0AARJQv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgBMRrU0AARJQv.jpg","url":"https:\/\/t.co\/7kEWG6Iwii","display_url":"pic.twitter.com\/7kEWG6Iwii","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1186699816786464768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1464,"resize":"fit"},"medium":{"w":1200,"h":858,"resize":"fit"},"small":{"w":680,"h":486,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186699812227305472,"id_str":"1186699812227305472","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgBMRrU0AARJQv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgBMRrU0AARJQv.jpg","url":"https:\/\/t.co\/7kEWG6Iwii","display_url":"pic.twitter.com\/7kEWG6Iwii","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1186699816786464768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1464,"resize":"fit"},"medium":{"w":1200,"h":858,"resize":"fit"},"small":{"w":680,"h":486,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988637594,"id_str":"2988637594","name":"Rui + \"Tammy\" Huang","screen_name":"ruitammyhuang","location":"FL","description":"PhD, + fellow in Ed Tech @UF_COE, game-based learning and immersive technology researcher, + designer & developer. Learning experience design researcher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":185,"listed_count":6,"created_at":"Wed + Jan 21 02:08:50 +0000 2015","favourites_count":399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988637594\/1621697544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:25:05 +0000 2019","id":1186740275915280384,"id_str":"1186740275915280384","full_text":"If + you couldn''t make it to the #AECT19 #TeacherEd session on innovative pedagogical + space design, be sure to check out all of the virtual flipped posters at https:\/\/t.co\/1pM0umTnEi + #AECTinspired https:\/\/t.co\/NXpMwQC63N","truncated":false,"display_text_range":[0,194],"entities":{"hashtags":[{"text":"AECT19","indices":[31,38]},{"text":"TeacherEd","indices":[39,49]},{"text":"AECTinspired","indices":[181,194]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/1pM0umTnEi","expanded_url":"http:\/\/bit.ly\/TED-flipped","display_url":"bit.ly\/TED-flipped","indices":[157,180]}],"media":[{"id":1186740239152271361,"id_str":"1186740239152271361","indices":[195,218],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgl9btVUAEvjnZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgl9btVUAEvjnZ.jpg","url":"https:\/\/t.co\/NXpMwQC63N","display_url":"pic.twitter.com\/NXpMwQC63N","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186740275915280384\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":960,"h":540,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186740239152271361,"id_str":"1186740239152271361","indices":[195,218],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgl9btVUAEvjnZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgl9btVUAEvjnZ.jpg","url":"https:\/\/t.co\/NXpMwQC63N","display_url":"pic.twitter.com\/NXpMwQC63N","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186740275915280384\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":960,"h":540,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:38:58 +0000 2019","id":1186743771167449089,"id_str":"1186743771167449089","full_text":"RT + @michelestork: Getting #aect19inspired with @lpemusicguru. Love introducing + a student to all the wonderful learning and networking oppor\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"michelestork","name":"Dr. + Michele Stork","id":36073247,"id_str":"36073247","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/pragmatism.club\" rel=\"nofollow\"\u003ebehavioralscience\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":717927353268232192,"id_str":"717927353268232192","name":"Scalar + Humanity","screen_name":"ScalarHumanity","location":"","description":"Until + #BehavioralScience is made core #education; polarizing effects will continue + to devolve #humanity","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":6031,"friends_count":4999,"listed_count":426,"created_at":"Thu + Apr 07 04:09:54 +0000 2016","favourites_count":545,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":226692,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/851863204951142400\/QI35SGUJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/851863204951142400\/QI35SGUJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/717927353268232192\/1460477788","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:37:44 +0000 2019","id":1186743460704862208,"id_str":"1186743460704862208","full_text":"Getting + #aect19inspired with @lpemusicguru. Love introducing a student to all the + wonderful learning and networking opportunities @AECT offers in the #edtech + field. #storkteach @AECTTIL https:\/\/t.co\/Ppx2Ct5Uak","truncated":false,"display_text_range":[0,185],"entities":{"hashtags":[{"text":"aect19inspired","indices":[8,23]},{"text":"edtech","indices":[150,157]},{"text":"storkteach","indices":[165,176]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[130,135]},{"screen_name":"AECTTIL","name":"AECT + TIL","id":4921781685,"id_str":"4921781685","indices":[177,185]}],"urls":[],"media":[{"id":1186743452165267456,"id_str":"1186743452165267456","indices":[186,209],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgo4dHU4AAhW2e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgo4dHU4AAhW2e.jpg","url":"https:\/\/t.co\/Ppx2Ct5Uak","display_url":"pic.twitter.com\/Ppx2Ct5Uak","expanded_url":"https:\/\/twitter.com\/michelestork\/status\/1186743460704862208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":583,"h":680,"resize":"fit"},"large":{"w":1755,"h":2048,"resize":"fit"},"medium":{"w":1028,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186743452165267456,"id_str":"1186743452165267456","indices":[186,209],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgo4dHU4AAhW2e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgo4dHU4AAhW2e.jpg","url":"https:\/\/t.co\/Ppx2Ct5Uak","display_url":"pic.twitter.com\/Ppx2Ct5Uak","expanded_url":"https:\/\/twitter.com\/michelestork\/status\/1186743460704862208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":583,"h":680,"resize":"fit"},"large":{"w":1755,"h":2048,"resize":"fit"},"medium":{"w":1028,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":36073247,"id_str":"36073247","name":"Dr. + Michele Stork","screen_name":"michelestork","location":"","description":"Associate + Professor, #edtech #edleadership. Committed to empowering learners. Views + expressed here are my own. #storkteach","url":"https:\/\/t.co\/Qhw0mZ4Y4K","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Qhw0mZ4Y4K","expanded_url":"http:\/\/www.michelestork.com","display_url":"michelestork.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1421,"friends_count":395,"listed_count":18,"created_at":"Tue + Apr 28 14:09:17 +0000 2009","favourites_count":2318,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1522,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"464646","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471984303252946948\/Dx8iRa3C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471984303252946948\/Dx8iRa3C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36073247\/1549417573","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"464646","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:17:43 +0000 2019","id":1186738424041992192,"id_str":"1186738424041992192","full_text":"@caranorth11 + shares her experience being a part of a team of evaluators of adult basic + education lesson plans #aect19inspired #aect19 https:\/\/t.co\/pNAiwqufx9","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"aect19inspired","indices":[110,125]},{"text":"aect19","indices":[126,133]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[0,12]}],"urls":[],"media":[{"id":1186738411811434497,"id_str":"1186738411811434497","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgkTEVU8AE5MGe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgkTEVU8AE5MGe.jpg","url":"https:\/\/t.co\/pNAiwqufx9","display_url":"pic.twitter.com\/pNAiwqufx9","expanded_url":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1186738424041992192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186738411811434497,"id_str":"1186738411811434497","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgkTEVU8AE5MGe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgkTEVU8AE5MGe.jpg","url":"https:\/\/t.co\/pNAiwqufx9","display_url":"pic.twitter.com\/pNAiwqufx9","expanded_url":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1186738424041992192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":715304516791451648,"in_reply_to_user_id_str":"715304516791451648","in_reply_to_screen_name":"caranorth11","user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:03:00 +0000 2019","id":1186734721595662338,"id_str":"1186734721595662338","full_text":"Really + enjoying @AECT so far (what other conference lets you play with Play-Doh?!), + but not forgetting that it''s fall and that I''m a @GatorsFB gal. #GoGators + #evenonabyeweek #aect19 https:\/\/t.co\/AsCCG2JbKm","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"GoGators","indices":[148,157]},{"text":"evenonabyeweek","indices":[158,173]},{"text":"aect19","indices":[174,181]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[16,21]},{"screen_name":"GatorsFB","name":"Florida + Gators Football","id":39533864,"id_str":"39533864","indices":[133,142]}],"urls":[],"media":[{"id":1186734713030840321,"id_str":"1186734713030840321","indices":[182,205],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgg7xTUEAEZUx0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgg7xTUEAEZUx0.jpg","url":"https:\/\/t.co\/AsCCG2JbKm","display_url":"pic.twitter.com\/AsCCG2JbKm","expanded_url":"https:\/\/twitter.com\/jbrishke\/status\/1186734721595662338\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186734713030840321,"id_str":"1186734713030840321","indices":[182,205],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgg7xTUEAEZUx0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgg7xTUEAEZUx0.jpg","url":"https:\/\/t.co\/AsCCG2JbKm","display_url":"pic.twitter.com\/AsCCG2JbKm","expanded_url":"https:\/\/twitter.com\/jbrishke\/status\/1186734721595662338\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1431588780,"id_str":"1431588780","name":"J","screen_name":"jbrishke","location":"Florida","description":"Guitar + strummer, slow runner, and pet lover. All content represents my POV and does + not represent anyone else.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":500,"listed_count":3,"created_at":"Wed + May 15 22:12:29 +0000 2013","favourites_count":1986,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1511,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3667419958\/07000f2094da3613d23a1ea34d8b17f0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3667419958\/07000f2094da3613d23a1ea34d8b17f0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1431588780\/1380253133","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:48:07 +0000 2019","id":1186730975591428096,"id_str":"1186730975591428096","full_text":"#AECT19 + Kickoff! \n#aect19inspired https:\/\/t.co\/TnVngVrgq1","truncated":false,"display_text_range":[0,33],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"aect19inspired","indices":[18,33]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186730932461424640,"id_str":"1186730932461424640","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgdftlU0AA9lA6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgdftlU0AA9lA6.jpg","url":"https:\/\/t.co\/TnVngVrgq1","display_url":"pic.twitter.com\/TnVngVrgq1","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186730975591428096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186730932461424640,"id_str":"1186730932461424640","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgdftlU0AA9lA6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgdftlU0AA9lA6.jpg","url":"https:\/\/t.co\/TnVngVrgq1","display_url":"pic.twitter.com\/TnVngVrgq1","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186730975591428096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1186730932461457409,"id_str":"1186730932461457409","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgdftlVUAEBBGE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgdftlVUAEBBGE.jpg","url":"https:\/\/t.co\/TnVngVrgq1","display_url":"pic.twitter.com\/TnVngVrgq1","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186730975591428096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1186730932461391872,"id_str":"1186730932461391872","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgdftlUUAAepLk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgdftlUUAAepLk.jpg","url":"https:\/\/t.co\/TnVngVrgq1","display_url":"pic.twitter.com\/TnVngVrgq1","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186730975591428096\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1186730932465651712,"id_str":"1186730932465651712","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgdftmVUAAJhJt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgdftmVUAAJhJt.jpg","url":"https:\/\/t.co\/TnVngVrgq1","display_url":"pic.twitter.com\/TnVngVrgq1","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186730975591428096\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:06:03 +0000 2019","id":1186720386999697408,"id_str":"1186720386999697408","full_text":"2019 + AECT #inspiredteam #aect19inspired https:\/\/t.co\/bPV1Tr9YMD","truncated":false,"display_text_range":[0,39],"entities":{"hashtags":[{"text":"inspiredteam","indices":[10,23]},{"text":"aect19inspired","indices":[24,39]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186720281903058945,"id_str":"1186720281903058945","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgTzxKVUAEePpS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgTzxKVUAEePpS.jpg","url":"https:\/\/t.co\/bPV1Tr9YMD","display_url":"pic.twitter.com\/bPV1Tr9YMD","expanded_url":"https:\/\/twitter.com\/X1Tab\/status\/1186720386999697408\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186720281903058945,"id_str":"1186720281903058945","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgTzxKVUAEePpS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgTzxKVUAEePpS.jpg","url":"https:\/\/t.co\/bPV1Tr9YMD","display_url":"pic.twitter.com\/bPV1Tr9YMD","expanded_url":"https:\/\/twitter.com\/X1Tab\/status\/1186720386999697408\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null},{"id":1186720303369486336,"id_str":"1186720303369486336","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgT1BIVAAAqjJc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgT1BIVAAAqjJc.jpg","url":"https:\/\/t.co\/bPV1Tr9YMD","display_url":"pic.twitter.com\/bPV1Tr9YMD","expanded_url":"https:\/\/twitter.com\/X1Tab\/status\/1186720386999697408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null},{"id":1186720357673136128,"id_str":"1186720357673136128","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgT4LbU8AAyr8e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgT4LbU8AAyr8e.jpg","url":"https:\/\/t.co\/bPV1Tr9YMD","display_url":"pic.twitter.com\/bPV1Tr9YMD","expanded_url":"https:\/\/twitter.com\/X1Tab\/status\/1186720386999697408\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null},{"id":1186720373808623616,"id_str":"1186720373808623616","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgT5HiU8AAgJus.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgT5HiU8AAgJus.jpg","url":"https:\/\/t.co\/bPV1Tr9YMD","display_url":"pic.twitter.com\/bPV1Tr9YMD","expanded_url":"https:\/\/twitter.com\/X1Tab\/status\/1186720386999697408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1186720271463415808,"in_reply_to_status_id_str":"1186720271463415808","in_reply_to_user_id":2950104673,"in_reply_to_user_id_str":"2950104673","in_reply_to_screen_name":"lbukunAA","user":{"id":2950104673,"id_str":"2950104673","name":"Ayodeji + Ibukun","screen_name":"lbukunAA","location":"Oklahoma, USA","description":"B.Engrg + MS MNSE","url":"https:\/\/t.co\/kVfuPQQfYs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kVfuPQQfYs","expanded_url":"http:\/\/www.ayoibukun.com","display_url":"ayoibukun.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":489,"listed_count":0,"created_at":"Mon + Dec 29 12:06:33 +0000 2014","favourites_count":665,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":154,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2950104673\/1574622610","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:25:46 +0000 2019","id":1186740451237253120,"id_str":"1186740451237253120","full_text":"Thanks + for this, Anna. This was a fun project and I look forward to continuing the + collaboration with @JenM @jmenglund03 @roycekimmons. #aect19 https:\/\/t.co\/Wm1hazrwCK","truncated":false,"display_text_range":[0,143],"entities":{"hashtags":[{"text":"aect19","indices":[136,143]}],"symbols":[],"user_mentions":[{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[102,107]},{"screen_name":"jmenglund03","name":"jenn\u03b9\u0493er + engl\u03c5nd","id":64769037,"id_str":"64769037","indices":[108,120]},{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[121,134]}],"urls":[{"url":"https:\/\/t.co\/Wm1hazrwCK","expanded_url":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1186738424041992192","display_url":"twitter.com\/AnnaRoseLeach\/\u2026","indices":[144,167]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186738424041992192,"quoted_status_id_str":"1186738424041992192","quoted_status_permalink":{"url":"https:\/\/t.co\/Wm1hazrwCK","expanded":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1186738424041992192","display":"twitter.com\/AnnaRoseLeach\/\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 20:17:43 +0000 2019","id":1186738424041992192,"id_str":"1186738424041992192","full_text":"@caranorth11 + shares her experience being a part of a team of evaluators of adult basic + education lesson plans #aect19inspired #aect19 https:\/\/t.co\/pNAiwqufx9","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"aect19inspired","indices":[110,125]},{"text":"aect19","indices":[126,133]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[0,12]}],"urls":[],"media":[{"id":1186738411811434497,"id_str":"1186738411811434497","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgkTEVU8AE5MGe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgkTEVU8AE5MGe.jpg","url":"https:\/\/t.co\/pNAiwqufx9","display_url":"pic.twitter.com\/pNAiwqufx9","expanded_url":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1186738424041992192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186738411811434497,"id_str":"1186738411811434497","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgkTEVU8AE5MGe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgkTEVU8AE5MGe.jpg","url":"https:\/\/t.co\/pNAiwqufx9","display_url":"pic.twitter.com\/pNAiwqufx9","expanded_url":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1186738424041992192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":715304516791451648,"in_reply_to_user_id_str":"715304516791451648","in_reply_to_screen_name":"caranorth11","user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:06:41 +0000 2019","id":1186750748584857600,"id_str":"1186750748584857600","full_text":"RT + @LearnEngage: What factors are important in student engagement for #onlinelearning? + What does history say of the approaches? Learn more\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"onlinelearning","indices":[70,85]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:30:00 +0000 2019","id":1186741515306975232,"id_str":"1186741515306975232","full_text":"What + factors are important in student engagement for #onlinelearning? What does + history say of the approaches? Learn more at the Online Learning session at + 2pm in Conf Room 8! #aect19 https:\/\/t.co\/Av2VQvgmyK","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"onlinelearning","indices":[53,68]},{"text":"aect19","indices":[176,183]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186655962586701825,"id_str":"1186655962586701825","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfZT5CUYAEwXo-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfZT5CUYAEwXo-.jpg","url":"https:\/\/t.co\/Av2VQvgmyK","display_url":"pic.twitter.com\/Av2VQvgmyK","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1186741515306975232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":1920,"h":1280,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186655962586701825,"id_str":"1186655962586701825","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfZT5CUYAEwXo-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfZT5CUYAEwXo-.jpg","url":"https:\/\/t.co\/Av2VQvgmyK","display_url":"pic.twitter.com\/Av2VQvgmyK","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1186741515306975232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":453,"resize":"fit"},"large":{"w":1920,"h":1280,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:28:56 +0000 2019","id":1186741246364024832,"id_str":"1186741246364024832","full_text":"RT + @OlgaCataliina: #aect19 https:\/\/t.co\/fn8Bk8ovR4","truncated":false,"display_text_range":[0,50],"entities":{"hashtags":[{"text":"aect19","indices":[19,26]}],"symbols":[],"user_mentions":[{"screen_name":"OlgaCataliina","name":"Olga + Catalina","id":237995125,"id_str":"237995125","indices":[3,17]}],"urls":[],"media":[{"id":1186720449029234689,"id_str":"1186720449029234689","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgT9fwUYAEk5wi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgT9fwUYAEk5wi.jpg","url":"https:\/\/t.co\/fn8Bk8ovR4","display_url":"pic.twitter.com\/fn8Bk8ovR4","expanded_url":"https:\/\/twitter.com\/OlgaCataliina\/status\/1186720455899537408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1186720455899537408,"source_status_id_str":"1186720455899537408","source_user_id":237995125,"source_user_id_str":"237995125"}]},"extended_entities":{"media":[{"id":1186720449029234689,"id_str":"1186720449029234689","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgT9fwUYAEk5wi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgT9fwUYAEk5wi.jpg","url":"https:\/\/t.co\/fn8Bk8ovR4","display_url":"pic.twitter.com\/fn8Bk8ovR4","expanded_url":"https:\/\/twitter.com\/OlgaCataliina\/status\/1186720455899537408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1186720455899537408,"source_status_id_str":"1186720455899537408","source_user_id":237995125,"source_user_id_str":"237995125","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 19:06:19 +0000 2019","id":1186720455899537408,"id_str":"1186720455899537408","full_text":"#aect19 + https:\/\/t.co\/fn8Bk8ovR4","truncated":false,"display_text_range":[0,7],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186720449029234689,"id_str":"1186720449029234689","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgT9fwUYAEk5wi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgT9fwUYAEk5wi.jpg","url":"https:\/\/t.co\/fn8Bk8ovR4","display_url":"pic.twitter.com\/fn8Bk8ovR4","expanded_url":"https:\/\/twitter.com\/OlgaCataliina\/status\/1186720455899537408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186720449029234689,"id_str":"1186720449029234689","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgT9fwUYAEk5wi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgT9fwUYAEk5wi.jpg","url":"https:\/\/t.co\/fn8Bk8ovR4","display_url":"pic.twitter.com\/fn8Bk8ovR4","expanded_url":"https:\/\/twitter.com\/OlgaCataliina\/status\/1186720455899537408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237995125,"id_str":"237995125","name":"Olga + Catalina","screen_name":"OlgaCataliina","location":"United States","description":"\ud83d\udc9a\ud83d\udc52\ud83d\udcac + Lo que entiendo, lo que pienso, como se ve el mundo con mis ojos. \u00a1Ah! + y pedazos de poes\u00eda que me ecuentro o que hago.","url":"https:\/\/t.co\/Tjg6hOr32h","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Tjg6hOr32h","expanded_url":"https:\/\/ocastillo.netlify.com","display_url":"ocastillo.netlify.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":334,"friends_count":182,"listed_count":1,"created_at":"Fri + Jan 14 03:32:25 +0000 2011","favourites_count":81,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":159,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DB1B41","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1175542685568065537\/unEOUvaQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1175542685568065537\/unEOUvaQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/237995125\/1590254156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F030FF","profile_text_color":"A8D860","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Tue + Oct 22 20:37:44 +0000 2019","id":1186743460704862208,"id_str":"1186743460704862208","full_text":"Getting + #aect19inspired with @lpemusicguru. Love introducing a student to all the + wonderful learning and networking opportunities @AECT offers in the #edtech + field. #storkteach @AECTTIL https:\/\/t.co\/Ppx2Ct5Uak","truncated":false,"display_text_range":[0,185],"entities":{"hashtags":[{"text":"aect19inspired","indices":[8,23]},{"text":"edtech","indices":[150,157]},{"text":"storkteach","indices":[165,176]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[130,135]},{"screen_name":"AECTTIL","name":"AECT + TIL","id":4921781685,"id_str":"4921781685","indices":[177,185]}],"urls":[],"media":[{"id":1186743452165267456,"id_str":"1186743452165267456","indices":[186,209],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgo4dHU4AAhW2e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgo4dHU4AAhW2e.jpg","url":"https:\/\/t.co\/Ppx2Ct5Uak","display_url":"pic.twitter.com\/Ppx2Ct5Uak","expanded_url":"https:\/\/twitter.com\/michelestork\/status\/1186743460704862208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":583,"h":680,"resize":"fit"},"large":{"w":1755,"h":2048,"resize":"fit"},"medium":{"w":1028,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186743452165267456,"id_str":"1186743452165267456","indices":[186,209],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgo4dHU4AAhW2e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgo4dHU4AAhW2e.jpg","url":"https:\/\/t.co\/Ppx2Ct5Uak","display_url":"pic.twitter.com\/Ppx2Ct5Uak","expanded_url":"https:\/\/twitter.com\/michelestork\/status\/1186743460704862208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":583,"h":680,"resize":"fit"},"large":{"w":1755,"h":2048,"resize":"fit"},"medium":{"w":1028,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":36073247,"id_str":"36073247","name":"Dr. + Michele Stork","screen_name":"michelestork","location":"","description":"Associate + Professor, #edtech #edleadership. Committed to empowering learners. Views + expressed here are my own. #storkteach","url":"https:\/\/t.co\/Qhw0mZ4Y4K","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Qhw0mZ4Y4K","expanded_url":"http:\/\/www.michelestork.com","display_url":"michelestork.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1421,"friends_count":395,"listed_count":18,"created_at":"Tue + Apr 28 14:09:17 +0000 2009","favourites_count":2318,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1522,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"464646","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471984303252946948\/Dx8iRa3C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471984303252946948\/Dx8iRa3C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36073247\/1549417573","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"464646","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:06:31 +0000 2019","id":1186735606442782720,"id_str":"1186735606442782720","full_text":"Me + at #aect19 https:\/\/t.co\/6vDyuaK8pQ","truncated":false,"display_text_range":[0,13],"entities":{"hashtags":[{"text":"aect19","indices":[6,13]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186735593016848384,"id_str":"1186735593016848384","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHghu_gU8AAN2Lv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHghu_gU8AAN2Lv.jpg","url":"https:\/\/t.co\/6vDyuaK8pQ","display_url":"pic.twitter.com\/6vDyuaK8pQ","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1186735606442782720\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":450,"h":252,"resize":"fit"},"medium":{"w":450,"h":252,"resize":"fit"},"small":{"w":450,"h":252,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186735593016848384,"id_str":"1186735593016848384","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHghu_gU8AAN2Lv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHghu_gU8AAN2Lv.jpg","url":"https:\/\/t.co\/6vDyuaK8pQ","display_url":"pic.twitter.com\/6vDyuaK8pQ","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1186735606442782720\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":450,"h":252,"resize":"fit"},"medium":{"w":450,"h":252,"resize":"fit"},"small":{"w":450,"h":252,"resize":"fit"}},"video_info":{"aspect_ratio":[25,14],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHghu_gU8AAN2Lv.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:04:39 +0000 2019","id":1186735134835298304,"id_str":"1186735134835298304","full_text":"RT + @nangur1: A moment when a Twitter friend becomes real! Great to meet you in + person! \u2066@eromerohall\u2069 \ud83d\udc95 #aect19 #aect19inspired https:\/\/t.c\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[104,111]},{"text":"aect19inspired","indices":[112,127]}],"symbols":[],"user_mentions":[{"screen_name":"nangur1","name":"Dr. + Nandita Gurjar","id":2743313304,"id_str":"2743313304","indices":[3,11]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[88,100]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 19:22:01 +0000 2019","id":1186724407726596096,"id_str":"1186724407726596096","full_text":"A + moment when a Twitter friend becomes real! Great to meet you in person! \u2066@eromerohall\u2069 + \ud83d\udc95 #aect19 #aect19inspired https:\/\/t.co\/zt7UxsCPu0","truncated":false,"display_text_range":[0,114],"entities":{"hashtags":[{"text":"aect19","indices":[91,98]},{"text":"aect19inspired","indices":[99,114]}],"symbols":[],"user_mentions":[{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[75,87]}],"urls":[],"media":[{"id":1186724401196089344,"id_str":"1186724401196089344","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgXjiuUwAAREj9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgXjiuUwAAREj9.jpg","url":"https:\/\/t.co\/zt7UxsCPu0","display_url":"pic.twitter.com\/zt7UxsCPu0","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186724407726596096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186724401196089344,"id_str":"1186724401196089344","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgXjiuUwAAREj9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgXjiuUwAAREj9.jpg","url":"https:\/\/t.co\/zt7UxsCPu0","display_url":"pic.twitter.com\/zt7UxsCPu0","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186724407726596096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:53:36 +0000 2019","id":1186732355483881473,"id_str":"1186732355483881473","full_text":"RT + @RitaFennelly: Great point from Dr. @ifenthaler about how instructional designers + should define which data we want to collect rather tha\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[39,50]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:35:33 +0000 2019","id":1186697614311350272,"id_str":"1186697614311350272","full_text":"Great + point from Dr. @ifenthaler about how instructional designers should define + which data we want to collect rather than relying on which data we have. Great + learning @AECT session Learning Analytics: Intersections with ID, Research, + and Practice #aect19inspired","truncated":false,"display_text_range":[0,264],"entities":{"hashtags":[{"text":"aect19inspired","indices":[249,264]}],"symbols":[],"user_mentions":[{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[21,32]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[169,174]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:48:40 +0000 2019","id":1186731114284478465,"id_str":"1186731114284478465","full_text":"RT + @rebeccamclark87: Oh look out everyone! I can make cool things - for educational + purposes of course! \ud83d\ude0e #aect19 @TheMakerBit https:\/\/t.c\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[107,114]}],"symbols":[],"user_mentions":[{"screen_name":"rebeccamclark87","name":"Rebecca + Clark","id":2786357411,"id_str":"2786357411","indices":[3,19]},{"screen_name":"TheMakerBit","name":"TheMakerBit","id":826327660078911488,"id_str":"826327660078911488","indices":[115,127]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 21:31:07 +0000 2019","id":1186394509967413248,"id_str":"1186394509967413248","full_text":"Oh + look out everyone! I can make cool things - for educational purposes of course! \ud83d\ude0e + #aect19 @TheMakerBit https:\/\/t.co\/Az6H9opkm0","truncated":false,"display_text_range":[0,106],"entities":{"hashtags":[{"text":"aect19","indices":[86,93]}],"symbols":[],"user_mentions":[{"screen_name":"TheMakerBit","name":"TheMakerBit","id":826327660078911488,"id_str":"826327660078911488","indices":[94,106]}],"urls":[],"media":[{"id":1186394504498044928,"id_str":"1186394504498044928","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbrhBwU4AAf1ty.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbrhBwU4AAf1ty.jpg","url":"https:\/\/t.co\/Az6H9opkm0","display_url":"pic.twitter.com\/Az6H9opkm0","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186394509967413248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186394504498044928,"id_str":"1186394504498044928","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbrhBwU4AAf1ty.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbrhBwU4AAf1ty.jpg","url":"https:\/\/t.co\/Az6H9opkm0","display_url":"pic.twitter.com\/Az6H9opkm0","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186394509967413248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2786357411,"id_str":"2786357411","name":"Rebecca + Clark","screen_name":"rebeccamclark87","location":"Blacksburg, VA","description":"PhD + Student - Instructional Design and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":124,"listed_count":1,"created_at":"Fri + Sep 26 21:55:13 +0000 2014","favourites_count":370,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":94,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1116743962067460096\/nxZX1CVu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1116743962067460096\/nxZX1CVu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2786357411\/1551977207","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:46:56 +0000 2019","id":1186730677317668866,"id_str":"1186730677317668866","full_text":"RT + @jeroen69: @michaelmgrant Kicking it off #aect19 https:\/\/t.co\/hTEvP7t1t4","truncated":false,"display_text_range":[0,75],"entities":{"hashtags":[{"text":"aect19","indices":[44,51]}],"symbols":[],"user_mentions":[{"screen_name":"jeroen69","name":"Jeroen","id":6848632,"id_str":"6848632","indices":[3,12]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[14,28]}],"urls":[],"media":[{"id":1186716441313079296,"id_str":"1186716441313079296","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQUN2U8AAWCSs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQUN2U8AAWCSs.jpg","url":"https:\/\/t.co\/hTEvP7t1t4","display_url":"pic.twitter.com\/hTEvP7t1t4","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186716447365455872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1186716447365455872,"source_status_id_str":"1186716447365455872","source_user_id":6848632,"source_user_id_str":"6848632"}]},"extended_entities":{"media":[{"id":1186716441313079296,"id_str":"1186716441313079296","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQUN2U8AAWCSs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQUN2U8AAWCSs.jpg","url":"https:\/\/t.co\/hTEvP7t1t4","display_url":"pic.twitter.com\/hTEvP7t1t4","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186716447365455872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1186716447365455872,"source_status_id_str":"1186716447365455872","source_user_id":6848632,"source_user_id_str":"6848632","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 18:50:23 +0000 2019","id":1186716447365455872,"id_str":"1186716447365455872","full_text":"@michaelmgrant + Kicking it off #aect19 https:\/\/t.co\/hTEvP7t1t4","truncated":false,"display_text_range":[0,37],"entities":{"hashtags":[{"text":"aect19","indices":[30,37]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[0,14]}],"urls":[],"media":[{"id":1186716441313079296,"id_str":"1186716441313079296","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQUN2U8AAWCSs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQUN2U8AAWCSs.jpg","url":"https:\/\/t.co\/hTEvP7t1t4","display_url":"pic.twitter.com\/hTEvP7t1t4","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186716447365455872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186716441313079296,"id_str":"1186716441313079296","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQUN2U8AAWCSs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQUN2U8AAWCSs.jpg","url":"https:\/\/t.co\/hTEvP7t1t4","display_url":"pic.twitter.com\/hTEvP7t1t4","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186716447365455872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":132653457,"in_reply_to_user_id_str":"132653457","in_reply_to_screen_name":"michaelmgrant","user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:45:08 +0000 2019","id":1186745325530140672,"id_str":"1186745325530140672","full_text":"RT + @michelestork: Getting #aect19inspired with @lpemusicguru. Love introducing + a student to all the wonderful learning and networking oppor\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[{"screen_name":"michelestork","name":"Dr. + Michele Stork","id":36073247,"id_str":"36073247","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":763378325712674818,"id_str":"763378325712674818","name":"Tay + Fess, M.Ed.","screen_name":"Captain_Fess","location":"Naples, FL","description":"Music + Educator l \ud83c\udff3\ufe0f\u200d\ud83c\udf08 l Presenter l UDL l FGCU l + Doctoral Student Ed.D. l EdTech l Disney Geek","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":576,"listed_count":3,"created_at":"Wed + Aug 10 14:15:50 +0000 2016","favourites_count":1730,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":665,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/763378325712674818\/1595378873","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:37:44 +0000 2019","id":1186743460704862208,"id_str":"1186743460704862208","full_text":"Getting + #aect19inspired with @lpemusicguru. Love introducing a student to all the + wonderful learning and networking opportunities @AECT offers in the #edtech + field. #storkteach @AECTTIL https:\/\/t.co\/Ppx2Ct5Uak","truncated":false,"display_text_range":[0,185],"entities":{"hashtags":[{"text":"aect19inspired","indices":[8,23]},{"text":"edtech","indices":[150,157]},{"text":"storkteach","indices":[165,176]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[130,135]},{"screen_name":"AECTTIL","name":"AECT + TIL","id":4921781685,"id_str":"4921781685","indices":[177,185]}],"urls":[],"media":[{"id":1186743452165267456,"id_str":"1186743452165267456","indices":[186,209],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgo4dHU4AAhW2e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgo4dHU4AAhW2e.jpg","url":"https:\/\/t.co\/Ppx2Ct5Uak","display_url":"pic.twitter.com\/Ppx2Ct5Uak","expanded_url":"https:\/\/twitter.com\/michelestork\/status\/1186743460704862208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":583,"h":680,"resize":"fit"},"large":{"w":1755,"h":2048,"resize":"fit"},"medium":{"w":1028,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186743452165267456,"id_str":"1186743452165267456","indices":[186,209],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgo4dHU4AAhW2e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgo4dHU4AAhW2e.jpg","url":"https:\/\/t.co\/Ppx2Ct5Uak","display_url":"pic.twitter.com\/Ppx2Ct5Uak","expanded_url":"https:\/\/twitter.com\/michelestork\/status\/1186743460704862208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":583,"h":680,"resize":"fit"},"large":{"w":1755,"h":2048,"resize":"fit"},"medium":{"w":1028,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":36073247,"id_str":"36073247","name":"Dr. + Michele Stork","screen_name":"michelestork","location":"","description":"Associate + Professor, #edtech #edleadership. Committed to empowering learners. Views + expressed here are my own. #storkteach","url":"https:\/\/t.co\/Qhw0mZ4Y4K","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Qhw0mZ4Y4K","expanded_url":"http:\/\/www.michelestork.com","display_url":"michelestork.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1421,"friends_count":395,"listed_count":18,"created_at":"Tue + Apr 28 14:09:17 +0000 2009","favourites_count":2318,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1522,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"464646","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471984303252946948\/Dx8iRa3C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471984303252946948\/Dx8iRa3C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36073247\/1549417573","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"464646","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 20:03:55 +0000 2019","id":1186734952919887872,"id_str":"1186734952919887872","full_text":"RT + @robmoore3: With one of my favorite people, @profoyarzun #aect19 https:\/\/t.co\/eeoUsKclVK","truncated":false,"display_text_range":[0,91],"entities":{"hashtags":[{"text":"aect19","indices":[60,67]}],"symbols":[],"user_mentions":[{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[3,13]},{"screen_name":"profoyarzun","name":"Beth + Oyarzun","id":19023356,"id_str":"19023356","indices":[47,59]}],"urls":[],"media":[{"id":1186667561242357763,"id_str":"1186667561242357763","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfj3BZUcAMhw6B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfj3BZUcAMhw6B.jpg","url":"https:\/\/t.co\/eeoUsKclVK","display_url":"pic.twitter.com\/eeoUsKclVK","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186667567739330561\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":511,"h":680,"resize":"fit"},"medium":{"w":901,"h":1200,"resize":"fit"},"large":{"w":1538,"h":2048,"resize":"fit"}},"source_status_id":1186667567739330561,"source_status_id_str":"1186667567739330561","source_user_id":45256556,"source_user_id_str":"45256556"}]},"extended_entities":{"media":[{"id":1186667561242357763,"id_str":"1186667561242357763","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfj3BZUcAMhw6B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfj3BZUcAMhw6B.jpg","url":"https:\/\/t.co\/eeoUsKclVK","display_url":"pic.twitter.com\/eeoUsKclVK","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186667567739330561\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":511,"h":680,"resize":"fit"},"medium":{"w":901,"h":1200,"resize":"fit"},"large":{"w":1538,"h":2048,"resize":"fit"}},"source_status_id":1186667567739330561,"source_status_id_str":"1186667567739330561","source_user_id":45256556,"source_user_id_str":"45256556","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 15:36:10 +0000 2019","id":1186667567739330561,"id_str":"1186667567739330561","full_text":"With + one of my favorite people, @profoyarzun #aect19 https:\/\/t.co\/eeoUsKclVK","truncated":false,"display_text_range":[0,52],"entities":{"hashtags":[{"text":"aect19","indices":[45,52]}],"symbols":[],"user_mentions":[{"screen_name":"profoyarzun","name":"Beth + Oyarzun","id":19023356,"id_str":"19023356","indices":[32,44]}],"urls":[],"media":[{"id":1186667561242357763,"id_str":"1186667561242357763","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfj3BZUcAMhw6B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfj3BZUcAMhw6B.jpg","url":"https:\/\/t.co\/eeoUsKclVK","display_url":"pic.twitter.com\/eeoUsKclVK","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186667567739330561\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":511,"h":680,"resize":"fit"},"medium":{"w":901,"h":1200,"resize":"fit"},"large":{"w":1538,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186667561242357763,"id_str":"1186667561242357763","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfj3BZUcAMhw6B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfj3BZUcAMhw6B.jpg","url":"https:\/\/t.co\/eeoUsKclVK","display_url":"pic.twitter.com\/eeoUsKclVK","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186667567739330561\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":511,"h":680,"resize":"fit"},"medium":{"w":901,"h":1200,"resize":"fit"},"large":{"w":1538,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 21:08:53 +0000 2019","id":1186751301213802496,"id_str":"1186751301213802496","full_text":"RT + @michaelmgrant: Gallery walk begins at 4 pm today in the Pavilion Walkthru! + #aect19 https:\/\/t.co\/vGES7YN0Mh","truncated":false,"display_text_range":[0,110],"entities":{"hashtags":[{"text":"aect19","indices":[79,86]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[3,17]}],"urls":[],"media":[{"id":1186743617009795072,"id_str":"1186743617009795072","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","url":"https:\/\/t.co\/vGES7YN0Mh","display_url":"pic.twitter.com\/vGES7YN0Mh","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186743620847558656\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":358,"resize":"fit"},"small":{"w":680,"h":304,"resize":"fit"}},"source_status_id":1186743620847558656,"source_status_id_str":"1186743620847558656","source_user_id":132653457,"source_user_id_str":"132653457"}]},"extended_entities":{"media":[{"id":1186743617009795072,"id_str":"1186743617009795072","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","url":"https:\/\/t.co\/vGES7YN0Mh","display_url":"pic.twitter.com\/vGES7YN0Mh","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186743620847558656\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":358,"resize":"fit"},"small":{"w":680,"h":304,"resize":"fit"}},"source_status_id":1186743620847558656,"source_status_id_str":"1186743620847558656","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 20:38:22 +0000 2019","id":1186743620847558656,"id_str":"1186743620847558656","full_text":"Gallery + walk begins at 4 pm today in the Pavilion Walkthru! #aect19 https:\/\/t.co\/vGES7YN0Mh","truncated":false,"display_text_range":[0,67],"entities":{"hashtags":[{"text":"aect19","indices":[60,67]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186743617009795072,"id_str":"1186743617009795072","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","url":"https:\/\/t.co\/vGES7YN0Mh","display_url":"pic.twitter.com\/vGES7YN0Mh","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186743620847558656\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":358,"resize":"fit"},"small":{"w":680,"h":304,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186743617009795072,"id_str":"1186743617009795072","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgpCDNUwAA3JE6.jpg","url":"https:\/\/t.co\/vGES7YN0Mh","display_url":"pic.twitter.com\/vGES7YN0Mh","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186743620847558656\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":358,"resize":"fit"},"small":{"w":680,"h":304,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:32:43 +0000 2019","id":1186727100759334912,"id_str":"1186727100759334912","full_text":"RT + @KSUITEC: Super proud of our iTeach Director, Stephanee Stephens, who is presenting + at #AECT19 on Tech Coaching Models! \ud83e\udd89@KSUITEC @ksuit\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[90,97]}],"symbols":[],"user_mentions":[{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[3,11]},{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[124,132]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":129823325,"id_str":"129823325","name":"KSU + iTeach","screen_name":"ksuiteach","location":"Kennesaw, GA","description":"This + is the official Twitter account for iTeach at Kennesaw State University. #iTeachCoaching + #iTeachMaker #iTeachOnDemand #iTeachLIVE #iTeachTalks #iTeachAsks","url":"https:\/\/t.co\/qRDQpY8QEg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qRDQpY8QEg","expanded_url":"http:\/\/iteach.kennesaw.edu","display_url":"iteach.kennesaw.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3462,"friends_count":448,"listed_count":63,"created_at":"Mon + Apr 05 14:37:27 +0000 2010","favourites_count":8110,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6122,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/890333675015077890\/z1nz2Tsz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/890333675015077890\/z1nz2Tsz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/129823325\/1633107957","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 19:04:36 +0000 2019","id":1186720021701115904,"id_str":"1186720021701115904","full_text":"Super + proud of our iTeach Director, Stephanee Stephens, who is presenting at #AECT19 + on Tech Coaching Models! \ud83e\udd89@KSUITEC @ksuiteach @KSUBCOE @Stephsteph83 + https:\/\/t.co\/WbCZ4pz7tY","truncated":false,"display_text_range":[0,153],"entities":{"hashtags":[{"text":"AECT19","indices":[77,84]}],"symbols":[],"user_mentions":[{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[111,119]},{"screen_name":"ksuiteach","name":"KSU + iTeach","id":129823325,"id_str":"129823325","indices":[120,130]},{"screen_name":"Stephsteph83","name":"Dr. + Stephanee Stephens","id":427060068,"id_str":"427060068","indices":[140,153]}],"urls":[{"url":"https:\/\/t.co\/WbCZ4pz7tY","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1186673773170151424","display_url":"twitter.com\/WilsonInEdu\/st\u2026","indices":[154,177]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1154888858,"id_str":"1154888858","name":"Kennesaw + State ITEC","screen_name":"KSUITEC","location":"Kennesaw, GA","description":"","url":"https:\/\/t.co\/S3NfIRz4LN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/S3NfIRz4LN","expanded_url":"http:\/\/itec.kennesaw.edu","display_url":"itec.kennesaw.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2828,"friends_count":185,"listed_count":64,"created_at":"Wed + Feb 06 19:35:32 +0000 2013","favourites_count":932,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1578,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1166060447457587202\/C7q3Bwxo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1166060447457587202\/C7q3Bwxo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1154888858\/1566845601","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186673773170151424,"quoted_status_id_str":"1186673773170151424","quoted_status_permalink":{"url":"https:\/\/t.co\/WbCZ4pz7tY","expanded":"https:\/\/twitter.com\/WilsonInEdu\/status\/1186673773170151424","display":"twitter.com\/WilsonInEdu\/st\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 16:00:49 +0000 2019","id":1186673773170151424,"id_str":"1186673773170151424","full_text":"Go + check out @Stephsteph83 presenting Strategies Used by Instructional Coaches + Working with K-12 Students and Teachers on Maker Education for @KSUITEC @KSUBCOE + @kennesawstate and @YiJin39 #KSUITEC #aect19inspired #aect19 https:\/\/t.co\/86TEXCVldZ","truncated":false,"display_text_range":[0,222],"entities":{"hashtags":[{"text":"KSUITEC","indices":[190,198]},{"text":"aect19inspired","indices":[199,214]},{"text":"aect19","indices":[215,222]}],"symbols":[],"user_mentions":[{"screen_name":"Stephsteph83","name":"Dr. + Stephanee Stephens","id":427060068,"id_str":"427060068","indices":[13,26]},{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[144,152]},{"screen_name":"kennesawstate","name":"Kennesaw + State","id":54637018,"id_str":"54637018","indices":[162,176]},{"screen_name":"YiJin39","name":"Yi + Jin","id":944529984,"id_str":"944529984","indices":[181,189]}],"urls":[],"media":[{"id":1186673752857137152,"id_str":"1186673752857137152","indices":[223,246],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfpfa9UUAARbIY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfpfa9UUAARbIY.jpg","url":"https:\/\/t.co\/86TEXCVldZ","display_url":"pic.twitter.com\/86TEXCVldZ","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1186673773170151424\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186673752857137152,"id_str":"1186673752857137152","indices":[223,246],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfpfa9UUAARbIY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfpfa9UUAARbIY.jpg","url":"https:\/\/t.co\/86TEXCVldZ","display_url":"pic.twitter.com\/86TEXCVldZ","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1186673773170151424\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186673773170151424,"quoted_status_id_str":"1186673773170151424","quoted_status_permalink":{"url":"https:\/\/t.co\/WbCZ4pz7tY","expanded":"https:\/\/twitter.com\/WilsonInEdu\/status\/1186673773170151424","display":"twitter.com\/WilsonInEdu\/st\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1186720021701115904%2C1186719083741343744%2C1186718215092588544%2C1186717823319412736%2C1186717766868488196%2C1186717766868488196%2C1186717270740832256%2C1186717179049209856%2C1186717060253900801%2C1186716964032368640%2C1186716814165676033%2C1186716644455796736%2C1186716549677080576%2C1186716447365455872%2C1186716426423259136%2C1186716346924486656%2C1186716048071880705%2C1186715186779967488%2C1186714696067506176%2C1186714645328887808%2C1186713571717087232%2C1186713245089841153%2C1186712050640113664%2C1186711414922252288%2C1186710076242976769%2C1186709788719116288%2C1186707235587555333%2C1186703250692694017%2C1186703121742852096%2C1186702489342676993%2C1186702385747578880%2C1186702385747578880%2C1186701886390321152%2C1186701732270632960%2C1186701293605269505%2C1186701139707871232%2C1186700715722452993%2C1186700704636760064%2C1186700662672785408%2C1186700552299638784%2C1186700410511187968%2C1186700361634996224%2C1186700340365799425%2C1186699816786464768%2C1186699469036720128%2C1186698306564448256%2C1186697924140359680%2C1186697872017723392%2C1186697614311350272%2C1186697359033544704%2C1186697190598696961%2C1186697055667802112%2C1186696912637816833%2C1186696216756805633%2C1186695278188826624%2C1186695198329294848%2C1186695177777250304%2C1186695107296124928%2C1186695055945256961%2C1186695021572968448%2C1186694808821067776%2C1186694763732275200%2C1186694746971860994%2C1186694409481605122%2C1186694010334666752%2C1186694008174628864%2C1186693299945361408%2C1186693073465561089%2C1186692701267218439%2C1186692193215401984%2C1186692181618130944%2C1186691810447384576%2C1186691584542117888%2C1186691231738318848%2C1186691172292542466%2C1186691068999262208%2C1186690892351991810%2C1186690573496774656%2C1186690346874359809%2C1186689536681631744%2C1186689490057940992%2C1186689034032041985%2C1186689000305643520%2C1186687962043404288%2C1186687931190169601%2C1186687601870168064%2C1186687601870168064%2C1186686411266777089%2C1186686324708761601%2C1186686259336368128%2C1186686221436608513%2C1186685493389475840%2C1186685367941885952%2C1186685126312247296%2C1186684377259864065%2C1186683922760884224%2C1186683038605938688%2C1186682731570159616%2C1186682350924517376%2C1186681936875413504&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:53 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:53 GMT + x-transaction: 6c2455f987c66c42 + content-length: '50127' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '277' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '320' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Tue Oct 22 17:36:47 +0000 2019","id":1186697924140359680,"id_str":"1186697924140359680","full_text":"Super + looking forward to the @tedaect Game Night today. Who\u2019s going? #aect19 + #aect19inspired","truncated":false,"display_text_range":[0,92],"entities":{"hashtags":[{"text":"aect19","indices":[69,76]},{"text":"aect19inspired","indices":[77,92]}],"symbols":[],"user_mentions":[{"screen_name":"tedaect","name":"TED + AECT","id":2165058337,"id_str":"2165058337","indices":[29,37]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:14:01 +0000 2019","id":1186692193215401984,"id_str":"1186692193215401984","full_text":"Listening + to a great panel on learning analytics with panelists using @zoom_us to participate + from other areas of the world. Great way to integrate global perspectives + at @AECT #aect19inspired","truncated":false,"display_text_range":[0,192],"entities":{"hashtags":[{"text":"aect19inspired","indices":[177,192]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[171,176]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:21:14 +0000 2019","id":1186694010334666752,"id_str":"1186694010334666752","full_text":"Changing + reality, one educator at a time #aect2019 #aect19inspired https:\/\/t.co\/2SxJQkG5H7","truncated":false,"display_text_range":[0,66],"entities":{"hashtags":[{"text":"aect2019","indices":[41,50]},{"text":"aect19inspired","indices":[51,66]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2SxJQkG5H7","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124","display_url":"twitter.com\/art_brownlow\/s\u2026","indices":[67,90]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":23817978,"id_str":"23817978","name":"Quincy","screen_name":"quincyconley","location":"","description":"Learning + Scientist = Instructional Designer, Educational Researcher, Augmented Reality + Enthusiast","url":"https:\/\/t.co\/hnt0Ucym4A","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hnt0Ucym4A","expanded_url":"https:\/\/quincyconley.weebly.com\/","display_url":"quincyconley.weebly.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":221,"friends_count":562,"listed_count":10,"created_at":"Wed + Mar 11 19:57:17 +0000 2009","favourites_count":488,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":554,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1268238248326774784\/3m3kFQja_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1268238248326774784\/3m3kFQja_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"666699","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186330250994565124,"quoted_status_id_str":"1186330250994565124","quoted_status_permalink":{"url":"https:\/\/t.co\/2SxJQkG5H7","expanded":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124","display":"twitter.com\/art_brownlow\/s\u2026"},"quoted_status":{"created_at":"Mon + Oct 21 17:15:47 +0000 2019","id":1186330250994565124,"id_str":"1186330250994565124","full_text":"Learning + a lot about instructional use of AR @AECT. Meanwhile, we had a visitor at + our session. #aect2019 #aect19inspired https:\/\/t.co\/HjfO4IZVEm","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"aect2019","indices":[96,105]},{"text":"aect19inspired","indices":[106,121]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[45,50]}],"urls":[],"media":[{"id":1186330138339753986,"id_str":"1186330138339753986","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","url":"https:\/\/t.co\/HjfO4IZVEm","display_url":"pic.twitter.com\/HjfO4IZVEm","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186330138339753986,"id_str":"1186330138339753986","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","url":"https:\/\/t.co\/HjfO4IZVEm","display_url":"pic.twitter.com\/HjfO4IZVEm","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}},"video_info":{"aspect_ratio":[37,80],"duration_millis":11690,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/320x690\/qzYSXhtp8GVHwAkS.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/pl\/HOQqLq2LCOe8QZdY.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/360x778\/mxoPjfmwzOZWrqSf.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/592x1280\/pBUtbxYAYdW5YWLx.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":887813304311087104,"id_str":"887813304311087104","name":"Art + Brownlow","screen_name":"art_brownlow","location":"Brownsville, TX","description":"UTRGV + Music Prof & Academic Innovation Fellow, UT System Academy of Distinguished + Teachers, ROTA 2016, \uf8ffADE 2015, Braves fan, Husband & Dad","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":291,"friends_count":338,"listed_count":5,"created_at":"Wed + Jul 19 23:16:01 +0000 2017","favourites_count":237,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":132,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887813304311087104\/1500521777","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":42,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 18:13:47 +0000 2019","id":1186707235587555333,"id_str":"1186707235587555333","full_text":"RT + @caranorth11: Presentation #1 of 5.\nToday I''m at #aect19 presenting with + an awesome crew including @JenM @roycekimmons & others about an\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19","indices":[52,59]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[102,107]},{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[108,121]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":104967963,"id_str":"104967963","name":"Royce + Kimmons","screen_name":"roycekimmons","location":"Provo, UT","description":"Associate + professor, BYU-IPT: openness, OER, tech in education, social media. https:\/\/t.co\/iktkhjAzCw + https:\/\/t.co\/vhHYSEYZSN https:\/\/t.co\/9E4HWYRF9R","url":"https:\/\/t.co\/KsbltQYZa0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KsbltQYZa0","expanded_url":"http:\/\/roycekimmons.com","display_url":"roycekimmons.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/iktkhjAzCw","expanded_url":"http:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[78,101]},{"url":"https:\/\/t.co\/vhHYSEYZSN","expanded_url":"http:\/\/equitypress.org","display_url":"equitypress.org","indices":[102,125]},{"url":"https:\/\/t.co\/9E4HWYRF9R","expanded_url":"http:\/\/edtechnica.org","display_url":"edtechnica.org","indices":[126,149]}]}},"protected":false,"followers_count":1430,"friends_count":2250,"listed_count":57,"created_at":"Thu + Jan 14 23:25:41 +0000 2010","favourites_count":930,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1841,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104967963\/1585782658","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"354770","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EDF0FF","profile_text_color":"1A1A1A","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 13:32:34 +0000 2019","id":1186636463305195520,"id_str":"1186636463305195520","full_text":"Presentation + #1 of 5.\nToday I''m at #aect19 presenting with an awesome crew including + @JenM @roycekimmons & others about an evaluation of open education resources. + The eval assessed accessibility & quality of #oer. Our presentation can + be found here: https:\/\/t.co\/VwQ4k9htF8 https:\/\/t.co\/ysuflHymFA","truncated":false,"display_text_range":[0,281],"entities":{"hashtags":[{"text":"aect19","indices":[35,42]},{"text":"oer","indices":[216,220]}],"symbols":[],"user_mentions":[{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[85,90]},{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[91,104]}],"urls":[{"url":"https:\/\/t.co\/VwQ4k9htF8","expanded_url":"http:\/\/bit.ly\/aect19eval","display_url":"bit.ly\/aect19eval","indices":[258,281]}],"media":[{"id":1186636458225831938,"id_str":"1186636458225831938","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","url":"https:\/\/t.co\/ysuflHymFA","display_url":"pic.twitter.com\/ysuflHymFA","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186636463305195520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":317,"resize":"fit"},"large":{"w":1562,"h":728,"resize":"fit"},"medium":{"w":1200,"h":559,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186636458225831938,"id_str":"1186636458225831938","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","url":"https:\/\/t.co\/ysuflHymFA","display_url":"pic.twitter.com\/ysuflHymFA","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186636463305195520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":317,"resize":"fit"},"large":{"w":1562,"h":728,"resize":"fit"},"medium":{"w":1200,"h":559,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":23,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:57:57 +0000 2019","id":1186703250692694017,"id_str":"1186703250692694017","full_text":"@gsa_aect + #learninganalytics panel, here are some publications I mentioned:\n\nIfenthaler, + D. (2017). Are higher education institutions prepared for learning analytics? + TechTrends, 61(4), 366\u2013371. doi:10.1007\/s11528-016-0154-0\n\nMore here: + https:\/\/t.co\/aTk69LEjwB #aect19inspired","truncated":false,"display_text_range":[0,276],"entities":{"hashtags":[{"text":"learninganalytics","indices":[10,28]},{"text":"aect19inspired","indices":[261,276]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/aTk69LEjwB","expanded_url":"http:\/\/ifenthaler.info\/website\/?page_id=13","display_url":"ifenthaler.info\/website\/?page_\u2026","indices":[237,260]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":922536306437181440,"in_reply_to_user_id_str":"922536306437181440","in_reply_to_screen_name":"gsa_aect","user":{"id":45137054,"id_str":"45137054","name":"Dirk + Ifenthaler","screen_name":"ifenthaler","location":"","description":"#learninganalytics","url":"https:\/\/t.co\/nGyfFQyRvo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nGyfFQyRvo","expanded_url":"http:\/\/www.ifenthaler.info","display_url":"ifenthaler.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":895,"friends_count":246,"listed_count":35,"created_at":"Sat + Jun 06 14:19:07 +0000 2009","favourites_count":615,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":878,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 18:23:56 +0000 2019","id":1186709788719116288,"id_str":"1186709788719116288","full_text":"Congratulations + to Jiawen for doing a fabulous job presenting her dyslexia study! #aect19 + https:\/\/t.co\/RNuGghDK2z","truncated":false,"display_text_range":[0,89],"entities":{"hashtags":[{"text":"aect19","indices":[82,89]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186709780494086144,"id_str":"1186709780494086144","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgKQgXU8AAJF_W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgKQgXU8AAJF_W.jpg","url":"https:\/\/t.co\/RNuGghDK2z","display_url":"pic.twitter.com\/RNuGghDK2z","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1186709788719116288\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":462,"resize":"fit"},"large":{"w":2048,"h":1391,"resize":"fit"},"medium":{"w":1200,"h":815,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186709780494086144,"id_str":"1186709780494086144","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgKQgXU8AAJF_W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgKQgXU8AAJF_W.jpg","url":"https:\/\/t.co\/RNuGghDK2z","display_url":"pic.twitter.com\/RNuGghDK2z","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1186709788719116288\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":462,"resize":"fit"},"large":{"w":2048,"h":1391,"resize":"fit"},"medium":{"w":1200,"h":815,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 18:32:55 +0000 2019","id":1186712050640113664,"id_str":"1186712050640113664","full_text":"Join + us for the AECT & Division Convention Kickoff in Paradise North! #aect19inspired + https:\/\/t.co\/XJc5AKhwkp","truncated":false,"display_text_range":[0,89],"entities":{"hashtags":[{"text":"aect19inspired","indices":[74,89]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186711844498444289,"id_str":"1186711844498444289","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgMIpYUEAEbpOw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgMIpYUEAEbpOw.jpg","url":"https:\/\/t.co\/XJc5AKhwkp","display_url":"pic.twitter.com\/XJc5AKhwkp","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186712050640113664\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":427,"resize":"fit"},"large":{"w":2048,"h":1286,"resize":"fit"},"medium":{"w":1200,"h":754,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186711844498444289,"id_str":"1186711844498444289","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgMIpYUEAEbpOw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgMIpYUEAEbpOw.jpg","url":"https:\/\/t.co\/XJc5AKhwkp","display_url":"pic.twitter.com\/XJc5AKhwkp","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186712050640113664\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":427,"resize":"fit"},"large":{"w":2048,"h":1286,"resize":"fit"},"medium":{"w":1200,"h":754,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 16:36:25 +0000 2019","id":1186682731570159616,"id_str":"1186682731570159616","full_text":"New + Handbook of Research in Educational and Technology is inspiring! Focused on + how we help solve important, complex problems rather than \"things.\" #aect19inspired","truncated":false,"display_text_range":[0,163],"entities":{"hashtags":[{"text":"aect19inspired","indices":[148,163]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15636128,"id_str":"15636128","name":"stephanie + moore","screen_name":"steph_moore","location":"New Mexico Baby!","description":"Online + learning. Ethics & design. Tea. Bourbon. Chocolate. Leaning into metamodern. + Editor in Chief of @JCHEResearch she\/her, Author: SEL at a Distance","url":"https:\/\/t.co\/zwm2yMkODU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zwm2yMkODU","expanded_url":"https:\/\/wwnorton.com\/books\/9781324016571","display_url":"wwnorton.com\/books\/97813240\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3098,"friends_count":1316,"listed_count":54,"created_at":"Mon + Jul 28 19:10:00 +0000 2008","favourites_count":18809,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13765,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15636128\/1656742799","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":11,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 16:34:54 +0000 2019","id":1186682350924517376,"id_str":"1186682350924517376","full_text":"RT + @pazureka: Did you know @AECT has a new Division? Stop by our table to talk + w\/ folks from the new Learner Engagement Division at the Kic\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[3,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 13:54:18 +0000 2019","id":1186641933185081346,"id_str":"1186641933185081346","full_text":"Did + you know @AECT has a new Division? Stop by our table to talk w\/ folks from + the new Learner Engagement Division at the Kickoff event, 11AM today in Paradise + North! We are focused on promoting engagement through innovative teaching, + research, and design. @LearnEngage #aect19","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"aect19","indices":[270,277]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[13,18]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[257,269]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:57:26 +0000 2019","id":1186703121742852096,"id_str":"1186703121742852096","full_text":"Made + a kangaroo but it looks more like a Skeksis #TEDbuilds #aect19inspired https:\/\/t.co\/IrBslU5RIs","truncated":false,"display_text_range":[0,75],"entities":{"hashtags":[{"text":"TEDbuilds","indices":[49,59]},{"text":"aect19inspired","indices":[60,75]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186703115237482496,"id_str":"1186703115237482496","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgEMiWUYAAqjEG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgEMiWUYAAqjEG.jpg","url":"https:\/\/t.co\/IrBslU5RIs","display_url":"pic.twitter.com\/IrBslU5RIs","expanded_url":"https:\/\/twitter.com\/gtchartrand\/status\/1186703121742852096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186703115237482496,"id_str":"1186703115237482496","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgEMiWUYAAqjEG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgEMiWUYAAqjEG.jpg","url":"https:\/\/t.co\/IrBslU5RIs","display_url":"pic.twitter.com\/IrBslU5RIs","expanded_url":"https:\/\/twitter.com\/gtchartrand\/status\/1186703121742852096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":168584715,"id_str":"168584715","name":"gtchartrand + \ud83d\udd4a\ud83d\udc68\ud83c\udffb\u200d\ud83c\udf93\ud83e\uddb8\ud83c\udffb\u200d\u2642\ufe0f\ud83d\udc68\ud83c\udffb\u200d\ud83d\udcbb\ud83d\udc68\ud83c\udffb\u200d\ud83d\udd2c\ud83d\udc68\ud83c\udffb\u200d\ud83c\udfa8","screen_name":"gtchartrand","location":"","description":"learning + sciences + human-computer interaction + learning technology + information + science + urban planning + user research + design theory + anthropology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":498,"friends_count":4806,"listed_count":14,"created_at":"Tue + Jul 20 08:31:09 +0000 2010","favourites_count":860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":649,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1266844603421990913\/KsNNYB35_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1266844603421990913\/KsNNYB35_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/168584715\/1568184941","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:38:18 +0000 2019","id":1186698306564448256,"id_str":"1186698306564448256","full_text":"So + inspired by the work of Eunice Ofori in designing mobile learning session. + We can all do better here she\u2019s got my design wheels spinning! #aect19","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[{"text":"aect19","indices":[141,148]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27742120,"id_str":"27742120","name":"Kathy + Mansfield","screen_name":"KathyMansfield","location":"New Braunfels, TX","description":"Perky + Privacy Girl. Instructional Ed Tech. Coffee. Instructional Design doctoral + candidate. Student data privacy advocate.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":353,"friends_count":565,"listed_count":4,"created_at":"Mon + Mar 30 22:07:14 +0000 2009","favourites_count":3189,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1363,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1479956065018122245\/3ylxWDWM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1479956065018122245\/3ylxWDWM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27742120\/1589406705","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:06:40 +0000 2019","id":1186690346874359809,"id_str":"1186690346874359809","full_text":"RT + @WilsonInEdu: Go check out @Stephsteph83 presenting Strategies Used by Instructional + Coaches Working with K-12 Students and Teachers o\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WilsonInEdu","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","id":489118534,"id_str":"489118534","indices":[3,15]},{"screen_name":"Stephsteph83","name":"Dr. + Stephanee Stephens","id":427060068,"id_str":"427060068","indices":[30,43]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4820994330,"id_str":"4820994330","name":"Nicole + Youmans","screen_name":"nicole_youmans","location":"McDonough, GA","description":"Principal + Learning Consultant @Instructure, Google Certified Educator. MIEE. Nearpod + PioNear\/Trainer, Brainpop Certified Educator.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":683,"friends_count":1513,"listed_count":6,"created_at":"Wed + Jan 27 12:49:29 +0000 2016","favourites_count":3437,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1136,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1100480382393303040\/lMonPQLo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1100480382393303040\/lMonPQLo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4820994330\/1600954901","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 16:00:49 +0000 2019","id":1186673773170151424,"id_str":"1186673773170151424","full_text":"Go + check out @Stephsteph83 presenting Strategies Used by Instructional Coaches + Working with K-12 Students and Teachers on Maker Education for @KSUITEC @KSUBCOE + @kennesawstate and @YiJin39 #KSUITEC #aect19inspired #aect19 https:\/\/t.co\/86TEXCVldZ","truncated":false,"display_text_range":[0,222],"entities":{"hashtags":[{"text":"KSUITEC","indices":[190,198]},{"text":"aect19inspired","indices":[199,214]},{"text":"aect19","indices":[215,222]}],"symbols":[],"user_mentions":[{"screen_name":"Stephsteph83","name":"Dr. + Stephanee Stephens","id":427060068,"id_str":"427060068","indices":[13,26]},{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[144,152]},{"screen_name":"kennesawstate","name":"Kennesaw + State","id":54637018,"id_str":"54637018","indices":[162,176]},{"screen_name":"YiJin39","name":"Yi + Jin","id":944529984,"id_str":"944529984","indices":[181,189]}],"urls":[],"media":[{"id":1186673752857137152,"id_str":"1186673752857137152","indices":[223,246],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfpfa9UUAARbIY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfpfa9UUAARbIY.jpg","url":"https:\/\/t.co\/86TEXCVldZ","display_url":"pic.twitter.com\/86TEXCVldZ","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1186673773170151424\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186673752857137152,"id_str":"1186673752857137152","indices":[223,246],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfpfa9UUAARbIY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfpfa9UUAARbIY.jpg","url":"https:\/\/t.co\/86TEXCVldZ","display_url":"pic.twitter.com\/86TEXCVldZ","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1186673773170151424\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 18:51:10 +0000 2019","id":1186716644455796736,"id_str":"1186716644455796736","full_text":"Connecting + with fantastic colleagues at #aect19! https:\/\/t.co\/cUOmROnmoa","truncated":false,"display_text_range":[0,48],"entities":{"hashtags":[{"text":"aect19","indices":[40,47]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186716637170294784,"id_str":"1186716637170294784","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQfneU4AAV0Ax.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQfneU4AAV0Ax.jpg","url":"https:\/\/t.co\/cUOmROnmoa","display_url":"pic.twitter.com\/cUOmROnmoa","expanded_url":"https:\/\/twitter.com\/matt_m_schmidt\/status\/1186716644455796736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":901,"resize":"fit"},"large":{"w":2048,"h":1538,"resize":"fit"},"small":{"w":680,"h":511,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186716637170294784,"id_str":"1186716637170294784","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQfneU4AAV0Ax.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQfneU4AAV0Ax.jpg","url":"https:\/\/t.co\/cUOmROnmoa","display_url":"pic.twitter.com\/cUOmROnmoa","expanded_url":"https:\/\/twitter.com\/matt_m_schmidt\/status\/1186716644455796736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":901,"resize":"fit"},"large":{"w":2048,"h":1538,"resize":"fit"},"small":{"w":680,"h":511,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":9806452,"id_str":"9806452","name":"Matthew + Schmidt","screen_name":"matt_m_schmidt","location":"Gainesville, FL","description":"Editor-in-Chief + of Learner & User Experience Research. Read & share here: https:\/\/t.co\/nMBaOeqjpy","url":"https:\/\/t.co\/MQBbLAksSX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MQBbLAksSX","expanded_url":"http:\/\/matthewschmidt.info","display_url":"matthewschmidt.info","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/nMBaOeqjpy","expanded_url":"https:\/\/edtechbooks.org\/ux","display_url":"edtechbooks.org\/ux","indices":[74,97]}]}},"protected":false,"followers_count":668,"friends_count":404,"listed_count":17,"created_at":"Tue + Oct 30 21:35:53 +0000 2007","favourites_count":698,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":564,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9806452\/1603124176","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:24:14 +0000 2019","id":1186694763732275200,"id_str":"1186694763732275200","full_text":"RT + @nicolapallitt: Great panel about collaborative research just started in Conf + Room 1 @AECT @aectclt #aect19inspired https:\/\/t.co\/Po9ALRd\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[103,118]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[88,93]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[94,102]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:13:58 +0000 2019","id":1186692181618130944,"id_str":"1186692181618130944","full_text":"Great + panel about collaborative research just started in Conf Room 1 @AECT @aectclt + #aect19inspired https:\/\/t.co\/Po9ALRdpN7","truncated":false,"display_text_range":[0,99],"entities":{"hashtags":[{"text":"aect19inspired","indices":[84,99]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[69,74]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[75,83]}],"urls":[],"media":[{"id":1186692170176057344,"id_str":"1186692170176057344","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf6Pc0U0AAHbIs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf6Pc0U0AAHbIs.jpg","url":"https:\/\/t.co\/Po9ALRdpN7","display_url":"pic.twitter.com\/Po9ALRdpN7","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":291,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":438,"resize":"fit"},"medium":{"w":1024,"h":438,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186692170176057344,"id_str":"1186692170176057344","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf6Pc0U0AAHbIs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf6Pc0U0AAHbIs.jpg","url":"https:\/\/t.co\/Po9ALRdpN7","display_url":"pic.twitter.com\/Po9ALRdpN7","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":291,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":438,"resize":"fit"},"medium":{"w":1024,"h":438,"resize":"fit"}},"ext_alt_text":null},{"id":1186692177092476928,"id_str":"1186692177092476928","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf6P2lVAAATT7U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf6P2lVAAATT7U.jpg","url":"https:\/\/t.co\/Po9ALRdpN7","display_url":"pic.twitter.com\/Po9ALRdpN7","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":655,"resize":"fit"},"large":{"w":1024,"h":655,"resize":"fit"},"small":{"w":680,"h":435,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"8fa6d7a33b83ef26","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8fa6d7a33b83ef26.json","place_type":"city","name":"Paradise","full_name":"Paradise, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.2092535,35.984784],[-115.0610763,35.984784],[-115.0610763,36.137145],[-115.2092535,36.137145]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 18:52:27 +0000 2019","id":1186716964032368640,"id_str":"1186716964032368640","full_text":"Second + day at #AECT19 So #inspired by all the awesome people I\u2019ve met https:\/\/t.co\/TJh8UnEyyE","truncated":false,"display_text_range":[0,69],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]},{"text":"inspired","indices":[25,34]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186716944839266305,"id_str":"1186716944839266305","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQxhoU0AE300m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQxhoU0AE300m.jpg","url":"https:\/\/t.co\/TJh8UnEyyE","display_url":"pic.twitter.com\/TJh8UnEyyE","expanded_url":"https:\/\/twitter.com\/ElaTheGrad\/status\/1186716964032368640\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186716944839266305,"id_str":"1186716944839266305","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQxhoU0AE300m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQxhoU0AE300m.jpg","url":"https:\/\/t.co\/TJh8UnEyyE","display_url":"pic.twitter.com\/TJh8UnEyyE","expanded_url":"https:\/\/twitter.com\/ElaTheGrad\/status\/1186716964032368640\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null},{"id":1186716944847667200,"id_str":"1186716944847667200","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQxhqVAAA-rHr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQxhqVAAA-rHr.jpg","url":"https:\/\/t.co\/TJh8UnEyyE","display_url":"pic.twitter.com\/TJh8UnEyyE","expanded_url":"https:\/\/twitter.com\/ElaTheGrad\/status\/1186716964032368640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":146938117,"id_str":"146938117","name":"Ela + Castellanos-Reyes","screen_name":"ElaTheGrad","location":"Lafayette, IN","description":"\ud83c\udde8\ud83c\uddf4 + #OnlineLearning #NetworkAnalysis #Latina #PotterHead","url":"https:\/\/t.co\/5SMOrW0p1I","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5SMOrW0p1I","expanded_url":"https:\/\/www.elacastellanosreyes.com","display_url":"elacastellanosreyes.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":455,"friends_count":1188,"listed_count":2,"created_at":"Sat + May 22 19:07:17 +0000 2010","favourites_count":3862,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1995,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183161043293560834\/vtLxUlIX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183161043293560834\/vtLxUlIX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/146938117\/1420603624","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 18:50:23 +0000 2019","id":1186716447365455872,"id_str":"1186716447365455872","full_text":"@michaelmgrant + Kicking it off #aect19 https:\/\/t.co\/hTEvP7t1t4","truncated":false,"display_text_range":[0,37],"entities":{"hashtags":[{"text":"aect19","indices":[30,37]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[0,14]}],"urls":[],"media":[{"id":1186716441313079296,"id_str":"1186716441313079296","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQUN2U8AAWCSs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQUN2U8AAWCSs.jpg","url":"https:\/\/t.co\/hTEvP7t1t4","display_url":"pic.twitter.com\/hTEvP7t1t4","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186716447365455872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186716441313079296,"id_str":"1186716441313079296","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQUN2U8AAWCSs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQUN2U8AAWCSs.jpg","url":"https:\/\/t.co\/hTEvP7t1t4","display_url":"pic.twitter.com\/hTEvP7t1t4","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186716447365455872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":132653457,"in_reply_to_user_id_str":"132653457","in_reply_to_screen_name":"michaelmgrant","user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 16:57:12 +0000 2019","id":1186687962043404288,"id_str":"1186687962043404288","full_text":"RT + @AmyLomellini_ID: Vegas here I come! I\u2019m ready to be inspired at #aect19. + Come find me at one of the sessions I\u2019m presenting tomorrow.\u2026","truncated":false,"display_text_range":[0,138],"entities":{"hashtags":[{"text":"aect19","indices":[68,75]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 15:15:53 +0000 2019","id":1186662464311779328,"id_str":"1186662464311779328","full_text":"Vegas + here I come! I\u2019m ready to be inspired at #aect19. Come find me at one + of the sessions I\u2019m presenting tomorrow. \n1. #Accessibility Design Slam + Workshop\n2. GSA Designing for Accessibility Panel\n3. E\/merge Africa Collaboration\n4. + Birds of a Feather #UDL Session https:\/\/t.co\/Cuwrz8CuDu","truncated":false,"display_text_range":[0,264],"entities":{"hashtags":[{"text":"aect19","indices":[47,54]},{"text":"Accessibility","indices":[121,135]},{"text":"UDL","indices":[252,256]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186662458007707650,"id_str":"1186662458007707650","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHffN-XXYAIKFB2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHffN-XXYAIKFB2.jpg","url":"https:\/\/t.co\/Cuwrz8CuDu","display_url":"pic.twitter.com\/Cuwrz8CuDu","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1186662464311779328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":628,"h":1006,"resize":"fit"},"medium":{"w":628,"h":1006,"resize":"fit"},"small":{"w":424,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186662458007707650,"id_str":"1186662458007707650","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHffN-XXYAIKFB2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHffN-XXYAIKFB2.jpg","url":"https:\/\/t.co\/Cuwrz8CuDu","display_url":"pic.twitter.com\/Cuwrz8CuDu","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1186662464311779328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":628,"h":1006,"resize":"fit"},"medium":{"w":628,"h":1006,"resize":"fit"},"small":{"w":424,"h":680,"resize":"fit"}},"ext_alt_text":"Schedule + for Wednesday, October 23 showing multiple presentations from 9am to 6pm."}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910574724748644353,"id_str":"910574724748644353","name":"Amy + Lomellini","screen_name":"AmyLomellini_ID","location":"New York, USA","description":"Associate + Director of Blended & Online Learning and doctoral candidate with a passion + for accessible and inclusive online teaching and learning. #EdTech #A11y","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":644,"friends_count":1061,"listed_count":9,"created_at":"Wed + Sep 20 18:41:46 +0000 2017","favourites_count":7378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1141,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910574724748644353\/1551624059","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:24:10 +0000 2019","id":1186694746971860994,"id_str":"1186694746971860994","full_text":"RT + @RitaFennelly: Listening to a great panel on learning analytics with panelists + using @zoom_us to participate from other areas of the wor\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:14:01 +0000 2019","id":1186692193215401984,"id_str":"1186692193215401984","full_text":"Listening + to a great panel on learning analytics with panelists using @zoom_us to participate + from other areas of the world. Great way to integrate global perspectives + at @AECT #aect19inspired","truncated":false,"display_text_range":[0,192],"entities":{"hashtags":[{"text":"aect19inspired","indices":[177,192]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[171,176]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 18:25:04 +0000 2019","id":1186710076242976769,"id_str":"1186710076242976769","full_text":"What + are they talking at digital conference #backchannel? From building #PLN to + establishing online presence: use of membership categorization and #positioning + theory as analytic frameworks. #FSU #ISLT @hajeenzang Tue, 3-3:50pm Paviillion + 9. #AECT19 #AECT2019 #InformalLearning https:\/\/t.co\/2vrEmzSlg0","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"backchannel","indices":[44,56]},{"text":"PLN","indices":[72,76]},{"text":"positioning","indices":[147,159]},{"text":"FSU","indices":[191,195]},{"text":"ISLT","indices":[196,201]},{"text":"AECT19","indices":[242,249]},{"text":"AECT2019","indices":[250,259]},{"text":"InformalLearning","indices":[260,277]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186710074024251392,"id_str":"1186710074024251392","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgKhl2X0AA-1_1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgKhl2X0AA-1_1.jpg","url":"https:\/\/t.co\/2vrEmzSlg0","display_url":"pic.twitter.com\/2vrEmzSlg0","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186710076242976769\/photo\/1","type":"photo","sizes":{"large":{"w":1414,"h":795,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186710074024251392,"id_str":"1186710074024251392","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgKhl2X0AA-1_1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgKhl2X0AA-1_1.jpg","url":"https:\/\/t.co\/2vrEmzSlg0","display_url":"pic.twitter.com\/2vrEmzSlg0","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186710076242976769\/photo\/1","type":"photo","sizes":{"large":{"w":1414,"h":795,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:49:34 +0000 2019","id":1186701139707871232,"id_str":"1186701139707871232","full_text":"RT + @RitaFennelly: Great point from Dr. @ifenthaler about how instructional designers + should define which data we want to collect rather tha\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RitaFennelly","name":"Dr. + Rita Fennelly-Atkinson","id":4188754929,"id_str":"4188754929","indices":[3,16]},{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[39,50]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45137054,"id_str":"45137054","name":"Dirk + Ifenthaler","screen_name":"ifenthaler","location":"","description":"#learninganalytics","url":"https:\/\/t.co\/nGyfFQyRvo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nGyfFQyRvo","expanded_url":"http:\/\/www.ifenthaler.info","display_url":"ifenthaler.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":895,"friends_count":246,"listed_count":35,"created_at":"Sat + Jun 06 14:19:07 +0000 2009","favourites_count":615,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":878,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:35:33 +0000 2019","id":1186697614311350272,"id_str":"1186697614311350272","full_text":"Great + point from Dr. @ifenthaler about how instructional designers should define + which data we want to collect rather than relying on which data we have. Great + learning @AECT session Learning Analytics: Intersections with ID, Research, + and Practice #aect19inspired","truncated":false,"display_text_range":[0,264],"entities":{"hashtags":[{"text":"aect19inspired","indices":[249,264]}],"symbols":[],"user_mentions":[{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[21,32]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[169,174]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:44:18 +0000 2019","id":1186699816786464768,"id_str":"1186699816786464768","full_text":"My + first presentation experience at #aect19. More to come... \ud83d\ude00 https:\/\/t.co\/7kEWG6Iwii","truncated":false,"display_text_range":[0,62],"entities":{"hashtags":[{"text":"aect19","indices":[36,43]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186699812227305472,"id_str":"1186699812227305472","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgBMRrU0AARJQv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgBMRrU0AARJQv.jpg","url":"https:\/\/t.co\/7kEWG6Iwii","display_url":"pic.twitter.com\/7kEWG6Iwii","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1186699816786464768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1464,"resize":"fit"},"medium":{"w":1200,"h":858,"resize":"fit"},"small":{"w":680,"h":486,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186699812227305472,"id_str":"1186699812227305472","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgBMRrU0AARJQv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgBMRrU0AARJQv.jpg","url":"https:\/\/t.co\/7kEWG6Iwii","display_url":"pic.twitter.com\/7kEWG6Iwii","expanded_url":"https:\/\/twitter.com\/tammyhuangrui\/status\/1186699816786464768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1464,"resize":"fit"},"medium":{"w":1200,"h":858,"resize":"fit"},"small":{"w":680,"h":486,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988637594,"id_str":"2988637594","name":"Rui + \"Tammy\" Huang","screen_name":"ruitammyhuang","location":"FL","description":"PhD, + fellow in Ed Tech @UF_COE, game-based learning and immersive technology researcher, + designer & developer. Learning experience design researcher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":185,"listed_count":6,"created_at":"Wed + Jan 21 02:08:50 +0000 2015","favourites_count":399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988637594\/1621697544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:30:00 +0000 2019","id":1186696216756805633,"id_str":"1186696216756805633","full_text":"Come + hear some of the rockstars \n(@NeumannKL @yahueilu\n@Elisha75830 @spgreenhalgh)\nfrom + the 2018 Early Career Symposium drop some knowledge gems on our experiences. + Oct 22, 2pm, Pavilion 9. Be there! #aect19 #aect19inspired https:\/\/t.co\/lB9EgE0VnU + https:\/\/t.co\/YNCuLOjPc4","truncated":false,"display_text_range":[0,247],"entities":{"hashtags":[{"text":"aect19","indices":[200,207]},{"text":"aect19inspired","indices":[208,223]}],"symbols":[],"user_mentions":[{"screen_name":"NeumannKL","name":"Dr. + Kalianne L. Neumann","id":281735316,"id_str":"281735316","indices":[34,44]},{"screen_name":"yahueilu","name":"Ya-Huei + Lu \ud83c\udf31","id":467690468,"id_str":"467690468","indices":[45,54]},{"screen_name":"Elisha75830","name":"Elisha + Ding","id":2323994912,"id_str":"2323994912","indices":[55,67]},{"screen_name":"spgreenhalgh","name":"Spencer + Greenhalgh, PhD","id":129211252,"id_str":"129211252","indices":[68,81]}],"urls":[{"url":"https:\/\/t.co\/lB9EgE0VnU","expanded_url":"http:\/\/bit.ly\/2OYJP74","display_url":"bit.ly\/2OYJP74","indices":[224,247]}],"media":[{"id":1184453001504788481,"id_str":"1184453001504788481","indices":[248,271],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAFurfWkAE1yGR.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAFurfWkAE1yGR.png","url":"https:\/\/t.co\/YNCuLOjPc4","display_url":"pic.twitter.com\/YNCuLOjPc4","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186696216756805633\/photo\/1","type":"photo","sizes":{"large":{"w":704,"h":621,"resize":"fit"},"small":{"w":680,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":704,"h":621,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184453001504788481,"id_str":"1184453001504788481","indices":[248,271],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAFurfWkAE1yGR.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAFurfWkAE1yGR.png","url":"https:\/\/t.co\/YNCuLOjPc4","display_url":"pic.twitter.com\/YNCuLOjPc4","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186696216756805633\/photo\/1","type":"photo","sizes":{"large":{"w":704,"h":621,"resize":"fit"},"small":{"w":680,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":704,"h":621,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:07:35 +0000 2019","id":1186690573496774656,"id_str":"1186690573496774656","full_text":"Intrigued + by @spgreenhalgh and @bretsw presentation: \"Twitter Hashtags and Religious + Learning: Mormon Identity and Participatory Practice in #ldsconf\" #aect2019 + https:\/\/t.co\/42rGKvaD3n","truncated":false,"display_text_range":[0,160],"entities":{"hashtags":[{"text":"ldsconf","indices":[141,149]},{"text":"aect2019","indices":[151,160]}],"symbols":[],"user_mentions":[{"screen_name":"spgreenhalgh","name":"Spencer + Greenhalgh, PhD","id":129211252,"id_str":"129211252","indices":[13,26]},{"screen_name":"bretsw","name":"Dr. + Bret Staudt Willet","id":53167706,"id_str":"53167706","indices":[31,38]}],"urls":[],"media":[{"id":1186690562453168129,"id_str":"1186690562453168129","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf4x3lUYAEW9FR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf4x3lUYAEW9FR.jpg","url":"https:\/\/t.co\/42rGKvaD3n","display_url":"pic.twitter.com\/42rGKvaD3n","expanded_url":"https:\/\/twitter.com\/ericpaulrogers\/status\/1186690573496774656\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":901,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1537,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186690562453168129,"id_str":"1186690562453168129","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf4x3lUYAEW9FR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf4x3lUYAEW9FR.jpg","url":"https:\/\/t.co\/42rGKvaD3n","display_url":"pic.twitter.com\/42rGKvaD3n","expanded_url":"https:\/\/twitter.com\/ericpaulrogers\/status\/1186690573496774656\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":901,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1537,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":51775264,"id_str":"51775264","name":"Eric + Paul Rogers","screen_name":"ericpaulrogers","location":"Salt Lake City, UT","description":"(he, + him) aspiring stone catcher | ally\ud83c\udf08","url":"https:\/\/t.co\/xhUZs9RX55","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xhUZs9RX55","expanded_url":"https:\/\/ericpaulrogers.com","display_url":"ericpaulrogers.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":361,"friends_count":1232,"listed_count":2,"created_at":"Sun + Jun 28 16:49:05 +0000 2009","favourites_count":27579,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3148,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1478471925911339008\/2wRBAyhT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1478471925911339008\/2wRBAyhT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/51775264\/1648702096","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 18:55:51 +0000 2019","id":1186717823319412736,"id_str":"1186717823319412736","full_text":"Enjoying + the #AECT19 Convention kickoff with @kcsabina_ and Qing Zhang. https:\/\/t.co\/JQsWgzp8YI","truncated":false,"display_text_range":[0,71],"entities":{"hashtags":[{"text":"AECT19","indices":[13,20]}],"symbols":[],"user_mentions":[{"screen_name":"kcsabina_","name":"Sabina + KC","id":930858708258738178,"id_str":"930858708258738178","indices":[45,55]}],"urls":[],"media":[{"id":1186717814133907456,"id_str":"1186717814133907456","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgRkIAUYAAwcLZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgRkIAUYAAwcLZ.jpg","url":"https:\/\/t.co\/JQsWgzp8YI","display_url":"pic.twitter.com\/JQsWgzp8YI","expanded_url":"https:\/\/twitter.com\/MarcusChildress\/status\/1186717823319412736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186717814133907456,"id_str":"1186717814133907456","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgRkIAUYAAwcLZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgRkIAUYAAwcLZ.jpg","url":"https:\/\/t.co\/JQsWgzp8YI","display_url":"pic.twitter.com\/JQsWgzp8YI","expanded_url":"https:\/\/twitter.com\/MarcusChildress\/status\/1186717823319412736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62390382,"id_str":"62390382","name":"Marcus + Childress, Ph.D.","screen_name":"MarcusChildress","location":"Overland Park, + KS","description":"Founder and Owner of Course Jockey; Former Chief Academic + Officer; Instructional Designer; Past-President @aect; @Virginia_Tech alum; + @AppState alum","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":661,"friends_count":1023,"listed_count":27,"created_at":"Mon + Aug 03 00:34:28 +0000 2009","favourites_count":782,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":833,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1421500685036699650\/4Dx2SRoe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1421500685036699650\/4Dx2SRoe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62390382\/1516048344","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:26:16 +0000 2019","id":1186695278188826624,"id_str":"1186695278188826624","full_text":"RT + @jennkepka: Now excited to learn something immediately applicable: Faculty + PD with digital badges! #aect19inspired #AECT19 https:\/\/t.co\/\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[102,117]},{"text":"AECT19","indices":[118,125]}],"symbols":[],"user_mentions":[{"screen_name":"jennkepka","name":"Jenn + Kepka","id":3733671685,"id_str":"3733671685","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:03:27 +0000 2019","id":1186689536681631744,"id_str":"1186689536681631744","full_text":"Now + excited to learn something immediately applicable: Faculty PD with digital + badges! #aect19inspired #AECT19 https:\/\/t.co\/ISZA27BOR8","truncated":false,"display_text_range":[0,134],"entities":{"hashtags":[{"text":"aect19inspired","indices":[87,102]},{"text":"AECT19","indices":[103,110]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ISZA27BOR8","expanded_url":"http:\/\/tinyurl.com\/y5w2hzye","display_url":"tinyurl.com\/y5w2hzye","indices":[111,134]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3733671685,"id_str":"3733671685","name":"Jenn + Kepka","screen_name":"jennkepka","location":"Oregon, USA","description":"Outreach\/retention\/tutoring + faculty in OR; doc student in #edtech at Boise St. Past: UO, WOU, KU. \u2764 + #oer & \u2615 & \u26f8. Views my own. she\/her\/hers","url":"https:\/\/t.co\/nvazHyg5JB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nvazHyg5JB","expanded_url":"http:\/\/jennkepka.com","display_url":"jennkepka.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":700,"friends_count":1225,"listed_count":45,"created_at":"Wed + Sep 30 05:39:55 +0000 2015","favourites_count":19836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3733671685\/1446791014","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:10:11 +0000 2019","id":1186691231738318848,"id_str":"1186691231738318848","full_text":"Great + session starting up right now in Conference Room 4: Learning Analytics: Intersections + with ID, Research, and Practice #aect19inspired @gsa_aect https:\/\/t.co\/EvyTanHQ97","truncated":false,"display_text_range":[0,149],"entities":{"hashtags":[{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[140,149]}],"urls":[],"media":[{"id":1186691226214338560,"id_str":"1186691226214338560","indices":[150,173],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","url":"https:\/\/t.co\/EvyTanHQ97","display_url":"pic.twitter.com\/EvyTanHQ97","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186691226214338560,"id_str":"1186691226214338560","indices":[150,173],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","url":"https:\/\/t.co\/EvyTanHQ97","display_url":"pic.twitter.com\/EvyTanHQ97","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":600653284,"id_str":"600653284","name":"Nate + Turcotte","screen_name":"nateturcotte22","location":"Fort Myers, FL","description":"Assistant + Professor at @fgcu_coe | Researching embodied forms of teaching & learning + with data | New England Patriots | Duke Basketball","url":"https:\/\/t.co\/uu8axyn0Bq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uu8axyn0Bq","expanded_url":"http:\/\/nateturcotte.com","display_url":"nateturcotte.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":313,"friends_count":606,"listed_count":4,"created_at":"Wed + Jun 06 03:44:26 +0000 2012","favourites_count":4300,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1349,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/600653284\/1440433455","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:17:31 +0000 2019","id":1186693073465561089,"id_str":"1186693073465561089","full_text":"Aect + selfie of me when I was young #inspiring #aect19 #aect19inspired https:\/\/t.co\/ZaIFiU81Po","truncated":false,"display_text_range":[0,69],"entities":{"hashtags":[{"text":"inspiring","indices":[35,45]},{"text":"aect19","indices":[46,53]},{"text":"aect19inspired","indices":[54,69]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186693063436947456,"id_str":"1186693063436947456","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf7DceUUAAPTui.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf7DceUUAAPTui.jpg","url":"https:\/\/t.co\/ZaIFiU81Po","display_url":"pic.twitter.com\/ZaIFiU81Po","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1186693073465561089\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":760,"h":1099,"resize":"fit"},"medium":{"w":760,"h":1099,"resize":"fit"},"small":{"w":470,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186693063436947456,"id_str":"1186693063436947456","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf7DceUUAAPTui.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf7DceUUAAPTui.jpg","url":"https:\/\/t.co\/ZaIFiU81Po","display_url":"pic.twitter.com\/ZaIFiU81Po","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1186693073465561089\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":760,"h":1099,"resize":"fit"},"medium":{"w":760,"h":1099,"resize":"fit"},"small":{"w":470,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:52:32 +0000 2019","id":1186701886390321152,"id_str":"1186701886390321152","full_text":"#aect19 + Tip #00 - To enhance learning during your presentation, use the same PowerPoint + theme that your grandmother used back in her day. You know the one.","truncated":false,"display_text_range":[0,155],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:34:32 +0000 2019","id":1186697359033544704,"id_str":"1186697359033544704","full_text":"RT + @nateturcotte22: Great session starting up right now in Conference Room 4: + Learning Analytics: Intersections with ID, Research, and Prac\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nateturcotte22","name":"Nate + Turcotte","id":600653284,"id_str":"600653284","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45137054,"id_str":"45137054","name":"Dirk + Ifenthaler","screen_name":"ifenthaler","location":"","description":"#learninganalytics","url":"https:\/\/t.co\/nGyfFQyRvo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nGyfFQyRvo","expanded_url":"http:\/\/www.ifenthaler.info","display_url":"ifenthaler.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":895,"friends_count":246,"listed_count":35,"created_at":"Sat + Jun 06 14:19:07 +0000 2009","favourites_count":615,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":878,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:10:11 +0000 2019","id":1186691231738318848,"id_str":"1186691231738318848","full_text":"Great + session starting up right now in Conference Room 4: Learning Analytics: Intersections + with ID, Research, and Practice #aect19inspired @gsa_aect https:\/\/t.co\/EvyTanHQ97","truncated":false,"display_text_range":[0,149],"entities":{"hashtags":[{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[140,149]}],"urls":[],"media":[{"id":1186691226214338560,"id_str":"1186691226214338560","indices":[150,173],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","url":"https:\/\/t.co\/EvyTanHQ97","display_url":"pic.twitter.com\/EvyTanHQ97","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186691226214338560,"id_str":"1186691226214338560","indices":[150,173],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","url":"https:\/\/t.co\/EvyTanHQ97","display_url":"pic.twitter.com\/EvyTanHQ97","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":600653284,"id_str":"600653284","name":"Nate + Turcotte","screen_name":"nateturcotte22","location":"Fort Myers, FL","description":"Assistant + Professor at @fgcu_coe | Researching embodied forms of teaching & learning + with data | New England Patriots | Duke Basketball","url":"https:\/\/t.co\/uu8axyn0Bq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uu8axyn0Bq","expanded_url":"http:\/\/nateturcotte.com","display_url":"nateturcotte.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":313,"friends_count":606,"listed_count":4,"created_at":"Wed + Jun 06 03:44:26 +0000 2012","favourites_count":4300,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1349,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/600653284\/1440433455","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 18:30:24 +0000 2019","id":1186711414922252288,"id_str":"1186711414922252288","full_text":"Building + PLNs for Preservice Teachers: Perceptions and Future Tool Intentions. Come + join #FSU #FSUCOE #ISLT @vdennen & @LaurenBagdy for session 128 on Tuesday, + 3 pm - 3:50 pm at Convention Center -Conference Rm 9. #AECT19 #AECT2019 #PLN + #Teachers #PreserviceTeachers #PD","truncated":false,"display_text_range":[0,274],"entities":{"hashtags":[{"text":"FSU","indices":[89,93]},{"text":"FSUCOE","indices":[94,101]},{"text":"ISLT","indices":[102,107]},{"text":"AECT19","indices":[218,225]},{"text":"AECT2019","indices":[226,235]},{"text":"PLN","indices":[236,240]},{"text":"Teachers","indices":[241,250]},{"text":"PreserviceTeachers","indices":[251,270]},{"text":"PD","indices":[271,274]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[108,116]},{"screen_name":"LaurenBagdy","name":"Lauren + Bagdy","id":22214646,"id_str":"22214646","indices":[123,135]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 16:41:09 +0000 2019","id":1186683922760884224,"id_str":"1186683922760884224","full_text":"RT + @LearnEngage: Does video matter in a flipped classroom? Explore this question + and more in the Video-Based Instruction session at #AECT19\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[132,139]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 15:30:00 +0000 2019","id":1186666017633656833,"id_str":"1186666017633656833","full_text":"Does + video matter in a flipped classroom? Explore this question and more in the + Video-Based Instruction session at #AECT19 at 9am in Conf Room 8 this morning! + https:\/\/t.co\/yQt14wA6x3","truncated":false,"display_text_range":[0,158],"entities":{"hashtags":[{"text":"AECT19","indices":[115,122]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186653548139798530,"id_str":"1186653548139798530","indices":[159,182],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfXHWhUYAITPJw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfXHWhUYAITPJw.jpg","url":"https:\/\/t.co\/yQt14wA6x3","display_url":"pic.twitter.com\/yQt14wA6x3","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1186666017633656833\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1920,"h":1280,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186653548139798530,"id_str":"1186653548139798530","indices":[159,182],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfXHWhUYAITPJw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfXHWhUYAITPJw.jpg","url":"https:\/\/t.co\/yQt14wA6x3","display_url":"pic.twitter.com\/yQt14wA6x3","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1186666017633656833\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1920,"h":1280,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 18:43:26 +0000 2019","id":1186714696067506176,"id_str":"1186714696067506176","full_text":"Wonderful + to see @LuEMLawrence presenting on #csteps work at #AECT2019! @edILLINOIS + @CIRCLCenter https:\/\/t.co\/AosGSJQ09T","truncated":false,"display_text_range":[0,96],"entities":{"hashtags":[{"text":"csteps","indices":[45,52]},{"text":"AECT2019","indices":[61,70]}],"symbols":[],"user_mentions":[{"screen_name":"LuEMLawrence","name":"LuEttaMae + (Lu) Lawrence","id":859809032739205121,"id_str":"859809032739205121","indices":[17,30]},{"screen_name":"edILLINOIS","name":"COLLEGE + OF EDUCATION","id":50013575,"id_str":"50013575","indices":[72,83]}],"urls":[{"url":"https:\/\/t.co\/AosGSJQ09T","expanded_url":"https:\/\/twitter.com\/LuEMLawrence\/status\/1186685126312247296","display_url":"twitter.com\/LuEMLawrence\/s\u2026","indices":[97,120]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":902231366,"id_str":"902231366","name":"Emma + Mercier","screen_name":"EmmaMMercier","location":"Champaign, IL","description":"Learning + Scientist, Associate Prof at UIUC, thinking about how to use technology to + support collaboration in classrooms.","url":"https:\/\/t.co\/VSJNVi94YP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VSJNVi94YP","expanded_url":"http:\/\/www.colearnlab.org","display_url":"colearnlab.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":568,"friends_count":651,"listed_count":10,"created_at":"Wed + Oct 24 17:17:53 +0000 2012","favourites_count":1329,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":328,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646453850619166720\/n4nbhwoL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646453850619166720\/n4nbhwoL_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186685126312247296,"quoted_status_id_str":"1186685126312247296","quoted_status_permalink":{"url":"https:\/\/t.co\/AosGSJQ09T","expanded":"https:\/\/twitter.com\/LuEMLawrence\/status\/1186685126312247296","display":"twitter.com\/LuEMLawrence\/s\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 16:45:56 +0000 2019","id":1186685126312247296,"id_str":"1186685126312247296","full_text":"Presenting + about the theoretical and practical design of the student CSTEPS tool at #AECT2019 + @EmmaMMercier @JJ1206 #CoLearnLab https:\/\/t.co\/nrZ6rdjMUz","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"AECT2019","indices":[84,93]},{"text":"CoLearnLab","indices":[116,127]}],"symbols":[],"user_mentions":[{"screen_name":"EmmaMMercier","name":"Emma + Mercier","id":902231366,"id_str":"902231366","indices":[94,107]},{"screen_name":"JJ1206","name":"Jiyoon + Jung","id":24136277,"id_str":"24136277","indices":[108,115]}],"urls":[],"media":[{"id":1186685116707246081,"id_str":"1186685116707246081","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfz04mUEAEQnWW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfz04mUEAEQnWW.jpg","url":"https:\/\/t.co\/nrZ6rdjMUz","display_url":"pic.twitter.com\/nrZ6rdjMUz","expanded_url":"https:\/\/twitter.com\/LuEMLawrence\/status\/1186685126312247296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":581,"resize":"fit"},"large":{"w":2048,"h":1750,"resize":"fit"},"medium":{"w":1200,"h":1025,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186685116707246081,"id_str":"1186685116707246081","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfz04mUEAEQnWW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfz04mUEAEQnWW.jpg","url":"https:\/\/t.co\/nrZ6rdjMUz","display_url":"pic.twitter.com\/nrZ6rdjMUz","expanded_url":"https:\/\/twitter.com\/LuEMLawrence\/status\/1186685126312247296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":581,"resize":"fit"},"large":{"w":2048,"h":1750,"resize":"fit"},"medium":{"w":1200,"h":1025,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":859809032739205121,"id_str":"859809032739205121","name":"LuEttaMae + (Lu) Lawrence","screen_name":"LuEMLawrence","location":"Irvine, CA","description":"Assistant + Prof @utahstateITLS | AERA SIG ATL Program Chair | Ph.D. from @edILLINOIS + | she\/her","url":"https:\/\/t.co\/FqSG5sT5so","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FqSG5sT5so","expanded_url":"http:\/\/LuEttaMae.com","display_url":"LuEttaMae.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":608,"friends_count":721,"listed_count":4,"created_at":"Wed + May 03 16:37:02 +0000 2017","favourites_count":8450,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1222,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1295117939771871232\/X4YNyZHK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1295117939771871232\/X4YNyZHK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/859809032739205121\/1498653989","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"8fa6d7a33b83ef26","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8fa6d7a33b83ef26.json","place_type":"city","name":"Paradise","full_name":"Paradise, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.2092535,35.984784],[-115.0610763,35.984784],[-115.0610763,36.137145],[-115.2092535,36.137145]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:54:31 +0000 2019","id":1186702385747578880,"id_str":"1186702385747578880","full_text":"The + GSA International Division presents the Night Out event on Oct 22nd, Tuesday, + 6:30 - 8:30 pm, at Silk Road Asian Bistro. Relax and grab some food with your + friends and even meet some new people. RSVP for the event at https:\/\/t.co\/L4vzuz89JO. + #aect19inspired #aectgsa https:\/\/t.co\/oO3w6ybJxg","truncated":false,"display_text_range":[0,270],"entities":{"hashtags":[{"text":"aect19inspired","indices":[246,261]},{"text":"aectgsa","indices":[262,270]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/L4vzuz89JO","expanded_url":"https:\/\/forms.gle\/sy2tUDAVS2U3PtPD9","display_url":"forms.gle\/sy2tUDAVS2U3Pt\u2026","indices":[221,244]}],"media":[{"id":1186702383931383814,"id_str":"1186702383931383814","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgDh-BW4AY1fBz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgDh-BW4AY1fBz.jpg","url":"https:\/\/t.co\/oO3w6ybJxg","display_url":"pic.twitter.com\/oO3w6ybJxg","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1186702385747578880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"},"large":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186702383931383814,"id_str":"1186702383931383814","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgDh-BW4AY1fBz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgDh-BW4AY1fBz.jpg","url":"https:\/\/t.co\/oO3w6ybJxg","display_url":"pic.twitter.com\/oO3w6ybJxg","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1186702385747578880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"},"large":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 18:43:14 +0000 2019","id":1186714645328887808,"id_str":"1186714645328887808","full_text":"RT + @caranorth11: The candy bars of Las Vegas look a little bit different than + the ones in Ohio #devlearn #aect19 https:\/\/t.co\/8Y44J1AMru","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"devlearn","indices":[95,104]},{"text":"aect19","indices":[105,112]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]}],"urls":[],"media":[{"id":1186700355410653184,"id_str":"1186700355410653184","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgBr5MU8AA-aTS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgBr5MU8AA-aTS.jpg","url":"https:\/\/t.co\/8Y44J1AMru","display_url":"pic.twitter.com\/8Y44J1AMru","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186700361634996224\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1186700361634996224,"source_status_id_str":"1186700361634996224","source_user_id":715304516791451648,"source_user_id_str":"715304516791451648"}]},"extended_entities":{"media":[{"id":1186700355410653184,"id_str":"1186700355410653184","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgBr5MU8AA-aTS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgBr5MU8AA-aTS.jpg","url":"https:\/\/t.co\/8Y44J1AMru","display_url":"pic.twitter.com\/8Y44J1AMru","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186700361634996224\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"source_status_id":1186700361634996224,"source_status_id_str":"1186700361634996224","source_user_id":715304516791451648,"source_user_id_str":"715304516791451648","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":104967963,"id_str":"104967963","name":"Royce + Kimmons","screen_name":"roycekimmons","location":"Provo, UT","description":"Associate + professor, BYU-IPT: openness, OER, tech in education, social media. https:\/\/t.co\/iktkhjAzCw + https:\/\/t.co\/vhHYSEYZSN https:\/\/t.co\/9E4HWYRF9R","url":"https:\/\/t.co\/KsbltQYZa0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KsbltQYZa0","expanded_url":"http:\/\/roycekimmons.com","display_url":"roycekimmons.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/iktkhjAzCw","expanded_url":"http:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[78,101]},{"url":"https:\/\/t.co\/vhHYSEYZSN","expanded_url":"http:\/\/equitypress.org","display_url":"equitypress.org","indices":[102,125]},{"url":"https:\/\/t.co\/9E4HWYRF9R","expanded_url":"http:\/\/edtechnica.org","display_url":"edtechnica.org","indices":[126,149]}]}},"protected":false,"followers_count":1430,"friends_count":2250,"listed_count":57,"created_at":"Thu + Jan 14 23:25:41 +0000 2010","favourites_count":930,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1841,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104967963\/1585782658","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"354770","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EDF0FF","profile_text_color":"1A1A1A","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:46:28 +0000 2019","id":1186700361634996224,"id_str":"1186700361634996224","full_text":"The + candy bars of Las Vegas look a little bit different than the ones in Ohio + #devlearn #aect19 https:\/\/t.co\/8Y44J1AMru","truncated":false,"display_text_range":[0,95],"entities":{"hashtags":[{"text":"devlearn","indices":[78,87]},{"text":"aect19","indices":[88,95]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186700355410653184,"id_str":"1186700355410653184","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgBr5MU8AA-aTS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgBr5MU8AA-aTS.jpg","url":"https:\/\/t.co\/8Y44J1AMru","display_url":"pic.twitter.com\/8Y44J1AMru","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186700361634996224\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186700355410653184,"id_str":"1186700355410653184","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgBr5MU8AA-aTS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgBr5MU8AA-aTS.jpg","url":"https:\/\/t.co\/8Y44J1AMru","display_url":"pic.twitter.com\/8Y44J1AMru","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186700361634996224\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:01:19 +0000 2019","id":1186689000305643520,"id_str":"1186689000305643520","full_text":"RT + @jeroen69: Paraphrasing Thomas Reeves: If you can\u2019t link your work to + any of these goals, you should probably rethink what you are doing\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jeroen69","name":"Jeroen","id":6848632,"id_str":"6848632","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1022045132,"id_str":"1022045132","name":"Krista + Ruggles, PhD, NBCT","screen_name":"kristaruggles","location":"Salt Lake City, + UT","description":"Associate Professor @ Utah Valley University, ISTE Certified, + \ud83d\udc0a\ud83e\udde1\ud83d\udc99","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":252,"friends_count":544,"listed_count":5,"created_at":"Wed + Dec 19 13:05:12 +0000 2012","favourites_count":504,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":548,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/871368520747040769\/bh0EdaUI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/871368520747040769\/bh0EdaUI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1022045132\/1496585421","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 16:27:08 +0000 2019","id":1186680396076875776,"id_str":"1186680396076875776","full_text":"Paraphrasing + Thomas Reeves: If you can\u2019t link your work to any of these goals, you + should probably rethink what you are doing. #aect19 #aectinspired https:\/\/t.co\/S4OYny9Oy7","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[{"text":"aect19","indices":[127,134]},{"text":"aectinspired","indices":[135,148]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186680255118884864,"id_str":"1186680255118884864","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","url":"https:\/\/t.co\/S4OYny9Oy7","display_url":"pic.twitter.com\/S4OYny9Oy7","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186680396076875776\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186680255118884864,"id_str":"1186680255118884864","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","url":"https:\/\/t.co\/S4OYny9Oy7","display_url":"pic.twitter.com\/S4OYny9Oy7","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186680396076875776\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 18:48:48 +0000 2019","id":1186716048071880705,"id_str":"1186716048071880705","full_text":"The + addie-b process of instructional development. The extra b is for bbbq. (That + extra b was a typo). #aect19","truncated":false,"display_text_range":[0,109],"entities":{"hashtags":[{"text":"aect19","indices":[102,109]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:25:52 +0000 2019","id":1186695177777250304,"id_str":"1186695177777250304","full_text":"Thank + you @aect ! I appreciate being inspired by this professional development opportunity! + #aect19inspired #aect19 https:\/\/t.co\/ZHbReTVTaA","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect19inspired","indices":[92,107]},{"text":"aect19","indices":[108,115]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[10,15]}],"urls":[],"media":[{"id":1186695170508480512,"id_str":"1186695170508480512","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf8-F7UYAAxWWA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf8-F7UYAAxWWA.jpg","url":"https:\/\/t.co\/ZHbReTVTaA","display_url":"pic.twitter.com\/ZHbReTVTaA","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186695177777250304\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186695170508480512,"id_str":"1186695170508480512","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf8-F7UYAAxWWA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf8-F7UYAAxWWA.jpg","url":"https:\/\/t.co\/ZHbReTVTaA","display_url":"pic.twitter.com\/ZHbReTVTaA","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186695177777250304\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1186695170521088000,"id_str":"1186695170521088000","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf8-F-UwAA4rG5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf8-F-UwAA4rG5.jpg","url":"https:\/\/t.co\/ZHbReTVTaA","display_url":"pic.twitter.com\/ZHbReTVTaA","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186695177777250304\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:42:55 +0000 2019","id":1186699469036720128,"id_str":"1186699469036720128","full_text":"Interested + to learn more. Thanks! Using dungeons and dragons to teach hpi by @allonsdanser + #aect2019 #games https:\/\/t.co\/tuEltHS5vL via @SlideShare #aect19inspired","truncated":false,"display_text_range":[0,163],"entities":{"hashtags":[{"text":"aect2019","indices":[91,100]},{"text":"games","indices":[101,107]},{"text":"aect19inspired","indices":[148,163]}],"symbols":[],"user_mentions":[{"screen_name":"AllonsDanser","name":"Allons + Danser","id":1187276311653502977,"id_str":"1187276311653502977","indices":[77,90]},{"screen_name":"SlideShare","name":"SlideShare","id":9676152,"id_str":"9676152","indices":[136,147]}],"urls":[{"url":"https:\/\/t.co\/tuEltHS5vL","expanded_url":"https:\/\/www.slideshare.net\/angelarand\/using-dungeons-and-dragons-to-teach-hpi","display_url":"slideshare.net\/angelarand\/usi\u2026","indices":[108,131]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":459903,"id_str":"459903","name":"\ud83c\uddfa\ud83c\uddf8 + Yin Kreher, PhD","screen_name":"yinbk","location":"","description":"Instructional + Designer | Lead LXD @FourthRev | Boundary-Crosser. Looks for the exquisite + at intersections. All tweets are mine. \ud83d\udc9c #XR #DesignLeadership + \ud83e\udef0","url":"https:\/\/t.co\/nJBVP9cpz7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nJBVP9cpz7","expanded_url":"http:\/\/yinwahkreher.com","display_url":"yinwahkreher.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1043,"friends_count":1124,"listed_count":79,"created_at":"Tue + Jan 02 17:04:05 +0000 2007","favourites_count":7349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"363738","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459903\/1611022238","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"E81C4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:47:14 +0000 2019","id":1186700552299638784,"id_str":"1186700552299638784","full_text":"Great + ethical reminder from Dr @andrewatawfik that we should be mindful of biases + generated from large learning analytics data that may reinforce existing biases + during the @AECT session Learning Analytics: Intersections with ID, Research, + and Practice #aect19inspired","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"aect19inspired","indices":[253,268]}],"symbols":[],"user_mentions":[{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[31,45]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[173,178]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:03:27 +0000 2019","id":1186689536681631744,"id_str":"1186689536681631744","full_text":"Now + excited to learn something immediately applicable: Faculty PD with digital + badges! #aect19inspired #AECT19 https:\/\/t.co\/ISZA27BOR8","truncated":false,"display_text_range":[0,134],"entities":{"hashtags":[{"text":"aect19inspired","indices":[87,102]},{"text":"AECT19","indices":[103,110]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ISZA27BOR8","expanded_url":"http:\/\/tinyurl.com\/y5w2hzye","display_url":"tinyurl.com\/y5w2hzye","indices":[111,134]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3733671685,"id_str":"3733671685","name":"Jenn + Kepka","screen_name":"jennkepka","location":"Oregon, USA","description":"Outreach\/retention\/tutoring + faculty in OR; doc student in #edtech at Boise St. Past: UO, WOU, KU. \u2764 + #oer & \u2615 & \u26f8. Views my own. she\/her\/hers","url":"https:\/\/t.co\/nvazHyg5JB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nvazHyg5JB","expanded_url":"http:\/\/jennkepka.com","display_url":"jennkepka.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":700,"friends_count":1225,"listed_count":45,"created_at":"Wed + Sep 30 05:39:55 +0000 2015","favourites_count":19836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3733671685\/1446791014","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 18:52:49 +0000 2019","id":1186717060253900801,"id_str":"1186717060253900801","full_text":"RT + @ifenthaler: Following up on our panel on #learninganalytics @gsa_aect check + out our #MOOC on #educational #data #analytics here: https:\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"learninganalytics","indices":[45,63]},{"text":"MOOC","indices":[88,93]},{"text":"educational","indices":[97,109]},{"text":"data","indices":[110,115]},{"text":"analytics","indices":[116,126]}],"symbols":[],"user_mentions":[{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[3,14]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[64,73]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":47203261,"id_str":"47203261","name":"Henk + Huijser","screen_name":"hhuijser","location":"","description":"","url":"https:\/\/t.co\/iXg1dg1xig","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/iXg1dg1xig","expanded_url":"https:\/\/scholar.google.com.au\/citations?user=IjDKULsAAAAJ&hl=en&oi=ao","display_url":"scholar.google.com.au\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":762,"friends_count":1413,"listed_count":11,"created_at":"Sun + Jun 14 23:26:43 +0000 2009","favourites_count":19818,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4268,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070223240885264384\/q9s7tOT4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070223240885264384\/q9s7tOT4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/47203261\/1544053778","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:54:55 +0000 2019","id":1186702489342676993,"id_str":"1186702489342676993","full_text":"Following + up on our panel on #learninganalytics @gsa_aect check out our #MOOC on #educational + #data #analytics here: https:\/\/t.co\/jF8RksFMyg\n\nIf you are interested + in publishing in this field check out our book series and propose your work: + https:\/\/t.co\/VHlUqWSoDh\n#aect19inspired","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"learninganalytics","indices":[29,47]},{"text":"MOOC","indices":[72,77]},{"text":"educational","indices":[81,93]},{"text":"data","indices":[94,99]},{"text":"analytics","indices":[100,110]},{"text":"aect19inspired","indices":[265,280]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[48,57]}],"urls":[{"url":"https:\/\/t.co\/jF8RksFMyg","expanded_url":"http:\/\/tinyurl.com\/yyt9djty","display_url":"tinyurl.com\/yyt9djty","indices":[117,140]},{"url":"https:\/\/t.co\/VHlUqWSoDh","expanded_url":"https:\/\/www.springer.com\/series\/16338","display_url":"springer.com\/series\/16338","indices":[241,264]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45137054,"id_str":"45137054","name":"Dirk + Ifenthaler","screen_name":"ifenthaler","location":"","description":"#learninganalytics","url":"https:\/\/t.co\/nGyfFQyRvo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nGyfFQyRvo","expanded_url":"http:\/\/www.ifenthaler.info","display_url":"ifenthaler.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":895,"friends_count":246,"listed_count":35,"created_at":"Sat + Jun 06 14:19:07 +0000 2009","favourites_count":615,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":878,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:46:23 +0000 2019","id":1186700340365799425,"id_str":"1186700340365799425","full_text":"RT + @FakeBobGagne: #aect19 Tip #16 - When you attend a presentation, remember + to always ask a question that has nothing to do with the prese\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[18,25]}],"symbols":[],"user_mentions":[{"screen_name":"FakeBobGagne","name":"FakeBobGagne","id":4130346912,"id_str":"4130346912","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 15:46:02 +0000 2019","id":1186670054219214849,"id_str":"1186670054219214849","full_text":"#aect19 + Tip #16 - When you attend a presentation, remember to always ask a question + that has nothing to do with the presentation content, but that shares your + own favorite research topic.","truncated":false,"display_text_range":[0,187],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:46:28 +0000 2019","id":1186700361634996224,"id_str":"1186700361634996224","full_text":"The + candy bars of Las Vegas look a little bit different than the ones in Ohio + #devlearn #aect19 https:\/\/t.co\/8Y44J1AMru","truncated":false,"display_text_range":[0,95],"entities":{"hashtags":[{"text":"devlearn","indices":[78,87]},{"text":"aect19","indices":[88,95]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186700355410653184,"id_str":"1186700355410653184","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgBr5MU8AA-aTS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgBr5MU8AA-aTS.jpg","url":"https:\/\/t.co\/8Y44J1AMru","display_url":"pic.twitter.com\/8Y44J1AMru","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186700361634996224\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186700355410653184,"id_str":"1186700355410653184","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgBr5MU8AA-aTS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgBr5MU8AA-aTS.jpg","url":"https:\/\/t.co\/8Y44J1AMru","display_url":"pic.twitter.com\/8Y44J1AMru","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186700361634996224\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 16:50:26 +0000 2019","id":1186686259336368128,"id_str":"1186686259336368128","full_text":"RT + @idtesu: We had the opportunity to meet with Dr. Marcus Childress, former + professor and chair of the Department of Instructional Design\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"idtesu","name":"ESU + Instructional Design & Technology Program","id":107144043,"id_str":"107144043","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 16:33:04 +0000 2019","id":1186681889148456960,"id_str":"1186681889148456960","full_text":"We + had the opportunity to meet with Dr. Marcus Childress, former professor and + chair of the Department of Instructional Design & Technology.\n\n#HornetNation + #EmporiaStateUniversity #InstructionalDesignandTechnology #AECT2019 https:\/\/t.co\/c4BCZJaG9b","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"HornetNation","indices":[146,159]},{"text":"EmporiaStateUniversity","indices":[160,183]},{"text":"InstructionalDesignandTechnology","indices":[184,217]},{"text":"AECT2019","indices":[218,227]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186681876557094912,"id_str":"1186681876557094912","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfw4SGUYAAt7Vq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfw4SGUYAAt7Vq.jpg","url":"https:\/\/t.co\/c4BCZJaG9b","display_url":"pic.twitter.com\/c4BCZJaG9b","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186681889148456960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186681876557094912,"id_str":"1186681876557094912","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfw4SGUYAAt7Vq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfw4SGUYAAt7Vq.jpg","url":"https:\/\/t.co\/c4BCZJaG9b","display_url":"pic.twitter.com\/c4BCZJaG9b","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186681889148456960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:47:50 +0000 2019","id":1186700704636760064,"id_str":"1186700704636760064","full_text":"\"Approach + your research proposal as you would a romantic proposal because you''re going + to be married to it!\" Deepak Prem Subramony #AECT19 https:\/\/t.co\/GDjpfcF2rO","truncated":false,"display_text_range":[0,138],"entities":{"hashtags":[{"text":"AECT19","indices":[131,138]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/GDjpfcF2rO","expanded_url":"https:\/\/twitter.com\/KuiXiePHD\/status\/1186049296304693250","display_url":"twitter.com\/KuiXiePHD\/stat\u2026","indices":[139,162]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":51775264,"id_str":"51775264","name":"Eric + Paul Rogers","screen_name":"ericpaulrogers","location":"Salt Lake City, UT","description":"(he, + him) aspiring stone catcher | ally\ud83c\udf08","url":"https:\/\/t.co\/xhUZs9RX55","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xhUZs9RX55","expanded_url":"https:\/\/ericpaulrogers.com","display_url":"ericpaulrogers.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":361,"friends_count":1232,"listed_count":2,"created_at":"Sun + Jun 28 16:49:05 +0000 2009","favourites_count":27579,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3148,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1478471925911339008\/2wRBAyhT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1478471925911339008\/2wRBAyhT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/51775264\/1648702096","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186049296304693250,"quoted_status_id_str":"1186049296304693250","quoted_status_permalink":{"url":"https:\/\/t.co\/GDjpfcF2rO","expanded":"https:\/\/twitter.com\/KuiXiePHD\/status\/1186049296304693250","display":"twitter.com\/KuiXiePHD\/stat\u2026"},"quoted_status":{"created_at":"Sun + Oct 20 22:39:22 +0000 2019","id":1186049296304693250,"id_str":"1186049296304693250","full_text":"For + folks attending #aect19 this week, check out our panel on #CollaborativeResearch + on Tuesday morning. I will join @ge_xun @amy_c_bradshaw @fake_reeves @christieliuidtr + and others to share our experience in collaborative research from proposal + to implementation. #aect19inspired https:\/\/t.co\/mYhbxXJGFj","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"aect19","indices":[20,27]},{"text":"CollaborativeResearch","indices":[62,84]},{"text":"aect19inspired","indices":[265,280]}],"symbols":[],"user_mentions":[{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[117,124]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[125,140]}],"urls":[],"media":[{"id":1186049289006538753,"id_str":"1186049289006538753","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","url":"https:\/\/t.co\/mYhbxXJGFj","display_url":"pic.twitter.com\/mYhbxXJGFj","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186049296304693250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186049289006538753,"id_str":"1186049289006538753","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","url":"https:\/\/t.co\/mYhbxXJGFj","display_url":"pic.twitter.com\/mYhbxXJGFj","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186049296304693250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter + for Mac\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:25:35 +0000 2019","id":1186695107296124928,"id_str":"1186695107296124928","full_text":"Microsoft + Office uses me for productivity #aect19","truncated":false,"display_text_range":[0,49],"entities":{"hashtags":[{"text":"aect19","indices":[42,49]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 16:47:23 +0000 2019","id":1186685493389475840,"id_str":"1186685493389475840","full_text":"RT + @steph_moore: New Handbook of Research in Educational and Technology is inspiring! + Focused on how we help solve important, complex probl\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"steph_moore","name":"stephanie + moore","id":15636128,"id_str":"15636128","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":860265492,"id_str":"860265492","name":"James + Ellsworth PhD","screen_name":"EINS_Institute","location":"Albuquerque, NM","description":"Educator\/architect + of instructional systems. Soldier. Muslim. Scholar (but not alim). Retired + General Officer level US military intelligence leader. Yep--weird.","url":"https:\/\/t.co\/GwDIuUtRB1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GwDIuUtRB1","expanded_url":"http:\/\/www.linkedin.com\/in\/ellsworthj","display_url":"linkedin.com\/in\/ellsworthj","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4099,"friends_count":1926,"listed_count":36,"created_at":"Wed + Oct 03 20:09:48 +0000 2012","favourites_count":212736,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":107275,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1393326633336156163\/aiT8Pu7i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1393326633336156163\/aiT8Pu7i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/860265492\/1491924222","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 16:36:25 +0000 2019","id":1186682731570159616,"id_str":"1186682731570159616","full_text":"New + Handbook of Research in Educational and Technology is inspiring! Focused on + how we help solve important, complex problems rather than \"things.\" #aect19inspired","truncated":false,"display_text_range":[0,163],"entities":{"hashtags":[{"text":"aect19inspired","indices":[148,163]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15636128,"id_str":"15636128","name":"stephanie + moore","screen_name":"steph_moore","location":"New Mexico Baby!","description":"Online + learning. Ethics & design. Tea. Bourbon. Chocolate. Leaning into metamodern. + Editor in Chief of @JCHEResearch she\/her, Author: SEL at a Distance","url":"https:\/\/t.co\/zwm2yMkODU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zwm2yMkODU","expanded_url":"https:\/\/wwnorton.com\/books\/9781324016571","display_url":"wwnorton.com\/books\/97813240\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3098,"friends_count":1316,"listed_count":54,"created_at":"Mon + Jul 28 19:10:00 +0000 2008","favourites_count":18809,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13765,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15636128\/1656742799","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":11,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:08:51 +0000 2019","id":1186690892351991810,"id_str":"1186690892351991810","full_text":"Collaborative + research panel session now starting - investigating the intersection between + culture, learning, technology, collaboration, and research. \n#AECT19 #aect19inspired","truncated":false,"display_text_range":[0,175],"entities":{"hashtags":[{"text":"AECT19","indices":[152,159]},{"text":"aect19inspired","indices":[160,175]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64769037,"id_str":"64769037","name":"jenn\u03b9\u0493er + engl\u03c5nd","screen_name":"jmenglund03","location":"Settler on Dakota homelands","description":"@UMN_CI + LT PhD Candidate \u2022 @UMNews instructional designer \u2022 @GOGN_OER scholar + \u2022 @femedtech member \u2022 #OEP advocate \u2022 Pronouns: she\/her","url":"https:\/\/t.co\/cjLLex1JDn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cjLLex1JDn","expanded_url":"https:\/\/jenniferenglund.net\/","display_url":"jenniferenglund.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":662,"friends_count":627,"listed_count":72,"created_at":"Tue + Aug 11 17:10:00 +0000 2009","favourites_count":2052,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2918,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B7C8E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64769037\/1500750705","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"452568","profile_sidebar_border_color":"204207","profile_sidebar_fill_color":"060A00","profile_text_color":"618238","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:04:36 +0000 2019","id":1186720021701115904,"id_str":"1186720021701115904","full_text":"Super + proud of our iTeach Director, Stephanee Stephens, who is presenting at #AECT19 + on Tech Coaching Models! \ud83e\udd89@KSUITEC @ksuiteach @KSUBCOE @Stephsteph83 + https:\/\/t.co\/WbCZ4pz7tY","truncated":false,"display_text_range":[0,153],"entities":{"hashtags":[{"text":"AECT19","indices":[77,84]}],"symbols":[],"user_mentions":[{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[111,119]},{"screen_name":"ksuiteach","name":"KSU + iTeach","id":129823325,"id_str":"129823325","indices":[120,130]},{"screen_name":"Stephsteph83","name":"Dr. + Stephanee Stephens","id":427060068,"id_str":"427060068","indices":[140,153]}],"urls":[{"url":"https:\/\/t.co\/WbCZ4pz7tY","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1186673773170151424","display_url":"twitter.com\/WilsonInEdu\/st\u2026","indices":[154,177]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1154888858,"id_str":"1154888858","name":"Kennesaw + State ITEC","screen_name":"KSUITEC","location":"Kennesaw, GA","description":"","url":"https:\/\/t.co\/S3NfIRz4LN","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/S3NfIRz4LN","expanded_url":"http:\/\/itec.kennesaw.edu","display_url":"itec.kennesaw.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2828,"friends_count":185,"listed_count":64,"created_at":"Wed + Feb 06 19:35:32 +0000 2013","favourites_count":932,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1578,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1166060447457587202\/C7q3Bwxo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1166060447457587202\/C7q3Bwxo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1154888858\/1566845601","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186673773170151424,"quoted_status_id_str":"1186673773170151424","quoted_status_permalink":{"url":"https:\/\/t.co\/WbCZ4pz7tY","expanded":"https:\/\/twitter.com\/WilsonInEdu\/status\/1186673773170151424","display":"twitter.com\/WilsonInEdu\/st\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 16:00:49 +0000 2019","id":1186673773170151424,"id_str":"1186673773170151424","full_text":"Go + check out @Stephsteph83 presenting Strategies Used by Instructional Coaches + Working with K-12 Students and Teachers on Maker Education for @KSUITEC @KSUBCOE + @kennesawstate and @YiJin39 #KSUITEC #aect19inspired #aect19 https:\/\/t.co\/86TEXCVldZ","truncated":false,"display_text_range":[0,222],"entities":{"hashtags":[{"text":"KSUITEC","indices":[190,198]},{"text":"aect19inspired","indices":[199,214]},{"text":"aect19","indices":[215,222]}],"symbols":[],"user_mentions":[{"screen_name":"Stephsteph83","name":"Dr. + Stephanee Stephens","id":427060068,"id_str":"427060068","indices":[13,26]},{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[144,152]},{"screen_name":"kennesawstate","name":"Kennesaw + State","id":54637018,"id_str":"54637018","indices":[162,176]},{"screen_name":"YiJin39","name":"Yi + Jin","id":944529984,"id_str":"944529984","indices":[181,189]}],"urls":[],"media":[{"id":1186673752857137152,"id_str":"1186673752857137152","indices":[223,246],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfpfa9UUAARbIY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfpfa9UUAARbIY.jpg","url":"https:\/\/t.co\/86TEXCVldZ","display_url":"pic.twitter.com\/86TEXCVldZ","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1186673773170151424\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186673752857137152,"id_str":"1186673752857137152","indices":[223,246],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfpfa9UUAARbIY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfpfa9UUAARbIY.jpg","url":"https:\/\/t.co\/86TEXCVldZ","display_url":"pic.twitter.com\/86TEXCVldZ","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1186673773170151424\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 16:55:46 +0000 2019","id":1186687601870168064,"id_str":"1186687601870168064","full_text":"Hi + Vegas! Hi #fsu2040 T\/Th 9:30 class! It''s been almost 20 years since I came + here first for COMDEX in 2001. This time for #AECT19. https:\/\/t.co\/anxDmrhxbX","truncated":false,"display_text_range":[0,131],"entities":{"hashtags":[{"text":"fsu2040","indices":[13,21]},{"text":"AECT19","indices":[123,130]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186687565513949184,"id_str":"1186687565513949184","indices":[132,155],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf2DbHVAAAhJXT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf2DbHVAAAhJXT.jpg","url":"https:\/\/t.co\/anxDmrhxbX","display_url":"pic.twitter.com\/anxDmrhxbX","expanded_url":"https:\/\/twitter.com\/hajeen2040\/status\/1186687601870168064\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186687565513949184,"id_str":"1186687565513949184","indices":[132,155],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf2DbHVAAAhJXT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf2DbHVAAAhJXT.jpg","url":"https:\/\/t.co\/anxDmrhxbX","display_url":"pic.twitter.com\/anxDmrhxbX","expanded_url":"https:\/\/twitter.com\/hajeen2040\/status\/1186687601870168064\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186687565513945090,"id_str":"1186687565513945090","indices":[132,155],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf2DbHU8AI4VTQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf2DbHU8AI4VTQ.jpg","url":"https:\/\/t.co\/anxDmrhxbX","display_url":"pic.twitter.com\/anxDmrhxbX","expanded_url":"https:\/\/twitter.com\/hajeen2040\/status\/1186687601870168064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186687565572661248,"id_str":"1186687565572661248","indices":[132,155],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf2DbVU4AAjAvz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf2DbVU4AAjAvz.jpg","url":"https:\/\/t.co\/anxDmrhxbX","display_url":"pic.twitter.com\/anxDmrhxbX","expanded_url":"https:\/\/twitter.com\/hajeen2040\/status\/1186687601870168064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1186687565572669440,"id_str":"1186687565572669440","indices":[132,155],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf2DbVVAAAyPgF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf2DbVVAAAyPgF.jpg","url":"https:\/\/t.co\/anxDmrhxbX","display_url":"pic.twitter.com\/anxDmrhxbX","expanded_url":"https:\/\/twitter.com\/hajeen2040\/status\/1186687601870168064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1033854044039729152,"id_str":"1033854044039729152","name":"Hajeen + Choi","screen_name":"hajeenfsu","location":"FL","description":"PhD., Interested + in online teaching and learning, motivation, engagement, othering\/belonging, + networked learning, social media in education","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":165,"friends_count":178,"listed_count":1,"created_at":"Sun + Aug 26 23:09:46 +0000 2018","favourites_count":653,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":173,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1033855906839068672\/nb4pftv9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1033854044039729152\/1535327544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 18:38:58 +0000 2019","id":1186713571717087232,"id_str":"1186713571717087232","full_text":"Come + visit the Leadership Development Committee table at the kickoff session! #AECT19 + https:\/\/t.co\/shC7TiY3p5","truncated":false,"display_text_range":[0,85],"entities":{"hashtags":[{"text":"AECT19","indices":[78,85]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186713564444123137,"id_str":"1186713564444123137","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgNswrUYAE3iFD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgNswrUYAE3iFD.jpg","url":"https:\/\/t.co\/shC7TiY3p5","display_url":"pic.twitter.com\/shC7TiY3p5","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186713571717087232\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186713564444123137,"id_str":"1186713564444123137","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgNswrUYAE3iFD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgNswrUYAE3iFD.jpg","url":"https:\/\/t.co\/shC7TiY3p5","display_url":"pic.twitter.com\/shC7TiY3p5","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186713571717087232\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 18:51:51 +0000 2019","id":1186716814165676033,"id_str":"1186716814165676033","full_text":"Gambling + at #aect19 https:\/\/t.co\/OItyjLilIA","truncated":false,"display_text_range":[0,19],"entities":{"hashtags":[{"text":"aect19","indices":[12,19]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186716807932985344,"id_str":"1186716807932985344","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQpjnUwAAx1d9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQpjnUwAAx1d9.jpg","url":"https:\/\/t.co\/OItyjLilIA","display_url":"pic.twitter.com\/OItyjLilIA","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186716814165676033\/photo\/1","type":"photo","sizes":{"large":{"w":1152,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186716807932985344,"id_str":"1186716807932985344","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQpjnUwAAx1d9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQpjnUwAAx1d9.jpg","url":"https:\/\/t.co\/OItyjLilIA","display_url":"pic.twitter.com\/OItyjLilIA","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186716814165676033\/photo\/1","type":"photo","sizes":{"large":{"w":1152,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 16:33:15 +0000 2019","id":1186681936875413504,"id_str":"1186681936875413504","full_text":"RT + @plowenthal: Watching @robmoore3 share his research on MOOCs at #AECT19 https:\/\/t.co\/6p9V1VbPQ1","truncated":false,"display_text_range":[0,98],"entities":{"hashtags":[{"text":"AECT19","indices":[67,74]}],"symbols":[],"user_mentions":[{"screen_name":"plowenthal","name":"Patrick + Lowenthal","id":14364665,"id_str":"14364665","indices":[3,14]},{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[25,35]}],"urls":[],"media":[{"id":1186678188996321281,"id_str":"1186678188996321281","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/EHftho3UYAErNRx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHftho3UYAErNRx.jpg","url":"https:\/\/t.co\/6p9V1VbPQ1","display_url":"pic.twitter.com\/6p9V1VbPQ1","expanded_url":"https:\/\/twitter.com\/plowenthal\/status\/1186678213306535937\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1186678213306535937,"source_status_id_str":"1186678213306535937","source_user_id":14364665,"source_user_id_str":"14364665"}]},"extended_entities":{"media":[{"id":1186678188996321281,"id_str":"1186678188996321281","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/EHftho3UYAErNRx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHftho3UYAErNRx.jpg","url":"https:\/\/t.co\/6p9V1VbPQ1","display_url":"pic.twitter.com\/6p9V1VbPQ1","expanded_url":"https:\/\/twitter.com\/plowenthal\/status\/1186678213306535937\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1186678213306535937,"source_status_id_str":"1186678213306535937","source_user_id":14364665,"source_user_id_str":"14364665","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 16:18:28 +0000 2019","id":1186678213306535937,"id_str":"1186678213306535937","full_text":"Watching + @robmoore3 share his research on MOOCs at #AECT19 https:\/\/t.co\/6p9V1VbPQ1","truncated":false,"display_text_range":[0,58],"entities":{"hashtags":[{"text":"AECT19","indices":[51,58]}],"symbols":[],"user_mentions":[{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[9,19]}],"urls":[],"media":[{"id":1186678188996321281,"id_str":"1186678188996321281","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/EHftho3UYAErNRx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHftho3UYAErNRx.jpg","url":"https:\/\/t.co\/6p9V1VbPQ1","display_url":"pic.twitter.com\/6p9V1VbPQ1","expanded_url":"https:\/\/twitter.com\/plowenthal\/status\/1186678213306535937\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186678188996321281,"id_str":"1186678188996321281","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/EHftho3UYAErNRx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHftho3UYAErNRx.jpg","url":"https:\/\/t.co\/6p9V1VbPQ1","display_url":"pic.twitter.com\/6p9V1VbPQ1","expanded_url":"https:\/\/twitter.com\/plowenthal\/status\/1186678213306535937\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14364665,"id_str":"14364665","name":"Patrick + Lowenthal","screen_name":"plowenthal","location":"Boise, ID, U.S.","description":"Professor + @BoiseState interested in Online Learning, Social Presence, & the Human Condition. + Lover of good beer, college football, & alt-country. GA to CO to ID","url":"https:\/\/t.co\/5MZ0CHsM4y","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5MZ0CHsM4y","expanded_url":"http:\/\/www.patricklowenthal.com","display_url":"patricklowenthal.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3595,"friends_count":3061,"listed_count":224,"created_at":"Fri + Apr 11 21:11:15 +0000 2008","favourites_count":4608,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12410,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"19115E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/516697828207239168\/aTcysIhD_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/516697828207239168\/aTcysIhD_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14364665\/1398272706","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 16:57:05 +0000 2019","id":1186687931190169601,"id_str":"1186687931190169601","full_text":"RT + @LearnEngage: Does video matter in a flipped classroom? Explore this question + and more in the Video-Based Instruction session at #AECT19\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[132,139]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 15:30:00 +0000 2019","id":1186666017633656833,"id_str":"1186666017633656833","full_text":"Does + video matter in a flipped classroom? Explore this question and more in the + Video-Based Instruction session at #AECT19 at 9am in Conf Room 8 this morning! + https:\/\/t.co\/yQt14wA6x3","truncated":false,"display_text_range":[0,158],"entities":{"hashtags":[{"text":"AECT19","indices":[115,122]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186653548139798530,"id_str":"1186653548139798530","indices":[159,182],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfXHWhUYAITPJw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfXHWhUYAITPJw.jpg","url":"https:\/\/t.co\/yQt14wA6x3","display_url":"pic.twitter.com\/yQt14wA6x3","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1186666017633656833\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1920,"h":1280,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186653548139798530,"id_str":"1186653548139798530","indices":[159,182],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfXHWhUYAITPJw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfXHWhUYAITPJw.jpg","url":"https:\/\/t.co\/yQt14wA6x3","display_url":"pic.twitter.com\/yQt14wA6x3","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1186666017633656833\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1920,"h":1280,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:18:25 +0000 2019","id":1186693299945361408,"id_str":"1186693299945361408","full_text":"RT + @steph_moore: New Handbook of Research in Educational and Technology is inspiring! + Focused on how we help solve important, complex probl\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"steph_moore","name":"stephanie + moore","id":15636128,"id_str":"15636128","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19613812,"id_str":"19613812","name":"Dr. + Joan E. Hughes","screen_name":"techedges","location":"Austin, TX","description":"Prof, + Learning Technologies, UT Austin. Researcher, teacher, writer: tech integration + in schools, teacher educ & PD. Author:https:\/\/t.co\/p12V06CqJU","url":"https:\/\/t.co\/0V3yBaAOKy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0V3yBaAOKy","expanded_url":"http:\/\/techedges.org","display_url":"techedges.org","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/p12V06CqJU","expanded_url":"http:\/\/bit.ly\/IntegratingEdTech","display_url":"bit.ly\/IntegratingEdT\u2026","indices":[124,147]}]}},"protected":false,"followers_count":1646,"friends_count":2355,"listed_count":158,"created_at":"Tue + Jan 27 20:26:10 +0000 2009","favourites_count":722,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2871,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDEBB2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431552022538510336\/qGc8ZRJj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431552022538510336\/qGc8ZRJj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19613812\/1408660446","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 16:36:25 +0000 2019","id":1186682731570159616,"id_str":"1186682731570159616","full_text":"New + Handbook of Research in Educational and Technology is inspiring! Focused on + how we help solve important, complex problems rather than \"things.\" #aect19inspired","truncated":false,"display_text_range":[0,163],"entities":{"hashtags":[{"text":"aect19inspired","indices":[148,163]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15636128,"id_str":"15636128","name":"stephanie + moore","screen_name":"steph_moore","location":"New Mexico Baby!","description":"Online + learning. Ethics & design. Tea. Bourbon. Chocolate. Leaning into metamodern. + Editor in Chief of @JCHEResearch she\/her, Author: SEL at a Distance","url":"https:\/\/t.co\/zwm2yMkODU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zwm2yMkODU","expanded_url":"https:\/\/wwnorton.com\/books\/9781324016571","display_url":"wwnorton.com\/books\/97813240\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3098,"friends_count":1316,"listed_count":54,"created_at":"Mon + Jul 28 19:10:00 +0000 2008","favourites_count":18809,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13765,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15636128\/1656742799","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":11,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 16:50:42 +0000 2019","id":1186686324708761601,"id_str":"1186686324708761601","full_text":"RT + @kariknisely: #AECT19, Did you know #Vegas has a monorail that makes it easy + to get from @WestgateVegas to the south end of the strip? I\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[17,24]},{"text":"Vegas","indices":[39,45]}],"symbols":[],"user_mentions":[{"screen_name":"WestgateVegas","name":"Westgate + Las Vegas","id":28625627,"id_str":"28625627","indices":[92,106]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 15:28:01 +0000 2019","id":1186665520415703041,"id_str":"1186665520415703041","full_text":"#AECT19, + Did you know #Vegas has a monorail that makes it easy to get from @WestgateVegas + to the south end of the strip? I\u2019m taking it each morning and evening + to the conference and it\u2019s pretty nice and usually empty. https:\/\/t.co\/I2YA4t0xlc","truncated":false,"display_text_range":[0,217],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"Vegas","indices":[22,28]}],"symbols":[],"user_mentions":[{"screen_name":"WestgateVegas","name":"Westgate + Las Vegas","id":28625627,"id_str":"28625627","indices":[75,89]}],"urls":[],"media":[{"id":1186665507308490752,"id_str":"1186665507308490752","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfh_d5U0AAaIoF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfh_d5U0AAaIoF.jpg","url":"https:\/\/t.co\/I2YA4t0xlc","display_url":"pic.twitter.com\/I2YA4t0xlc","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186665520415703041\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186665507308490752,"id_str":"1186665507308490752","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfh_d5U0AAaIoF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfh_d5U0AAaIoF.jpg","url":"https:\/\/t.co\/I2YA4t0xlc","display_url":"pic.twitter.com\/I2YA4t0xlc","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186665520415703041\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1186665507333623808,"id_str":"1186665507333623808","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfh_d_UUAA5_3I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfh_d_UUAA5_3I.jpg","url":"https:\/\/t.co\/I2YA4t0xlc","display_url":"pic.twitter.com\/I2YA4t0xlc","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186665520415703041\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9d2436b880004","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9d2436b880004.json","place_type":"poi","name":"Las + Vegas Monorail - Flamingo\/Caesars Palace Station","full_name":"Las Vegas + Monorail - Flamingo\/Caesars Palace Station","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.16815085815233,36.116056965092184],[-115.16815085815233,36.116056965092184],[-115.16815085815233,36.116056965092184],[-115.16815085815233,36.116056965092184]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:35:33 +0000 2019","id":1186697614311350272,"id_str":"1186697614311350272","full_text":"Great + point from Dr. @ifenthaler about how instructional designers should define + which data we want to collect rather than relying on which data we have. Great + learning @AECT session Learning Analytics: Intersections with ID, Research, + and Practice #aect19inspired","truncated":false,"display_text_range":[0,264],"entities":{"hashtags":[{"text":"aect19inspired","indices":[249,264]}],"symbols":[],"user_mentions":[{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[21,32]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[169,174]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:36:35 +0000 2019","id":1186697872017723392,"id_str":"1186697872017723392","full_text":"So + many exciting presentations we have for you at #aect19 \nJoin us #aect19inspired + https:\/\/t.co\/kB8GurdSmP","truncated":false,"display_text_range":[0,82],"entities":{"hashtags":[{"text":"aect19","indices":[50,57]},{"text":"aect19inspired","indices":[67,82]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kB8GurdSmP","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629","display_url":"twitter.com\/aectclt\/status\u2026","indices":[83,106]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186654169769242629,"quoted_status_id_str":"1186654169769242629","quoted_status_permalink":{"url":"https:\/\/t.co\/kB8GurdSmP","expanded":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629","display":"twitter.com\/aectclt\/status\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 14:42:55 +0000 2019","id":1186654169769242629,"id_str":"1186654169769242629","full_text":"Check + out our @CLT sessions on Tuesday! https:\/\/t.co\/Ac0HzA65hv","truncated":false,"display_text_range":[0,39],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"clt","name":"Carl + Tydingco","id":3867001,"id_str":"3867001","indices":[14,18]}],"urls":[],"media":[{"id":1186654161951084544,"id_str":"1186654161951084544","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfXrFJVUAAqbNi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfXrFJVUAAqbNi.jpg","url":"https:\/\/t.co\/Ac0HzA65hv","display_url":"pic.twitter.com\/Ac0HzA65hv","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1583,"h":2048,"resize":"fit"},"small":{"w":525,"h":680,"resize":"fit"},"medium":{"w":927,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186654161951084544,"id_str":"1186654161951084544","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfXrFJVUAAqbNi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfXrFJVUAAqbNi.jpg","url":"https:\/\/t.co\/Ac0HzA65hv","display_url":"pic.twitter.com\/Ac0HzA65hv","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1583,"h":2048,"resize":"fit"},"small":{"w":525,"h":680,"resize":"fit"},"medium":{"w":927,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905212118127042560,"id_str":"905212118127042560","name":"AECT_CLT","screen_name":"aectclt","location":"","description":"AECT + Division Exploring culture, learning, and technology with particular emphases + on championing inclusiveness and equity. Conversation at #aectclt","url":"https:\/\/t.co\/yc2CmqxA5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yc2CmqxA5M","expanded_url":"https:\/\/sites.google.com\/view\/clt-home","display_url":"sites.google.com\/view\/clt-home","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":26,"listed_count":4,"created_at":"Tue + Sep 05 23:32:41 +0000 2017","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":486,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905212118127042560\/1506184813","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 18:37:40 +0000 2019","id":1186713245089841153,"id_str":"1186713245089841153","full_text":"RT + @nangur1: Thank you @aect ! I appreciate being inspired by this professional + development opportunity! #aect19inspired #aect19 https:\/\/t.\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[105,120]},{"text":"aect19","indices":[121,128]}],"symbols":[],"user_mentions":[{"screen_name":"nangur1","name":"Dr. + Nandita Gurjar","id":2743313304,"id_str":"2743313304","indices":[3,11]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[23,28]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:25:52 +0000 2019","id":1186695177777250304,"id_str":"1186695177777250304","full_text":"Thank + you @aect ! I appreciate being inspired by this professional development opportunity! + #aect19inspired #aect19 https:\/\/t.co\/ZHbReTVTaA","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect19inspired","indices":[92,107]},{"text":"aect19","indices":[108,115]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[10,15]}],"urls":[],"media":[{"id":1186695170508480512,"id_str":"1186695170508480512","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf8-F7UYAAxWWA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf8-F7UYAAxWWA.jpg","url":"https:\/\/t.co\/ZHbReTVTaA","display_url":"pic.twitter.com\/ZHbReTVTaA","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186695177777250304\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186695170508480512,"id_str":"1186695170508480512","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf8-F7UYAAxWWA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf8-F7UYAAxWWA.jpg","url":"https:\/\/t.co\/ZHbReTVTaA","display_url":"pic.twitter.com\/ZHbReTVTaA","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186695177777250304\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1186695170521088000,"id_str":"1186695170521088000","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf8-F-UwAA4rG5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf8-F-UwAA4rG5.jpg","url":"https:\/\/t.co\/ZHbReTVTaA","display_url":"pic.twitter.com\/ZHbReTVTaA","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186695177777250304\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:25:57 +0000 2019","id":1186695198329294848,"id_str":"1186695198329294848","full_text":"RT + @nateturcotte22: Great session starting up right now in Conference Room 4: + Learning Analytics: Intersections with ID, Research, and Prac\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nateturcotte22","name":"Nate + Turcotte","id":600653284,"id_str":"600653284","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:10:11 +0000 2019","id":1186691231738318848,"id_str":"1186691231738318848","full_text":"Great + session starting up right now in Conference Room 4: Learning Analytics: Intersections + with ID, Research, and Practice #aect19inspired @gsa_aect https:\/\/t.co\/EvyTanHQ97","truncated":false,"display_text_range":[0,149],"entities":{"hashtags":[{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[140,149]}],"urls":[],"media":[{"id":1186691226214338560,"id_str":"1186691226214338560","indices":[150,173],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","url":"https:\/\/t.co\/EvyTanHQ97","display_url":"pic.twitter.com\/EvyTanHQ97","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186691226214338560,"id_str":"1186691226214338560","indices":[150,173],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf5YgSUEAAsKfr.jpg","url":"https:\/\/t.co\/EvyTanHQ97","display_url":"pic.twitter.com\/EvyTanHQ97","expanded_url":"https:\/\/twitter.com\/nateturcotte22\/status\/1186691231738318848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":600653284,"id_str":"600653284","name":"Nate + Turcotte","screen_name":"nateturcotte22","location":"Fort Myers, FL","description":"Assistant + Professor at @fgcu_coe | Researching embodied forms of teaching & learning + with data | New England Patriots | Duke Basketball","url":"https:\/\/t.co\/uu8axyn0Bq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uu8axyn0Bq","expanded_url":"http:\/\/nateturcotte.com","display_url":"nateturcotte.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":313,"friends_count":606,"listed_count":4,"created_at":"Wed + Jun 06 03:44:26 +0000 2012","favourites_count":4300,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1349,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/600653284\/1440433455","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 18:49:59 +0000 2019","id":1186716346924486656,"id_str":"1186716346924486656","full_text":"RT + @tutaleni: So many exciting presentations we have for you at #aect19 \nJoin + us #aect19inspired https:\/\/t.co\/kB8GurdSmP","truncated":false,"display_text_range":[0,120],"entities":{"hashtags":[{"text":"aect19","indices":[64,71]},{"text":"aect19inspired","indices":[81,96]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/kB8GurdSmP","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629","display_url":"twitter.com\/aectclt\/status\u2026","indices":[97,120]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2950104673,"id_str":"2950104673","name":"Ayodeji + Ibukun","screen_name":"lbukunAA","location":"Oklahoma, USA","description":"B.Engrg + MS MNSE","url":"https:\/\/t.co\/kVfuPQQfYs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kVfuPQQfYs","expanded_url":"http:\/\/www.ayoibukun.com","display_url":"ayoibukun.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":489,"listed_count":0,"created_at":"Mon + Dec 29 12:06:33 +0000 2014","favourites_count":665,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":154,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2950104673\/1574622610","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:36:35 +0000 2019","id":1186697872017723392,"id_str":"1186697872017723392","full_text":"So + many exciting presentations we have for you at #aect19 \nJoin us #aect19inspired + https:\/\/t.co\/kB8GurdSmP","truncated":false,"display_text_range":[0,82],"entities":{"hashtags":[{"text":"aect19","indices":[50,57]},{"text":"aect19inspired","indices":[67,82]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/kB8GurdSmP","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629","display_url":"twitter.com\/aectclt\/status\u2026","indices":[83,106]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186654169769242629,"quoted_status_id_str":"1186654169769242629","quoted_status_permalink":{"url":"https:\/\/t.co\/kB8GurdSmP","expanded":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629","display":"twitter.com\/aectclt\/status\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 14:42:55 +0000 2019","id":1186654169769242629,"id_str":"1186654169769242629","full_text":"Check + out our @CLT sessions on Tuesday! https:\/\/t.co\/Ac0HzA65hv","truncated":false,"display_text_range":[0,39],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"clt","name":"Carl + Tydingco","id":3867001,"id_str":"3867001","indices":[14,18]}],"urls":[],"media":[{"id":1186654161951084544,"id_str":"1186654161951084544","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfXrFJVUAAqbNi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfXrFJVUAAqbNi.jpg","url":"https:\/\/t.co\/Ac0HzA65hv","display_url":"pic.twitter.com\/Ac0HzA65hv","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1583,"h":2048,"resize":"fit"},"small":{"w":525,"h":680,"resize":"fit"},"medium":{"w":927,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186654161951084544,"id_str":"1186654161951084544","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfXrFJVUAAqbNi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfXrFJVUAAqbNi.jpg","url":"https:\/\/t.co\/Ac0HzA65hv","display_url":"pic.twitter.com\/Ac0HzA65hv","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1583,"h":2048,"resize":"fit"},"small":{"w":525,"h":680,"resize":"fit"},"medium":{"w":927,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905212118127042560,"id_str":"905212118127042560","name":"AECT_CLT","screen_name":"aectclt","location":"","description":"AECT + Division Exploring culture, learning, and technology with particular emphases + on championing inclusiveness and equity. Conversation at #aectclt","url":"https:\/\/t.co\/yc2CmqxA5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yc2CmqxA5M","expanded_url":"https:\/\/sites.google.com\/view\/clt-home","display_url":"sites.google.com\/view\/clt-home","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":26,"listed_count":4,"created_at":"Tue + Sep 05 23:32:41 +0000 2017","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":486,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905212118127042560\/1506184813","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186654169769242629,"quoted_status_id_str":"1186654169769242629","quoted_status_permalink":{"url":"https:\/\/t.co\/kB8GurdSmP","expanded":"https:\/\/twitter.com\/aectclt\/status\/1186654169769242629","display":"twitter.com\/aectclt\/status\u2026"},"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:13:58 +0000 2019","id":1186692181618130944,"id_str":"1186692181618130944","full_text":"Great + panel about collaborative research just started in Conf Room 1 @AECT @aectclt + #aect19inspired https:\/\/t.co\/Po9ALRdpN7","truncated":false,"display_text_range":[0,99],"entities":{"hashtags":[{"text":"aect19inspired","indices":[84,99]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[69,74]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[75,83]}],"urls":[],"media":[{"id":1186692170176057344,"id_str":"1186692170176057344","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf6Pc0U0AAHbIs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf6Pc0U0AAHbIs.jpg","url":"https:\/\/t.co\/Po9ALRdpN7","display_url":"pic.twitter.com\/Po9ALRdpN7","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":291,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":438,"resize":"fit"},"medium":{"w":1024,"h":438,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186692170176057344,"id_str":"1186692170176057344","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf6Pc0U0AAHbIs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf6Pc0U0AAHbIs.jpg","url":"https:\/\/t.co\/Po9ALRdpN7","display_url":"pic.twitter.com\/Po9ALRdpN7","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":291,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":438,"resize":"fit"},"medium":{"w":1024,"h":438,"resize":"fit"}},"ext_alt_text":null},{"id":1186692177092476928,"id_str":"1186692177092476928","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf6P2lVAAATT7U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf6P2lVAAATT7U.jpg","url":"https:\/\/t.co\/Po9ALRdpN7","display_url":"pic.twitter.com\/Po9ALRdpN7","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186692181618130944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1024,"h":655,"resize":"fit"},"large":{"w":1024,"h":655,"resize":"fit"},"small":{"w":680,"h":435,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"8fa6d7a33b83ef26","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8fa6d7a33b83ef26.json","place_type":"city","name":"Paradise","full_name":"Paradise, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.2092535,35.984784],[-115.0610763,35.984784],[-115.0610763,36.137145],[-115.2092535,36.137145]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 16:51:02 +0000 2019","id":1186686411266777089,"id_str":"1186686411266777089","full_text":"#aect19 + Tip #97 - when you review a manuscript, make sure you require the author to + include something about your favorite theory, even though the original manuscript + is about something else entirely.","truncated":false,"display_text_range":[0,199],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 19:00:52 +0000 2019","id":1186719083741343744,"id_str":"1186719083741343744","full_text":"In + about an hour, join me as I share my perspective using a design sprint evaluation + form to analyze #oer. Evaluating Open Educational Resources: Results of a + Collaborative Evaluation of Crowdsourced Lesson Plans Convention Center | + Pavilion 11, 1:00PM\n#aect19 #aect19inspired https:\/\/t.co\/yTCBk64rcG","truncated":false,"display_text_range":[0,276],"entities":{"hashtags":[{"text":"oer","indices":[101,105]},{"text":"aect19","indices":[253,260]},{"text":"aect19inspired","indices":[261,276]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186719079672897537,"id_str":"1186719079672897537","indices":[277,300],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgStygU4AEAYvr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgStygU4AEAYvr.jpg","url":"https:\/\/t.co\/yTCBk64rcG","display_url":"pic.twitter.com\/yTCBk64rcG","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186719083741343744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1446,"h":804,"resize":"fit"},"medium":{"w":1200,"h":667,"resize":"fit"},"small":{"w":680,"h":378,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186719079672897537,"id_str":"1186719079672897537","indices":[277,300],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgStygU4AEAYvr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgStygU4AEAYvr.jpg","url":"https:\/\/t.co\/yTCBk64rcG","display_url":"pic.twitter.com\/yTCBk64rcG","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186719083741343744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1446,"h":804,"resize":"fit"},"medium":{"w":1200,"h":667,"resize":"fit"},"small":{"w":680,"h":378,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:25:23 +0000 2019","id":1186695055945256961,"id_str":"1186695055945256961","full_text":"RT + @kolorkid: Learning all about networking from @opencontent. #EarlyCareerSymposium + #AECT19 #inspiredme https:\/\/t.co\/pkzEIhQfEH","truncated":false,"display_text_range":[0,128],"entities":{"hashtags":[{"text":"EarlyCareerSymposium","indices":[63,84]},{"text":"AECT19","indices":[85,92]},{"text":"inspiredme","indices":[93,104]}],"symbols":[],"user_mentions":[{"screen_name":"kolorkid","name":"Dr. + Heather Leary","id":14669702,"id_str":"14669702","indices":[3,12]},{"screen_name":"opencontent","name":"David + Wiley","id":4514361,"id_str":"4514361","indices":[49,61]}],"urls":[],"media":[{"id":1186664368718499842,"id_str":"1186664368718499842","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfg9MUUUAIU1j-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfg9MUUUAIU1j-.jpg","url":"https:\/\/t.co\/pkzEIhQfEH","display_url":"pic.twitter.com\/pkzEIhQfEH","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186664379300794369\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":1186664379300794369,"source_status_id_str":"1186664379300794369","source_user_id":14669702,"source_user_id_str":"14669702"}]},"extended_entities":{"media":[{"id":1186664368718499842,"id_str":"1186664368718499842","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfg9MUUUAIU1j-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfg9MUUUAIU1j-.jpg","url":"https:\/\/t.co\/pkzEIhQfEH","display_url":"pic.twitter.com\/pkzEIhQfEH","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186664379300794369\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":1186664379300794369,"source_status_id_str":"1186664379300794369","source_user_id":14669702,"source_user_id_str":"14669702","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 15:23:29 +0000 2019","id":1186664379300794369,"id_str":"1186664379300794369","full_text":"Learning + all about networking from @opencontent. #EarlyCareerSymposium #AECT19 #inspiredme + https:\/\/t.co\/pkzEIhQfEH","truncated":false,"display_text_range":[0,90],"entities":{"hashtags":[{"text":"EarlyCareerSymposium","indices":[49,70]},{"text":"AECT19","indices":[71,78]},{"text":"inspiredme","indices":[79,90]}],"symbols":[],"user_mentions":[{"screen_name":"opencontent","name":"David + Wiley","id":4514361,"id_str":"4514361","indices":[35,47]}],"urls":[],"media":[{"id":1186664368718499842,"id_str":"1186664368718499842","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfg9MUUUAIU1j-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfg9MUUUAIU1j-.jpg","url":"https:\/\/t.co\/pkzEIhQfEH","display_url":"pic.twitter.com\/pkzEIhQfEH","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186664379300794369\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186664368718499842,"id_str":"1186664368718499842","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfg9MUUUAIU1j-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfg9MUUUAIU1j-.jpg","url":"https:\/\/t.co\/pkzEIhQfEH","display_url":"pic.twitter.com\/pkzEIhQfEH","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186664379300794369\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 18:53:18 +0000 2019","id":1186717179049209856,"id_str":"1186717179049209856","full_text":"Enjoyed + presenting this morning. #aect19inspired @USACOE @USouthAL_CoInS https:\/\/t.co\/urUUxCIdv5","truncated":false,"display_text_range":[0,72],"entities":{"hashtags":[{"text":"aect19inspired","indices":[33,48]}],"symbols":[],"user_mentions":[{"screen_name":"USouthAL_CoInS","name":"Couns + & Instr Sci","id":784214336407470080,"id_str":"784214336407470080","indices":[57,72]}],"urls":[],"media":[{"id":1186717173126856705,"id_str":"1186717173126856705","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQ-0EVAAEE3ek.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQ-0EVAAEE3ek.jpg","url":"https:\/\/t.co\/urUUxCIdv5","display_url":"pic.twitter.com\/urUUxCIdv5","expanded_url":"https:\/\/twitter.com\/Gaston_teach\/status\/1186717179049209856\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186717173126856705,"id_str":"1186717173126856705","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgQ-0EVAAEE3ek.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgQ-0EVAAEE3ek.jpg","url":"https:\/\/t.co\/urUUxCIdv5","display_url":"pic.twitter.com\/urUUxCIdv5","expanded_url":"https:\/\/twitter.com\/Gaston_teach\/status\/1186717179049209856\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":1536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":874874000,"id_str":"874874000","name":"Dr. + Joe Gaston","screen_name":"Gaston_teach","location":"","description":"father, + husband, teacher, life-long learner, doctor of education, assistant professor, + researcher","url":"https:\/\/t.co\/j9z9kEvRKT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/j9z9kEvRKT","expanded_url":"http:\/\/joepgaston.wordpress.com","display_url":"joepgaston.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1122,"friends_count":939,"listed_count":10,"created_at":"Fri + Oct 12 03:42:10 +0000 2012","favourites_count":1699,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1506,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1266080873516093441\/zLYl8Eo1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1266080873516093441\/zLYl8Eo1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/874874000\/1455820517","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 16:45:56 +0000 2019","id":1186685126312247296,"id_str":"1186685126312247296","full_text":"Presenting + about the theoretical and practical design of the student CSTEPS tool at #AECT2019 + @EmmaMMercier @JJ1206 #CoLearnLab https:\/\/t.co\/nrZ6rdjMUz","truncated":false,"display_text_range":[0,127],"entities":{"hashtags":[{"text":"AECT2019","indices":[84,93]},{"text":"CoLearnLab","indices":[116,127]}],"symbols":[],"user_mentions":[{"screen_name":"EmmaMMercier","name":"Emma + Mercier","id":902231366,"id_str":"902231366","indices":[94,107]},{"screen_name":"JJ1206","name":"Jiyoon + Jung","id":24136277,"id_str":"24136277","indices":[108,115]}],"urls":[],"media":[{"id":1186685116707246081,"id_str":"1186685116707246081","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfz04mUEAEQnWW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfz04mUEAEQnWW.jpg","url":"https:\/\/t.co\/nrZ6rdjMUz","display_url":"pic.twitter.com\/nrZ6rdjMUz","expanded_url":"https:\/\/twitter.com\/LuEMLawrence\/status\/1186685126312247296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":581,"resize":"fit"},"large":{"w":2048,"h":1750,"resize":"fit"},"medium":{"w":1200,"h":1025,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186685116707246081,"id_str":"1186685116707246081","indices":[128,151],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfz04mUEAEQnWW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfz04mUEAEQnWW.jpg","url":"https:\/\/t.co\/nrZ6rdjMUz","display_url":"pic.twitter.com\/nrZ6rdjMUz","expanded_url":"https:\/\/twitter.com\/LuEMLawrence\/status\/1186685126312247296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":581,"resize":"fit"},"large":{"w":2048,"h":1750,"resize":"fit"},"medium":{"w":1200,"h":1025,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":859809032739205121,"id_str":"859809032739205121","name":"LuEttaMae + (Lu) Lawrence","screen_name":"LuEMLawrence","location":"Irvine, CA","description":"Assistant + Prof @utahstateITLS | AERA SIG ATL Program Chair | Ph.D. from @edILLINOIS + | she\/her","url":"https:\/\/t.co\/FqSG5sT5so","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/FqSG5sT5so","expanded_url":"http:\/\/LuEttaMae.com","display_url":"LuEttaMae.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":608,"friends_count":721,"listed_count":4,"created_at":"Wed + May 03 16:37:02 +0000 2017","favourites_count":8450,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1222,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1295117939771871232\/X4YNyZHK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1295117939771871232\/X4YNyZHK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/859809032739205121\/1498653989","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"8fa6d7a33b83ef26","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8fa6d7a33b83ef26.json","place_type":"city","name":"Paradise","full_name":"Paradise, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.2092535,35.984784],[-115.0610763,35.984784],[-115.0610763,36.137145],[-115.2092535,36.137145]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 16:37:38 +0000 2019","id":1186683038605938688,"id_str":"1186683038605938688","full_text":"RT + @nicolapallitt: Very timely workshop on evaluating online course designs by + @camille_dd with great takeaways - and Tam Tams:) #aect19ins\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"camille_dd","name":"Camille + Dickson-Deane","id":398945750,"id_str":"398945750","indices":[79,90]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":52675234,"id_str":"52675234","name":"Gabriel + Konayuma","screen_name":"GabrielKonayuma","location":"Lusaka, Zambia","description":"A + Christian, Vocational Training educator specialised in learning, entrepreneurship, + educational technology.\n#edtech, #vocational_education, #entrepreneurship","url":"https:\/\/t.co\/ajMvMd1Eyh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ajMvMd1Eyh","expanded_url":"https:\/\/goo.gl\/nzZwHm","display_url":"goo.gl\/nzZwHm","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":571,"friends_count":1525,"listed_count":10,"created_at":"Wed + Jul 01 08:57:05 +0000 2009","favourites_count":3473,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4828,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643929621214437376\/9Q7jHSOH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643929621214437376\/9Q7jHSOH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52675234\/1608527579","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 23:05:08 +0000 2019","id":1186418166357868545,"id_str":"1186418166357868545","full_text":"Very + timely workshop on evaluating online course designs by @camille_dd with great + takeaways - and Tam Tams:) #aect19inspired @AECT @aectclt https:\/\/t.co\/ix2TB6lykw","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[110,125]}],"symbols":[],"user_mentions":[{"screen_name":"camille_dd","name":"Camille + Dickson-Deane","id":398945750,"id_str":"398945750","indices":[60,71]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[126,131]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[132,140]}],"urls":[],"media":[{"id":1186418127996772352,"id_str":"1186418127996772352","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBAGJU4AAckBn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBAGJU4AAckBn.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186418127996772352,"id_str":"1186418127996772352","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBAGJU4AAckBn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBAGJU4AAckBn.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null},{"id":1186418135596814337,"id_str":"1186418135596814337","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBAidUUAEH31C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBAidUUAEH31C.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186418148590776321,"id_str":"1186418148590776321","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBBS3UcAEBsFr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBBS3UcAEBsFr.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186418159063977984,"id_str":"1186418159063977984","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBB54U0AAae8b.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBB54U0AAae8b.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:46:40 +0000 2019","id":1186700410511187968,"id_str":"1186700410511187968","full_text":"RT + @FakeBobGagne: #aect19 fact: only your mother read your dissertation","truncated":false,"display_text_range":[0,71],"entities":{"hashtags":[{"text":"aect19","indices":[18,25]}],"symbols":[],"user_mentions":[{"screen_name":"FakeBobGagne","name":"FakeBobGagne","id":4130346912,"id_str":"4130346912","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 15:03:11 +0000 2019","id":1186659269598277633,"id_str":"1186659269598277633","full_text":"#aect19 + fact: only your mother read your dissertation","truncated":false,"display_text_range":[0,53],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:33:52 +0000 2019","id":1186697190598696961,"id_str":"1186697190598696961","full_text":"Great + attendance for Design Thinking Applied.... aect2 #aectstc #aect19 @ Westgate + Las Vegas Resort & Casino https:\/\/t.co\/uiKZswY20s","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aectstc","indices":[55,63]},{"text":"aect19","indices":[64,71]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uiKZswY20s","expanded_url":"https:\/\/www.instagram.com\/p\/B37dQu-DP-N\/?igshid=1872afvbn1o8u","display_url":"instagram.com\/p\/B37dQu-DP-N\/\u2026","indices":[113,136]}]},"source":"\u003ca + href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":{"type":"Point","coordinates":[36.13625965,-115.15144543]},"coordinates":{"type":"Point","coordinates":[-115.15144543,36.13625965]},"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:01:27 +0000 2019","id":1186689034032041985,"id_str":"1186689034032041985","full_text":"RT + @kariknisely: #AECT19, Did you know #Vegas has a monorail that makes it easy + to get from @WestgateVegas to the south end of the strip? I\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[17,24]},{"text":"Vegas","indices":[39,45]}],"symbols":[],"user_mentions":[{"screen_name":"WestgateVegas","name":"Westgate + Las Vegas","id":28625627,"id_str":"28625627","indices":[92,106]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 15:28:01 +0000 2019","id":1186665520415703041,"id_str":"1186665520415703041","full_text":"#AECT19, + Did you know #Vegas has a monorail that makes it easy to get from @WestgateVegas + to the south end of the strip? I\u2019m taking it each morning and evening + to the conference and it\u2019s pretty nice and usually empty. https:\/\/t.co\/I2YA4t0xlc","truncated":false,"display_text_range":[0,217],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"Vegas","indices":[22,28]}],"symbols":[],"user_mentions":[{"screen_name":"WestgateVegas","name":"Westgate + Las Vegas","id":28625627,"id_str":"28625627","indices":[75,89]}],"urls":[],"media":[{"id":1186665507308490752,"id_str":"1186665507308490752","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfh_d5U0AAaIoF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfh_d5U0AAaIoF.jpg","url":"https:\/\/t.co\/I2YA4t0xlc","display_url":"pic.twitter.com\/I2YA4t0xlc","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186665520415703041\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186665507308490752,"id_str":"1186665507308490752","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfh_d5U0AAaIoF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfh_d5U0AAaIoF.jpg","url":"https:\/\/t.co\/I2YA4t0xlc","display_url":"pic.twitter.com\/I2YA4t0xlc","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186665520415703041\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1186665507333623808,"id_str":"1186665507333623808","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfh_d_UUAA5_3I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfh_d_UUAA5_3I.jpg","url":"https:\/\/t.co\/I2YA4t0xlc","display_url":"pic.twitter.com\/I2YA4t0xlc","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186665520415703041\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9d2436b880004","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9d2436b880004.json","place_type":"poi","name":"Las + Vegas Monorail - Flamingo\/Caesars Palace Station","full_name":"Las Vegas + Monorail - Flamingo\/Caesars Palace Station","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.16815085815233,36.116056965092184],[-115.16815085815233,36.116056965092184],[-115.16815085815233,36.116056965092184],[-115.16815085815233,36.116056965092184]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 18:45:23 +0000 2019","id":1186715186779967488,"id_str":"1186715186779967488","full_text":"Come + visit the History & Archives Committee table at the kickoff session! Grab + a sticker! #AECT19 https:\/\/t.co\/bzGolwmdQ0","truncated":false,"display_text_range":[0,101],"entities":{"hashtags":[{"text":"AECT19","indices":[94,101]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186715179595075584,"id_str":"1186715179595075584","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgPKxlUEAAHxcW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgPKxlUEAAHxcW.jpg","url":"https:\/\/t.co\/bzGolwmdQ0","display_url":"pic.twitter.com\/bzGolwmdQ0","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186715186779967488\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186715179595075584,"id_str":"1186715179595075584","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgPKxlUEAAHxcW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgPKxlUEAAHxcW.jpg","url":"https:\/\/t.co\/bzGolwmdQ0","display_url":"pic.twitter.com\/bzGolwmdQ0","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186715186779967488\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:25:15 +0000 2019","id":1186695021572968448,"id_str":"1186695021572968448","full_text":"RT + @ThomasLamey1: Some great snapshots from Systems Thinking and Change speakers + aect2 #aect19 #aectstc Come see us! https:\/\/t.co\/sRz11ltLq9","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[87,94]},{"text":"aectstc","indices":[95,103]}],"symbols":[],"user_mentions":[{"screen_name":"ThomasLamey1","name":"Thomas + Lamey","id":1426994293898629126,"id_str":"1426994293898629126","indices":[3,16]}],"urls":[{"url":"https:\/\/t.co\/sRz11ltLq9","expanded_url":"https:\/\/www.instagram.com\/p\/B37ahSHjy7T\/?igshid=5rku7vqw40y4","display_url":"instagram.com\/p\/B37ahSHjy7T\/\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 17:09:57 +0000 2019","id":1186691172292542466,"id_str":"1186691172292542466","full_text":"Some + great snapshots from Systems Thinking and Change speakers aect2 #aect19 #aectstc + Come see us! https:\/\/t.co\/sRz11ltLq9","truncated":false,"display_text_range":[0,122],"entities":{"hashtags":[{"text":"aect19","indices":[69,76]},{"text":"aectstc","indices":[77,85]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/sRz11ltLq9","expanded_url":"https:\/\/www.instagram.com\/p\/B37ahSHjy7T\/?igshid=5rku7vqw40y4","display_url":"instagram.com\/p\/B37ahSHjy7T\/\u2026","indices":[99,122]}]},"source":"\u003ca + href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:47:53 +0000 2019","id":1186700715722452993,"id_str":"1186700715722452993","full_text":"RT + @caranorth11: Presentation #1 of 5.\nToday I''m at #aect19 presenting with + an awesome crew including @JenM @roycekimmons & others about an\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19","indices":[52,59]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[102,107]},{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[108,121]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 13:32:34 +0000 2019","id":1186636463305195520,"id_str":"1186636463305195520","full_text":"Presentation + #1 of 5.\nToday I''m at #aect19 presenting with an awesome crew including + @JenM @roycekimmons & others about an evaluation of open education resources. + The eval assessed accessibility & quality of #oer. Our presentation can + be found here: https:\/\/t.co\/VwQ4k9htF8 https:\/\/t.co\/ysuflHymFA","truncated":false,"display_text_range":[0,281],"entities":{"hashtags":[{"text":"aect19","indices":[35,42]},{"text":"oer","indices":[216,220]}],"symbols":[],"user_mentions":[{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[85,90]},{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[91,104]}],"urls":[{"url":"https:\/\/t.co\/VwQ4k9htF8","expanded_url":"http:\/\/bit.ly\/aect19eval","display_url":"bit.ly\/aect19eval","indices":[258,281]}],"media":[{"id":1186636458225831938,"id_str":"1186636458225831938","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","url":"https:\/\/t.co\/ysuflHymFA","display_url":"pic.twitter.com\/ysuflHymFA","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186636463305195520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":317,"resize":"fit"},"large":{"w":1562,"h":728,"resize":"fit"},"medium":{"w":1200,"h":559,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186636458225831938,"id_str":"1186636458225831938","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","url":"https:\/\/t.co\/ysuflHymFA","display_url":"pic.twitter.com\/ysuflHymFA","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186636463305195520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":317,"resize":"fit"},"large":{"w":1562,"h":728,"resize":"fit"},"medium":{"w":1200,"h":559,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":23,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:33:20 +0000 2019","id":1186697055667802112,"id_str":"1186697055667802112","full_text":"Come + and see my poster on my instructional design project for EFL writing instruction + #aect #aect19 #aect19inspired https:\/\/t.co\/q8Ygg907uz","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect","indices":[86,91]},{"text":"aect19","indices":[92,99]},{"text":"aect19inspired","indices":[100,115]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186697043881779200,"id_str":"1186697043881779200","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf-rIyUYAA8OXU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf-rIyUYAA8OXU.jpg","url":"https:\/\/t.co\/q8Ygg907uz","display_url":"pic.twitter.com\/q8Ygg907uz","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1186697055667802112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186697043881779200,"id_str":"1186697043881779200","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHf-rIyUYAA8OXU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHf-rIyUYAA8OXU.jpg","url":"https:\/\/t.co\/q8Ygg907uz","display_url":"pic.twitter.com\/q8Ygg907uz","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1186697055667802112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186318434964930560,"id_str":"1186318434964930560","name":"Murat + Turk, Ph.D.","screen_name":"MuratTurkEd","location":"Cincinnati, OH","description":"Online + Learning | motivation | engagement | online presences | loving husband of + Sinem Toraman Turk \u2764\ufe0f| loving father of @bgmtrk1\u2764\ufe0f | @FulbrightTurkey","url":"https:\/\/t.co\/DmCPHu9r7d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DmCPHu9r7d","expanded_url":"http:\/\/www.ardat.net","display_url":"ardat.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":853,"listed_count":5,"created_at":"Mon + Oct 21 16:29:13 +0000 2019","favourites_count":4396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2544,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186318434964930560\/1653078596","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"0acf1acaf0d62001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0acf1acaf0d62001.json","place_type":"poi","name":"Paradise + Event Center - Westgate Hotel & Casino","full_name":"Paradise Event Center + - Westgate Hotel & Casino","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.15302074946543,36.13441948267438],[-115.15302074946543,36.13441948267438],[-115.15302074946543,36.13441948267438],[-115.15302074946543,36.13441948267438]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 18:50:18 +0000 2019","id":1186716426423259136,"id_str":"1186716426423259136","full_text":"RT + @jeroen69: Paraphrasing Thomas Reeves: If you can\u2019t link your work to + any of these goals, you should probably rethink what you are doing\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jeroen69","name":"Jeroen","id":6848632,"id_str":"6848632","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 16:27:08 +0000 2019","id":1186680396076875776,"id_str":"1186680396076875776","full_text":"Paraphrasing + Thomas Reeves: If you can\u2019t link your work to any of these goals, you + should probably rethink what you are doing. #aect19 #aectinspired https:\/\/t.co\/S4OYny9Oy7","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[{"text":"aect19","indices":[127,134]},{"text":"aectinspired","indices":[135,148]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186680255118884864,"id_str":"1186680255118884864","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","url":"https:\/\/t.co\/S4OYny9Oy7","display_url":"pic.twitter.com\/S4OYny9Oy7","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186680396076875776\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186680255118884864,"id_str":"1186680255118884864","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","url":"https:\/\/t.co\/S4OYny9Oy7","display_url":"pic.twitter.com\/S4OYny9Oy7","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186680396076875776\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:09:57 +0000 2019","id":1186691172292542466,"id_str":"1186691172292542466","full_text":"Some + great snapshots from Systems Thinking and Change speakers aect2 #aect19 #aectstc + Come see us! https:\/\/t.co\/sRz11ltLq9","truncated":false,"display_text_range":[0,122],"entities":{"hashtags":[{"text":"aect19","indices":[69,76]},{"text":"aectstc","indices":[77,85]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/sRz11ltLq9","expanded_url":"https:\/\/www.instagram.com\/p\/B37ahSHjy7T\/?igshid=5rku7vqw40y4","display_url":"instagram.com\/p\/B37ahSHjy7T\/\u2026","indices":[99,122]}]},"source":"\u003ca + href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 17:54:55 +0000 2019","id":1186702489342676993,"id_str":"1186702489342676993","full_text":"Following + up on our panel on #learninganalytics @gsa_aect check out our #MOOC on #educational + #data #analytics here: https:\/\/t.co\/jF8RksFMyg\n\nIf you are interested + in publishing in this field check out our book series and propose your work: + https:\/\/t.co\/VHlUqWSoDh\n#aect19inspired","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"learninganalytics","indices":[29,47]},{"text":"MOOC","indices":[72,77]},{"text":"educational","indices":[81,93]},{"text":"data","indices":[94,99]},{"text":"analytics","indices":[100,110]},{"text":"aect19inspired","indices":[265,280]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[48,57]}],"urls":[{"url":"https:\/\/t.co\/jF8RksFMyg","expanded_url":"http:\/\/tinyurl.com\/yyt9djty","display_url":"tinyurl.com\/yyt9djty","indices":[117,140]},{"url":"https:\/\/t.co\/VHlUqWSoDh","expanded_url":"https:\/\/www.springer.com\/series\/16338","display_url":"springer.com\/series\/16338","indices":[241,264]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45137054,"id_str":"45137054","name":"Dirk + Ifenthaler","screen_name":"ifenthaler","location":"","description":"#learninganalytics","url":"https:\/\/t.co\/nGyfFQyRvo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nGyfFQyRvo","expanded_url":"http:\/\/www.ifenthaler.info","display_url":"ifenthaler.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":895,"friends_count":246,"listed_count":35,"created_at":"Sat + Jun 06 14:19:07 +0000 2009","favourites_count":615,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":878,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 16:42:57 +0000 2019","id":1186684377259864065,"id_str":"1186684377259864065","full_text":"Great + session on a writing revision tool https:\/\/t.co\/r4g8JbOs4M #aect19inspired","truncated":false,"display_text_range":[0,80],"entities":{"hashtags":[{"text":"aect19inspired","indices":[65,80]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/r4g8JbOs4M","expanded_url":"https:\/\/scholarworks.iu.edu\/journals\/index.php\/ijdl\/article\/view\/24118","display_url":"scholarworks.iu.edu\/journals\/index\u2026","indices":[41,64]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":875476274,"id_str":"875476274","name":"Elizabeth + Childs","screen_name":"ChildsElizabeth","location":"Victoria, BC","description":"Professor + & Program Head #RRUMALAT @royalroads","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":596,"friends_count":252,"listed_count":33,"created_at":"Fri + Oct 12 11:54:12 +0000 2012","favourites_count":1631,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1722,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204925361563136000\/f2SMJOBD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204925361563136000\/f2SMJOBD_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1186681889148456960%2C1186681211130961921%2C1186680934029856769%2C1186680396076875776%2C1186678213306535937%2C1186677824741994501%2C1186675707251814400%2C1186674386348044288%2C1186674066041626625%2C1186673782896750592%2C1186673773170151424%2C1186673773170151424%2C1186672048979857410%2C1186671456408596481%2C1186671273415331840%2C1186670435062009857%2C1186670386001268736%2C1186670054219214849%2C1186668846658097152%2C1186668705142300673%2C1186668316061913091%2C1186668284445224965%2C1186667747490484224%2C1186667567739330561%2C1186667212880273408%2C1186666017633656833%2C1186665520415703041%2C1186665036367810560%2C1186664701213720576%2C1186664379300794369%2C1186664257443643394%2C1186664007815573504%2C1186663372042973185%2C1186662464311779328%2C1186662341930344450%2C1186659977781399552%2C1186659269598277633%2C1186658718940848129%2C1186658381123047426%2C1186658296104505349%2C1186658263082786816%2C1186657905270935552%2C1186657791512940544%2C1186657659803426816%2C1186657629633826817%2C1186657585925120001%2C1186657576798183425%2C1186657529826144256%2C1186657483118432257%2C1186657465942757376%2C1186657412775923714%2C1186657412775923714%2C1186656513902800896%2C1186655983994470400%2C1186652162140594177%2C1186649272978030592%2C1186648904030277632%2C1186648647900884993%2C1186643462323499013%2C1186643367674777600%2C1186643049457152001%2C1186642485302431747%2C1186642485302431747%2C1186641933185081346%2C1186641724417798144%2C1186641339519094785%2C1186639632408166400%2C1186639592889274368%2C1186638704703488000%2C1186637042765058053%2C1186636932396339200%2C1186636819695374337%2C1186636663818248193%2C1186636463305195520%2C1186635891592355852%2C1186635559264931841%2C1186635546971394050%2C1186635409704374272%2C1186635108440145921%2C1186634997295398913%2C1186634977829519360%2C1186634952860819462%2C1186634781720604677%2C1186634727211429888%2C1186634664502448129%2C1186634541953216514%2C1186634535171026944%2C1186634531790446594%2C1186634440723726337%2C1186634212188647424%2C1186634010216128513%2C1186633824051941377%2C1186633571261267968%2C1186632157705461761%2C1186632157705461761%2C1186625187900342272%2C1186624493264859139%2C1186624493264859139%2C1186605683338289153%2C1186604383708028928&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:53 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:53 GMT + x-transaction: 77191c4746ea3ec6 + content-length: '41563' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '276' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '337' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Tue Oct 22 14:59:19 +0000 2019","id":1186658296104505349,"id_str":"1186658296104505349","full_text":"RT + @caranorth11: Presentation #1 of 5.\nToday I''m at #aect19 presenting with + an awesome crew including @JenM @roycekimmons & others about an\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19","indices":[52,59]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[102,107]},{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[108,121]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 13:32:34 +0000 2019","id":1186636463305195520,"id_str":"1186636463305195520","full_text":"Presentation + #1 of 5.\nToday I''m at #aect19 presenting with an awesome crew including + @JenM @roycekimmons & others about an evaluation of open education resources. + The eval assessed accessibility & quality of #oer. Our presentation can + be found here: https:\/\/t.co\/VwQ4k9htF8 https:\/\/t.co\/ysuflHymFA","truncated":false,"display_text_range":[0,281],"entities":{"hashtags":[{"text":"aect19","indices":[35,42]},{"text":"oer","indices":[216,220]}],"symbols":[],"user_mentions":[{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[85,90]},{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[91,104]}],"urls":[{"url":"https:\/\/t.co\/VwQ4k9htF8","expanded_url":"http:\/\/bit.ly\/aect19eval","display_url":"bit.ly\/aect19eval","indices":[258,281]}],"media":[{"id":1186636458225831938,"id_str":"1186636458225831938","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","url":"https:\/\/t.co\/ysuflHymFA","display_url":"pic.twitter.com\/ysuflHymFA","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186636463305195520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":317,"resize":"fit"},"large":{"w":1562,"h":728,"resize":"fit"},"medium":{"w":1200,"h":559,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186636458225831938,"id_str":"1186636458225831938","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","url":"https:\/\/t.co\/ysuflHymFA","display_url":"pic.twitter.com\/ysuflHymFA","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186636463305195520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":317,"resize":"fit"},"large":{"w":1562,"h":728,"resize":"fit"},"medium":{"w":1200,"h":559,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":23,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 14:56:47 +0000 2019","id":1186657659803426816,"id_str":"1186657659803426816","full_text":"RT + @DrVirtuality: See you today @aect! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/VaXzXxQqwP","truncated":false,"display_text_range":[0,95],"entities":{"hashtags":[{"text":"AECT19","indices":[48,55]},{"text":"AECT19inspired","indices":[56,71]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[32,37]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[39,47]}],"urls":[],"media":[{"id":1185704785950826496,"id_str":"1185704785950826496","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR4OH8UYAAC7Ek.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR4OH8UYAAC7Ek.jpg","url":"https:\/\/t.co\/VaXzXxQqwP","display_url":"pic.twitter.com\/VaXzXxQqwP","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186639592889274368\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"source_status_id":1186639592889274368,"source_status_id_str":"1186639592889274368","source_user_id":15667548,"source_user_id_str":"15667548"}]},"extended_entities":{"media":[{"id":1185704785950826496,"id_str":"1185704785950826496","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR4OH8UYAAC7Ek.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR4OH8UYAAC7Ek.jpg","url":"https:\/\/t.co\/VaXzXxQqwP","display_url":"pic.twitter.com\/VaXzXxQqwP","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186639592889274368\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"source_status_id":1186639592889274368,"source_status_id_str":"1186639592889274368","source_user_id":15667548,"source_user_id_str":"15667548","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 13:45:00 +0000 2019","id":1186639592889274368,"id_str":"1186639592889274368","full_text":"See + you today @aect! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/VaXzXxQqwP","truncated":false,"display_text_range":[0,53],"entities":{"hashtags":[{"text":"AECT19","indices":[30,37]},{"text":"AECT19inspired","indices":[38,53]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[14,19]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[21,29]}],"urls":[],"media":[{"id":1185704785950826496,"id_str":"1185704785950826496","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR4OH8UYAAC7Ek.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR4OH8UYAAC7Ek.jpg","url":"https:\/\/t.co\/VaXzXxQqwP","display_url":"pic.twitter.com\/VaXzXxQqwP","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186639592889274368\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185704785950826496,"id_str":"1185704785950826496","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR4OH8UYAAC7Ek.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR4OH8UYAAC7Ek.jpg","url":"https:\/\/t.co\/VaXzXxQqwP","display_url":"pic.twitter.com\/VaXzXxQqwP","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186639592889274368\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 15:01:00 +0000 2019","id":1186658718940848129,"id_str":"1186658718940848129","full_text":"Presenting + today Hope to see you there! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/3Mc4nK8k1v","truncated":false,"display_text_range":[0,72],"entities":{"hashtags":[{"text":"AECT19","indices":[49,56]},{"text":"AECT19inspired","indices":[57,72]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[40,48]}],"urls":[],"media":[{"id":1185701080765620224,"id_str":"1185701080765620224","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR02dDU4AABVtZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR02dDU4AABVtZ.jpg","url":"https:\/\/t.co\/3Mc4nK8k1v","display_url":"pic.twitter.com\/3Mc4nK8k1v","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186658718940848129\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185701080765620224,"id_str":"1185701080765620224","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR02dDU4AABVtZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR02dDU4AABVtZ.jpg","url":"https:\/\/t.co\/3Mc4nK8k1v","display_url":"pic.twitter.com\/3Mc4nK8k1v","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186658718940848129\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 16:00:51 +0000 2019","id":1186673782896750592,"id_str":"1186673782896750592","full_text":"The + best kind of instruction is concise, clear and given by ME #aect19","truncated":false,"display_text_range":[0,70],"entities":{"hashtags":[{"text":"aect19","indices":[63,70]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 15:47:21 +0000 2019","id":1186670386001268736,"id_str":"1186670386001268736","full_text":"RT + @hodgesc: Share a link to the @AECTTechTrends article that has inspired your + research or practice. #aect19inspired #aect19 https:\/\/t.co\/\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[102,117]},{"text":"aect19","indices":[118,125]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[33,48]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 14:00:00 +0000 2019","id":1186643367674777600,"id_str":"1186643367674777600","full_text":"Share + a link to the @AECTTechTrends article that has inspired your research or practice. + #aect19inspired #aect19 https:\/\/t.co\/vhcJvdgSTq","truncated":false,"display_text_range":[0,112],"entities":{"hashtags":[{"text":"aect19inspired","indices":[89,104]},{"text":"aect19","indices":[105,112]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[20,35]}],"urls":[],"media":[{"id":1185596558705856513,"id_str":"1185596558705856513","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","url":"https:\/\/t.co\/vhcJvdgSTq","display_url":"pic.twitter.com\/vhcJvdgSTq","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1186643367674777600\/photo\/1","type":"photo","sizes":{"medium":{"w":316,"h":416,"resize":"fit"},"large":{"w":316,"h":416,"resize":"fit"},"small":{"w":316,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1185596558705856513,"id_str":"1185596558705856513","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","url":"https:\/\/t.co\/vhcJvdgSTq","display_url":"pic.twitter.com\/vhcJvdgSTq","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1186643367674777600\/photo\/1","type":"photo","sizes":{"medium":{"w":316,"h":416,"resize":"fit"},"large":{"w":316,"h":416,"resize":"fit"},"small":{"w":316,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 14:00:00 +0000 2019","id":1186643367674777600,"id_str":"1186643367674777600","full_text":"Share + a link to the @AECTTechTrends article that has inspired your research or practice. + #aect19inspired #aect19 https:\/\/t.co\/vhcJvdgSTq","truncated":false,"display_text_range":[0,112],"entities":{"hashtags":[{"text":"aect19inspired","indices":[89,104]},{"text":"aect19","indices":[105,112]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[20,35]}],"urls":[],"media":[{"id":1185596558705856513,"id_str":"1185596558705856513","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","url":"https:\/\/t.co\/vhcJvdgSTq","display_url":"pic.twitter.com\/vhcJvdgSTq","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1186643367674777600\/photo\/1","type":"photo","sizes":{"medium":{"w":316,"h":416,"resize":"fit"},"large":{"w":316,"h":416,"resize":"fit"},"small":{"w":316,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1185596558705856513,"id_str":"1185596558705856513","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","url":"https:\/\/t.co\/vhcJvdgSTq","display_url":"pic.twitter.com\/vhcJvdgSTq","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1186643367674777600\/photo\/1","type":"photo","sizes":{"medium":{"w":316,"h":416,"resize":"fit"},"large":{"w":316,"h":416,"resize":"fit"},"small":{"w":316,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 14:56:01 +0000 2019","id":1186657465942757376,"id_str":"1186657465942757376","full_text":"RT + @MuratTurkOU: #aect19 #aect19inspired #aect Come to Conference Room 4 for + a conversation with Dr. Xun Ge, AECT President-Elect. Hey Firs\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[17,24]},{"text":"aect19inspired","indices":[25,40]},{"text":"aect","indices":[41,46]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 14:50:08 +0000 2019","id":1186655983994470400,"id_str":"1186655983994470400","full_text":"#aect19 + #aect19inspired #aect Come to Conference Room 4 for a conversation with Dr. + Xun Ge, AECT President-Elect. Hey First-timers, we want to see you here too! + See you soon! @AECT @gsa_aect https:\/\/t.co\/RPP9nVdrrf","truncated":false,"display_text_range":[0,190],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]},{"text":"aect19inspired","indices":[8,23]},{"text":"aect","indices":[24,29]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[175,180]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[181,190]}],"urls":[],"media":[{"id":1186655978952908802,"id_str":"1186655978952908802","indices":[191,214],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfZU2AU4AIVgFS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfZU2AU4AIVgFS.jpg","url":"https:\/\/t.co\/RPP9nVdrrf","display_url":"pic.twitter.com\/RPP9nVdrrf","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1186655983994470400\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186655978952908802,"id_str":"1186655978952908802","indices":[191,214],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfZU2AU4AIVgFS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfZU2AU4AIVgFS.jpg","url":"https:\/\/t.co\/RPP9nVdrrf","display_url":"pic.twitter.com\/RPP9nVdrrf","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1186655983994470400\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186318434964930560,"id_str":"1186318434964930560","name":"Murat + Turk, Ph.D.","screen_name":"MuratTurkEd","location":"Cincinnati, OH","description":"Online + Learning | motivation | engagement | online presences | loving husband of + Sinem Toraman Turk \u2764\ufe0f| loving father of @bgmtrk1\u2764\ufe0f | @FulbrightTurkey","url":"https:\/\/t.co\/DmCPHu9r7d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DmCPHu9r7d","expanded_url":"http:\/\/www.ardat.net","display_url":"ardat.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":853,"listed_count":5,"created_at":"Mon + Oct 21 16:29:13 +0000 2019","favourites_count":4396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2544,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186318434964930560\/1653078596","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 13:41:28 +0000 2019","id":1186638704703488000,"id_str":"1186638704703488000","full_text":"RT + @caranorth11: Presentation #1 of 5.\nToday I''m at #aect19 presenting with + an awesome crew including @JenM @roycekimmons & others about an\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19","indices":[52,59]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[102,107]},{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[108,121]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 13:32:34 +0000 2019","id":1186636463305195520,"id_str":"1186636463305195520","full_text":"Presentation + #1 of 5.\nToday I''m at #aect19 presenting with an awesome crew including + @JenM @roycekimmons & others about an evaluation of open education resources. + The eval assessed accessibility & quality of #oer. Our presentation can + be found here: https:\/\/t.co\/VwQ4k9htF8 https:\/\/t.co\/ysuflHymFA","truncated":false,"display_text_range":[0,281],"entities":{"hashtags":[{"text":"aect19","indices":[35,42]},{"text":"oer","indices":[216,220]}],"symbols":[],"user_mentions":[{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[85,90]},{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[91,104]}],"urls":[{"url":"https:\/\/t.co\/VwQ4k9htF8","expanded_url":"http:\/\/bit.ly\/aect19eval","display_url":"bit.ly\/aect19eval","indices":[258,281]}],"media":[{"id":1186636458225831938,"id_str":"1186636458225831938","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","url":"https:\/\/t.co\/ysuflHymFA","display_url":"pic.twitter.com\/ysuflHymFA","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186636463305195520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":317,"resize":"fit"},"large":{"w":1562,"h":728,"resize":"fit"},"medium":{"w":1200,"h":559,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186636458225831938,"id_str":"1186636458225831938","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","url":"https:\/\/t.co\/ysuflHymFA","display_url":"pic.twitter.com\/ysuflHymFA","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186636463305195520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":317,"resize":"fit"},"large":{"w":1562,"h":728,"resize":"fit"},"medium":{"w":1200,"h":559,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":23,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 15:26:06 +0000 2019","id":1186665036367810560,"id_str":"1186665036367810560","full_text":"RT + @nicolapallitt: Enjoying the workshop on course design using first principles + with David Merrill at #aect19inspired #AECT2019 @AECT http\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[103,118]},{"text":"AECT2019","indices":[119,128]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[129,134]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 17:32:31 +0000 2019","id":1186334463476649984,"id_str":"1186334463476649984","full_text":"Enjoying + the workshop on course design using first principles with David Merrill at + #aect19inspired #AECT2019 @AECT https:\/\/t.co\/5mGeZCqOVh","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect19inspired","indices":[84,99]},{"text":"AECT2019","indices":[100,109]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[110,115]}],"urls":[],"media":[{"id":1186334431046324224,"id_str":"1186334431046324224","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa04StU0AA7bna.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa04StU0AA7bna.jpg","url":"https:\/\/t.co\/5mGeZCqOVh","display_url":"pic.twitter.com\/5mGeZCqOVh","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186334463476649984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186334431046324224,"id_str":"1186334431046324224","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa04StU0AA7bna.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa04StU0AA7bna.jpg","url":"https:\/\/t.co\/5mGeZCqOVh","display_url":"pic.twitter.com\/5mGeZCqOVh","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186334463476649984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 15:36:10 +0000 2019","id":1186667567739330561,"id_str":"1186667567739330561","full_text":"With + one of my favorite people, @profoyarzun #aect19 https:\/\/t.co\/eeoUsKclVK","truncated":false,"display_text_range":[0,52],"entities":{"hashtags":[{"text":"aect19","indices":[45,52]}],"symbols":[],"user_mentions":[{"screen_name":"profoyarzun","name":"Beth + Oyarzun","id":19023356,"id_str":"19023356","indices":[32,44]}],"urls":[],"media":[{"id":1186667561242357763,"id_str":"1186667561242357763","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfj3BZUcAMhw6B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfj3BZUcAMhw6B.jpg","url":"https:\/\/t.co\/eeoUsKclVK","display_url":"pic.twitter.com\/eeoUsKclVK","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186667567739330561\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":511,"h":680,"resize":"fit"},"medium":{"w":901,"h":1200,"resize":"fit"},"large":{"w":1538,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186667561242357763,"id_str":"1186667561242357763","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfj3BZUcAMhw6B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfj3BZUcAMhw6B.jpg","url":"https:\/\/t.co\/eeoUsKclVK","display_url":"pic.twitter.com\/eeoUsKclVK","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186667567739330561\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":511,"h":680,"resize":"fit"},"medium":{"w":901,"h":1200,"resize":"fit"},"large":{"w":1538,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 15:53:58 +0000 2019","id":1186672048979857410,"id_str":"1186672048979857410","full_text":"RT + @WilsonInEdu: If these aren\u2019t conference attire in Vegas, then I don\u2019t + know what is. Sometimes you have to bring some color into the wor\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WilsonInEdu","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","id":489118534,"id_str":"489118534","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 13:51:56 +0000 2019","id":1186641339519094785,"id_str":"1186641339519094785","full_text":"If + these aren\u2019t conference attire in Vegas, then I don\u2019t know what + is. Sometimes you have to bring some color into the world. #aect19 #aect19inspired + #ksuitec https:\/\/t.co\/qtgJjxA247","truncated":false,"display_text_range":[0,158],"entities":{"hashtags":[{"text":"aect19","indices":[126,133]},{"text":"aect19inspired","indices":[134,149]},{"text":"ksuitec","indices":[150,158]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186641330681696256,"id_str":"1186641330681696256","indices":[159,182],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfMAM8UUAA5SF3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfMAM8UUAA5SF3.jpg","url":"https:\/\/t.co\/qtgJjxA247","display_url":"pic.twitter.com\/qtgJjxA247","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1186641339519094785\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186641330681696256,"id_str":"1186641330681696256","indices":[159,182],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfMAM8UUAA5SF3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfMAM8UUAA5SF3.jpg","url":"https:\/\/t.co\/qtgJjxA247","display_url":"pic.twitter.com\/qtgJjxA247","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1186641339519094785\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 15:46:02 +0000 2019","id":1186670054219214849,"id_str":"1186670054219214849","full_text":"#aect19 + Tip #16 - When you attend a presentation, remember to always ask a question + that has nothing to do with the presentation content, but that shares your + own favorite research topic.","truncated":false,"display_text_range":[0,187],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 13:26:34 +0000 2019","id":1186634952860819462,"id_str":"1186634952860819462","full_text":"RT + @ISLT_FSU: #SocialMedia and #Undergraduates: Use and Opportunities Across + Student Life. Come join #FSU #FSUCOE #ISLT @vdennen @LaurenBag\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"SocialMedia","indices":[14,26]},{"text":"Undergraduates","indices":[31,46]},{"text":"FSU","indices":[101,105]},{"text":"FSUCOE","indices":[106,113]},{"text":"ISLT","indices":[114,119]}],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]},{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[120,128]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 11:30:15 +0000 2019","id":1186605683338289153,"id_str":"1186605683338289153","full_text":"#SocialMedia + and #Undergraduates: Use and Opportunities Across Student Life. Come join + #FSU #FSUCOE #ISLT @vdennen @LaurenBagdy @hajeen2040 Demetrius Rice, & + @Ginny7s, for session 045 on Tuesday, 8:00 am - 8:50 am at Convention Center + - Ballroom B. #AECT19 #AECT2019 #SocialMedia","truncated":false,"display_text_range":[0,283],"entities":{"hashtags":[{"text":"SocialMedia","indices":[0,12]},{"text":"Undergraduates","indices":[17,32]},{"text":"FSU","indices":[87,91]},{"text":"FSUCOE","indices":[92,99]},{"text":"ISLT","indices":[100,105]},{"text":"AECT19","indices":[253,260]},{"text":"AECT2019","indices":[261,270]},{"text":"SocialMedia","indices":[271,283]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[106,114]},{"screen_name":"LaurenBagdy","name":"Lauren + Bagdy","id":22214646,"id_str":"22214646","indices":[115,127]},{"screen_name":"Ginny7s","name":"Dr. + Ginny L. Smith","id":880789090010050560,"id_str":"880789090010050560","indices":[162,170]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 14:56:40 +0000 2019","id":1186657629633826817,"id_str":"1186657629633826817","full_text":"RT + @pazureka: Did you know @AECT has a new Division? Stop by our table to talk + w\/ folks from the new Learner Engagement Division at the Kic\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[3,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 13:54:18 +0000 2019","id":1186641933185081346,"id_str":"1186641933185081346","full_text":"Did + you know @AECT has a new Division? Stop by our table to talk w\/ folks from + the new Learner Engagement Division at the Kickoff event, 11AM today in Paradise + North! We are focused on promoting engagement through innovative teaching, + research, and design. @LearnEngage #aect19","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"aect19","indices":[270,277]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[13,18]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[257,269]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 13:28:22 +0000 2019","id":1186635409704374272,"id_str":"1186635409704374272","full_text":"RT + @dctrcurry: #aect19inspired \n\n@michaelmgrant @AECT https:\/\/t.co\/Wv9V8YKOfL","truncated":false,"display_text_range":[0,77],"entities":{"hashtags":[{"text":"aect19inspired","indices":[15,30]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[3,13]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[33,47]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[48,53]}],"urls":[],"media":[{"id":1186634975375847424,"id_str":"1186634975375847424","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfGORlU8AAoWiw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfGORlU8AAoWiw.jpg","url":"https:\/\/t.co\/Wv9V8YKOfL","display_url":"pic.twitter.com\/Wv9V8YKOfL","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1186634977829519360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":360,"resize":"fit"},"large":{"w":480,"h":360,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"}},"source_status_id":1186634977829519360,"source_status_id_str":"1186634977829519360","source_user_id":14116271,"source_user_id_str":"14116271"}]},"extended_entities":{"media":[{"id":1186634975375847424,"id_str":"1186634975375847424","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfGORlU8AAoWiw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfGORlU8AAoWiw.jpg","url":"https:\/\/t.co\/Wv9V8YKOfL","display_url":"pic.twitter.com\/Wv9V8YKOfL","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1186634977829519360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":360,"resize":"fit"},"large":{"w":480,"h":360,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"}},"source_status_id":1186634977829519360,"source_status_id_str":"1186634977829519360","source_user_id":14116271,"source_user_id_str":"14116271","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 13:26:39 +0000 2019","id":1186634977829519360,"id_str":"1186634977829519360","full_text":"#aect19inspired + \n\n@michaelmgrant @AECT https:\/\/t.co\/Wv9V8YKOfL","truncated":false,"display_text_range":[0,38],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[18,32]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[33,38]}],"urls":[],"media":[{"id":1186634975375847424,"id_str":"1186634975375847424","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfGORlU8AAoWiw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfGORlU8AAoWiw.jpg","url":"https:\/\/t.co\/Wv9V8YKOfL","display_url":"pic.twitter.com\/Wv9V8YKOfL","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1186634977829519360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":360,"resize":"fit"},"large":{"w":480,"h":360,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186634975375847424,"id_str":"1186634975375847424","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfGORlU8AAoWiw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfGORlU8AAoWiw.jpg","url":"https:\/\/t.co\/Wv9V8YKOfL","display_url":"pic.twitter.com\/Wv9V8YKOfL","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1186634977829519360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":360,"resize":"fit"},"large":{"w":480,"h":360,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Tue + Oct 22 13:26:39 +0000 2019","id":1186634977829519360,"id_str":"1186634977829519360","full_text":"#aect19inspired + \n\n@michaelmgrant @AECT https:\/\/t.co\/Wv9V8YKOfL","truncated":false,"display_text_range":[0,38],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[18,32]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[33,38]}],"urls":[],"media":[{"id":1186634975375847424,"id_str":"1186634975375847424","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfGORlU8AAoWiw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfGORlU8AAoWiw.jpg","url":"https:\/\/t.co\/Wv9V8YKOfL","display_url":"pic.twitter.com\/Wv9V8YKOfL","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1186634977829519360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":360,"resize":"fit"},"large":{"w":480,"h":360,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186634975375847424,"id_str":"1186634975375847424","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfGORlU8AAoWiw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfGORlU8AAoWiw.jpg","url":"https:\/\/t.co\/Wv9V8YKOfL","display_url":"pic.twitter.com\/Wv9V8YKOfL","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1186634977829519360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":360,"resize":"fit"},"large":{"w":480,"h":360,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Tue + Oct 22 16:30:22 +0000 2019","id":1186681211130961921,"id_str":"1186681211130961921","full_text":"A + Case Study of Peer Assessment of an Ill-Structured Group Task in an Information + Technology Course. Come join #FSU #FSUCOE #ISLT Jiyae Bong for session 086 + on Tuesday, 1 pm - 1:50 pm at Convention Center - Pavilion 11. #AECT19 #AECT2019 + #EdTech #PeerAssessment","truncated":false,"display_text_range":[0,262],"entities":{"hashtags":[{"text":"FSU","indices":[111,115]},{"text":"FSUCOE","indices":[116,123]},{"text":"ISLT","indices":[124,129]},{"text":"AECT19","indices":[221,228]},{"text":"AECT2019","indices":[229,238]},{"text":"EdTech","indices":[239,246]},{"text":"PeerAssessment","indices":[247,262]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 15:22:01 +0000 2019","id":1186664007815573504,"id_str":"1186664007815573504","full_text":"RT + @nicolapallitt: Very timely workshop on evaluating online course designs by + @camille_dd with great takeaways - and Tam Tams:) #aect19ins\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"camille_dd","name":"Camille + Dickson-Deane","id":398945750,"id_str":"398945750","indices":[79,90]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 23:05:08 +0000 2019","id":1186418166357868545,"id_str":"1186418166357868545","full_text":"Very + timely workshop on evaluating online course designs by @camille_dd with great + takeaways - and Tam Tams:) #aect19inspired @AECT @aectclt https:\/\/t.co\/ix2TB6lykw","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[110,125]}],"symbols":[],"user_mentions":[{"screen_name":"camille_dd","name":"Camille + Dickson-Deane","id":398945750,"id_str":"398945750","indices":[60,71]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[126,131]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[132,140]}],"urls":[],"media":[{"id":1186418127996772352,"id_str":"1186418127996772352","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBAGJU4AAckBn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBAGJU4AAckBn.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186418127996772352,"id_str":"1186418127996772352","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBAGJU4AAckBn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBAGJU4AAckBn.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null},{"id":1186418135596814337,"id_str":"1186418135596814337","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBAidUUAEH31C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBAidUUAEH31C.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186418148590776321,"id_str":"1186418148590776321","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBBS3UcAEBsFr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBBS3UcAEBsFr.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186418159063977984,"id_str":"1186418159063977984","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBB54U0AAae8b.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBB54U0AAae8b.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 13:28:58 +0000 2019","id":1186635559264931841,"id_str":"1186635559264931841","full_text":"Good + morning, AECT! Highlights for today include 5 workshops, 9 Inspire! Sessions, + the Convention Kickoff at 11am, and the Gallery Walk with Poster sessions + and D&D Showcase at 4pm. #aect19inspired\nhttps:\/\/t.co\/HLbut93Hvc https:\/\/t.co\/62T4lvmn0M","truncated":false,"display_text_range":[0,225],"entities":{"hashtags":[{"text":"aect19inspired","indices":[186,201]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HLbut93Hvc","expanded_url":"http:\/\/bit.ly\/AECT19program","display_url":"bit.ly\/AECT19program","indices":[202,225]}],"media":[{"id":1186635555485806595,"id_str":"1186635555485806595","indices":[226,249],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfGwCqUcAMP2T7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfGwCqUcAMP2T7.jpg","url":"https:\/\/t.co\/62T4lvmn0M","display_url":"pic.twitter.com\/62T4lvmn0M","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186635559264931841\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":996,"h":664,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":996,"h":664,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186635555485806595,"id_str":"1186635555485806595","indices":[226,249],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfGwCqUcAMP2T7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfGwCqUcAMP2T7.jpg","url":"https:\/\/t.co\/62T4lvmn0M","display_url":"pic.twitter.com\/62T4lvmn0M","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186635559264931841\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":996,"h":664,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":996,"h":664,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 15:39:08 +0000 2019","id":1186668316061913091,"id_str":"1186668316061913091","full_text":"RT + @michaelmgrant: First-timers in the house!! And the house is full! #aect19inspired + https:\/\/t.co\/qJACrgbrLe","truncated":false,"display_text_range":[0,109],"entities":{"hashtags":[{"text":"aect19inspired","indices":[70,85]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[3,17]}],"urls":[],"media":[{"id":1186421469879758848,"id_str":"1186421469879758848","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcECnoUcAAanHP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcECnoUcAAanHP.jpg","url":"https:\/\/t.co\/qJACrgbrLe","display_url":"pic.twitter.com\/qJACrgbrLe","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186421477584752640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1186421477584752640,"source_status_id_str":"1186421477584752640","source_user_id":132653457,"source_user_id_str":"132653457"}]},"extended_entities":{"media":[{"id":1186421469879758848,"id_str":"1186421469879758848","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcECnoUcAAanHP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcECnoUcAAanHP.jpg","url":"https:\/\/t.co\/qJACrgbrLe","display_url":"pic.twitter.com\/qJACrgbrLe","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186421477584752640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1186421477584752640,"source_status_id_str":"1186421477584752640","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null},{"id":1186421469900730371,"id_str":"1186421469900730371","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcECntUcAMa-vI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcECntUcAMa-vI.jpg","url":"https:\/\/t.co\/qJACrgbrLe","display_url":"pic.twitter.com\/qJACrgbrLe","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186421477584752640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1186421477584752640,"source_status_id_str":"1186421477584752640","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37890447,"id_str":"37890447","name":"M. + D. Rogers","screen_name":"MDRogers360","location":"","description":"Michelle + is my name and innovation and creativity is my game. A feed about this and + that, ed tech, work, writing, and more.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":500,"friends_count":571,"listed_count":34,"created_at":"Tue + May 05 09:21:16 +0000 2009","favourites_count":58,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1132,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1216550885385482240\/_KpnmYjr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216550885385482240\/_KpnmYjr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37890447\/1400079389","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 23:18:17 +0000 2019","id":1186421477584752640,"id_str":"1186421477584752640","full_text":"First-timers + in the house!! And the house is full! #aect19inspired https:\/\/t.co\/qJACrgbrLe","truncated":false,"display_text_range":[0,66],"entities":{"hashtags":[{"text":"aect19inspired","indices":[51,66]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186421469879758848,"id_str":"1186421469879758848","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcECnoUcAAanHP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcECnoUcAAanHP.jpg","url":"https:\/\/t.co\/qJACrgbrLe","display_url":"pic.twitter.com\/qJACrgbrLe","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186421477584752640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186421469879758848,"id_str":"1186421469879758848","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcECnoUcAAanHP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcECnoUcAAanHP.jpg","url":"https:\/\/t.co\/qJACrgbrLe","display_url":"pic.twitter.com\/qJACrgbrLe","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186421477584752640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1186421469900730371,"id_str":"1186421469900730371","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcECntUcAMa-vI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcECntUcAMa-vI.jpg","url":"https:\/\/t.co\/qJACrgbrLe","display_url":"pic.twitter.com\/qJACrgbrLe","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186421477584752640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 16:03:15 +0000 2019","id":1186674386348044288,"id_str":"1186674386348044288","full_text":"We\u2019re + getting the party started at #AECT19. The balloons have arrived! #aect19inspired + https:\/\/t.co\/2Smw8rxuNs","truncated":false,"display_text_range":[0,86],"entities":{"hashtags":[{"text":"AECT19","indices":[35,42]},{"text":"aect19inspired","indices":[71,86]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186674281846988800,"id_str":"1186674281846988800","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186674281846988800\/pu\/img\/ppqLeCwZKW5vsFxZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186674281846988800\/pu\/img\/ppqLeCwZKW5vsFxZ.jpg","url":"https:\/\/t.co\/2Smw8rxuNs","display_url":"pic.twitter.com\/2Smw8rxuNs","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186674386348044288\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186674281846988800,"id_str":"1186674281846988800","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186674281846988800\/pu\/img\/ppqLeCwZKW5vsFxZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186674281846988800\/pu\/img\/ppqLeCwZKW5vsFxZ.jpg","url":"https:\/\/t.co\/2Smw8rxuNs","display_url":"pic.twitter.com\/2Smw8rxuNs","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186674386348044288\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":25447,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186674281846988800\/pu\/vid\/1280x720\/dR5fSuEsIwrOzeAw.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186674281846988800\/pu\/pl\/db248Js9fMcF3eYu.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186674281846988800\/pu\/vid\/480x270\/2mbTjK1vMpcdCg6n.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186674281846988800\/pu\/vid\/640x360\/3fpK7b4-6S4koiWM.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 16:00:49 +0000 2019","id":1186673773170151424,"id_str":"1186673773170151424","full_text":"Go + check out @Stephsteph83 presenting Strategies Used by Instructional Coaches + Working with K-12 Students and Teachers on Maker Education for @KSUITEC @KSUBCOE + @kennesawstate and @YiJin39 #KSUITEC #aect19inspired #aect19 https:\/\/t.co\/86TEXCVldZ","truncated":false,"display_text_range":[0,222],"entities":{"hashtags":[{"text":"KSUITEC","indices":[190,198]},{"text":"aect19inspired","indices":[199,214]},{"text":"aect19","indices":[215,222]}],"symbols":[],"user_mentions":[{"screen_name":"Stephsteph83","name":"Dr. + Stephanee Stephens","id":427060068,"id_str":"427060068","indices":[13,26]},{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[144,152]},{"screen_name":"kennesawstate","name":"Kennesaw + State","id":54637018,"id_str":"54637018","indices":[162,176]},{"screen_name":"YiJin39","name":"Yi + Jin","id":944529984,"id_str":"944529984","indices":[181,189]}],"urls":[],"media":[{"id":1186673752857137152,"id_str":"1186673752857137152","indices":[223,246],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfpfa9UUAARbIY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfpfa9UUAARbIY.jpg","url":"https:\/\/t.co\/86TEXCVldZ","display_url":"pic.twitter.com\/86TEXCVldZ","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1186673773170151424\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186673752857137152,"id_str":"1186673752857137152","indices":[223,246],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfpfa9UUAARbIY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfpfa9UUAARbIY.jpg","url":"https:\/\/t.co\/86TEXCVldZ","display_url":"pic.twitter.com\/86TEXCVldZ","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1186673773170151424\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 13:30:17 +0000 2019","id":1186635891592355852,"id_str":"1186635891592355852","full_text":"Faculty-librarian + Partnerships for Adopting and Developing OERs: a Multiple-case Study. Come + join #FSU #FSUCOE #ISLT @vdennen Yao & Zhongrui, for session 077 on Tuesday, + 10 am - 10:50 am at Convention Center - Conference Room 7. #AECT19 #AECT2019 + #OER #Librarian","truncated":false,"display_text_range":[0,266],"entities":{"hashtags":[{"text":"FSU","indices":[98,102]},{"text":"FSUCOE","indices":[103,110]},{"text":"ISLT","indices":[111,116]},{"text":"AECT19","indices":[233,240]},{"text":"AECT2019","indices":[241,250]},{"text":"OER","indices":[251,255]},{"text":"Librarian","indices":[256,266]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[117,125]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 15:30:00 +0000 2019","id":1186666017633656833,"id_str":"1186666017633656833","full_text":"Does + video matter in a flipped classroom? Explore this question and more in the + Video-Based Instruction session at #AECT19 at 9am in Conf Room 8 this morning! + https:\/\/t.co\/yQt14wA6x3","truncated":false,"display_text_range":[0,158],"entities":{"hashtags":[{"text":"AECT19","indices":[115,122]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186653548139798530,"id_str":"1186653548139798530","indices":[159,182],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfXHWhUYAITPJw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfXHWhUYAITPJw.jpg","url":"https:\/\/t.co\/yQt14wA6x3","display_url":"pic.twitter.com\/yQt14wA6x3","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1186666017633656833\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1920,"h":1280,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186653548139798530,"id_str":"1186653548139798530","indices":[159,182],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfXHWhUYAITPJw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfXHWhUYAITPJw.jpg","url":"https:\/\/t.co\/yQt14wA6x3","display_url":"pic.twitter.com\/yQt14wA6x3","expanded_url":"https:\/\/twitter.com\/LearnEngage\/status\/1186666017633656833\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1920,"h":1280,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 15:19:29 +0000 2019","id":1186663372042973185,"id_str":"1186663372042973185","full_text":"RT + @robmoore3: Come see our #aect19 session Tuesday at 9 am! https:\/\/t.co\/W97VdgjjOz","truncated":false,"display_text_range":[0,84],"entities":{"hashtags":[{"text":"aect19","indices":[28,35]}],"symbols":[],"user_mentions":[{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[3,13]}],"urls":[{"url":"https:\/\/t.co\/W97VdgjjOz","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477","display_url":"twitter.com\/robmoore3\/stat\u2026","indices":[61,84]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 11:35:11 +0000 2019","id":1185519759967821824,"id_str":"1185519759967821824","full_text":"Come + see our #aect19 session Tuesday at 9 am! https:\/\/t.co\/W97VdgjjOz","truncated":false,"display_text_range":[0,45],"entities":{"hashtags":[{"text":"aect19","indices":[13,20]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/W97VdgjjOz","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477","display_url":"twitter.com\/robmoore3\/stat\u2026","indices":[46,69]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1122991739692777477,"quoted_status_id_str":"1122991739692777477","quoted_status_permalink":{"url":"https:\/\/t.co\/W97VdgjjOz","expanded":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477","display":"twitter.com\/robmoore3\/stat\u2026"},"quoted_status":{"created_at":"Mon + Apr 29 22:31:09 +0000 2019","id":1122991739692777477,"id_str":"1122991739692777477","full_text":"Chuang + Wang (@uncc_coed) and I will be presenting @AECT the results of our latent + profile analysis of a HarvardX course to identify the motivational factors + that influence #MOOC completion #aect19 #aect19inspired https:\/\/t.co\/ax3rdGkoiz","truncated":false,"display_text_range":[0,212],"entities":{"hashtags":[{"text":"MOOC","indices":[172,177]},{"text":"aect19","indices":[189,196]},{"text":"aect19inspired","indices":[197,212]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[50,55]}],"urls":[],"media":[{"id":1122990385578557443,"id_str":"1122990385578557443","indices":[213,236],"media_url":"http:\/\/pbs.twimg.com\/media\/D5WpzkqWwAMQ1Iw.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/D5WpzkqWwAMQ1Iw.png","url":"https:\/\/t.co\/ax3rdGkoiz","display_url":"pic.twitter.com\/ax3rdGkoiz","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1122990385578557443,"id_str":"1122990385578557443","indices":[213,236],"media_url":"http:\/\/pbs.twimg.com\/media\/D5WpzkqWwAMQ1Iw.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/D5WpzkqWwAMQ1Iw.png","url":"https:\/\/t.co\/ax3rdGkoiz","display_url":"pic.twitter.com\/ax3rdGkoiz","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1122991739692777477,"quoted_status_id_str":"1122991739692777477","quoted_status_permalink":{"url":"https:\/\/t.co\/W97VdgjjOz","expanded":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477","display":"twitter.com\/robmoore3\/stat\u2026"},"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 16:08:30 +0000 2019","id":1186675707251814400,"id_str":"1186675707251814400","full_text":"D&D: + Improving Performance Through Formative Design and Gamification... Dungeons + and Dragons for learning? I must be in the right place. #aect19 #aect19inspired","truncated":false,"display_text_range":[0,164],"entities":{"hashtags":[{"text":"aect19","indices":[141,148]},{"text":"aect19inspired","indices":[149,164]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 15:50:53 +0000 2019","id":1186671273415331840,"id_str":"1186671273415331840","full_text":"RT + @hodgesc: Share a link to the @AECTTechTrends article that has inspired your + research or practice. #aect19inspired #aect19 https:\/\/t.co\/\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[102,117]},{"text":"aect19","indices":[118,125]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[33,48]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237053180,"id_str":"237053180","name":"Yu-Chang + Hsu","screen_name":"HsuBSU","location":"","description":"Professor, Boise + State University","url":"https:\/\/t.co\/hyvWHDFMCC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hyvWHDFMCC","expanded_url":"https:\/\/yuchanghsu.wixsite.com\/portfolio","display_url":"yuchanghsu.wixsite.com\/portfolio","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":405,"listed_count":0,"created_at":"Tue + Jan 11 23:53:22 +0000 2011","favourites_count":1093,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":432,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213226927\/HSU_Headshot_new_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213226927\/HSU_Headshot_new_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 14:00:00 +0000 2019","id":1186643367674777600,"id_str":"1186643367674777600","full_text":"Share + a link to the @AECTTechTrends article that has inspired your research or practice. + #aect19inspired #aect19 https:\/\/t.co\/vhcJvdgSTq","truncated":false,"display_text_range":[0,112],"entities":{"hashtags":[{"text":"aect19inspired","indices":[89,104]},{"text":"aect19","indices":[105,112]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[20,35]}],"urls":[],"media":[{"id":1185596558705856513,"id_str":"1185596558705856513","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","url":"https:\/\/t.co\/vhcJvdgSTq","display_url":"pic.twitter.com\/vhcJvdgSTq","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1186643367674777600\/photo\/1","type":"photo","sizes":{"medium":{"w":316,"h":416,"resize":"fit"},"large":{"w":316,"h":416,"resize":"fit"},"small":{"w":316,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1185596558705856513,"id_str":"1185596558705856513","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","url":"https:\/\/t.co\/vhcJvdgSTq","display_url":"pic.twitter.com\/vhcJvdgSTq","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1186643367674777600\/photo\/1","type":"photo","sizes":{"medium":{"w":316,"h":416,"resize":"fit"},"large":{"w":316,"h":416,"resize":"fit"},"small":{"w":316,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 16:27:08 +0000 2019","id":1186680396076875776,"id_str":"1186680396076875776","full_text":"Paraphrasing + Thomas Reeves: If you can\u2019t link your work to any of these goals, you + should probably rethink what you are doing. #aect19 #aectinspired https:\/\/t.co\/S4OYny9Oy7","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[{"text":"aect19","indices":[127,134]},{"text":"aectinspired","indices":[135,148]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186680255118884864,"id_str":"1186680255118884864","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","url":"https:\/\/t.co\/S4OYny9Oy7","display_url":"pic.twitter.com\/S4OYny9Oy7","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186680396076875776\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186680255118884864,"id_str":"1186680255118884864","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfvZ5xUwAA-9ls.jpg","url":"https:\/\/t.co\/S4OYny9Oy7","display_url":"pic.twitter.com\/S4OYny9Oy7","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186680396076875776\/photo\/1","type":"photo","sizes":{"medium":{"w":1024,"h":768,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":20,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 15:15:53 +0000 2019","id":1186662464311779328,"id_str":"1186662464311779328","full_text":"Vegas + here I come! I\u2019m ready to be inspired at #aect19. Come find me at one + of the sessions I\u2019m presenting tomorrow. \n1. #Accessibility Design Slam + Workshop\n2. GSA Designing for Accessibility Panel\n3. E\/merge Africa Collaboration\n4. + Birds of a Feather #UDL Session https:\/\/t.co\/Cuwrz8CuDu","truncated":false,"display_text_range":[0,264],"entities":{"hashtags":[{"text":"aect19","indices":[47,54]},{"text":"Accessibility","indices":[121,135]},{"text":"UDL","indices":[252,256]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186662458007707650,"id_str":"1186662458007707650","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHffN-XXYAIKFB2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHffN-XXYAIKFB2.jpg","url":"https:\/\/t.co\/Cuwrz8CuDu","display_url":"pic.twitter.com\/Cuwrz8CuDu","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1186662464311779328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":628,"h":1006,"resize":"fit"},"medium":{"w":628,"h":1006,"resize":"fit"},"small":{"w":424,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186662458007707650,"id_str":"1186662458007707650","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHffN-XXYAIKFB2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHffN-XXYAIKFB2.jpg","url":"https:\/\/t.co\/Cuwrz8CuDu","display_url":"pic.twitter.com\/Cuwrz8CuDu","expanded_url":"https:\/\/twitter.com\/AmyLomellini_ID\/status\/1186662464311779328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":628,"h":1006,"resize":"fit"},"medium":{"w":628,"h":1006,"resize":"fit"},"small":{"w":424,"h":680,"resize":"fit"}},"ext_alt_text":"Schedule + for Wednesday, October 23 showing multiple presentations from 9am to 6pm."}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910574724748644353,"id_str":"910574724748644353","name":"Amy + Lomellini","screen_name":"AmyLomellini_ID","location":"New York, USA","description":"Associate + Director of Blended & Online Learning and doctoral candidate with a passion + for accessible and inclusive online teaching and learning. #EdTech #A11y","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":644,"friends_count":1061,"listed_count":9,"created_at":"Wed + Sep 20 18:41:46 +0000 2017","favourites_count":7378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1141,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910574724748644353\/1551624059","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 13:51:56 +0000 2019","id":1186641339519094785,"id_str":"1186641339519094785","full_text":"If + these aren\u2019t conference attire in Vegas, then I don\u2019t know what + is. Sometimes you have to bring some color into the world. #aect19 #aect19inspired + #ksuitec https:\/\/t.co\/qtgJjxA247","truncated":false,"display_text_range":[0,158],"entities":{"hashtags":[{"text":"aect19","indices":[126,133]},{"text":"aect19inspired","indices":[134,149]},{"text":"ksuitec","indices":[150,158]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186641330681696256,"id_str":"1186641330681696256","indices":[159,182],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfMAM8UUAA5SF3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfMAM8UUAA5SF3.jpg","url":"https:\/\/t.co\/qtgJjxA247","display_url":"pic.twitter.com\/qtgJjxA247","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1186641339519094785\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186641330681696256,"id_str":"1186641330681696256","indices":[159,182],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfMAM8UUAA5SF3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfMAM8UUAA5SF3.jpg","url":"https:\/\/t.co\/qtgJjxA247","display_url":"pic.twitter.com\/qtgJjxA247","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1186641339519094785\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 13:45:00 +0000 2019","id":1186639592889274368,"id_str":"1186639592889274368","full_text":"See + you today @aect! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/VaXzXxQqwP","truncated":false,"display_text_range":[0,53],"entities":{"hashtags":[{"text":"AECT19","indices":[30,37]},{"text":"AECT19inspired","indices":[38,53]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[14,19]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[21,29]}],"urls":[],"media":[{"id":1185704785950826496,"id_str":"1185704785950826496","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR4OH8UYAAC7Ek.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR4OH8UYAAC7Ek.jpg","url":"https:\/\/t.co\/VaXzXxQqwP","display_url":"pic.twitter.com\/VaXzXxQqwP","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186639592889274368\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185704785950826496,"id_str":"1185704785950826496","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR4OH8UYAAC7Ek.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR4OH8UYAAC7Ek.jpg","url":"https:\/\/t.co\/VaXzXxQqwP","display_url":"pic.twitter.com\/VaXzXxQqwP","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186639592889274368\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 13:32:34 +0000 2019","id":1186636463305195520,"id_str":"1186636463305195520","full_text":"Presentation + #1 of 5.\nToday I''m at #aect19 presenting with an awesome crew including + @JenM @roycekimmons & others about an evaluation of open education resources. + The eval assessed accessibility & quality of #oer. Our presentation can + be found here: https:\/\/t.co\/VwQ4k9htF8 https:\/\/t.co\/ysuflHymFA","truncated":false,"display_text_range":[0,281],"entities":{"hashtags":[{"text":"aect19","indices":[35,42]},{"text":"oer","indices":[216,220]}],"symbols":[],"user_mentions":[{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[85,90]},{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[91,104]}],"urls":[{"url":"https:\/\/t.co\/VwQ4k9htF8","expanded_url":"http:\/\/bit.ly\/aect19eval","display_url":"bit.ly\/aect19eval","indices":[258,281]}],"media":[{"id":1186636458225831938,"id_str":"1186636458225831938","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","url":"https:\/\/t.co\/ysuflHymFA","display_url":"pic.twitter.com\/ysuflHymFA","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186636463305195520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":317,"resize":"fit"},"large":{"w":1562,"h":728,"resize":"fit"},"medium":{"w":1200,"h":559,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186636458225831938,"id_str":"1186636458225831938","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","url":"https:\/\/t.co\/ysuflHymFA","display_url":"pic.twitter.com\/ysuflHymFA","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186636463305195520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":317,"resize":"fit"},"large":{"w":1562,"h":728,"resize":"fit"},"medium":{"w":1200,"h":559,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":23,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 14:55:48 +0000 2019","id":1186657412775923714,"id_str":"1186657412775923714","full_text":"RT + @pazureka: Today''s lineup from the Learner Engagement Division. It''s going + to be a great day and we can''t wait to connect with you! #aec\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 13:58:44 +0000 2019","id":1186643049457152001,"id_str":"1186643049457152001","full_text":"Today''s + lineup from the Learner Engagement Division. It''s going to be a great day + and we can''t wait to connect with you! #aect19 @AECT @LearnEngage https:\/\/t.co\/mFQ1MmKYqD","truncated":false,"display_text_range":[0,147],"entities":{"hashtags":[{"text":"aect19","indices":[121,128]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[129,134]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[135,147]}],"urls":[],"media":[{"id":1186643045762002949,"id_str":"1186643045762002949","indices":[148,171],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfNkCHU8AUdlkG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfNkCHU8AUdlkG.jpg","url":"https:\/\/t.co\/mFQ1MmKYqD","display_url":"pic.twitter.com\/mFQ1MmKYqD","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186643049457152001\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":389,"resize":"fit"},"medium":{"w":1175,"h":672,"resize":"fit"},"large":{"w":1175,"h":672,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186643045762002949,"id_str":"1186643045762002949","indices":[148,171],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfNkCHU8AUdlkG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfNkCHU8AUdlkG.jpg","url":"https:\/\/t.co\/mFQ1MmKYqD","display_url":"pic.twitter.com\/mFQ1MmKYqD","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186643049457152001\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":389,"resize":"fit"},"medium":{"w":1175,"h":672,"resize":"fit"},"large":{"w":1175,"h":672,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 13:25:40 +0000 2019","id":1186634727211429888,"id_str":"1186634727211429888","full_text":"RT + @robmoore3: Come to Pavilion 10 to learn about the motivational factors that + influence MOOC completion (Tues, Oct 22, 9am) #aect19 #aect\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[126,133]}],"symbols":[],"user_mentions":[{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 12:45:00 +0000 2019","id":1186624493264859139,"id_str":"1186624493264859139","full_text":"Come + to Pavilion 10 to learn about the motivational factors that influence MOOC + completion (Tues, Oct 22, 9am) #aect19 #aect19inspired https:\/\/t.co\/5MryVUbBed + https:\/\/t.co\/rcRjlDDv6E","truncated":false,"display_text_range":[0,158],"entities":{"hashtags":[{"text":"aect19","indices":[111,118]},{"text":"aect19inspired","indices":[119,134]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5MryVUbBed","expanded_url":"http:\/\/bit.ly\/33D4SAp","display_url":"bit.ly\/33D4SAp","indices":[135,158]}],"media":[{"id":1184450670948245504,"id_str":"1184450670948245504","indices":[159,182],"media_url":"http:\/\/pbs.twimg.com\/media\/EHADnBfX4AAP0Pr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHADnBfX4AAP0Pr.png","url":"https:\/\/t.co\/rcRjlDDv6E","display_url":"pic.twitter.com\/rcRjlDDv6E","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186624493264859139\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":461,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":723,"h":490,"resize":"fit"},"medium":{"w":723,"h":490,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184450670948245504,"id_str":"1184450670948245504","indices":[159,182],"media_url":"http:\/\/pbs.twimg.com\/media\/EHADnBfX4AAP0Pr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHADnBfX4AAP0Pr.png","url":"https:\/\/t.co\/rcRjlDDv6E","display_url":"pic.twitter.com\/rcRjlDDv6E","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186624493264859139\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":461,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":723,"h":490,"resize":"fit"},"medium":{"w":723,"h":490,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 15:23:00 +0000 2019","id":1186664257443643394,"id_str":"1186664257443643394","full_text":"RT + @MuratTurkOU: #aect19 #aect19inspired #aect Come to Conference Room 4 for + a conversation with Dr. Xun Ge, AECT President-Elect. Hey Firs\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[17,24]},{"text":"aect19inspired","indices":[25,40]},{"text":"aect","indices":[41,46]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":7083172,"id_str":"7083172","name":"Johnnie","screen_name":"Johnnie_Jiao","location":"","description":"Learner, + Birder, Trainer, TEDx Speaker, Apple Distinguished Educator, Common Sense + Educator, Professor of EduTech","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":662,"friends_count":792,"listed_count":11,"created_at":"Tue + Jun 26 05:25:30 +0000 2007","favourites_count":11766,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3486,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1492335623394725889\/5MA06-Z2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1492335623394725889\/5MA06-Z2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7083172\/1552464356","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 14:50:08 +0000 2019","id":1186655983994470400,"id_str":"1186655983994470400","full_text":"#aect19 + #aect19inspired #aect Come to Conference Room 4 for a conversation with Dr. + Xun Ge, AECT President-Elect. Hey First-timers, we want to see you here too! + See you soon! @AECT @gsa_aect https:\/\/t.co\/RPP9nVdrrf","truncated":false,"display_text_range":[0,190],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]},{"text":"aect19inspired","indices":[8,23]},{"text":"aect","indices":[24,29]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[175,180]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[181,190]}],"urls":[],"media":[{"id":1186655978952908802,"id_str":"1186655978952908802","indices":[191,214],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfZU2AU4AIVgFS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfZU2AU4AIVgFS.jpg","url":"https:\/\/t.co\/RPP9nVdrrf","display_url":"pic.twitter.com\/RPP9nVdrrf","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1186655983994470400\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186655978952908802,"id_str":"1186655978952908802","indices":[191,214],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfZU2AU4AIVgFS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfZU2AU4AIVgFS.jpg","url":"https:\/\/t.co\/RPP9nVdrrf","display_url":"pic.twitter.com\/RPP9nVdrrf","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1186655983994470400\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186318434964930560,"id_str":"1186318434964930560","name":"Murat + Turk, Ph.D.","screen_name":"MuratTurkEd","location":"Cincinnati, OH","description":"Online + Learning | motivation | engagement | online presences | loving husband of + Sinem Toraman Turk \u2764\ufe0f| loving father of @bgmtrk1\u2764\ufe0f | @FulbrightTurkey","url":"https:\/\/t.co\/DmCPHu9r7d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DmCPHu9r7d","expanded_url":"http:\/\/www.ardat.net","display_url":"ardat.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":853,"listed_count":5,"created_at":"Mon + Oct 21 16:29:13 +0000 2019","favourites_count":4396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2544,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186318434964930560\/1653078596","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 14:50:08 +0000 2019","id":1186655983994470400,"id_str":"1186655983994470400","full_text":"#aect19 + #aect19inspired #aect Come to Conference Room 4 for a conversation with Dr. + Xun Ge, AECT President-Elect. Hey First-timers, we want to see you here too! + See you soon! @AECT @gsa_aect https:\/\/t.co\/RPP9nVdrrf","truncated":false,"display_text_range":[0,190],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]},{"text":"aect19inspired","indices":[8,23]},{"text":"aect","indices":[24,29]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[175,180]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[181,190]}],"urls":[],"media":[{"id":1186655978952908802,"id_str":"1186655978952908802","indices":[191,214],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfZU2AU4AIVgFS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfZU2AU4AIVgFS.jpg","url":"https:\/\/t.co\/RPP9nVdrrf","display_url":"pic.twitter.com\/RPP9nVdrrf","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1186655983994470400\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186655978952908802,"id_str":"1186655978952908802","indices":[191,214],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfZU2AU4AIVgFS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfZU2AU4AIVgFS.jpg","url":"https:\/\/t.co\/RPP9nVdrrf","display_url":"pic.twitter.com\/RPP9nVdrrf","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1186655983994470400\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186318434964930560,"id_str":"1186318434964930560","name":"Murat + Turk, Ph.D.","screen_name":"MuratTurkEd","location":"Cincinnati, OH","description":"Online + Learning | motivation | engagement | online presences | loving husband of + Sinem Toraman Turk \u2764\ufe0f| loving father of @bgmtrk1\u2764\ufe0f | @FulbrightTurkey","url":"https:\/\/t.co\/DmCPHu9r7d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DmCPHu9r7d","expanded_url":"http:\/\/www.ardat.net","display_url":"ardat.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":853,"listed_count":5,"created_at":"Mon + Oct 21 16:29:13 +0000 2019","favourites_count":4396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2544,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186318434964930560\/1653078596","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 14:56:27 +0000 2019","id":1186657576798183425,"id_str":"1186657576798183425","full_text":"RT + @pazureka: Today''s lineup from the Learner Engagement Division. It''s going + to be a great day and we can''t wait to connect with you! #aec\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 13:58:44 +0000 2019","id":1186643049457152001,"id_str":"1186643049457152001","full_text":"Today''s + lineup from the Learner Engagement Division. It''s going to be a great day + and we can''t wait to connect with you! #aect19 @AECT @LearnEngage https:\/\/t.co\/mFQ1MmKYqD","truncated":false,"display_text_range":[0,147],"entities":{"hashtags":[{"text":"aect19","indices":[121,128]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[129,134]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[135,147]}],"urls":[],"media":[{"id":1186643045762002949,"id_str":"1186643045762002949","indices":[148,171],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfNkCHU8AUdlkG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfNkCHU8AUdlkG.jpg","url":"https:\/\/t.co\/mFQ1MmKYqD","display_url":"pic.twitter.com\/mFQ1MmKYqD","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186643049457152001\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":389,"resize":"fit"},"medium":{"w":1175,"h":672,"resize":"fit"},"large":{"w":1175,"h":672,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186643045762002949,"id_str":"1186643045762002949","indices":[148,171],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfNkCHU8AUdlkG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfNkCHU8AUdlkG.jpg","url":"https:\/\/t.co\/mFQ1MmKYqD","display_url":"pic.twitter.com\/mFQ1MmKYqD","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186643049457152001\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":389,"resize":"fit"},"medium":{"w":1175,"h":672,"resize":"fit"},"large":{"w":1175,"h":672,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 13:58:44 +0000 2019","id":1186643049457152001,"id_str":"1186643049457152001","full_text":"Today''s + lineup from the Learner Engagement Division. It''s going to be a great day + and we can''t wait to connect with you! #aect19 @AECT @LearnEngage https:\/\/t.co\/mFQ1MmKYqD","truncated":false,"display_text_range":[0,147],"entities":{"hashtags":[{"text":"aect19","indices":[121,128]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[129,134]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[135,147]}],"urls":[],"media":[{"id":1186643045762002949,"id_str":"1186643045762002949","indices":[148,171],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfNkCHU8AUdlkG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfNkCHU8AUdlkG.jpg","url":"https:\/\/t.co\/mFQ1MmKYqD","display_url":"pic.twitter.com\/mFQ1MmKYqD","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186643049457152001\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":389,"resize":"fit"},"medium":{"w":1175,"h":672,"resize":"fit"},"large":{"w":1175,"h":672,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186643045762002949,"id_str":"1186643045762002949","indices":[148,171],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfNkCHU8AUdlkG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfNkCHU8AUdlkG.jpg","url":"https:\/\/t.co\/mFQ1MmKYqD","display_url":"pic.twitter.com\/mFQ1MmKYqD","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186643049457152001\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":389,"resize":"fit"},"medium":{"w":1175,"h":672,"resize":"fit"},"large":{"w":1175,"h":672,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 11:25:05 +0000 2019","id":1186604383708028928,"id_str":"1186604383708028928","full_text":"How + Do You Do, Fellow Kids? \"New Teachers\" in Twitter #ntchat. Come join #FSU + #FSUCOE #ISLT Doctoral candidate @LaurenBagdy for session 045 on Tuesday, + 8:00 am - 8:50 am at Convention Center - Ballroom B. #AECT19 #AECT2019 #Teachers + #NewTeacher #Twitter https:\/\/t.co\/3arHzMRt8d","truncated":false,"display_text_range":[0,253],"entities":{"hashtags":[{"text":"ntchat","indices":[54,61]},{"text":"FSU","indices":[73,77]},{"text":"FSUCOE","indices":[78,85]},{"text":"ISLT","indices":[86,91]},{"text":"AECT19","indices":[205,212]},{"text":"AECT2019","indices":[213,222]},{"text":"Teachers","indices":[223,232]},{"text":"NewTeacher","indices":[233,244]},{"text":"Twitter","indices":[245,253]}],"symbols":[],"user_mentions":[{"screen_name":"LaurenBagdy","name":"Lauren + Bagdy","id":22214646,"id_str":"22214646","indices":[111,123]}],"urls":[],"media":[{"id":1186604381367611392,"id_str":"1186604381367611392","indices":[254,277],"media_url":"http:\/\/pbs.twimg.com\/media\/EHeqZeBWsAAwptW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHeqZeBWsAAwptW.jpg","url":"https:\/\/t.co\/3arHzMRt8d","display_url":"pic.twitter.com\/3arHzMRt8d","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186604383708028928\/photo\/1","type":"photo","sizes":{"large":{"w":1242,"h":1400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1065,"h":1200,"resize":"fit"},"small":{"w":603,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186604381367611392,"id_str":"1186604381367611392","indices":[254,277],"media_url":"http:\/\/pbs.twimg.com\/media\/EHeqZeBWsAAwptW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHeqZeBWsAAwptW.jpg","url":"https:\/\/t.co\/3arHzMRt8d","display_url":"pic.twitter.com\/3arHzMRt8d","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186604383708028928\/photo\/1","type":"photo","sizes":{"large":{"w":1242,"h":1400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1065,"h":1200,"resize":"fit"},"small":{"w":603,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 13:34:52 +0000 2019","id":1186637042765058053,"id_str":"1186637042765058053","full_text":"We + had a blast last night at the goofy table. #aect19 https:\/\/t.co\/MfeKreIf5c","truncated":false,"display_text_range":[0,53],"entities":{"hashtags":[{"text":"aect19","indices":[46,53]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186637037547352065,"id_str":"1186637037547352065","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfIGTxU8AEyjtE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfIGTxU8AEyjtE.jpg","url":"https:\/\/t.co\/MfeKreIf5c","display_url":"pic.twitter.com\/MfeKreIf5c","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186637042765058053\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186637037547352065,"id_str":"1186637037547352065","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfIGTxU8AEyjtE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfIGTxU8AEyjtE.jpg","url":"https:\/\/t.co\/MfeKreIf5c","display_url":"pic.twitter.com\/MfeKreIf5c","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186637042765058053\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 14:52:14 +0000 2019","id":1186656513902800896,"id_str":"1186656513902800896","full_text":"RT + @aectddl: DDL Inspire! - Teaching to D2\nTUE, OCT 22, 8:00 TO 8:50AM, CONVENTION + CENTER, PAVILION 9. \nDuring this session, participants w\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[3,11]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1088189033266798598,"id_str":"1088189033266798598","name":"AECT + Division of Distance Learning","screen_name":"aectddl","location":"","description":"The + Division of Distance Learning is a special interest group of the Association + for Educational Communications and Technology (AECT).","url":"https:\/\/t.co\/Rg9uXQTkSM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Rg9uXQTkSM","expanded_url":"https:\/\/aect.org\/ddl.php","display_url":"aect.org\/ddl.php","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":861,"friends_count":482,"listed_count":6,"created_at":"Wed + Jan 23 21:37:37 +0000 2019","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088189033266798598\/1548280679","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 14 16:03:42 +0000 2019","id":1183775395956645893,"id_str":"1183775395956645893","full_text":"DDL + Inspire! - Teaching to D2\nTUE, OCT 22, 8:00 TO 8:50AM, CONVENTION CENTER, + PAVILION 9. \nDuring this session, participants will actively engage with + the presenters in a meaningful discussion about online design and delivery. + #aect19inspired https:\/\/t.co\/duhTFIDbFf","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"aect19inspired","indices":[227,242]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1183775390394978305,"id_str":"1183775390394978305","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2dchZXkAEl_HE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2dchZXkAEl_HE.jpg","url":"https:\/\/t.co\/duhTFIDbFf","display_url":"pic.twitter.com\/duhTFIDbFf","expanded_url":"https:\/\/twitter.com\/aectddl\/status\/1183775395956645893\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183775390394978305,"id_str":"1183775390394978305","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2dchZXkAEl_HE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2dchZXkAEl_HE.jpg","url":"https:\/\/t.co\/duhTFIDbFf","display_url":"pic.twitter.com\/duhTFIDbFf","expanded_url":"https:\/\/twitter.com\/aectddl\/status\/1183775395956645893\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1088189033266798598,"id_str":"1088189033266798598","name":"AECT + Division of Distance Learning","screen_name":"aectddl","location":"","description":"The + Division of Distance Learning is a special interest group of the Association + for Educational Communications and Technology (AECT).","url":"https:\/\/t.co\/Rg9uXQTkSM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Rg9uXQTkSM","expanded_url":"https:\/\/aect.org\/ddl.php","display_url":"aect.org\/ddl.php","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":861,"friends_count":482,"listed_count":6,"created_at":"Wed + Jan 23 21:37:37 +0000 2019","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088189033266798598\/1548280679","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 11:30:15 +0000 2019","id":1186605683338289153,"id_str":"1186605683338289153","full_text":"#SocialMedia + and #Undergraduates: Use and Opportunities Across Student Life. Come join + #FSU #FSUCOE #ISLT @vdennen @LaurenBagdy @hajeen2040 Demetrius Rice, & + @Ginny7s, for session 045 on Tuesday, 8:00 am - 8:50 am at Convention Center + - Ballroom B. #AECT19 #AECT2019 #SocialMedia","truncated":false,"display_text_range":[0,283],"entities":{"hashtags":[{"text":"SocialMedia","indices":[0,12]},{"text":"Undergraduates","indices":[17,32]},{"text":"FSU","indices":[87,91]},{"text":"FSUCOE","indices":[92,99]},{"text":"ISLT","indices":[100,105]},{"text":"AECT19","indices":[253,260]},{"text":"AECT2019","indices":[261,270]},{"text":"SocialMedia","indices":[271,283]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[106,114]},{"screen_name":"LaurenBagdy","name":"Lauren + Bagdy","id":22214646,"id_str":"22214646","indices":[115,127]},{"screen_name":"Ginny7s","name":"Dr. + Ginny L. Smith","id":880789090010050560,"id_str":"880789090010050560","indices":[162,170]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 15:03:11 +0000 2019","id":1186659269598277633,"id_str":"1186659269598277633","full_text":"#aect19 + fact: only your mother read your dissertation","truncated":false,"display_text_range":[0,53],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 14:59:39 +0000 2019","id":1186658381123047426,"id_str":"1186658381123047426","full_text":"RT + @ISLT_FSU: Faculty-librarian Partnerships for Adopting and Developing OERs: + a Multiple-case Study. Come join #FSU #FSUCOE #ISLT @vdennen\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"FSU","indices":[112,116]},{"text":"FSUCOE","indices":[117,124]},{"text":"ISLT","indices":[125,130]}],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]},{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[131,139]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 13:30:17 +0000 2019","id":1186635891592355852,"id_str":"1186635891592355852","full_text":"Faculty-librarian + Partnerships for Adopting and Developing OERs: a Multiple-case Study. Come + join #FSU #FSUCOE #ISLT @vdennen Yao & Zhongrui, for session 077 on Tuesday, + 10 am - 10:50 am at Convention Center - Conference Room 7. #AECT19 #AECT2019 + #OER #Librarian","truncated":false,"display_text_range":[0,266],"entities":{"hashtags":[{"text":"FSU","indices":[98,102]},{"text":"FSUCOE","indices":[103,110]},{"text":"ISLT","indices":[111,116]},{"text":"AECT19","indices":[233,240]},{"text":"AECT2019","indices":[241,250]},{"text":"OER","indices":[251,255]},{"text":"Librarian","indices":[256,266]}],"symbols":[],"user_mentions":[{"screen_name":"vdennen","name":"Vanessa + Dennen","id":142359679,"id_str":"142359679","indices":[117,125]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 13:24:53 +0000 2019","id":1186634531790446594,"id_str":"1186634531790446594","full_text":"RT + @MuratTurkOU: #aect19inspired #aect19 Come and join us tomorrow morning at + 8 am for our conversation with Dr. Xun Ge, AECT President-Ele\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[17,32]},{"text":"aect19","indices":[33,40]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 05:40:51 +0000 2019","id":1186517752401387520,"id_str":"1186517752401387520","full_text":"#aect19inspired + #aect19 Come and join us tomorrow morning at 8 am for our conversation with + Dr. Xun Ge, AECT President-Elect. @gsa_aect @AECT https:\/\/t.co\/9e1CC2OTi0","truncated":false,"display_text_range":[0,141],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]},{"text":"aect19","indices":[16,23]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[126,135]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[136,141]}],"urls":[],"media":[{"id":1186517745426321409,"id_str":"1186517745426321409","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdbml_VUAEicB0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdbml_VUAEicB0.jpg","url":"https:\/\/t.co\/9e1CC2OTi0","display_url":"pic.twitter.com\/9e1CC2OTi0","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1186517752401387520\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186517745426321409,"id_str":"1186517745426321409","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdbml_VUAEicB0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdbml_VUAEicB0.jpg","url":"https:\/\/t.co\/9e1CC2OTi0","display_url":"pic.twitter.com\/9e1CC2OTi0","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1186517752401387520\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186318434964930560,"id_str":"1186318434964930560","name":"Murat + Turk, Ph.D.","screen_name":"MuratTurkEd","location":"Cincinnati, OH","description":"Online + Learning | motivation | engagement | online presences | loving husband of + Sinem Toraman Turk \u2764\ufe0f| loving father of @bgmtrk1\u2764\ufe0f | @FulbrightTurkey","url":"https:\/\/t.co\/DmCPHu9r7d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DmCPHu9r7d","expanded_url":"http:\/\/www.ardat.net","display_url":"ardat.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":853,"listed_count":5,"created_at":"Mon + Oct 21 16:29:13 +0000 2019","favourites_count":4396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2544,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186318434964930560\/1653078596","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 13:28:55 +0000 2019","id":1186635546971394050,"id_str":"1186635546971394050","full_text":"After + the crazy rush of getting the poster printed, proceedings paper fedexed, I''m + ready for #aect19inspired","truncated":false,"display_text_range":[0,108],"entities":{"hashtags":[{"text":"aect19inspired","indices":[93,108]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":459903,"id_str":"459903","name":"\ud83c\uddfa\ud83c\uddf8 + Yin Kreher, PhD","screen_name":"yinbk","location":"","description":"Instructional + Designer | Lead LXD @FourthRev | Boundary-Crosser. Looks for the exquisite + at intersections. All tweets are mine. \ud83d\udc9c #XR #DesignLeadership + \ud83e\udef0","url":"https:\/\/t.co\/nJBVP9cpz7","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nJBVP9cpz7","expanded_url":"http:\/\/yinwahkreher.com","display_url":"yinwahkreher.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1043,"friends_count":1124,"listed_count":79,"created_at":"Tue + Jan 02 17:04:05 +0000 2007","favourites_count":7349,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6237,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"363738","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1069693840834072579\/l7yy8Mnt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459903\/1611022238","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"E81C4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 14:20:59 +0000 2019","id":1186648647900884993,"id_str":"1186648647900884993","full_text":"#aect19inspired + Going to attend A View from the Trenches: Trends and Happenings in the Corporate + Learning Space. https:\/\/t.co\/Q6LYyvJjnf relevant for our certificate @tecfa + https:\/\/t.co\/o4SVpxmgvD","truncated":false,"display_text_range":[0,196],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[{"screen_name":"tecfa","name":"TECFA","id":24355006,"id_str":"24355006","indices":[166,172]}],"urls":[{"url":"https:\/\/t.co\/Q6LYyvJjnf","expanded_url":"http:\/\/l.core-apps.com\/aect19\/event?event=b038d05c063d8ab60ed1330fb71a0afe","display_url":"l.core-apps.com\/aect19\/event?e\u2026","indices":[113,136]},{"url":"https:\/\/t.co\/o4SVpxmgvD","expanded_url":"https:\/\/www.unige.ch\/formcont\/cours\/e-learning","display_url":"unige.ch\/formcont\/cours\u2026","indices":[173,196]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 16:01:59 +0000 2019","id":1186674066041626625,"id_str":"1186674066041626625","full_text":"RT + @robmoore3: With one of my favorite people, @profoyarzun #aect19 https:\/\/t.co\/eeoUsKclVK","truncated":false,"display_text_range":[0,91],"entities":{"hashtags":[{"text":"aect19","indices":[60,67]}],"symbols":[],"user_mentions":[{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[3,13]},{"screen_name":"profoyarzun","name":"Beth + Oyarzun","id":19023356,"id_str":"19023356","indices":[47,59]}],"urls":[],"media":[{"id":1186667561242357763,"id_str":"1186667561242357763","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfj3BZUcAMhw6B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfj3BZUcAMhw6B.jpg","url":"https:\/\/t.co\/eeoUsKclVK","display_url":"pic.twitter.com\/eeoUsKclVK","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186667567739330561\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":511,"h":680,"resize":"fit"},"medium":{"w":901,"h":1200,"resize":"fit"},"large":{"w":1538,"h":2048,"resize":"fit"}},"source_status_id":1186667567739330561,"source_status_id_str":"1186667567739330561","source_user_id":45256556,"source_user_id_str":"45256556"}]},"extended_entities":{"media":[{"id":1186667561242357763,"id_str":"1186667561242357763","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfj3BZUcAMhw6B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfj3BZUcAMhw6B.jpg","url":"https:\/\/t.co\/eeoUsKclVK","display_url":"pic.twitter.com\/eeoUsKclVK","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186667567739330561\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":511,"h":680,"resize":"fit"},"medium":{"w":901,"h":1200,"resize":"fit"},"large":{"w":1538,"h":2048,"resize":"fit"}},"source_status_id":1186667567739330561,"source_status_id_str":"1186667567739330561","source_user_id":45256556,"source_user_id_str":"45256556","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19023356,"id_str":"19023356","name":"Beth + Oyarzun","screen_name":"profoyarzun","location":"Charlotte, NC","description":"Clinical + Associate Professor and director of the Learning, Design and Technology program + at UNCC, wife, mom, and scuba diver.","url":"https:\/\/t.co\/GKjzX92eV9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GKjzX92eV9","expanded_url":"https:\/\/sites.google.com\/uncc.edu\/bethoyarzun\/home?authuser=2","display_url":"sites.google.com\/uncc.edu\/betho\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":295,"friends_count":523,"listed_count":15,"created_at":"Thu + Jan 15 14:35:36 +0000 2009","favourites_count":1232,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1082,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650037082346422272\/X3Iy9bMz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650037082346422272\/X3Iy9bMz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19023356\/1566681139","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 15:36:10 +0000 2019","id":1186667567739330561,"id_str":"1186667567739330561","full_text":"With + one of my favorite people, @profoyarzun #aect19 https:\/\/t.co\/eeoUsKclVK","truncated":false,"display_text_range":[0,52],"entities":{"hashtags":[{"text":"aect19","indices":[45,52]}],"symbols":[],"user_mentions":[{"screen_name":"profoyarzun","name":"Beth + Oyarzun","id":19023356,"id_str":"19023356","indices":[32,44]}],"urls":[],"media":[{"id":1186667561242357763,"id_str":"1186667561242357763","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfj3BZUcAMhw6B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfj3BZUcAMhw6B.jpg","url":"https:\/\/t.co\/eeoUsKclVK","display_url":"pic.twitter.com\/eeoUsKclVK","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186667567739330561\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":511,"h":680,"resize":"fit"},"medium":{"w":901,"h":1200,"resize":"fit"},"large":{"w":1538,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186667561242357763,"id_str":"1186667561242357763","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfj3BZUcAMhw6B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfj3BZUcAMhw6B.jpg","url":"https:\/\/t.co\/eeoUsKclVK","display_url":"pic.twitter.com\/eeoUsKclVK","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186667567739330561\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":511,"h":680,"resize":"fit"},"medium":{"w":901,"h":1200,"resize":"fit"},"large":{"w":1538,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},{"created_at":"Tue + Oct 22 16:18:28 +0000 2019","id":1186678213306535937,"id_str":"1186678213306535937","full_text":"Watching + @robmoore3 share his research on MOOCs at #AECT19 https:\/\/t.co\/6p9V1VbPQ1","truncated":false,"display_text_range":[0,58],"entities":{"hashtags":[{"text":"AECT19","indices":[51,58]}],"symbols":[],"user_mentions":[{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[9,19]}],"urls":[],"media":[{"id":1186678188996321281,"id_str":"1186678188996321281","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/EHftho3UYAErNRx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHftho3UYAErNRx.jpg","url":"https:\/\/t.co\/6p9V1VbPQ1","display_url":"pic.twitter.com\/6p9V1VbPQ1","expanded_url":"https:\/\/twitter.com\/plowenthal\/status\/1186678213306535937\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186678188996321281,"id_str":"1186678188996321281","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/EHftho3UYAErNRx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHftho3UYAErNRx.jpg","url":"https:\/\/t.co\/6p9V1VbPQ1","display_url":"pic.twitter.com\/6p9V1VbPQ1","expanded_url":"https:\/\/twitter.com\/plowenthal\/status\/1186678213306535937\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14364665,"id_str":"14364665","name":"Patrick + Lowenthal","screen_name":"plowenthal","location":"Boise, ID, U.S.","description":"Professor + @BoiseState interested in Online Learning, Social Presence, & the Human Condition. + Lover of good beer, college football, & alt-country. GA to CO to ID","url":"https:\/\/t.co\/5MZ0CHsM4y","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5MZ0CHsM4y","expanded_url":"http:\/\/www.patricklowenthal.com","display_url":"patricklowenthal.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3595,"friends_count":3061,"listed_count":224,"created_at":"Fri + Apr 11 21:11:15 +0000 2008","favourites_count":4608,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12410,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"19115E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/516697828207239168\/aTcysIhD_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/516697828207239168\/aTcysIhD_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14364665\/1398272706","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 15:23:29 +0000 2019","id":1186664379300794369,"id_str":"1186664379300794369","full_text":"Learning + all about networking from @opencontent. #EarlyCareerSymposium #AECT19 #inspiredme + https:\/\/t.co\/pkzEIhQfEH","truncated":false,"display_text_range":[0,90],"entities":{"hashtags":[{"text":"EarlyCareerSymposium","indices":[49,70]},{"text":"AECT19","indices":[71,78]},{"text":"inspiredme","indices":[79,90]}],"symbols":[],"user_mentions":[{"screen_name":"opencontent","name":"David + Wiley","id":4514361,"id_str":"4514361","indices":[35,47]}],"urls":[],"media":[{"id":1186664368718499842,"id_str":"1186664368718499842","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfg9MUUUAIU1j-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfg9MUUUAIU1j-.jpg","url":"https:\/\/t.co\/pkzEIhQfEH","display_url":"pic.twitter.com\/pkzEIhQfEH","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186664379300794369\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186664368718499842,"id_str":"1186664368718499842","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfg9MUUUAIU1j-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfg9MUUUAIU1j-.jpg","url":"https:\/\/t.co\/pkzEIhQfEH","display_url":"pic.twitter.com\/pkzEIhQfEH","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186664379300794369\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 14:56:16 +0000 2019","id":1186657529826144256,"id_str":"1186657529826144256","full_text":"RT + @DrVirtuality: What is Virtuality Culture Theory? https:\/\/t.co\/FVnvBDUVWL + @aect @aectclt #aect19inspired #aect19 #virtualityculturetheor\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[92,107]},{"text":"aect19","indices":[108,115]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[77,82]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[83,91]}],"urls":[{"url":"https:\/\/t.co\/FVnvBDUVWL","expanded_url":"https:\/\/sites.google.com\/view\/dr-camille-dempsey\/theory-of-virtuality-culture","display_url":"sites.google.com\/view\/dr-camill\u2026","indices":[53,76]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 14:22:00 +0000 2019","id":1186648904030277632,"id_str":"1186648904030277632","full_text":"What + is Virtuality Culture Theory? https:\/\/t.co\/FVnvBDUVWL @aect @aectclt #aect19inspired + #aect19 #virtualityculturetheory #virtualityculture #virtuality https:\/\/t.co\/VOn3s2lf9t","truncated":false,"display_text_range":[0,153],"entities":{"hashtags":[{"text":"aect19inspired","indices":[74,89]},{"text":"aect19","indices":[90,97]},{"text":"virtualityculturetheory","indices":[98,122]},{"text":"virtualityculture","indices":[123,141]},{"text":"virtuality","indices":[142,153]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[59,64]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[65,73]}],"urls":[{"url":"https:\/\/t.co\/FVnvBDUVWL","expanded_url":"https:\/\/sites.google.com\/view\/dr-camille-dempsey\/theory-of-virtuality-culture","display_url":"sites.google.com\/view\/dr-camill\u2026","indices":[35,58]}],"media":[{"id":1186341887684182016,"id_str":"1186341887684182016","indices":[154,177],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa7qU2VAAAzUq_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa7qU2VAAAzUq_.jpg","url":"https:\/\/t.co\/VOn3s2lf9t","display_url":"pic.twitter.com\/VOn3s2lf9t","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186648904030277632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":2048,"h":1365,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186341887684182016,"id_str":"1186341887684182016","indices":[154,177],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa7qU2VAAAzUq_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa7qU2VAAAzUq_.jpg","url":"https:\/\/t.co\/VOn3s2lf9t","display_url":"pic.twitter.com\/VOn3s2lf9t","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186648904030277632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":2048,"h":1365,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 13:53:28 +0000 2019","id":1186641724417798144,"id_str":"1186641724417798144","full_text":"What\u2019s + the opposite of \u2018jet lag\u2019? I am enjoying going to bed at a reasonable + hour and then getting up and being super productive before the break of dawn. + #aect19 #aect19inspired #pacifictime","truncated":false,"display_text_range":[0,191],"entities":{"hashtags":[{"text":"aect19","indices":[155,162]},{"text":"aect19inspired","indices":[163,178]},{"text":"pacifictime","indices":[179,191]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 14:56:30 +0000 2019","id":1186657585925120001,"id_str":"1186657585925120001","full_text":"RT + @pazureka: Today''s lineup from the Learner Engagement Division. It''s going + to be a great day and we can''t wait to connect with you! #aec\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107501101,"id_str":"107501101","name":"Matt + Yauk","screen_name":"yaukable","location":"Ohio","description":"Educator, + designer, and perpetual student. I empower educators through @INFOhio and + teach #edtech @OhioState. Tweets are all me.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":664,"friends_count":2000,"listed_count":22,"created_at":"Fri + Jan 22 19:37:53 +0000 2010","favourites_count":1267,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":718,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/905808970484473858\/PDYmCNNK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/905808970484473858\/PDYmCNNK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107501101\/1510147845","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4C5E78","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 13:58:44 +0000 2019","id":1186643049457152001,"id_str":"1186643049457152001","full_text":"Today''s + lineup from the Learner Engagement Division. It''s going to be a great day + and we can''t wait to connect with you! #aect19 @AECT @LearnEngage https:\/\/t.co\/mFQ1MmKYqD","truncated":false,"display_text_range":[0,147],"entities":{"hashtags":[{"text":"aect19","indices":[121,128]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[129,134]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[135,147]}],"urls":[],"media":[{"id":1186643045762002949,"id_str":"1186643045762002949","indices":[148,171],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfNkCHU8AUdlkG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfNkCHU8AUdlkG.jpg","url":"https:\/\/t.co\/mFQ1MmKYqD","display_url":"pic.twitter.com\/mFQ1MmKYqD","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186643049457152001\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":389,"resize":"fit"},"medium":{"w":1175,"h":672,"resize":"fit"},"large":{"w":1175,"h":672,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186643045762002949,"id_str":"1186643045762002949","indices":[148,171],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfNkCHU8AUdlkG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfNkCHU8AUdlkG.jpg","url":"https:\/\/t.co\/mFQ1MmKYqD","display_url":"pic.twitter.com\/mFQ1MmKYqD","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1186643049457152001\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":389,"resize":"fit"},"medium":{"w":1175,"h":672,"resize":"fit"},"large":{"w":1175,"h":672,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 13:54:18 +0000 2019","id":1186641933185081346,"id_str":"1186641933185081346","full_text":"Did + you know @AECT has a new Division? Stop by our table to talk w\/ folks from + the new Learner Engagement Division at the Kickoff event, 11AM today in Paradise + North! We are focused on promoting engagement through innovative teaching, + research, and design. @LearnEngage #aect19","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"aect19","indices":[270,277]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[13,18]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[257,269]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 15:28:01 +0000 2019","id":1186665520415703041,"id_str":"1186665520415703041","full_text":"#AECT19, + Did you know #Vegas has a monorail that makes it easy to get from @WestgateVegas + to the south end of the strip? I\u2019m taking it each morning and evening + to the conference and it\u2019s pretty nice and usually empty. https:\/\/t.co\/I2YA4t0xlc","truncated":false,"display_text_range":[0,217],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"Vegas","indices":[22,28]}],"symbols":[],"user_mentions":[{"screen_name":"WestgateVegas","name":"Westgate + Las Vegas","id":28625627,"id_str":"28625627","indices":[75,89]}],"urls":[],"media":[{"id":1186665507308490752,"id_str":"1186665507308490752","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfh_d5U0AAaIoF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfh_d5U0AAaIoF.jpg","url":"https:\/\/t.co\/I2YA4t0xlc","display_url":"pic.twitter.com\/I2YA4t0xlc","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186665520415703041\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186665507308490752,"id_str":"1186665507308490752","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfh_d5U0AAaIoF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfh_d5U0AAaIoF.jpg","url":"https:\/\/t.co\/I2YA4t0xlc","display_url":"pic.twitter.com\/I2YA4t0xlc","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186665520415703041\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1186665507333623808,"id_str":"1186665507333623808","indices":[218,241],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfh_d_UUAA5_3I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfh_d_UUAA5_3I.jpg","url":"https:\/\/t.co\/I2YA4t0xlc","display_url":"pic.twitter.com\/I2YA4t0xlc","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186665520415703041\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9d2436b880004","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9d2436b880004.json","place_type":"poi","name":"Las + Vegas Monorail - Flamingo\/Caesars Palace Station","full_name":"Las Vegas + Monorail - Flamingo\/Caesars Palace Station","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.16815085815233,36.116056965092184],[-115.16815085815233,36.116056965092184],[-115.16815085815233,36.116056965092184],[-115.16815085815233,36.116056965092184]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 15:41:14 +0000 2019","id":1186668846658097152,"id_str":"1186668846658097152","full_text":"#aect + #aect19inspired. Dinner at Benihanas, where lots of ed tech publication talks + commenced. https:\/\/t.co\/0PstShO3Md","truncated":false,"display_text_range":[0,94],"entities":{"hashtags":[{"text":"aect","indices":[0,5]},{"text":"aect19inspired","indices":[6,21]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186668837279686656,"id_str":"1186668837279686656","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/EHflBTAU4AAx5x7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHflBTAU4AAx5x7.jpg","url":"https:\/\/t.co\/0PstShO3Md","display_url":"pic.twitter.com\/0PstShO3Md","expanded_url":"https:\/\/twitter.com\/distance_edu\/status\/1186668846658097152\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186668837279686656,"id_str":"1186668837279686656","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/EHflBTAU4AAx5x7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHflBTAU4AAx5x7.jpg","url":"https:\/\/t.co\/0PstShO3Md","display_url":"pic.twitter.com\/0PstShO3Md","expanded_url":"https:\/\/twitter.com\/distance_edu\/status\/1186668846658097152\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37890447,"id_str":"37890447","name":"M. + D. Rogers","screen_name":"MDRogers360","location":"","description":"Michelle + is my name and innovation and creativity is my game. A feed about this and + that, ed tech, work, writing, and more.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":500,"friends_count":571,"listed_count":34,"created_at":"Tue + May 05 09:21:16 +0000 2009","favourites_count":58,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1132,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1216550885385482240\/_KpnmYjr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216550885385482240\/_KpnmYjr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37890447\/1400079389","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 13:21:04 +0000 2019","id":1186633571261267968,"id_str":"1186633571261267968","full_text":"RT + @AectInternship: Meet the #aect19 Intern Class.@kiranbudhrani @LaurenBagdy + @nateturcotte22 https:\/\/t.co\/3mSa3aiRry","truncated":false,"display_text_range":[0,117],"entities":{"hashtags":[{"text":"aect19","indices":[29,36]}],"symbols":[],"user_mentions":[{"screen_name":"AectInternship","name":"AECT + Internship","id":966397466475204608,"id_str":"966397466475204608","indices":[3,18]},{"screen_name":"kiranbudhrani","name":"Dr. + Kiran Budhrani","id":6432592,"id_str":"6432592","indices":[50,64]},{"screen_name":"LaurenBagdy","name":"Lauren + Bagdy","id":22214646,"id_str":"22214646","indices":[65,77]},{"screen_name":"nateturcotte22","name":"Nate + Turcotte","id":600653284,"id_str":"600653284","indices":[78,93]}],"urls":[],"media":[{"id":1186535931492192258,"id_str":"1186535931492192258","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdsJKXUUAIkPBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdsJKXUUAIkPBI.jpg","url":"https:\/\/t.co\/3mSa3aiRry","display_url":"pic.twitter.com\/3mSa3aiRry","expanded_url":"https:\/\/twitter.com\/AectInternship\/status\/1186535938916147201\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"source_status_id":1186535938916147201,"source_status_id_str":"1186535938916147201","source_user_id":966397466475204608,"source_user_id_str":"966397466475204608"}]},"extended_entities":{"media":[{"id":1186535931492192258,"id_str":"1186535931492192258","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdsJKXUUAIkPBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdsJKXUUAIkPBI.jpg","url":"https:\/\/t.co\/3mSa3aiRry","display_url":"pic.twitter.com\/3mSa3aiRry","expanded_url":"https:\/\/twitter.com\/AectInternship\/status\/1186535938916147201\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"source_status_id":1186535938916147201,"source_status_id_str":"1186535938916147201","source_user_id":966397466475204608,"source_user_id_str":"966397466475204608","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 06:53:07 +0000 2019","id":1186535938916147201,"id_str":"1186535938916147201","full_text":"Meet + the #aect19 Intern Class.@kiranbudhrani @LaurenBagdy @nateturcotte22 https:\/\/t.co\/3mSa3aiRry","truncated":false,"display_text_range":[0,73],"entities":{"hashtags":[{"text":"aect19","indices":[9,16]}],"symbols":[],"user_mentions":[{"screen_name":"kiranbudhrani","name":"Dr. + Kiran Budhrani","id":6432592,"id_str":"6432592","indices":[30,44]},{"screen_name":"LaurenBagdy","name":"Lauren + Bagdy","id":22214646,"id_str":"22214646","indices":[45,57]},{"screen_name":"nateturcotte22","name":"Nate + Turcotte","id":600653284,"id_str":"600653284","indices":[58,73]}],"urls":[],"media":[{"id":1186535931492192258,"id_str":"1186535931492192258","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdsJKXUUAIkPBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdsJKXUUAIkPBI.jpg","url":"https:\/\/t.co\/3mSa3aiRry","display_url":"pic.twitter.com\/3mSa3aiRry","expanded_url":"https:\/\/twitter.com\/AectInternship\/status\/1186535938916147201\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186535931492192258,"id_str":"1186535931492192258","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdsJKXUUAIkPBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdsJKXUUAIkPBI.jpg","url":"https:\/\/t.co\/3mSa3aiRry","display_url":"pic.twitter.com\/3mSa3aiRry","expanded_url":"https:\/\/twitter.com\/AectInternship\/status\/1186535938916147201\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":966397466475204608,"id_str":"966397466475204608","name":"AECT + Internship","screen_name":"AectInternship","location":"","description":"The + AECT Addie Kinsinger Leadership Development Internship Program supports future + leaders in AECT and the field of IDT.","url":"https:\/\/t.co\/rUfOKlczyK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rUfOKlczyK","expanded_url":"http:\/\/aect.org\/internprogram","display_url":"aect.org\/internprogram","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":180,"friends_count":101,"listed_count":2,"created_at":"Wed + Feb 21 19:41:25 +0000 2018","favourites_count":99,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":92,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/969229525635788802\/x8Bbhxpx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/969229525635788802\/x8Bbhxpx_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":24,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 15:39:00 +0000 2019","id":1186668284445224965,"id_str":"1186668284445224965","full_text":"RT + @hodgesc: Share a link to the @AECTTechTrends article that has inspired your + research or practice. #aect19inspired #aect19 https:\/\/t.co\/\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[102,117]},{"text":"aect19","indices":[118,125]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[33,48]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37890447,"id_str":"37890447","name":"M. + D. Rogers","screen_name":"MDRogers360","location":"","description":"Michelle + is my name and innovation and creativity is my game. A feed about this and + that, ed tech, work, writing, and more.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":500,"friends_count":571,"listed_count":34,"created_at":"Tue + May 05 09:21:16 +0000 2009","favourites_count":58,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1132,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1216550885385482240\/_KpnmYjr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1216550885385482240\/_KpnmYjr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37890447\/1400079389","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 14:00:00 +0000 2019","id":1186643367674777600,"id_str":"1186643367674777600","full_text":"Share + a link to the @AECTTechTrends article that has inspired your research or practice. + #aect19inspired #aect19 https:\/\/t.co\/vhcJvdgSTq","truncated":false,"display_text_range":[0,112],"entities":{"hashtags":[{"text":"aect19inspired","indices":[89,104]},{"text":"aect19","indices":[105,112]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[20,35]}],"urls":[],"media":[{"id":1185596558705856513,"id_str":"1185596558705856513","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","url":"https:\/\/t.co\/vhcJvdgSTq","display_url":"pic.twitter.com\/vhcJvdgSTq","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1186643367674777600\/photo\/1","type":"photo","sizes":{"medium":{"w":316,"h":416,"resize":"fit"},"large":{"w":316,"h":416,"resize":"fit"},"small":{"w":316,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1185596558705856513,"id_str":"1185596558705856513","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","url":"https:\/\/t.co\/vhcJvdgSTq","display_url":"pic.twitter.com\/vhcJvdgSTq","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1186643367674777600\/photo\/1","type":"photo","sizes":{"medium":{"w":316,"h":416,"resize":"fit"},"large":{"w":316,"h":416,"resize":"fit"},"small":{"w":316,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 14:22:00 +0000 2019","id":1186648904030277632,"id_str":"1186648904030277632","full_text":"What + is Virtuality Culture Theory? https:\/\/t.co\/FVnvBDUVWL @aect @aectclt #aect19inspired + #aect19 #virtualityculturetheory #virtualityculture #virtuality https:\/\/t.co\/VOn3s2lf9t","truncated":false,"display_text_range":[0,153],"entities":{"hashtags":[{"text":"aect19inspired","indices":[74,89]},{"text":"aect19","indices":[90,97]},{"text":"virtualityculturetheory","indices":[98,122]},{"text":"virtualityculture","indices":[123,141]},{"text":"virtuality","indices":[142,153]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[59,64]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[65,73]}],"urls":[{"url":"https:\/\/t.co\/FVnvBDUVWL","expanded_url":"https:\/\/sites.google.com\/view\/dr-camille-dempsey\/theory-of-virtuality-culture","display_url":"sites.google.com\/view\/dr-camill\u2026","indices":[35,58]}],"media":[{"id":1186341887684182016,"id_str":"1186341887684182016","indices":[154,177],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa7qU2VAAAzUq_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa7qU2VAAAzUq_.jpg","url":"https:\/\/t.co\/VOn3s2lf9t","display_url":"pic.twitter.com\/VOn3s2lf9t","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186648904030277632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":2048,"h":1365,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186341887684182016,"id_str":"1186341887684182016","indices":[154,177],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa7qU2VAAAzUq_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa7qU2VAAAzUq_.jpg","url":"https:\/\/t.co\/VOn3s2lf9t","display_url":"pic.twitter.com\/VOn3s2lf9t","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186648904030277632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":2048,"h":1365,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 14:57:46 +0000 2019","id":1186657905270935552,"id_str":"1186657905270935552","full_text":"RT + @hodgesc: Share a link to the @AECTTechTrends article that has inspired your + research or practice. #aect19inspired #aect19 https:\/\/t.co\/\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[102,117]},{"text":"aect19","indices":[118,125]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[33,48]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 14:00:00 +0000 2019","id":1186643367674777600,"id_str":"1186643367674777600","full_text":"Share + a link to the @AECTTechTrends article that has inspired your research or practice. + #aect19inspired #aect19 https:\/\/t.co\/vhcJvdgSTq","truncated":false,"display_text_range":[0,112],"entities":{"hashtags":[{"text":"aect19inspired","indices":[89,104]},{"text":"aect19","indices":[105,112]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[20,35]}],"urls":[],"media":[{"id":1185596558705856513,"id_str":"1185596558705856513","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","url":"https:\/\/t.co\/vhcJvdgSTq","display_url":"pic.twitter.com\/vhcJvdgSTq","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1186643367674777600\/photo\/1","type":"photo","sizes":{"medium":{"w":316,"h":416,"resize":"fit"},"large":{"w":316,"h":416,"resize":"fit"},"small":{"w":316,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1185596558705856513,"id_str":"1185596558705856513","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQVyeCWkAEPDHa.png","url":"https:\/\/t.co\/vhcJvdgSTq","display_url":"pic.twitter.com\/vhcJvdgSTq","expanded_url":"https:\/\/twitter.com\/hodgesc\/status\/1186643367674777600\/photo\/1","type":"photo","sizes":{"medium":{"w":316,"h":416,"resize":"fit"},"large":{"w":316,"h":416,"resize":"fit"},"small":{"w":316,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 13:27:11 +0000 2019","id":1186635108440145921,"id_str":"1186635108440145921","full_text":"RT + @ISLT_FSU: How Do You Do, Fellow Kids? \"New Teachers\" in Twitter #ntchat. + Come join #FSU #FSUCOE #ISLT Doctoral candidate @LaurenBagdy f\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"ntchat","indices":[68,75]},{"text":"FSU","indices":[87,91]},{"text":"FSUCOE","indices":[92,99]},{"text":"ISLT","indices":[100,105]}],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]},{"screen_name":"LaurenBagdy","name":"Lauren + Bagdy","id":22214646,"id_str":"22214646","indices":[125,137]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 11:25:05 +0000 2019","id":1186604383708028928,"id_str":"1186604383708028928","full_text":"How + Do You Do, Fellow Kids? \"New Teachers\" in Twitter #ntchat. Come join #FSU + #FSUCOE #ISLT Doctoral candidate @LaurenBagdy for session 045 on Tuesday, + 8:00 am - 8:50 am at Convention Center - Ballroom B. #AECT19 #AECT2019 #Teachers + #NewTeacher #Twitter https:\/\/t.co\/3arHzMRt8d","truncated":false,"display_text_range":[0,253],"entities":{"hashtags":[{"text":"ntchat","indices":[54,61]},{"text":"FSU","indices":[73,77]},{"text":"FSUCOE","indices":[78,85]},{"text":"ISLT","indices":[86,91]},{"text":"AECT19","indices":[205,212]},{"text":"AECT2019","indices":[213,222]},{"text":"Teachers","indices":[223,232]},{"text":"NewTeacher","indices":[233,244]},{"text":"Twitter","indices":[245,253]}],"symbols":[],"user_mentions":[{"screen_name":"LaurenBagdy","name":"Lauren + Bagdy","id":22214646,"id_str":"22214646","indices":[111,123]}],"urls":[],"media":[{"id":1186604381367611392,"id_str":"1186604381367611392","indices":[254,277],"media_url":"http:\/\/pbs.twimg.com\/media\/EHeqZeBWsAAwptW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHeqZeBWsAAwptW.jpg","url":"https:\/\/t.co\/3arHzMRt8d","display_url":"pic.twitter.com\/3arHzMRt8d","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186604383708028928\/photo\/1","type":"photo","sizes":{"large":{"w":1242,"h":1400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1065,"h":1200,"resize":"fit"},"small":{"w":603,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186604381367611392,"id_str":"1186604381367611392","indices":[254,277],"media_url":"http:\/\/pbs.twimg.com\/media\/EHeqZeBWsAAwptW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHeqZeBWsAAwptW.jpg","url":"https:\/\/t.co\/3arHzMRt8d","display_url":"pic.twitter.com\/3arHzMRt8d","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186604383708028928\/photo\/1","type":"photo","sizes":{"large":{"w":1242,"h":1400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1065,"h":1200,"resize":"fit"},"small":{"w":603,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 13:33:21 +0000 2019","id":1186636663818248193,"id_str":"1186636663818248193","full_text":"RT + @caranorth11: Presentation #1 of 5.\nToday I''m at #aect19 presenting with + an awesome crew including @JenM @roycekimmons & others about an\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19","indices":[52,59]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[102,107]},{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[108,121]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":465477843,"id_str":"465477843","name":"Jo + Cook","screen_name":"LightbulbJo","location":"Surrey, UK (GMT)","description":"Virtual + classroom & webinar train the trainer at Lightbulb Moment. \nFree live online + learning community - https:\/\/t.co\/qDFmYsUyax","url":"https:\/\/t.co\/hefeXz7Bun","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hefeXz7Bun","expanded_url":"http:\/\/www.lightbulbmoment.online","display_url":"lightbulbmoment.online","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/qDFmYsUyax","expanded_url":"https:\/\/lightbulbmoment.community","display_url":"lightbulbmoment.community","indices":[106,129]}]}},"protected":false,"followers_count":7642,"friends_count":6852,"listed_count":380,"created_at":"Mon + Jan 16 11:48:09 +0000 2012","favourites_count":18271,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":40440,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1323313124338999296\/w94DNchX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1323313124338999296\/w94DNchX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/465477843\/1576761983","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 13:32:34 +0000 2019","id":1186636463305195520,"id_str":"1186636463305195520","full_text":"Presentation + #1 of 5.\nToday I''m at #aect19 presenting with an awesome crew including + @JenM @roycekimmons & others about an evaluation of open education resources. + The eval assessed accessibility & quality of #oer. Our presentation can + be found here: https:\/\/t.co\/VwQ4k9htF8 https:\/\/t.co\/ysuflHymFA","truncated":false,"display_text_range":[0,281],"entities":{"hashtags":[{"text":"aect19","indices":[35,42]},{"text":"oer","indices":[216,220]}],"symbols":[],"user_mentions":[{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[85,90]},{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[91,104]}],"urls":[{"url":"https:\/\/t.co\/VwQ4k9htF8","expanded_url":"http:\/\/bit.ly\/aect19eval","display_url":"bit.ly\/aect19eval","indices":[258,281]}],"media":[{"id":1186636458225831938,"id_str":"1186636458225831938","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","url":"https:\/\/t.co\/ysuflHymFA","display_url":"pic.twitter.com\/ysuflHymFA","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186636463305195520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":317,"resize":"fit"},"large":{"w":1562,"h":728,"resize":"fit"},"medium":{"w":1200,"h":559,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186636458225831938,"id_str":"1186636458225831938","indices":[282,305],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfHkloUEAIEaaj.jpg","url":"https:\/\/t.co\/ysuflHymFA","display_url":"pic.twitter.com\/ysuflHymFA","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186636463305195520\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":317,"resize":"fit"},"large":{"w":1562,"h":728,"resize":"fit"},"medium":{"w":1200,"h":559,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":23,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 16:33:04 +0000 2019","id":1186681889148456960,"id_str":"1186681889148456960","full_text":"We + had the opportunity to meet with Dr. Marcus Childress, former professor and + chair of the Department of Instructional Design & Technology.\n\n#HornetNation + #EmporiaStateUniversity #InstructionalDesignandTechnology #AECT2019 https:\/\/t.co\/c4BCZJaG9b","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"HornetNation","indices":[146,159]},{"text":"EmporiaStateUniversity","indices":[160,183]},{"text":"InstructionalDesignandTechnology","indices":[184,217]},{"text":"AECT2019","indices":[218,227]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186681876557094912,"id_str":"1186681876557094912","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfw4SGUYAAt7Vq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfw4SGUYAAt7Vq.jpg","url":"https:\/\/t.co\/c4BCZJaG9b","display_url":"pic.twitter.com\/c4BCZJaG9b","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186681889148456960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186681876557094912,"id_str":"1186681876557094912","indices":[228,251],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfw4SGUYAAt7Vq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfw4SGUYAAt7Vq.jpg","url":"https:\/\/t.co\/c4BCZJaG9b","display_url":"pic.twitter.com\/c4BCZJaG9b","expanded_url":"https:\/\/twitter.com\/idtesu\/status\/1186681889148456960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107144043,"id_str":"107144043","name":"ESU + Instructional Design & Technology Program","screen_name":"idtesu","location":"Emporia, + KS","description":"Get your Master''s Degree in Instructional Design and Technology + in 12 months! Offered fully online and\/or face-to-face @TTC_ESU @emporiastate + \ud83c\udf93","url":"https:\/\/t.co\/akcN342c3S","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/akcN342c3S","expanded_url":"http:\/\/www.emporia.edu\/teach\/idt\/home.html","display_url":"emporia.edu\/teach\/idt\/home\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":372,"listed_count":42,"created_at":"Thu + Jan 21 17:35:26 +0000 2010","favourites_count":885,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2217,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133837869611659271\/oiS60yvG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107144043\/1620341156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB8D0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 12:45:00 +0000 2019","id":1186624493264859139,"id_str":"1186624493264859139","full_text":"Come + to Pavilion 10 to learn about the motivational factors that influence MOOC + completion (Tues, Oct 22, 9am) #aect19 #aect19inspired https:\/\/t.co\/5MryVUbBed + https:\/\/t.co\/rcRjlDDv6E","truncated":false,"display_text_range":[0,158],"entities":{"hashtags":[{"text":"aect19","indices":[111,118]},{"text":"aect19inspired","indices":[119,134]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5MryVUbBed","expanded_url":"http:\/\/bit.ly\/33D4SAp","display_url":"bit.ly\/33D4SAp","indices":[135,158]}],"media":[{"id":1184450670948245504,"id_str":"1184450670948245504","indices":[159,182],"media_url":"http:\/\/pbs.twimg.com\/media\/EHADnBfX4AAP0Pr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHADnBfX4AAP0Pr.png","url":"https:\/\/t.co\/rcRjlDDv6E","display_url":"pic.twitter.com\/rcRjlDDv6E","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186624493264859139\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":461,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":723,"h":490,"resize":"fit"},"medium":{"w":723,"h":490,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184450670948245504,"id_str":"1184450670948245504","indices":[159,182],"media_url":"http:\/\/pbs.twimg.com\/media\/EHADnBfX4AAP0Pr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHADnBfX4AAP0Pr.png","url":"https:\/\/t.co\/rcRjlDDv6E","display_url":"pic.twitter.com\/rcRjlDDv6E","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186624493264859139\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":461,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":723,"h":490,"resize":"fit"},"medium":{"w":723,"h":490,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 14:59:11 +0000 2019","id":1186658263082786816,"id_str":"1186658263082786816","full_text":"RT + @robmoore3: We had a blast last night at the goofy table. #aect19 https:\/\/t.co\/MfeKreIf5c","truncated":false,"display_text_range":[0,92],"entities":{"hashtags":[{"text":"aect19","indices":[61,68]}],"symbols":[],"user_mentions":[{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[3,13]}],"urls":[],"media":[{"id":1186637037547352065,"id_str":"1186637037547352065","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfIGTxU8AEyjtE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfIGTxU8AEyjtE.jpg","url":"https:\/\/t.co\/MfeKreIf5c","display_url":"pic.twitter.com\/MfeKreIf5c","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186637042765058053\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":1186637042765058053,"source_status_id_str":"1186637042765058053","source_user_id":45256556,"source_user_id_str":"45256556"}]},"extended_entities":{"media":[{"id":1186637037547352065,"id_str":"1186637037547352065","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfIGTxU8AEyjtE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfIGTxU8AEyjtE.jpg","url":"https:\/\/t.co\/MfeKreIf5c","display_url":"pic.twitter.com\/MfeKreIf5c","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186637042765058053\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":1186637042765058053,"source_status_id_str":"1186637042765058053","source_user_id":45256556,"source_user_id_str":"45256556","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 13:34:52 +0000 2019","id":1186637042765058053,"id_str":"1186637042765058053","full_text":"We + had a blast last night at the goofy table. #aect19 https:\/\/t.co\/MfeKreIf5c","truncated":false,"display_text_range":[0,53],"entities":{"hashtags":[{"text":"aect19","indices":[46,53]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186637037547352065,"id_str":"1186637037547352065","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfIGTxU8AEyjtE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfIGTxU8AEyjtE.jpg","url":"https:\/\/t.co\/MfeKreIf5c","display_url":"pic.twitter.com\/MfeKreIf5c","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186637042765058053\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186637037547352065,"id_str":"1186637037547352065","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/EHfIGTxU8AEyjtE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHfIGTxU8AEyjtE.jpg","url":"https:\/\/t.co\/MfeKreIf5c","display_url":"pic.twitter.com\/MfeKreIf5c","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186637042765058053\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 13:25:53 +0000 2019","id":1186634781720604677,"id_str":"1186634781720604677","full_text":"RT + @Stephsteph83: Made it to #Vegas and getting my brain \ud83e\udde0 and beauty + \ud83d\udc84 rest before presenting bright and early at #aect19inspired Come + Joi\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"Vegas","indices":[29,35]},{"text":"aect19inspired","indices":[115,130]}],"symbols":[],"user_mentions":[{"screen_name":"Stephsteph83","name":"Dr. + Stephanee Stephens","id":427060068,"id_str":"427060068","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 06:07:43 +0000 2019","id":1186524513179066368,"id_str":"1186524513179066368","full_text":"Made + it to #Vegas and getting my brain \ud83e\udde0 and beauty \ud83d\udc84 rest + before presenting bright and early at #aect19inspired Come Join Me! https:\/\/t.co\/ihwLddDFFr","truncated":false,"display_text_range":[0,126],"entities":{"hashtags":[{"text":"Vegas","indices":[11,17]},{"text":"aect19inspired","indices":[97,112]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186524497756602370,"id_str":"1186524497756602370","indices":[127,150],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdhvoYUwAI92lN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdhvoYUwAI92lN.jpg","url":"https:\/\/t.co\/ihwLddDFFr","display_url":"pic.twitter.com\/ihwLddDFFr","expanded_url":"https:\/\/twitter.com\/Stephsteph83\/status\/1186524513179066368\/photo\/1","type":"photo","sizes":{"large":{"w":828,"h":839,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":671,"h":680,"resize":"fit"},"medium":{"w":828,"h":839,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186524497756602370,"id_str":"1186524497756602370","indices":[127,150],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdhvoYUwAI92lN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdhvoYUwAI92lN.jpg","url":"https:\/\/t.co\/ihwLddDFFr","display_url":"pic.twitter.com\/ihwLddDFFr","expanded_url":"https:\/\/twitter.com\/Stephsteph83\/status\/1186524513179066368\/photo\/1","type":"photo","sizes":{"large":{"w":828,"h":839,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":671,"h":680,"resize":"fit"},"medium":{"w":828,"h":839,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":427060068,"id_str":"427060068","name":"Dr. + Stephanee Stephens","screen_name":"Stephsteph83","location":"Atlanta, GA","description":"Educator, + Challenger, Leader, Innovator @microsoftedu Believe in: #personalizedlearning + \ud83d\udc69\u200d\ud83c\udf93 @utoledo @kennesawstate","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2501,"friends_count":1157,"listed_count":172,"created_at":"Sat + Dec 03 02:01:17 +0000 2011","favourites_count":13627,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8514,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458524672912461825\/JM2qKEcN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458524672912461825\/JM2qKEcN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/427060068\/1636574423","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 15:24:46 +0000 2019","id":1186664701213720576,"id_str":"1186664701213720576","full_text":"RT + @nicolapallitt: I''ll be sharing about @emergeAfrica at @AECT #aect19 #aect19inspired + Join ''A Taste of the International Division'' sessi\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[64,71]},{"text":"aect19inspired","indices":[73,88]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[41,54]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[58,63]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 05:22:19 +0000 2019","id":1186150701983879168,"id_str":"1186150701983879168","full_text":"I''ll + be sharing about @emergeAfrica at @AECT #aect19 #aect19inspired Join ''A + Taste of the International Division'' session on Tuesday https:\/\/t.co\/1zFZPHmu7U + or check out these slides https:\/\/t.co\/jf3RZuwayj Also going to be at the + Wednesday BOAF https:\/\/t.co\/I0LOIg397s https:\/\/t.co\/qSDD9xuyVp","truncated":false,"display_text_range":[0,270],"entities":{"hashtags":[{"text":"aect19","indices":[45,52]},{"text":"aect19inspired","indices":[54,69]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[22,35]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[39,44]}],"urls":[{"url":"https:\/\/t.co\/1zFZPHmu7U","expanded_url":"http:\/\/tinyurl.com\/yxtq7qbm","display_url":"tinyurl.com\/yxtq7qbm","indices":[134,157]},{"url":"https:\/\/t.co\/jf3RZuwayj","expanded_url":"http:\/\/bit.ly\/emergeAfrica2019","display_url":"bit.ly\/emergeAfrica20\u2026","indices":[184,207]},{"url":"https:\/\/t.co\/I0LOIg397s","expanded_url":"http:\/\/tinyurl.com\/y68fgpjw","display_url":"tinyurl.com\/y68fgpjw","indices":[247,270]}],"media":[{"id":1186150696137027585,"id_str":"1186150696137027585","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EHYNxg1UcAEikxd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHYNxg1UcAEikxd.jpg","url":"https:\/\/t.co\/qSDD9xuyVp","display_url":"pic.twitter.com\/qSDD9xuyVp","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186150701983879168\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186150696137027585,"id_str":"1186150696137027585","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EHYNxg1UcAEikxd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHYNxg1UcAEikxd.jpg","url":"https:\/\/t.co\/qSDD9xuyVp","display_url":"pic.twitter.com\/qSDD9xuyVp","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186150701983879168\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 14:23:28 +0000 2019","id":1186649272978030592,"id_str":"1186649272978030592","full_text":"Day + two at #aect19 https:\/\/t.co\/RwnScyuwu4","truncated":false,"display_text_range":[0,18],"entities":{"hashtags":[{"text":"aect19","indices":[11,18]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186649266405572609,"id_str":"1186649266405572609","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHfTOH0VAAEqJFn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHfTOH0VAAEqJFn.jpg","url":"https:\/\/t.co\/RwnScyuwu4","display_url":"pic.twitter.com\/RwnScyuwu4","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1186649272978030592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":270,"h":224,"resize":"fit"},"small":{"w":270,"h":224,"resize":"fit"},"medium":{"w":270,"h":224,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186649266405572609,"id_str":"1186649266405572609","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHfTOH0VAAEqJFn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHfTOH0VAAEqJFn.jpg","url":"https:\/\/t.co\/RwnScyuwu4","display_url":"pic.twitter.com\/RwnScyuwu4","expanded_url":"https:\/\/twitter.com\/FakeBobGagne\/status\/1186649272978030592\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":270,"h":224,"resize":"fit"},"small":{"w":270,"h":224,"resize":"fit"},"medium":{"w":270,"h":224,"resize":"fit"}},"video_info":{"aspect_ratio":[135,112],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHfTOH0VAAEqJFn.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1186599635005169664%2C1186599635005169664%2C1186539852759814144%2C1186537387524005888%2C1186537387524005888%2C1186535938916147201%2C1186524513179066368%2C1186523784716509184%2C1186523110054354946%2C1186522357843644417%2C1186522357843644417%2C1186517752401387520%2C1186514132217946112%2C1186514075917811712%2C1186513914164498433%2C1186513749265408000%2C1186513749265408000%2C1186505204419588098%2C1186504888848699393%2C1186503524697268224%2C1186503523858386944%2C1186498856675991553%2C1186492802542161920%2C1186492337855139841%2C1186491854994526208%2C1186491854994526208%2C1186483721110618112%2C1186480007989755904%2C1186480007989755904%2C1186473630785425408%2C1186467651880513536%2C1186467161599926272%2C1186465193347309568%2C1186464465295822854%2C1186463012498001920%2C1186462981305098240%2C1186461738650107904%2C1186461677459562496%2C1186460948166348800%2C1186460948166348800%2C1186454154438299648%2C1186454077388902400%2C1186453984308944896%2C1186453917107769344%2C1186453515251539968%2C1186452317559820289%2C1186448160195043328%2C1186448160195043328%2C1186443844721639425%2C1186437191209107456%2C1186431871766298624%2C1186431009081815040%2C1186431009081815040%2C1186425313107951616%2C1186424808256360448%2C1186422565251600384%2C1186422374452752385%2C1186422121762672641%2C1186421906448277504%2C1186421545880604672%2C1186421477584752640%2C1186419605570379776%2C1186418166357868545%2C1186417896374915074%2C1186415939497021440%2C1186415939497021440%2C1186415362130079744%2C1186412187784339457%2C1186406053967208448%2C1186403570431619072%2C1186403570431619072%2C1186400294185271296%2C1186399698480857088%2C1186394509967413248%2C1186390217860665344%2C1186389747368939520%2C1186389280060596224%2C1186386394811256832%2C1186385797345202176%2C1186385797345202176%2C1186383710859362304%2C1186383630966222848%2C1186383605062234112%2C1186383231295213568%2C1186383186810392578%2C1186383105214468096%2C1186383060675096576%2C1186382810375847936%2C1186382615571398657%2C1186382572915281920%2C1186382546130493440%2C1186382506775302144%2C1186382389016006657%2C1186382133868126208%2C1186381523479433216%2C1186380384683978752%2C1186379931212664832%2C1186379429703864320%2C1186378366523301888%2C1186378363411124224&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:54 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:54 GMT + x-transaction: 33a655743921b4be + content-length: '50235' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '275' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '356' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Tue Oct 22 05:26:28 +0000 2019","id":1186514132217946112,"id_str":"1186514132217946112","full_text":"RT + @nangur1: A wonderful experience and a day of professional learning! Thank + you to @aect Theory and Research division for hosting this 2\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nangur1","name":"Dr. + Nandita Gurjar","id":2743313304,"id_str":"2743313304","indices":[3,11]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[85,90]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 01:55:08 +0000 2019","id":1186460948166348800,"id_str":"1186460948166348800","full_text":"A + wonderful experience and a day of professional learning! Thank you to @aect + Theory and Research division for hosting this 2 day event! A Big shoutout + to all the mentors! @eromerohall Charles Graham, Krista Glazewski, Andrew + Walker, & Danilo Baylen! #aect19 #aect19inspired https:\/\/t.co\/RLM1A7gmnX","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"aect19","indices":[255,262]},{"text":"aect19inspired","indices":[263,278]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[72,77]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[172,184]}],"urls":[{"url":"https:\/\/t.co\/RLM1A7gmnX","expanded_url":"https:\/\/twitter.com\/eromerohall\/status\/1186353656137805825","display_url":"twitter.com\/eromerohall\/st\u2026","indices":[279,302]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186353656137805825,"quoted_status_id_str":"1186353656137805825","quoted_status_permalink":{"url":"https:\/\/t.co\/RLM1A7gmnX","expanded":"https:\/\/twitter.com\/eromerohall\/status\/1186353656137805825","display":"twitter.com\/eromerohall\/st\u2026"},"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186353656137805825,"quoted_status_id_str":"1186353656137805825","quoted_status_permalink":{"url":"https:\/\/t.co\/RLM1A7gmnX","expanded":"https:\/\/twitter.com\/eromerohall\/status\/1186353656137805825","display":"twitter.com\/eromerohall\/st\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 00:47:10 +0000 2019","id":1186443844721639425,"id_str":"1186443844721639425","full_text":"Flow + theory, by Mihaly Czicjklmrbczjnlamwjabberwonky #aect19","truncated":false,"display_text_range":[0,60],"entities":{"hashtags":[{"text":"aect19","indices":[53,60]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"und"},{"created_at":"Tue + Oct 22 03:57:56 +0000 2019","id":1186491854994526208,"id_str":"1186491854994526208","full_text":"Highlights + of my day were convention challenging ideas elicited with style (and Tim Tams + \ud83e\udd17) by @camille_dd and time with my Vegas granddaughters! #aect19 + #aect19inspired https:\/\/t.co\/chyNstG35w","truncated":false,"display_text_range":[0,169],"entities":{"hashtags":[{"text":"aect19","indices":[146,153]},{"text":"aect19inspired","indices":[154,169]}],"symbols":[],"user_mentions":[{"screen_name":"camille_dd","name":"Camille + Dickson-Deane","id":398945750,"id_str":"398945750","indices":[95,106]}],"urls":[],"media":[{"id":1186491735884455936,"id_str":"1186491735884455936","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdD8o5UYAA2vpa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdD8o5UYAA2vpa.jpg","url":"https:\/\/t.co\/chyNstG35w","display_url":"pic.twitter.com\/chyNstG35w","expanded_url":"https:\/\/twitter.com\/ericpaulrogers\/status\/1186491854994526208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186491735884455936,"id_str":"1186491735884455936","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdD8o5UYAA2vpa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdD8o5UYAA2vpa.jpg","url":"https:\/\/t.co\/chyNstG35w","display_url":"pic.twitter.com\/chyNstG35w","expanded_url":"https:\/\/twitter.com\/ericpaulrogers\/status\/1186491854994526208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1186491842247852032,"id_str":"1186491842247852032","indices":[170,193],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdEC1IVAAARJFG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdEC1IVAAARJFG.jpg","url":"https:\/\/t.co\/chyNstG35w","display_url":"pic.twitter.com\/chyNstG35w","expanded_url":"https:\/\/twitter.com\/ericpaulrogers\/status\/1186491854994526208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":51775264,"id_str":"51775264","name":"Eric + Paul Rogers","screen_name":"ericpaulrogers","location":"Salt Lake City, UT","description":"(he, + him) aspiring stone catcher | ally\ud83c\udf08","url":"https:\/\/t.co\/xhUZs9RX55","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/xhUZs9RX55","expanded_url":"https:\/\/ericpaulrogers.com","display_url":"ericpaulrogers.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":361,"friends_count":1232,"listed_count":2,"created_at":"Sun + Jun 28 16:49:05 +0000 2009","favourites_count":27579,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3148,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1478471925911339008\/2wRBAyhT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1478471925911339008\/2wRBAyhT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/51775264\/1648702096","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 05:40:51 +0000 2019","id":1186517752401387520,"id_str":"1186517752401387520","full_text":"#aect19inspired + #aect19 Come and join us tomorrow morning at 8 am for our conversation with + Dr. Xun Ge, AECT President-Elect. @gsa_aect @AECT https:\/\/t.co\/9e1CC2OTi0","truncated":false,"display_text_range":[0,141],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]},{"text":"aect19","indices":[16,23]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[126,135]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[136,141]}],"urls":[],"media":[{"id":1186517745426321409,"id_str":"1186517745426321409","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdbml_VUAEicB0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdbml_VUAEicB0.jpg","url":"https:\/\/t.co\/9e1CC2OTi0","display_url":"pic.twitter.com\/9e1CC2OTi0","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1186517752401387520\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186517745426321409,"id_str":"1186517745426321409","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdbml_VUAEicB0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdbml_VUAEicB0.jpg","url":"https:\/\/t.co\/9e1CC2OTi0","display_url":"pic.twitter.com\/9e1CC2OTi0","expanded_url":"https:\/\/twitter.com\/MuratTurkOU\/status\/1186517752401387520\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186318434964930560,"id_str":"1186318434964930560","name":"Murat + Turk, Ph.D.","screen_name":"MuratTurkEd","location":"Cincinnati, OH","description":"Online + Learning | motivation | engagement | online presences | loving husband of + Sinem Toraman Turk \u2764\ufe0f| loving father of @bgmtrk1\u2764\ufe0f | @FulbrightTurkey","url":"https:\/\/t.co\/DmCPHu9r7d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DmCPHu9r7d","expanded_url":"http:\/\/www.ardat.net","display_url":"ardat.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":853,"listed_count":5,"created_at":"Mon + Oct 21 16:29:13 +0000 2019","favourites_count":4396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2544,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186318434964930560\/1653078596","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 22:07:08 +0000 2019","id":1186403570431619072,"id_str":"1186403570431619072","full_text":"This + will be another great year of exciting and in-depth conversation on research! + Look forward to catching up with friends, too!\n#aect19 #computationalthinking + https:\/\/t.co\/yrlVK1v3Gh","truncated":false,"display_text_range":[0,160],"entities":{"hashtags":[{"text":"aect19","indices":[130,137]},{"text":"computationalthinking","indices":[138,160]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186403565985656832,"id_str":"1186403565985656832","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbzwebU8AATCTp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbzwebU8AATCTp.jpg","url":"https:\/\/t.co\/yrlVK1v3Gh","display_url":"pic.twitter.com\/yrlVK1v3Gh","expanded_url":"https:\/\/twitter.com\/HsuBSU\/status\/1186403570431619072\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":828,"h":1792,"resize":"fit"},"medium":{"w":554,"h":1200,"resize":"fit"},"small":{"w":314,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186403565985656832,"id_str":"1186403565985656832","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbzwebU8AATCTp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbzwebU8AATCTp.jpg","url":"https:\/\/t.co\/yrlVK1v3Gh","display_url":"pic.twitter.com\/yrlVK1v3Gh","expanded_url":"https:\/\/twitter.com\/HsuBSU\/status\/1186403570431619072\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":828,"h":1792,"resize":"fit"},"medium":{"w":554,"h":1200,"resize":"fit"},"small":{"w":314,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1186403565989851137,"id_str":"1186403565989851137","indices":[161,184],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbzwecU8AEfAsx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbzwecU8AEfAsx.jpg","url":"https:\/\/t.co\/yrlVK1v3Gh","display_url":"pic.twitter.com\/yrlVK1v3Gh","expanded_url":"https:\/\/twitter.com\/HsuBSU\/status\/1186403570431619072\/photo\/1","type":"photo","sizes":{"small":{"w":314,"h":680,"resize":"fit"},"large":{"w":828,"h":1792,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":554,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237053180,"id_str":"237053180","name":"Yu-Chang + Hsu","screen_name":"HsuBSU","location":"","description":"Professor, Boise + State University","url":"https:\/\/t.co\/hyvWHDFMCC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hyvWHDFMCC","expanded_url":"https:\/\/yuchanghsu.wixsite.com\/portfolio","display_url":"yuchanghsu.wixsite.com\/portfolio","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":405,"listed_count":0,"created_at":"Tue + Jan 11 23:53:22 +0000 2011","favourites_count":1093,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":432,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1213226927\/HSU_Headshot_new_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1213226927\/HSU_Headshot_new_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 23:33:32 +0000 2019","id":1186425313107951616,"id_str":"1186425313107951616","full_text":"How + many AECT members does it take to screw in a lightbulb? 7 +- 2 #aect19","truncated":false,"display_text_range":[0,74],"entities":{"hashtags":[{"text":"aect19","indices":[67,74]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:45:48 +0000 2019","id":1186383105214468096,"id_str":"1186383105214468096","full_text":"RT + @DrVirtuality: Met another Camille @ \u2066@AECT\u2069 convention. Highly + recommend this session! #aect19 @aect19inspired #distancelearning #onli\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[92,99]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[41,46]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 20:26:37 +0000 2019","id":1186378274802257920,"id_str":"1186378274802257920","full_text":"Met + another Camille @ \u2066@AECT\u2069 convention. Highly recommend this session! #aect19 + @aect19inspired #distancelearning #onlinelearning #onlinelearn https:\/\/t.co\/eLRqYpm3ew","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19","indices":[74,81]},{"text":"distancelearning","indices":[98,115]},{"text":"onlinelearning","indices":[116,131]},{"text":"onlinelearn","indices":[132,144]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[23,28]}],"urls":[],"media":[{"id":1186378268720549888,"id_str":"1186378268720549888","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbcv-xU0AA1JGt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbcv-xU0AA1JGt.jpg","url":"https:\/\/t.co\/eLRqYpm3ew","display_url":"pic.twitter.com\/eLRqYpm3ew","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186378274802257920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186378268720549888,"id_str":"1186378268720549888","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbcv-xU0AA1JGt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbcv-xU0AA1JGt.jpg","url":"https:\/\/t.co\/eLRqYpm3ew","display_url":"pic.twitter.com\/eLRqYpm3ew","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186378274802257920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:31:12 +0000 2019","id":1186379429703864320,"id_str":"1186379429703864320","full_text":"Passing + over the Grand Canyon. See you soon! #aect19inspired https:\/\/t.co\/XJtWLKbUvs","truncated":false,"display_text_range":[0,60],"entities":{"hashtags":[{"text":"aect19inspired","indices":[45,60]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186379422372204544,"id_str":"1186379422372204544","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbdzIdUEAA0Q80.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbdzIdUEAA0Q80.jpg","url":"https:\/\/t.co\/XJtWLKbUvs","display_url":"pic.twitter.com\/XJtWLKbUvs","expanded_url":"https:\/\/twitter.com\/profoyarzun\/status\/1186379429703864320\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186379422372204544,"id_str":"1186379422372204544","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbdzIdUEAA0Q80.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbdzIdUEAA0Q80.jpg","url":"https:\/\/t.co\/XJtWLKbUvs","display_url":"pic.twitter.com\/XJtWLKbUvs","expanded_url":"https:\/\/twitter.com\/profoyarzun\/status\/1186379429703864320\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19023356,"id_str":"19023356","name":"Beth + Oyarzun","screen_name":"profoyarzun","location":"Charlotte, NC","description":"Clinical + Associate Professor and director of the Learning, Design and Technology program + at UNCC, wife, mom, and scuba diver.","url":"https:\/\/t.co\/GKjzX92eV9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GKjzX92eV9","expanded_url":"https:\/\/sites.google.com\/uncc.edu\/bethoyarzun\/home?authuser=2","display_url":"sites.google.com\/uncc.edu\/betho\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":295,"friends_count":523,"listed_count":15,"created_at":"Thu + Jan 15 14:35:36 +0000 2009","favourites_count":1232,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1082,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650037082346422272\/X3Iy9bMz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650037082346422272\/X3Iy9bMz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19023356\/1566681139","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},{"created_at":"Mon + Oct 21 23:18:17 +0000 2019","id":1186421477584752640,"id_str":"1186421477584752640","full_text":"First-timers + in the house!! And the house is full! #aect19inspired https:\/\/t.co\/qJACrgbrLe","truncated":false,"display_text_range":[0,66],"entities":{"hashtags":[{"text":"aect19inspired","indices":[51,66]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186421469879758848,"id_str":"1186421469879758848","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcECnoUcAAanHP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcECnoUcAAanHP.jpg","url":"https:\/\/t.co\/qJACrgbrLe","display_url":"pic.twitter.com\/qJACrgbrLe","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186421477584752640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186421469879758848,"id_str":"1186421469879758848","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcECnoUcAAanHP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcECnoUcAAanHP.jpg","url":"https:\/\/t.co\/qJACrgbrLe","display_url":"pic.twitter.com\/qJACrgbrLe","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186421477584752640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1186421469900730371,"id_str":"1186421469900730371","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcECntUcAMa-vI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcECntUcAMa-vI.jpg","url":"https:\/\/t.co\/qJACrgbrLe","display_url":"pic.twitter.com\/qJACrgbrLe","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186421477584752640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 01:58:16 +0000 2019","id":1186461738650107904,"id_str":"1186461738650107904","full_text":"RT + @DrTerriC: Hey.. #AECT19inspired my regular K12 Twitter Chat with my friends + from the area #nvedchat starts in 3 minutes! Join us!","truncated":false,"display_text_range":[0,135],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[21,36]},{"text":"nvedchat","indices":[95,104]}],"symbols":[],"user_mentions":[{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2691013705,"id_str":"2691013705","name":"#NVedchat","screen_name":"NevadaEdChat","location":"Nevada","description":"We + are a 30 minute chat about Education on Mondays at 7pm PST. \nEveryone Welcome! + #NVedchat Founded by @Snehalstocks","url":"https:\/\/t.co\/ReYrqLRTne","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ReYrqLRTne","expanded_url":"http:\/\/tinyurl.com\/NevadaEdChat","display_url":"tinyurl.com\/NevadaEdChat","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1862,"friends_count":1485,"listed_count":92,"created_at":"Tue + Jul 29 20:27:12 +0000 2014","favourites_count":26122,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15940,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1161083569172729856\/bsZ2A0UM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1161083569172729856\/bsZ2A0UM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2691013705\/1565658740","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 01:58:01 +0000 2019","id":1186461677459562496,"id_str":"1186461677459562496","full_text":"Hey.. #AECT19inspired + my regular K12 Twitter Chat with my friends from the area #nvedchat starts + in 3 minutes! Join us!","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[7,22]},{"text":"nvedchat","indices":[81,90]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 06:53:07 +0000 2019","id":1186535938916147201,"id_str":"1186535938916147201","full_text":"Meet + the #aect19 Intern Class.@kiranbudhrani @LaurenBagdy @nateturcotte22 https:\/\/t.co\/3mSa3aiRry","truncated":false,"display_text_range":[0,73],"entities":{"hashtags":[{"text":"aect19","indices":[9,16]}],"symbols":[],"user_mentions":[{"screen_name":"kiranbudhrani","name":"Dr. + Kiran Budhrani","id":6432592,"id_str":"6432592","indices":[30,44]},{"screen_name":"LaurenBagdy","name":"Lauren + Bagdy","id":22214646,"id_str":"22214646","indices":[45,57]},{"screen_name":"nateturcotte22","name":"Nate + Turcotte","id":600653284,"id_str":"600653284","indices":[58,73]}],"urls":[],"media":[{"id":1186535931492192258,"id_str":"1186535931492192258","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdsJKXUUAIkPBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdsJKXUUAIkPBI.jpg","url":"https:\/\/t.co\/3mSa3aiRry","display_url":"pic.twitter.com\/3mSa3aiRry","expanded_url":"https:\/\/twitter.com\/AectInternship\/status\/1186535938916147201\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186535931492192258,"id_str":"1186535931492192258","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdsJKXUUAIkPBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdsJKXUUAIkPBI.jpg","url":"https:\/\/t.co\/3mSa3aiRry","display_url":"pic.twitter.com\/3mSa3aiRry","expanded_url":"https:\/\/twitter.com\/AectInternship\/status\/1186535938916147201\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":966397466475204608,"id_str":"966397466475204608","name":"AECT + Internship","screen_name":"AectInternship","location":"","description":"The + AECT Addie Kinsinger Leadership Development Internship Program supports future + leaders in AECT and the field of IDT.","url":"https:\/\/t.co\/rUfOKlczyK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rUfOKlczyK","expanded_url":"http:\/\/aect.org\/internprogram","display_url":"aect.org\/internprogram","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":180,"friends_count":101,"listed_count":2,"created_at":"Wed + Feb 21 19:41:25 +0000 2018","favourites_count":99,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":92,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/969229525635788802\/x8Bbhxpx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/969229525635788802\/x8Bbhxpx_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":24,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 01:28:08 +0000 2019","id":1186454154438299648,"id_str":"1186454154438299648","full_text":"RT + @michaelmgrant: First-timers in the house!! And the house is full! #aect19inspired + https:\/\/t.co\/qJACrgbrLe","truncated":false,"display_text_range":[0,109],"entities":{"hashtags":[{"text":"aect19inspired","indices":[70,85]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[3,17]}],"urls":[],"media":[{"id":1186421469879758848,"id_str":"1186421469879758848","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcECnoUcAAanHP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcECnoUcAAanHP.jpg","url":"https:\/\/t.co\/qJACrgbrLe","display_url":"pic.twitter.com\/qJACrgbrLe","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186421477584752640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1186421477584752640,"source_status_id_str":"1186421477584752640","source_user_id":132653457,"source_user_id_str":"132653457"}]},"extended_entities":{"media":[{"id":1186421469879758848,"id_str":"1186421469879758848","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcECnoUcAAanHP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcECnoUcAAanHP.jpg","url":"https:\/\/t.co\/qJACrgbrLe","display_url":"pic.twitter.com\/qJACrgbrLe","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186421477584752640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1186421477584752640,"source_status_id_str":"1186421477584752640","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null},{"id":1186421469900730371,"id_str":"1186421469900730371","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcECntUcAMa-vI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcECntUcAMa-vI.jpg","url":"https:\/\/t.co\/qJACrgbrLe","display_url":"pic.twitter.com\/qJACrgbrLe","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186421477584752640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"source_status_id":1186421477584752640,"source_status_id_str":"1186421477584752640","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 23:18:17 +0000 2019","id":1186421477584752640,"id_str":"1186421477584752640","full_text":"First-timers + in the house!! And the house is full! #aect19inspired https:\/\/t.co\/qJACrgbrLe","truncated":false,"display_text_range":[0,66],"entities":{"hashtags":[{"text":"aect19inspired","indices":[51,66]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186421469879758848,"id_str":"1186421469879758848","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcECnoUcAAanHP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcECnoUcAAanHP.jpg","url":"https:\/\/t.co\/qJACrgbrLe","display_url":"pic.twitter.com\/qJACrgbrLe","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186421477584752640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186421469879758848,"id_str":"1186421469879758848","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcECnoUcAAanHP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcECnoUcAAanHP.jpg","url":"https:\/\/t.co\/qJACrgbrLe","display_url":"pic.twitter.com\/qJACrgbrLe","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186421477584752640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1186421469900730371,"id_str":"1186421469900730371","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcECntUcAMa-vI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcECntUcAMa-vI.jpg","url":"https:\/\/t.co\/qJACrgbrLe","display_url":"pic.twitter.com\/qJACrgbrLe","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186421477584752640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:47:54 +0000 2019","id":1186383630966222848,"id_str":"1186383630966222848","full_text":"RT + @jcmadison2007: #inspiredme #aect19 https:\/\/t.co\/yVlyg3LpZw","truncated":false,"display_text_range":[0,62],"entities":{"hashtags":[{"text":"inspiredme","indices":[19,30]},{"text":"aect19","indices":[31,38]}],"symbols":[],"user_mentions":[{"screen_name":"jcmadison2007","name":"Szu-Yueh + Justine Chien","id":93868762,"id_str":"93868762","indices":[3,17]}],"urls":[],"media":[{"id":1186346649091600393,"id_str":"1186346649091600393","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa__eeUcAkAax4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa__eeUcAkAax4.jpg","url":"https:\/\/t.co\/yVlyg3LpZw","display_url":"pic.twitter.com\/yVlyg3LpZw","expanded_url":"https:\/\/twitter.com\/jcmadison2007\/status\/1186346655727046657\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1186346655727046657,"source_status_id_str":"1186346655727046657","source_user_id":93868762,"source_user_id_str":"93868762"}]},"extended_entities":{"media":[{"id":1186346649091600393,"id_str":"1186346649091600393","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa__eeUcAkAax4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa__eeUcAkAax4.jpg","url":"https:\/\/t.co\/yVlyg3LpZw","display_url":"pic.twitter.com\/yVlyg3LpZw","expanded_url":"https:\/\/twitter.com\/jcmadison2007\/status\/1186346655727046657\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1186346655727046657,"source_status_id_str":"1186346655727046657","source_user_id":93868762,"source_user_id_str":"93868762","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 18:20:58 +0000 2019","id":1186346655727046657,"id_str":"1186346655727046657","full_text":"#inspiredme + #aect19 https:\/\/t.co\/yVlyg3LpZw","truncated":false,"display_text_range":[0,19],"entities":{"hashtags":[{"text":"inspiredme","indices":[0,11]},{"text":"aect19","indices":[12,19]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186346649091600393,"id_str":"1186346649091600393","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa__eeUcAkAax4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa__eeUcAkAax4.jpg","url":"https:\/\/t.co\/yVlyg3LpZw","display_url":"pic.twitter.com\/yVlyg3LpZw","expanded_url":"https:\/\/twitter.com\/jcmadison2007\/status\/1186346655727046657\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186346649091600393,"id_str":"1186346649091600393","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa__eeUcAkAax4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa__eeUcAkAax4.jpg","url":"https:\/\/t.co\/yVlyg3LpZw","display_url":"pic.twitter.com\/yVlyg3LpZw","expanded_url":"https:\/\/twitter.com\/jcmadison2007\/status\/1186346655727046657\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":93868762,"id_str":"93868762","name":"Szu-Yueh + Justine Chien","screen_name":"jcmadison2007","location":"Madison, WI","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":61,"listed_count":3,"created_at":"Tue + Dec 01 14:25:12 +0000 2009","favourites_count":15,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":45,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1143281723796574208\/fKIs6ct8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1143281723796574208\/fKIs6ct8_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Tue + Oct 22 11:06:13 +0000 2019","id":1186599635005169664,"id_str":"1186599635005169664","full_text":"RT + @KuiXieOSU: For folks attending #aect19 this week, check out our panel on + #CollaborativeResearch on Tuesday morning. I will join @ge_xun\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[35,42]},{"text":"CollaborativeResearch","indices":[77,99]}],"symbols":[],"user_mentions":[{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[132,139]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":69122603,"id_str":"69122603","name":"Colleen + M. Smith","screen_name":"cmmarqua","location":"Raleigh, NC","description":"Inclusive + learning designer. Forever #SApro learning something new. loud laugh, dancer, + red hair, & human\/kitty mom.","url":"https:\/\/t.co\/qyesiaXHJQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/qyesiaXHJQ","expanded_url":"http:\/\/colleensmith.tech\/","display_url":"colleensmith.tech","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":647,"friends_count":825,"listed_count":39,"created_at":"Wed + Aug 26 22:52:22 +0000 2009","favourites_count":8031,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13471,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1148574417141653504\/sm4xWOkT_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1148574417141653504\/sm4xWOkT_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/69122603\/1562676428","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"850CF5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"313D39","profile_text_color":"5E8E78","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 20 22:39:22 +0000 2019","id":1186049296304693250,"id_str":"1186049296304693250","full_text":"For + folks attending #aect19 this week, check out our panel on #CollaborativeResearch + on Tuesday morning. I will join @ge_xun @amy_c_bradshaw @fake_reeves @christieliuidtr + and others to share our experience in collaborative research from proposal + to implementation. #aect19inspired https:\/\/t.co\/mYhbxXJGFj","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"aect19","indices":[20,27]},{"text":"CollaborativeResearch","indices":[62,84]},{"text":"aect19inspired","indices":[265,280]}],"symbols":[],"user_mentions":[{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[117,124]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[125,140]}],"urls":[],"media":[{"id":1186049289006538753,"id_str":"1186049289006538753","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","url":"https:\/\/t.co\/mYhbxXJGFj","display_url":"pic.twitter.com\/mYhbxXJGFj","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186049296304693250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186049289006538753,"id_str":"1186049289006538753","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","url":"https:\/\/t.co\/mYhbxXJGFj","display_url":"pic.twitter.com\/mYhbxXJGFj","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186049296304693250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter + for Mac\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:43:41 +0000 2019","id":1186382572915281920,"id_str":"1186382572915281920","full_text":"RT + @kolorkid: Members of the Leadership Development Committee inspire me! #AECT19 + #inspiredme #inspiresme https:\/\/t.co\/xJA3lKnZmw","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[{"text":"AECT19","indices":[74,81]},{"text":"inspiredme","indices":[82,93]},{"text":"inspiresme","indices":[94,105]}],"symbols":[],"user_mentions":[{"screen_name":"kolorkid","name":"Dr. + Heather Leary","id":14669702,"id_str":"14669702","indices":[3,12]}],"urls":[],"media":[{"id":1186303839785275394,"id_str":"1186303839785275394","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EHaZDpYVUAI0mjs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHaZDpYVUAI0mjs.jpg","url":"https:\/\/t.co\/xJA3lKnZmw","display_url":"pic.twitter.com\/xJA3lKnZmw","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186303845309149184\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1186303845309149184,"source_status_id_str":"1186303845309149184","source_user_id":14669702,"source_user_id_str":"14669702"}]},"extended_entities":{"media":[{"id":1186303839785275394,"id_str":"1186303839785275394","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EHaZDpYVUAI0mjs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHaZDpYVUAI0mjs.jpg","url":"https:\/\/t.co\/xJA3lKnZmw","display_url":"pic.twitter.com\/xJA3lKnZmw","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186303845309149184\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1186303845309149184,"source_status_id_str":"1186303845309149184","source_user_id":14669702,"source_user_id_str":"14669702","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 15:30:51 +0000 2019","id":1186303845309149184,"id_str":"1186303845309149184","full_text":"Members + of the Leadership Development Committee inspire me! #AECT19 #inspiredme #inspiresme + https:\/\/t.co\/xJA3lKnZmw","truncated":false,"display_text_range":[0,91],"entities":{"hashtags":[{"text":"AECT19","indices":[60,67]},{"text":"inspiredme","indices":[68,79]},{"text":"inspiresme","indices":[80,91]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186303839785275394,"id_str":"1186303839785275394","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHaZDpYVUAI0mjs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHaZDpYVUAI0mjs.jpg","url":"https:\/\/t.co\/xJA3lKnZmw","display_url":"pic.twitter.com\/xJA3lKnZmw","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186303845309149184\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186303839785275394,"id_str":"1186303839785275394","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHaZDpYVUAI0mjs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHaZDpYVUAI0mjs.jpg","url":"https:\/\/t.co\/xJA3lKnZmw","display_url":"pic.twitter.com\/xJA3lKnZmw","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186303845309149184\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 01:27:11 +0000 2019","id":1186453917107769344,"id_str":"1186453917107769344","full_text":"RT + @kariknisely: I found some of my @ISLT_FSU fam here at #AECT19 in #Vegas. + https:\/\/t.co\/Do83CY2dIb","truncated":false,"display_text_range":[0,100],"entities":{"hashtags":[{"text":"AECT19","indices":[58,65]},{"text":"Vegas","indices":[69,75]}],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[36,45]}],"urls":[{"url":"https:\/\/t.co\/Do83CY2dIb","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186431009081815040","display_url":"twitter.com\/ISLT_FSU\/statu\u2026","indices":[77,100]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 23:59:35 +0000 2019","id":1186431871766298624,"id_str":"1186431871766298624","full_text":"I + found some of my @ISLT_FSU fam here at #AECT19 in #Vegas. https:\/\/t.co\/Do83CY2dIb","truncated":false,"display_text_range":[0,59],"entities":{"hashtags":[{"text":"AECT19","indices":[41,48]},{"text":"Vegas","indices":[52,58]}],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[19,28]}],"urls":[{"url":"https:\/\/t.co\/Do83CY2dIb","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186431009081815040","display_url":"twitter.com\/ISLT_FSU\/statu\u2026","indices":[60,83]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1186431009081815040,"quoted_status_id_str":"1186431009081815040","quoted_status_permalink":{"url":"https:\/\/t.co\/Do83CY2dIb","expanded":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186431009081815040","display":"twitter.com\/ISLT_FSU\/statu\u2026"},"quoted_status":{"created_at":"Mon + Oct 21 23:56:10 +0000 2019","id":1186431009081815040,"id_str":"1186431009081815040","full_text":"#FSU + #FSUCOE #ISLT doctoral students (with Past President Ana Donaldson) at the + First Timer\u2019s Orientation #AECT19 learning about the conference. https:\/\/t.co\/IG2l7uBX6O","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"FSU","indices":[0,4]},{"text":"FSUCOE","indices":[5,12]},{"text":"ISLT","indices":[13,18]},{"text":"AECT19","indices":[106,113]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186430996926697472,"id_str":"1186430996926697472","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcMtKpUEAA1M-L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcMtKpUEAA1M-L.jpg","url":"https:\/\/t.co\/IG2l7uBX6O","display_url":"pic.twitter.com\/IG2l7uBX6O","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186431009081815040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186430996926697472,"id_str":"1186430996926697472","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcMtKpUEAA1M-L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcMtKpUEAA1M-L.jpg","url":"https:\/\/t.co\/IG2l7uBX6O","display_url":"pic.twitter.com\/IG2l7uBX6O","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186431009081815040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186431009081815040,"quoted_status_id_str":"1186431009081815040","quoted_status_permalink":{"url":"https:\/\/t.co\/Do83CY2dIb","expanded":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186431009081815040","display":"twitter.com\/ISLT_FSU\/statu\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 03:10:52 +0000 2019","id":1186480007989755904,"id_str":"1186480007989755904","full_text":"RT + @tutaleni: #SneakPeek - doing a run through of our #AECT19 workshop in @EdTechOkstate + class. #AECT19inspired https:\/\/t.co\/Tm0zW0wm96","truncated":false,"display_text_range":[0,135],"entities":{"hashtags":[{"text":"SneakPeek","indices":[14,24]},{"text":"AECT19","indices":[54,61]},{"text":"AECT19inspired","indices":[96,111]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]},{"screen_name":"EdTechOkstate","name":"Okstate + Ed Tech","id":4141659852,"id_str":"4141659852","indices":[74,88]}],"urls":[],"media":[{"id":1184913528593043457,"id_str":"1184913528593043457","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","url":"https:\/\/t.co\/Tm0zW0wm96","display_url":"pic.twitter.com\/Tm0zW0wm96","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1184913532300808193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1135,"h":1145,"resize":"fit"},"small":{"w":674,"h":680,"resize":"fit"},"large":{"w":1135,"h":1145,"resize":"fit"}},"source_status_id":1184913532300808193,"source_status_id_str":"1184913532300808193","source_user_id":48223678,"source_user_id_str":"48223678"}]},"extended_entities":{"media":[{"id":1184913528593043457,"id_str":"1184913528593043457","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","url":"https:\/\/t.co\/Tm0zW0wm96","display_url":"pic.twitter.com\/Tm0zW0wm96","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1184913532300808193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1135,"h":1145,"resize":"fit"},"small":{"w":674,"h":680,"resize":"fit"},"large":{"w":1135,"h":1145,"resize":"fit"}},"source_status_id":1184913532300808193,"source_status_id_str":"1184913532300808193","source_user_id":48223678,"source_user_id_str":"48223678","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":991017763824025600,"id_str":"991017763824025600","name":"Thanh + Do","screen_name":"_ThanhDo","location":"Oklahoma, USA","description":"\u2618\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":28,"friends_count":50,"listed_count":0,"created_at":"Mon + Apr 30 18:13:41 +0000 2018","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":14,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1461175168152195079\/c3x7Df6b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1461175168152195079\/c3x7Df6b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/991017763824025600\/1554832273","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"F58EA8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 17 19:26:15 +0000 2019","id":1184913532300808193,"id_str":"1184913532300808193","full_text":"#SneakPeek + - doing a run through of our #AECT19 workshop in @EdTechOkstate class. #AECT19inspired + https:\/\/t.co\/Tm0zW0wm96","truncated":false,"display_text_range":[0,97],"entities":{"hashtags":[{"text":"SneakPeek","indices":[0,10]},{"text":"AECT19","indices":[40,47]},{"text":"AECT19inspired","indices":[82,97]}],"symbols":[],"user_mentions":[{"screen_name":"EdTechOkstate","name":"Okstate + Ed Tech","id":4141659852,"id_str":"4141659852","indices":[60,74]}],"urls":[],"media":[{"id":1184913528593043457,"id_str":"1184913528593043457","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","url":"https:\/\/t.co\/Tm0zW0wm96","display_url":"pic.twitter.com\/Tm0zW0wm96","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1184913532300808193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1135,"h":1145,"resize":"fit"},"small":{"w":674,"h":680,"resize":"fit"},"large":{"w":1135,"h":1145,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184913528593043457,"id_str":"1184913528593043457","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","url":"https:\/\/t.co\/Tm0zW0wm96","display_url":"pic.twitter.com\/Tm0zW0wm96","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1184913532300808193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1135,"h":1145,"resize":"fit"},"small":{"w":674,"h":680,"resize":"fit"},"large":{"w":1135,"h":1145,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:43:52 +0000 2019","id":1186382615571398657,"id_str":"1186382615571398657","full_text":"RT + @JenM: Here''s the @design4learn roster of sessions at #aect19. We''ll be + updating the list with the slides at the conclusion of the confe\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[57,64]}],"symbols":[],"user_mentions":[{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[3,8]},{"screen_name":"design4learn","name":"Designers + for Learning","id":1610558420,"id_str":"1610558420","indices":[21,34]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 14:39:26 +0000 2019","id":1186290903385690113,"id_str":"1186290903385690113","full_text":"Here''s + the @design4learn roster of sessions at #aect19. We''ll be updating the list + with the slides at the conclusion of the conference. Thanks! https:\/\/t.co\/bs61Ehh0rt","truncated":false,"display_text_range":[0,167],"entities":{"hashtags":[{"text":"aect19","indices":[47,54]}],"symbols":[],"user_mentions":[{"screen_name":"design4learn","name":"Designers + for Learning","id":1610558420,"id_str":"1610558420","indices":[11,24]}],"urls":[{"url":"https:\/\/t.co\/bs61Ehh0rt","expanded_url":"https:\/\/designersforlearning.org\/aect19","display_url":"designersforlearning.org\/aect19","indices":[144,167]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":13515,"id_str":"13515","name":"Jennifer + Maddrell","screen_name":"JenM","location":"Chicago, IL","description":"Teach, + study & design learning experiences","url":"https:\/\/t.co\/725I4m2QWv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/725I4m2QWv","expanded_url":"https:\/\/jennifermaddrell.com","display_url":"jennifermaddrell.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2420,"friends_count":4448,"listed_count":80,"created_at":"Tue + Nov 21 13:57:14 +0000 2006","favourites_count":7779,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3455,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13515\/1604669803","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 01:04:19 +0000 2019","id":1186448160195043328,"id_str":"1186448160195043328","full_text":"When + you realize it''s your 10th anniversary in #AECT. \u2764\ufe0f\ud83c\udf89 + #aect19 #aectinspired https:\/\/t.co\/RyzxGQjRjQ https:\/\/t.co\/gbLIBDbDj7","truncated":false,"display_text_range":[0,103],"entities":{"hashtags":[{"text":"AECT","indices":[47,52]},{"text":"aect19","indices":[58,65]},{"text":"aectinspired","indices":[66,79]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RyzxGQjRjQ","expanded_url":"http:\/\/bit.ly\/2MAVsQk","display_url":"bit.ly\/2MAVsQk","indices":[80,103]}],"media":[{"id":1186448159104524288,"id_str":"1186448159104524288","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/EHccUIvXYAA61He.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHccUIvXYAA61He.jpg","url":"https:\/\/t.co\/gbLIBDbDj7","display_url":"pic.twitter.com\/gbLIBDbDj7","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186448160195043328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186448159104524288,"id_str":"1186448159104524288","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/EHccUIvXYAA61He.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHccUIvXYAA61He.jpg","url":"https:\/\/t.co\/gbLIBDbDj7","display_url":"pic.twitter.com\/gbLIBDbDj7","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186448160195043328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":32,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 21:14:04 +0000 2019","id":1186390217860665344,"id_str":"1186390217860665344","full_text":"RT + @teacherrogers: I''ve added 2 of 3 slide presentations for @AECT''s conference + next week to my blog post. My #aect19inspired mini-workshop\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[110,125]}],"symbols":[],"user_mentions":[{"screen_name":"teacherrogers","name":"Sandra + Annette Rogers, PhD","id":212784618,"id_str":"212784618","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[61,66]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 17 17:10:42 +0000 2019","id":1184879421016043525,"id_str":"1184879421016043525","full_text":"I''ve + added 2 of 3 slide presentations for @AECT''s conference next week to my blog + post. My #aect19inspired mini-workshop session for culture, technology, & + learning (@aectclt) is ready. Check it out! https:\/\/t.co\/BkjT0QkOpD","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"aect19inspired","indices":[91,106]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[42,47]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[170,178]}],"urls":[{"url":"https:\/\/t.co\/BkjT0QkOpD","expanded_url":"https:\/\/teacherrogers.wordpress.com\/2019\/09\/07\/join-me-at-aect-2019-in-las-vegas\/","display_url":"teacherrogers.wordpress.com\/2019\/09\/07\/joi\u2026","indices":[204,227]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 04:49:44 +0000 2019","id":1186504888848699393,"id_str":"1186504888848699393","full_text":"RT + @art_brownlow: Learning a lot about instructional use of AR @AECT. Meanwhile, + we had a visitor at our session. #aect2019 #aect19inspired\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect2019","indices":[114,123]},{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"art_brownlow","name":"Art + Brownlow","id":887813304311087104,"id_str":"887813304311087104","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[63,68]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":129754385,"id_str":"129754385","name":"\u062f. + \u062a\u0631\u0643\u064a \u0633\u0639\u062f \u0633\u0639\u062f\u064a \u0622\u0644 + \u063a\u0631\u0633\u0627\u0646 Dr.Turki AL-Zahrani","screen_name":"Alhareeri","location":"Virginia","description":"Fulbright + Scholar who wants to teach to the future & integrate technology into his teachings.@UofJeddah + #Hokie @ALCVT Co-Founder\/Ex-VP @HandbyHandorg \u062d\u0633\u0627\u0628 \u0634\u062e\u0635\u064a","url":"https:\/\/t.co\/jd84tJAAAL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/jd84tJAAAL","expanded_url":"https:\/\/sa.linkedin.com\/in\/turki-saad-al-zahrani-phd-472b4512","display_url":"sa.linkedin.com\/in\/turki-saad-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1163,"friends_count":1037,"listed_count":10,"created_at":"Mon + Apr 05 08:56:44 +0000 2010","favourites_count":15603,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16155,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1521866468052324359\/oT-dGuoF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1521866468052324359\/oT-dGuoF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/129754385\/1651659104","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 17:15:47 +0000 2019","id":1186330250994565124,"id_str":"1186330250994565124","full_text":"Learning + a lot about instructional use of AR @AECT. Meanwhile, we had a visitor at + our session. #aect2019 #aect19inspired https:\/\/t.co\/HjfO4IZVEm","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"aect2019","indices":[96,105]},{"text":"aect19inspired","indices":[106,121]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[45,50]}],"urls":[],"media":[{"id":1186330138339753986,"id_str":"1186330138339753986","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","url":"https:\/\/t.co\/HjfO4IZVEm","display_url":"pic.twitter.com\/HjfO4IZVEm","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186330138339753986,"id_str":"1186330138339753986","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","url":"https:\/\/t.co\/HjfO4IZVEm","display_url":"pic.twitter.com\/HjfO4IZVEm","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}},"video_info":{"aspect_ratio":[37,80],"duration_millis":11690,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/320x690\/qzYSXhtp8GVHwAkS.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/pl\/HOQqLq2LCOe8QZdY.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/360x778\/mxoPjfmwzOZWrqSf.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/592x1280\/pBUtbxYAYdW5YWLx.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":887813304311087104,"id_str":"887813304311087104","name":"Art + Brownlow","screen_name":"art_brownlow","location":"Brownsville, TX","description":"UTRGV + Music Prof & Academic Innovation Fellow, UT System Academy of Distinguished + Teachers, ROTA 2016, \uf8ffADE 2015, Braves fan, Husband & Dad","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":291,"friends_count":338,"listed_count":5,"created_at":"Wed + Jul 19 23:16:01 +0000 2017","favourites_count":237,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":132,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887813304311087104\/1500521777","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":42,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 23:21:51 +0000 2019","id":1186422374452752385,"id_str":"1186422374452752385","full_text":"RT + @DrVirtuality: What is Virtuality Culture Theory? https:\/\/t.co\/FVnvBDDl5d + @aect @aectclt #aect19inspired #aect19 #virtualityculturetheor\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[92,107]},{"text":"aect19","indices":[108,115]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[77,82]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[83,91]}],"urls":[{"url":"https:\/\/t.co\/FVnvBDDl5d","expanded_url":"https:\/\/sites.google.com\/view\/dr-camille-dempsey\/theory-of-virtuality-culture","display_url":"sites.google.com\/view\/dr-camill\u2026","indices":[53,76]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 22:17:00 +0000 2019","id":1186406053967208448,"id_str":"1186406053967208448","full_text":"What + is Virtuality Culture Theory? https:\/\/t.co\/FVnvBDDl5d @aect @aectclt #aect19inspired + #aect19 #virtualityculturetheory #virtualityculture #virtuality https:\/\/t.co\/ECoEzA6UZq","truncated":false,"display_text_range":[0,153],"entities":{"hashtags":[{"text":"aect19inspired","indices":[74,89]},{"text":"aect19","indices":[90,97]},{"text":"virtualityculturetheory","indices":[98,122]},{"text":"virtualityculture","indices":[123,141]},{"text":"virtuality","indices":[142,153]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[59,64]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[65,73]}],"urls":[{"url":"https:\/\/t.co\/FVnvBDDl5d","expanded_url":"https:\/\/sites.google.com\/view\/dr-camille-dempsey\/theory-of-virtuality-culture","display_url":"sites.google.com\/view\/dr-camill\u2026","indices":[35,58]}],"media":[{"id":1186340594727022592,"id_str":"1186340594727022592","indices":[154,177],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa6fENUcAAG02k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa6fENUcAAG02k.jpg","url":"https:\/\/t.co\/ECoEzA6UZq","display_url":"pic.twitter.com\/ECoEzA6UZq","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186406053967208448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":2048,"h":1365,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186340594727022592,"id_str":"1186340594727022592","indices":[154,177],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa6fENUcAAG02k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa6fENUcAAG02k.jpg","url":"https:\/\/t.co\/ECoEzA6UZq","display_url":"pic.twitter.com\/ECoEzA6UZq","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186406053967208448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":2048,"h":1365,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 06:58:52 +0000 2019","id":1186537387524005888,"id_str":"1186537387524005888","full_text":"This + is what excites me. I''ll have to find out how to access these conference + proceedings #aect19 #DesignThinking #instructionaldesign https:\/\/t.co\/qAlIjHoFHm","truncated":false,"display_text_range":[0,134],"entities":{"hashtags":[{"text":"aect19","indices":[90,97]},{"text":"DesignThinking","indices":[98,113]},{"text":"instructionaldesign","indices":[114,134]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qAlIjHoFHm","expanded_url":"https:\/\/twitter.com\/kariword\/status\/1186419605570379776","display_url":"twitter.com\/kariword\/statu\u2026","indices":[135,158]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1151597371,"id_str":"1151597371","name":"Stephanie + Jackson","screen_name":"sjojackson","location":"","description":"Educator: + Higher Ed | International | Career Development | Budding: #VO Artist | L&D + Professional | Finds joy in jazz, travel, sports, documentaries & seafood!","url":"https:\/\/t.co\/pxEmpSzHhu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pxEmpSzHhu","expanded_url":"http:\/\/www.sjojackson.com","display_url":"sjojackson.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":633,"friends_count":816,"listed_count":41,"created_at":"Tue + Feb 05 18:05:31 +0000 2013","favourites_count":21640,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13510,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/737993815995355136\/6A2ips_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/737993815995355136\/6A2ips_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1151597371\/1553800395","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186419605570379776,"quoted_status_id_str":"1186419605570379776","quoted_status_permalink":{"url":"https:\/\/t.co\/qAlIjHoFHm","expanded":"https:\/\/twitter.com\/kariword\/status\/1186419605570379776","display":"twitter.com\/kariword\/statu\u2026"},"quoted_status":{"created_at":"Mon + Oct 21 23:10:51 +0000 2019","id":1186419605570379776,"id_str":"1186419605570379776","full_text":"Just + finished a Design Thinking for Instructional Designers all day workshop here + at #AECT19 in #vegas. Learned quite a bit and anxious to implement some more + #journeymapping, #personas, and #empathy mapping. #ID #instructionalDesign + #DesignThinking #AECT2019 https:\/\/t.co\/YFvHMIC19k","truncated":false,"display_text_range":[0,259],"entities":{"hashtags":[{"text":"AECT19","indices":[85,92]},{"text":"vegas","indices":[96,102]},{"text":"journeymapping","indices":[159,174]},{"text":"personas","indices":[176,185]},{"text":"empathy","indices":[191,199]},{"text":"ID","indices":[209,212]},{"text":"instructionalDesign","indices":[213,233]},{"text":"DesignThinking","indices":[234,249]},{"text":"AECT2019","indices":[250,259]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186419594094731265,"id_str":"1186419594094731265","indices":[260,283],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcCVbyUYAEdaQe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcCVbyUYAEdaQe.jpg","url":"https:\/\/t.co\/YFvHMIC19k","display_url":"pic.twitter.com\/YFvHMIC19k","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186419605570379776\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186419594094731265,"id_str":"1186419594094731265","indices":[260,283],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcCVbyUYAEdaQe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcCVbyUYAEdaQe.jpg","url":"https:\/\/t.co\/YFvHMIC19k","display_url":"pic.twitter.com\/YFvHMIC19k","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186419605570379776\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":39,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 01:27:49 +0000 2019","id":1186454077388902400,"id_str":"1186454077388902400","full_text":"RT + @rebeccamclark87: Oh look out everyone! I can make cool things - for educational + purposes of course! \ud83d\ude0e #aect19 @TheMakerBit https:\/\/t.c\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[107,114]}],"symbols":[],"user_mentions":[{"screen_name":"rebeccamclark87","name":"Rebecca + Clark","id":2786357411,"id_str":"2786357411","indices":[3,19]},{"screen_name":"TheMakerBit","name":"TheMakerBit","id":826327660078911488,"id_str":"826327660078911488","indices":[115,127]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 21:31:07 +0000 2019","id":1186394509967413248,"id_str":"1186394509967413248","full_text":"Oh + look out everyone! I can make cool things - for educational purposes of course! \ud83d\ude0e + #aect19 @TheMakerBit https:\/\/t.co\/Az6H9opkm0","truncated":false,"display_text_range":[0,106],"entities":{"hashtags":[{"text":"aect19","indices":[86,93]}],"symbols":[],"user_mentions":[{"screen_name":"TheMakerBit","name":"TheMakerBit","id":826327660078911488,"id_str":"826327660078911488","indices":[94,106]}],"urls":[],"media":[{"id":1186394504498044928,"id_str":"1186394504498044928","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbrhBwU4AAf1ty.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbrhBwU4AAf1ty.jpg","url":"https:\/\/t.co\/Az6H9opkm0","display_url":"pic.twitter.com\/Az6H9opkm0","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186394509967413248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186394504498044928,"id_str":"1186394504498044928","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbrhBwU4AAf1ty.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbrhBwU4AAf1ty.jpg","url":"https:\/\/t.co\/Az6H9opkm0","display_url":"pic.twitter.com\/Az6H9opkm0","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186394509967413248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2786357411,"id_str":"2786357411","name":"Rebecca + Clark","screen_name":"rebeccamclark87","location":"Blacksburg, VA","description":"PhD + Student - Instructional Design and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":124,"listed_count":1,"created_at":"Fri + Sep 26 21:55:13 +0000 2014","favourites_count":370,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":94,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1116743962067460096\/nxZX1CVu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1116743962067460096\/nxZX1CVu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2786357411\/1551977207","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 01:55:08 +0000 2019","id":1186460948166348800,"id_str":"1186460948166348800","full_text":"A + wonderful experience and a day of professional learning! Thank you to @aect + Theory and Research division for hosting this 2 day event! A Big shoutout + to all the mentors! @eromerohall Charles Graham, Krista Glazewski, Andrew + Walker, & Danilo Baylen! #aect19 #aect19inspired https:\/\/t.co\/RLM1A7gmnX","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"aect19","indices":[255,262]},{"text":"aect19inspired","indices":[263,278]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[72,77]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[172,184]}],"urls":[{"url":"https:\/\/t.co\/RLM1A7gmnX","expanded_url":"https:\/\/twitter.com\/eromerohall\/status\/1186353656137805825","display_url":"twitter.com\/eromerohall\/st\u2026","indices":[279,302]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186353656137805825,"quoted_status_id_str":"1186353656137805825","quoted_status_permalink":{"url":"https:\/\/t.co\/RLM1A7gmnX","expanded":"https:\/\/twitter.com\/eromerohall\/status\/1186353656137805825","display":"twitter.com\/eromerohall\/st\u2026"},"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 01:25:35 +0000 2019","id":1186453515251539968,"id_str":"1186453515251539968","full_text":"RT + @tadousay: When you realize it''s your 10th anniversary in #AECT. \u2764\ufe0f\ud83c\udf89 + #aect19 #aectinspired https:\/\/t.co\/RyzxGQjRjQ https:\/\/t.co\/gbLIBDbD\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT","indices":[61,66]},{"text":"aect19","indices":[72,79]},{"text":"aectinspired","indices":[80,93]}],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/RyzxGQjRjQ","expanded_url":"http:\/\/bit.ly\/2MAVsQk","display_url":"bit.ly\/2MAVsQk","indices":[94,117]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 01:04:19 +0000 2019","id":1186448160195043328,"id_str":"1186448160195043328","full_text":"When + you realize it''s your 10th anniversary in #AECT. \u2764\ufe0f\ud83c\udf89 + #aect19 #aectinspired https:\/\/t.co\/RyzxGQjRjQ https:\/\/t.co\/gbLIBDbDj7","truncated":false,"display_text_range":[0,103],"entities":{"hashtags":[{"text":"AECT","indices":[47,52]},{"text":"aect19","indices":[58,65]},{"text":"aectinspired","indices":[66,79]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RyzxGQjRjQ","expanded_url":"http:\/\/bit.ly\/2MAVsQk","display_url":"bit.ly\/2MAVsQk","indices":[80,103]}],"media":[{"id":1186448159104524288,"id_str":"1186448159104524288","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/EHccUIvXYAA61He.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHccUIvXYAA61He.jpg","url":"https:\/\/t.co\/gbLIBDbDj7","display_url":"pic.twitter.com\/gbLIBDbDj7","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186448160195043328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186448159104524288,"id_str":"1186448159104524288","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/EHccUIvXYAA61He.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHccUIvXYAA61He.jpg","url":"https:\/\/t.co\/gbLIBDbDj7","display_url":"pic.twitter.com\/gbLIBDbDj7","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186448160195043328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":32,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 02:12:00 +0000 2019","id":1186465193347309568,"id_str":"1186465193347309568","full_text":"See + you tomorrow @aect! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/SP1C0aFc8j","truncated":false,"display_text_range":[0,56],"entities":{"hashtags":[{"text":"AECT19","indices":[33,40]},{"text":"AECT19inspired","indices":[41,56]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[17,22]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[24,32]}],"urls":[],"media":[{"id":1185705205368647680,"id_str":"1185705205368647680","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR4miZUcAAdXvK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR4miZUcAAdXvK.jpg","url":"https:\/\/t.co\/SP1C0aFc8j","display_url":"pic.twitter.com\/SP1C0aFc8j","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186465193347309568\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185705205368647680,"id_str":"1185705205368647680","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR4miZUcAAdXvK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR4miZUcAAdXvK.jpg","url":"https:\/\/t.co\/SP1C0aFc8j","display_url":"pic.twitter.com\/SP1C0aFc8j","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186465193347309568\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 02:09:06 +0000 2019","id":1186464465295822854,"id_str":"1186464465295822854","full_text":"RT + @tadousay: When you realize it''s your 10th anniversary in #AECT. \u2764\ufe0f\ud83c\udf89 + #aect19 #aectinspired https:\/\/t.co\/RyzxGQjRjQ https:\/\/t.co\/gbLIBDbD\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT","indices":[61,66]},{"text":"aect19","indices":[72,79]},{"text":"aectinspired","indices":[80,93]}],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/RyzxGQjRjQ","expanded_url":"http:\/\/bit.ly\/2MAVsQk","display_url":"bit.ly\/2MAVsQk","indices":[94,117]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 01:04:19 +0000 2019","id":1186448160195043328,"id_str":"1186448160195043328","full_text":"When + you realize it''s your 10th anniversary in #AECT. \u2764\ufe0f\ud83c\udf89 + #aect19 #aectinspired https:\/\/t.co\/RyzxGQjRjQ https:\/\/t.co\/gbLIBDbDj7","truncated":false,"display_text_range":[0,103],"entities":{"hashtags":[{"text":"AECT","indices":[47,52]},{"text":"aect19","indices":[58,65]},{"text":"aectinspired","indices":[66,79]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RyzxGQjRjQ","expanded_url":"http:\/\/bit.ly\/2MAVsQk","display_url":"bit.ly\/2MAVsQk","indices":[80,103]}],"media":[{"id":1186448159104524288,"id_str":"1186448159104524288","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/EHccUIvXYAA61He.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHccUIvXYAA61He.jpg","url":"https:\/\/t.co\/gbLIBDbDj7","display_url":"pic.twitter.com\/gbLIBDbDj7","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186448160195043328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186448159104524288,"id_str":"1186448159104524288","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/EHccUIvXYAA61He.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHccUIvXYAA61He.jpg","url":"https:\/\/t.co\/gbLIBDbDj7","display_url":"pic.twitter.com\/gbLIBDbDj7","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186448160195043328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":32,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:48:13 +0000 2019","id":1186383710859362304,"id_str":"1186383710859362304","full_text":"RT + @robmoore3: I''m presenting (Tues, Oct 22, 9am, Pavilion 10) on some of my + MOOC research! This study looked at student''s motivational fac\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 18:09:00 +0000 2019","id":1186343642488721408,"id_str":"1186343642488721408","full_text":"I''m + presenting (Tues, Oct 22, 9am, Pavilion 10) on some of my MOOC research! This + study looked at student''s motivational factors and course performance in + a MOOC. You dont want to miss it! #aect19 #aect19inspired https:\/\/t.co\/5MryVUbBed + https:\/\/t.co\/t8K5zdusgC","truncated":false,"display_text_range":[0,236],"entities":{"hashtags":[{"text":"aect19","indices":[189,196]},{"text":"aect19inspired","indices":[197,212]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5MryVUbBed","expanded_url":"http:\/\/bit.ly\/33D4SAp","display_url":"bit.ly\/33D4SAp","indices":[213,236]}],"media":[{"id":1184451271169851393,"id_str":"1184451271169851393","indices":[237,260],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAEJ9fWwAEu113.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAEJ9fWwAEu113.png","url":"https:\/\/t.co\/t8K5zdusgC","display_url":"pic.twitter.com\/t8K5zdusgC","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186343642488721408\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":461,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":723,"h":490,"resize":"fit"},"medium":{"w":723,"h":490,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184451271169851393,"id_str":"1184451271169851393","indices":[237,260],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAEJ9fWwAEu113.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAEJ9fWwAEu113.png","url":"https:\/\/t.co\/t8K5zdusgC","display_url":"pic.twitter.com\/t8K5zdusgC","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186343642488721408\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":461,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":723,"h":490,"resize":"fit"},"medium":{"w":723,"h":490,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 02:19:49 +0000 2019","id":1186467161599926272,"id_str":"1186467161599926272","full_text":"#aect19 + https:\/\/t.co\/corRjHCPYd","truncated":false,"display_text_range":[0,31],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/corRjHCPYd","expanded_url":"https:\/\/docs.google.com\/presentation\/d\/e\/2PACX-1vSOgZlb_rn0daUPdG5WKLIy-h0fdrsYAuymfTCwyOkC-PL5jUV97GH0iJH6kkOsGG7P4xSP2bFtfxLs\/pub?start=false&loop=false&delayms=60000","display_url":"docs.google.com\/presentation\/d\u2026","indices":[8,31]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":88506778,"id_str":"88506778","name":"Dr. + Brogdon","screen_name":"drbrogdon03","location":"","description":"","url":"http:\/\/t.co\/nfJmXlLiN8","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/nfJmXlLiN8","expanded_url":"http:\/\/drbrogdon03.pbworks.com","display_url":"drbrogdon03.pbworks.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":973,"friends_count":590,"listed_count":11,"created_at":"Sun + Nov 08 20:54:05 +0000 2009","favourites_count":135,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1864,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FCEBB6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/516610204\/sherri_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/516610204\/sherri_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/88506778\/1374633893","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"CE7834","profile_sidebar_border_color":"F0A830","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Mon + Oct 21 23:31:31 +0000 2019","id":1186424808256360448,"id_str":"1186424808256360448","full_text":"We + need to do more problem-centered instruction, centered on my own personal + problems #aect19","truncated":false,"display_text_range":[0,93],"entities":{"hashtags":[{"text":"aect19","indices":[86,93]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:45:38 +0000 2019","id":1186383060675096576,"id_str":"1186383060675096576","full_text":"RT + @robmoore3: Interested in #learning #analytics? Check out this session with + @tintinluo and @PaulineMuljana on Tuesday at 1pm in Conferen\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"learning","indices":[29,38]},{"text":"analytics","indices":[39,49]}],"symbols":[],"user_mentions":[{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[3,13]},{"screen_name":"tintinluo","name":"Tian + Luo","id":29474883,"id_str":"29474883","indices":[79,89]},{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[94,109]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 20:35:00 +0000 2019","id":1186380384683978752,"id_str":"1186380384683978752","full_text":"Interested + in #learning #analytics? Check out this session with @tintinluo and @PaulineMuljana + on Tuesday at 1pm in Conference Room 14. #aect19 #aect19inspired https:\/\/t.co\/ymIPEGnKIu","truncated":false,"display_text_range":[0,159],"entities":{"hashtags":[{"text":"learning","indices":[14,23]},{"text":"analytics","indices":[24,34]},{"text":"aect19","indices":[136,143]},{"text":"aect19inspired","indices":[144,159]}],"symbols":[],"user_mentions":[{"screen_name":"tintinluo","name":"Tian + Luo","id":29474883,"id_str":"29474883","indices":[64,74]},{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[79,94]}],"urls":[],"media":[{"id":1184457773087707138,"id_str":"1184457773087707138","indices":[160,183],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAKEbBX0AImeub.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAKEbBX0AImeub.png","url":"https:\/\/t.co\/ymIPEGnKIu","display_url":"pic.twitter.com\/ymIPEGnKIu","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186380384683978752\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":495,"resize":"fit"},"large":{"w":732,"h":533,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":732,"h":533,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184457773087707138,"id_str":"1184457773087707138","indices":[160,183],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAKEbBX0AImeub.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAKEbBX0AImeub.png","url":"https:\/\/t.co\/ymIPEGnKIu","display_url":"pic.twitter.com\/ymIPEGnKIu","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186380384683978752\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":495,"resize":"fit"},"large":{"w":732,"h":533,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":732,"h":533,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 23:20:51 +0000 2019","id":1186422121762672641,"id_str":"1186422121762672641","full_text":"RT + @nicolapallitt: Very timely workshop on evaluating online course designs by + @camille_dd with great takeaways - and Tam Tams:) #aect19ins\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"camille_dd","name":"Camille + Dickson-Deane","id":398945750,"id_str":"398945750","indices":[79,90]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 23:05:08 +0000 2019","id":1186418166357868545,"id_str":"1186418166357868545","full_text":"Very + timely workshop on evaluating online course designs by @camille_dd with great + takeaways - and Tam Tams:) #aect19inspired @AECT @aectclt https:\/\/t.co\/ix2TB6lykw","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[110,125]}],"symbols":[],"user_mentions":[{"screen_name":"camille_dd","name":"Camille + Dickson-Deane","id":398945750,"id_str":"398945750","indices":[60,71]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[126,131]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[132,140]}],"urls":[],"media":[{"id":1186418127996772352,"id_str":"1186418127996772352","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBAGJU4AAckBn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBAGJU4AAckBn.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186418127996772352,"id_str":"1186418127996772352","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBAGJU4AAckBn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBAGJU4AAckBn.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null},{"id":1186418135596814337,"id_str":"1186418135596814337","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBAidUUAEH31C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBAidUUAEH31C.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186418148590776321,"id_str":"1186418148590776321","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBBS3UcAEBsFr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBBS3UcAEBsFr.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186418159063977984,"id_str":"1186418159063977984","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBB54U0AAae8b.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBB54U0AAae8b.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 04:01:42 +0000 2019","id":1186492802542161920,"id_str":"1186492802542161920","full_text":"Welp. + I\u2019m in Vegas. Tired from a long travel day but excited for the AECT 2019 + conference ahead. #AECT19inspired","truncated":false,"display_text_range":[0,112],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[97,112]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17467478,"id_str":"17467478","name":"Marshall + G. Jones","screen_name":"marshallgjones","location":"Rock Hill, SC USA","description":"Professor + of Learning Design & Technology. Musician. Photographer. Tweeting about learning, + technology & whatever else strikes me. Tweets are my own.","url":"https:\/\/t.co\/HGRry3tHo4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HGRry3tHo4","expanded_url":"http:\/\/marshallgjones.com","display_url":"marshallgjones.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1022,"friends_count":889,"listed_count":71,"created_at":"Tue + Nov 18 18:26:51 +0000 2008","favourites_count":7553,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8342,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17467478\/1570054414","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":11,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 01:20:50 +0000 2019","id":1186452317559820289,"id_str":"1186452317559820289","full_text":"RT + @jeroen69: #aect19 day 1 - professional workshops - getting inspired by @quincyconley + - learning about Augmented Reality, status, resear\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"jeroen69","name":"Jeroen","id":6848632,"id_str":"6848632","indices":[3,12]},{"screen_name":"quincyconley","name":"Quincy","id":23817978,"id_str":"23817978","indices":[75,88]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27256471,"id_str":"27256471","name":"Tanya + O''Reilly","screen_name":"TenaciousTan","location":"Stockholm, Sweden","description":"A + bookish tea-guzzler interested in digital education, digital culture, multimodality, + New Materialism, innovative assessment practices in Higher Education","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":279,"friends_count":783,"listed_count":12,"created_at":"Sat + Mar 28 16:22:04 +0000 2009","favourites_count":2510,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1513,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/113025390\/manga_me_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/113025390\/manga_me_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27256471\/1452114046","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 16:14:43 +0000 2019","id":1186314881764429824,"id_str":"1186314881764429824","full_text":"#aect19 + day 1 - professional workshops - getting inspired by @quincyconley - learning + about Augmented Reality, status, research, and application. https:\/\/t.co\/bBWqmxJGRD","truncated":false,"display_text_range":[0,145],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[{"screen_name":"quincyconley","name":"Quincy","id":23817978,"id_str":"23817978","indices":[61,74]}],"urls":[],"media":[{"id":1186314872859938818,"id_str":"1186314872859938818","indices":[146,169],"media_url":"http:\/\/pbs.twimg.com\/media\/EHajF2yUUAIeWAV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHajF2yUUAIeWAV.jpg","url":"https:\/\/t.co\/bBWqmxJGRD","display_url":"pic.twitter.com\/bBWqmxJGRD","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186314881764429824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186314872859938818,"id_str":"1186314872859938818","indices":[146,169],"media_url":"http:\/\/pbs.twimg.com\/media\/EHajF2yUUAIeWAV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHajF2yUUAIeWAV.jpg","url":"https:\/\/t.co\/bBWqmxJGRD","display_url":"pic.twitter.com\/bBWqmxJGRD","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1186314881764429824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:46:18 +0000 2019","id":1186383231295213568,"id_str":"1186383231295213568","full_text":"RT + @EINS_Institute: For the uninitiated, @AECT had its origins as the Department + of Visual Instruction (later, the Division for Audio-Visua\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EINS_Institute","name":"James + Ellsworth PhD","id":860265492,"id_str":"860265492","indices":[3,18]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[41,46]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 20:09:00 +0000 2019","id":1186373842467471360,"id_str":"1186373842467471360","full_text":"For + the uninitiated, @AECT had its origins as the Department of Visual Instruction + (later, the Division for Audio-Visual Instruction, or DAVI) of the @NEA. Approaching + our Centennial! #AECT19 #inspiredme https:\/\/t.co\/DkgI0GqtHv","truncated":false,"display_text_range":[0,203],"entities":{"hashtags":[{"text":"AECT19","indices":[184,191]},{"text":"inspiredme","indices":[192,203]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[21,26]},{"screen_name":"NEA","name":"NEA","id":165503959,"id_str":"165503959","indices":[150,154]}],"urls":[{"url":"https:\/\/t.co\/DkgI0GqtHv","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186366848482213888","display_url":"twitter.com\/kolorkid\/statu\u2026","indices":[204,227]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":860265492,"id_str":"860265492","name":"James + Ellsworth PhD","screen_name":"EINS_Institute","location":"Albuquerque, NM","description":"Educator\/architect + of instructional systems. Soldier. Muslim. Scholar (but not alim). Retired + General Officer level US military intelligence leader. Yep--weird.","url":"https:\/\/t.co\/GwDIuUtRB1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GwDIuUtRB1","expanded_url":"http:\/\/www.linkedin.com\/in\/ellsworthj","display_url":"linkedin.com\/in\/ellsworthj","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4099,"friends_count":1926,"listed_count":36,"created_at":"Wed + Oct 03 20:09:48 +0000 2012","favourites_count":212736,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":107275,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1393326633336156163\/aiT8Pu7i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1393326633336156163\/aiT8Pu7i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/860265492\/1491924222","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186366848482213888,"quoted_status_id_str":"1186366848482213888","quoted_status_permalink":{"url":"https:\/\/t.co\/DkgI0GqtHv","expanded":"https:\/\/twitter.com\/kolorkid\/status\/1186366848482213888","display":"twitter.com\/kolorkid\/statu\u2026"},"quoted_status":{"created_at":"Mon + Oct 21 19:41:12 +0000 2019","id":1186366848482213888,"id_str":"1186366848482213888","full_text":"Here''s + the other poster. #AECT2019 #inspiredme https:\/\/t.co\/7sFc5myTa2","truncated":false,"display_text_range":[0,46],"entities":{"hashtags":[{"text":"AECT2019","indices":[25,34]},{"text":"inspiredme","indices":[35,46]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186366838231334912,"id_str":"1186366838231334912","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbSWo4VAAA9Wh9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbSWo4VAAA9Wh9.jpg","url":"https:\/\/t.co\/7sFc5myTa2","display_url":"pic.twitter.com\/7sFc5myTa2","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186366848482213888\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186366838231334912,"id_str":"1186366838231334912","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbSWo4VAAA9Wh9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbSWo4VAAA9Wh9.jpg","url":"https:\/\/t.co\/7sFc5myTa2","display_url":"pic.twitter.com\/7sFc5myTa2","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186366848482213888\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186366848482213888,"quoted_status_id_str":"1186366848482213888","quoted_status_permalink":{"url":"https:\/\/t.co\/DkgI0GqtHv","expanded":"https:\/\/twitter.com\/kolorkid\/status\/1186366848482213888","display":"twitter.com\/kolorkid\/statu\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 23:10:51 +0000 2019","id":1186419605570379776,"id_str":"1186419605570379776","full_text":"Just + finished a Design Thinking for Instructional Designers all day workshop here + at #AECT19 in #vegas. Learned quite a bit and anxious to implement some more + #journeymapping, #personas, and #empathy mapping. #ID #instructionalDesign + #DesignThinking #AECT2019 https:\/\/t.co\/YFvHMIC19k","truncated":false,"display_text_range":[0,259],"entities":{"hashtags":[{"text":"AECT19","indices":[85,92]},{"text":"vegas","indices":[96,102]},{"text":"journeymapping","indices":[159,174]},{"text":"personas","indices":[176,185]},{"text":"empathy","indices":[191,199]},{"text":"ID","indices":[209,212]},{"text":"instructionalDesign","indices":[213,233]},{"text":"DesignThinking","indices":[234,249]},{"text":"AECT2019","indices":[250,259]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186419594094731265,"id_str":"1186419594094731265","indices":[260,283],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcCVbyUYAEdaQe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcCVbyUYAEdaQe.jpg","url":"https:\/\/t.co\/YFvHMIC19k","display_url":"pic.twitter.com\/YFvHMIC19k","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186419605570379776\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186419594094731265,"id_str":"1186419594094731265","indices":[260,283],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcCVbyUYAEdaQe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcCVbyUYAEdaQe.jpg","url":"https:\/\/t.co\/YFvHMIC19k","display_url":"pic.twitter.com\/YFvHMIC19k","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186419605570379776\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":39,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:39:31 +0000 2019","id":1186381523479433216,"id_str":"1186381523479433216","full_text":"We + are inspired by all of the recipients of the #AECT19 Leadership Awards. Congrats + everyone! https:\/\/t.co\/bfS2ToKB8G","truncated":false,"display_text_range":[0,93],"entities":{"hashtags":[{"text":"AECT19","indices":[48,55]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186381516613378048,"id_str":"1186381516613378048","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbftCHUYAAfj0J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbftCHUYAAfj0J.jpg","url":"https:\/\/t.co\/bfS2ToKB8G","display_url":"pic.twitter.com\/bfS2ToKB8G","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186381523479433216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186381516613378048,"id_str":"1186381516613378048","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbftCHUYAAfj0J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbftCHUYAAfj0J.jpg","url":"https:\/\/t.co\/bfS2ToKB8G","display_url":"pic.twitter.com\/bfS2ToKB8G","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186381523479433216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 06:07:43 +0000 2019","id":1186524513179066368,"id_str":"1186524513179066368","full_text":"Made + it to #Vegas and getting my brain \ud83e\udde0 and beauty \ud83d\udc84 rest + before presenting bright and early at #aect19inspired Come Join Me! https:\/\/t.co\/ihwLddDFFr","truncated":false,"display_text_range":[0,126],"entities":{"hashtags":[{"text":"Vegas","indices":[11,17]},{"text":"aect19inspired","indices":[97,112]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186524497756602370,"id_str":"1186524497756602370","indices":[127,150],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdhvoYUwAI92lN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdhvoYUwAI92lN.jpg","url":"https:\/\/t.co\/ihwLddDFFr","display_url":"pic.twitter.com\/ihwLddDFFr","expanded_url":"https:\/\/twitter.com\/Stephsteph83\/status\/1186524513179066368\/photo\/1","type":"photo","sizes":{"large":{"w":828,"h":839,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":671,"h":680,"resize":"fit"},"medium":{"w":828,"h":839,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186524497756602370,"id_str":"1186524497756602370","indices":[127,150],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdhvoYUwAI92lN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdhvoYUwAI92lN.jpg","url":"https:\/\/t.co\/ihwLddDFFr","display_url":"pic.twitter.com\/ihwLddDFFr","expanded_url":"https:\/\/twitter.com\/Stephsteph83\/status\/1186524513179066368\/photo\/1","type":"photo","sizes":{"large":{"w":828,"h":839,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":671,"h":680,"resize":"fit"},"medium":{"w":828,"h":839,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":427060068,"id_str":"427060068","name":"Dr. + Stephanee Stephens","screen_name":"Stephsteph83","location":"Atlanta, GA","description":"Educator, + Challenger, Leader, Innovator @microsoftedu Believe in: #personalizedlearning + \ud83d\udc69\u200d\ud83c\udf93 @utoledo @kennesawstate","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2501,"friends_count":1157,"listed_count":172,"created_at":"Sat + Dec 03 02:01:17 +0000 2011","favourites_count":13627,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8514,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458524672912461825\/JM2qKEcN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458524672912461825\/JM2qKEcN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/427060068\/1636574423","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:58:53 +0000 2019","id":1186386394811256832,"id_str":"1186386394811256832","full_text":"RT + @nangur1: Early career symposium hosted by Theory and Research division of + \u2066@AECT\u2069 Kick off speaker Elizabeth Boling #aect19 #aect19insp\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[120,127]}],"symbols":[],"user_mentions":[{"screen_name":"nangur1","name":"Dr. + Nandita Gurjar","id":2743313304,"id_str":"2743313304","indices":[3,11]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[79,84]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 20:56:30 +0000 2019","id":1186385797345202176,"id_str":"1186385797345202176","full_text":"Early + career symposium hosted by Theory and Research division of \u2066@AECT\u2069 + Kick off speaker Elizabeth Boling #aect19 #aect19inspired https:\/\/t.co\/1fi7BshlWy","truncated":false,"display_text_range":[0,130],"entities":{"hashtags":[{"text":"aect19","indices":[107,114]},{"text":"aect19inspired","indices":[115,130]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[66,71]}],"urls":[],"media":[{"id":1186385791997505536,"id_str":"1186385791997505536","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbjl5KU8AATAIS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbjl5KU8AATAIS.jpg","url":"https:\/\/t.co\/1fi7BshlWy","display_url":"pic.twitter.com\/1fi7BshlWy","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186385797345202176\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186385791997505536,"id_str":"1186385791997505536","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbjl5KU8AATAIS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbjl5KU8AATAIS.jpg","url":"https:\/\/t.co\/1fi7BshlWy","display_url":"pic.twitter.com\/1fi7BshlWy","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186385797345202176\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:46:08 +0000 2019","id":1186383186810392578,"id_str":"1186383186810392578","full_text":"RT + @rebeccamclark87: #aect19 #making @TheMakerBit Round 2!!! https:\/\/t.co\/QrXU4m0npG","truncated":false,"display_text_range":[0,84],"entities":{"hashtags":[{"text":"aect19","indices":[21,28]},{"text":"making","indices":[29,36]}],"symbols":[],"user_mentions":[{"screen_name":"rebeccamclark87","name":"Rebecca + Clark","id":2786357411,"id_str":"2786357411","indices":[3,19]},{"screen_name":"TheMakerBit","name":"TheMakerBit","id":826327660078911488,"id_str":"826327660078911488","indices":[37,49]}],"urls":[],"media":[{"id":1186376501312114688,"id_str":"1186376501312114688","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbbJGqUUAAXmUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbbJGqUUAAXmUU.jpg","url":"https:\/\/t.co\/QrXU4m0npG","display_url":"pic.twitter.com\/QrXU4m0npG","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186376506584391680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"}},"source_status_id":1186376506584391680,"source_status_id_str":"1186376506584391680","source_user_id":2786357411,"source_user_id_str":"2786357411"}]},"extended_entities":{"media":[{"id":1186376501312114688,"id_str":"1186376501312114688","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbbJGqUUAAXmUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbbJGqUUAAXmUU.jpg","url":"https:\/\/t.co\/QrXU4m0npG","display_url":"pic.twitter.com\/QrXU4m0npG","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186376506584391680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"}},"source_status_id":1186376506584391680,"source_status_id_str":"1186376506584391680","source_user_id":2786357411,"source_user_id_str":"2786357411","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 20:19:35 +0000 2019","id":1186376506584391680,"id_str":"1186376506584391680","full_text":"#aect19 + #making @TheMakerBit Round 2!!! https:\/\/t.co\/QrXU4m0npG","truncated":false,"display_text_range":[0,39],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]},{"text":"making","indices":[8,15]}],"symbols":[],"user_mentions":[{"screen_name":"TheMakerBit","name":"TheMakerBit","id":826327660078911488,"id_str":"826327660078911488","indices":[16,28]}],"urls":[],"media":[{"id":1186376501312114688,"id_str":"1186376501312114688","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbbJGqUUAAXmUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbbJGqUUAAXmUU.jpg","url":"https:\/\/t.co\/QrXU4m0npG","display_url":"pic.twitter.com\/QrXU4m0npG","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186376506584391680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186376501312114688,"id_str":"1186376501312114688","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbbJGqUUAAXmUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbbJGqUUAAXmUU.jpg","url":"https:\/\/t.co\/QrXU4m0npG","display_url":"pic.twitter.com\/QrXU4m0npG","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186376506584391680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2786357411,"id_str":"2786357411","name":"Rebecca + Clark","screen_name":"rebeccamclark87","location":"Blacksburg, VA","description":"PhD + Student - Instructional Design and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":124,"listed_count":1,"created_at":"Fri + Sep 26 21:55:13 +0000 2014","favourites_count":370,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":94,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1116743962067460096\/nxZX1CVu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1116743962067460096\/nxZX1CVu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2786357411\/1551977207","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 23:19:59 +0000 2019","id":1186421906448277504,"id_str":"1186421906448277504","full_text":"RT + @kariknisely: Just finished a Design Thinking for Instructional Designers + all day workshop here at #AECT19 in #vegas. Learned quite a bi\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[102,109]},{"text":"vegas","indices":[113,119]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/freedfocus.com\" rel=\"nofollow\"\u003edesignthinkbot\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3317040702,"id_str":"3317040702","name":"DesignThinkBot","screen_name":"designthinkbot","location":"","description":"i + am a BOT that retweets #designthinking \\ follow to get the latest on design + thinking \\ by @lucasfreed","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9644,"friends_count":1,"listed_count":6735,"created_at":"Sun + Aug 16 18:45:40 +0000 2015","favourites_count":143565,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":362720,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/949631281301606400\/m6xn64YX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/949631281301606400\/m6xn64YX_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 23:10:51 +0000 2019","id":1186419605570379776,"id_str":"1186419605570379776","full_text":"Just + finished a Design Thinking for Instructional Designers all day workshop here + at #AECT19 in #vegas. Learned quite a bit and anxious to implement some more + #journeymapping, #personas, and #empathy mapping. #ID #instructionalDesign + #DesignThinking #AECT2019 https:\/\/t.co\/YFvHMIC19k","truncated":false,"display_text_range":[0,259],"entities":{"hashtags":[{"text":"AECT19","indices":[85,92]},{"text":"vegas","indices":[96,102]},{"text":"journeymapping","indices":[159,174]},{"text":"personas","indices":[176,185]},{"text":"empathy","indices":[191,199]},{"text":"ID","indices":[209,212]},{"text":"instructionalDesign","indices":[213,233]},{"text":"DesignThinking","indices":[234,249]},{"text":"AECT2019","indices":[250,259]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186419594094731265,"id_str":"1186419594094731265","indices":[260,283],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcCVbyUYAEdaQe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcCVbyUYAEdaQe.jpg","url":"https:\/\/t.co\/YFvHMIC19k","display_url":"pic.twitter.com\/YFvHMIC19k","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186419605570379776\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186419594094731265,"id_str":"1186419594094731265","indices":[260,283],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcCVbyUYAEdaQe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcCVbyUYAEdaQe.jpg","url":"https:\/\/t.co\/YFvHMIC19k","display_url":"pic.twitter.com\/YFvHMIC19k","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186419605570379776\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":39,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:26:58 +0000 2019","id":1186378363411124224,"id_str":"1186378363411124224","full_text":"RT + @JenM: Here''s the @design4learn roster of sessions at #aect19. We''ll be + updating the list with the slides at the conclusion of the confe\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[57,64]}],"symbols":[],"user_mentions":[{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[3,8]},{"screen_name":"design4learn","name":"Designers + for Learning","id":1610558420,"id_str":"1610558420","indices":[21,34]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 14:39:26 +0000 2019","id":1186290903385690113,"id_str":"1186290903385690113","full_text":"Here''s + the @design4learn roster of sessions at #aect19. We''ll be updating the list + with the slides at the conclusion of the conference. Thanks! https:\/\/t.co\/bs61Ehh0rt","truncated":false,"display_text_range":[0,167],"entities":{"hashtags":[{"text":"aect19","indices":[47,54]}],"symbols":[],"user_mentions":[{"screen_name":"design4learn","name":"Designers + for Learning","id":1610558420,"id_str":"1610558420","indices":[11,24]}],"urls":[{"url":"https:\/\/t.co\/bs61Ehh0rt","expanded_url":"https:\/\/designersforlearning.org\/aect19","display_url":"designersforlearning.org\/aect19","indices":[144,167]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":13515,"id_str":"13515","name":"Jennifer + Maddrell","screen_name":"JenM","location":"Chicago, IL","description":"Teach, + study & design learning experiences","url":"https:\/\/t.co\/725I4m2QWv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/725I4m2QWv","expanded_url":"https:\/\/jennifermaddrell.com","display_url":"jennifermaddrell.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2420,"friends_count":4448,"listed_count":80,"created_at":"Tue + Nov 21 13:57:14 +0000 2006","favourites_count":7779,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3455,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13515\/1604669803","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 23:59:35 +0000 2019","id":1186431871766298624,"id_str":"1186431871766298624","full_text":"I + found some of my @ISLT_FSU fam here at #AECT19 in #Vegas. https:\/\/t.co\/Do83CY2dIb","truncated":false,"display_text_range":[0,59],"entities":{"hashtags":[{"text":"AECT19","indices":[41,48]},{"text":"Vegas","indices":[52,58]}],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[19,28]}],"urls":[{"url":"https:\/\/t.co\/Do83CY2dIb","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186431009081815040","display_url":"twitter.com\/ISLT_FSU\/statu\u2026","indices":[60,83]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1186431009081815040,"quoted_status_id_str":"1186431009081815040","quoted_status_permalink":{"url":"https:\/\/t.co\/Do83CY2dIb","expanded":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186431009081815040","display":"twitter.com\/ISLT_FSU\/statu\u2026"},"quoted_status":{"created_at":"Mon + Oct 21 23:56:10 +0000 2019","id":1186431009081815040,"id_str":"1186431009081815040","full_text":"#FSU + #FSUCOE #ISLT doctoral students (with Past President Ana Donaldson) at the + First Timer\u2019s Orientation #AECT19 learning about the conference. https:\/\/t.co\/IG2l7uBX6O","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"FSU","indices":[0,4]},{"text":"FSUCOE","indices":[5,12]},{"text":"ISLT","indices":[13,18]},{"text":"AECT19","indices":[106,113]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186430996926697472,"id_str":"1186430996926697472","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcMtKpUEAA1M-L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcMtKpUEAA1M-L.jpg","url":"https:\/\/t.co\/IG2l7uBX6O","display_url":"pic.twitter.com\/IG2l7uBX6O","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186431009081815040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186430996926697472,"id_str":"1186430996926697472","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcMtKpUEAA1M-L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcMtKpUEAA1M-L.jpg","url":"https:\/\/t.co\/IG2l7uBX6O","display_url":"pic.twitter.com\/IG2l7uBX6O","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186431009081815040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 02:45:31 +0000 2019","id":1186473630785425408,"id_str":"1186473630785425408","full_text":"Great + night with the PhD crew and got to try some some authentic Chengdu food! \ud83d\ude0b + #aect19 https:\/\/t.co\/65dnxPjA06","truncated":false,"display_text_range":[0,88],"entities":{"hashtags":[{"text":"aect19","indices":[81,88]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186473626888888325,"id_str":"1186473626888888325","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/EHczejoU4AUmdJ4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHczejoU4AUmdJ4.jpg","url":"https:\/\/t.co\/65dnxPjA06","display_url":"pic.twitter.com\/65dnxPjA06","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1186473630785425408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":314,"resize":"fit"},"large":{"w":1024,"h":473,"resize":"fit"},"medium":{"w":1024,"h":473,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186473626888888325,"id_str":"1186473626888888325","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/EHczejoU4AUmdJ4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHczejoU4AUmdJ4.jpg","url":"https:\/\/t.co\/65dnxPjA06","display_url":"pic.twitter.com\/65dnxPjA06","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1186473630785425408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":314,"resize":"fit"},"large":{"w":1024,"h":473,"resize":"fit"},"medium":{"w":1024,"h":473,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 21:31:07 +0000 2019","id":1186394509967413248,"id_str":"1186394509967413248","full_text":"Oh + look out everyone! I can make cool things - for educational purposes of course! \ud83d\ude0e + #aect19 @TheMakerBit https:\/\/t.co\/Az6H9opkm0","truncated":false,"display_text_range":[0,106],"entities":{"hashtags":[{"text":"aect19","indices":[86,93]}],"symbols":[],"user_mentions":[{"screen_name":"TheMakerBit","name":"TheMakerBit","id":826327660078911488,"id_str":"826327660078911488","indices":[94,106]}],"urls":[],"media":[{"id":1186394504498044928,"id_str":"1186394504498044928","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbrhBwU4AAf1ty.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbrhBwU4AAf1ty.jpg","url":"https:\/\/t.co\/Az6H9opkm0","display_url":"pic.twitter.com\/Az6H9opkm0","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186394509967413248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186394504498044928,"id_str":"1186394504498044928","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbrhBwU4AAf1ty.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbrhBwU4AAf1ty.jpg","url":"https:\/\/t.co\/Az6H9opkm0","display_url":"pic.twitter.com\/Az6H9opkm0","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186394509967413248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2786357411,"id_str":"2786357411","name":"Rebecca + Clark","screen_name":"rebeccamclark87","location":"Blacksburg, VA","description":"PhD + Student - Instructional Design and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":124,"listed_count":1,"created_at":"Fri + Sep 26 21:55:13 +0000 2014","favourites_count":370,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":94,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1116743962067460096\/nxZX1CVu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1116743962067460096\/nxZX1CVu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2786357411\/1551977207","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 01:58:01 +0000 2019","id":1186461677459562496,"id_str":"1186461677459562496","full_text":"Hey.. #AECT19inspired + my regular K12 Twitter Chat with my friends from the area #nvedchat starts + in 3 minutes! Join us!","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[7,22]},{"text":"nvedchat","indices":[81,90]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 23:22:36 +0000 2019","id":1186422565251600384,"id_str":"1186422565251600384","full_text":"RT + @nicolapallitt: Very timely workshop on evaluating online course designs by + @camille_dd with great takeaways - and Tam Tams:) #aect19ins\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"camille_dd","name":"Camille + Dickson-Deane","id":398945750,"id_str":"398945750","indices":[79,90]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 23:05:08 +0000 2019","id":1186418166357868545,"id_str":"1186418166357868545","full_text":"Very + timely workshop on evaluating online course designs by @camille_dd with great + takeaways - and Tam Tams:) #aect19inspired @AECT @aectclt https:\/\/t.co\/ix2TB6lykw","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[110,125]}],"symbols":[],"user_mentions":[{"screen_name":"camille_dd","name":"Camille + Dickson-Deane","id":398945750,"id_str":"398945750","indices":[60,71]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[126,131]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[132,140]}],"urls":[],"media":[{"id":1186418127996772352,"id_str":"1186418127996772352","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBAGJU4AAckBn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBAGJU4AAckBn.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186418127996772352,"id_str":"1186418127996772352","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBAGJU4AAckBn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBAGJU4AAckBn.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null},{"id":1186418135596814337,"id_str":"1186418135596814337","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBAidUUAEH31C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBAidUUAEH31C.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186418148590776321,"id_str":"1186418148590776321","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBBS3UcAEBsFr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBBS3UcAEBsFr.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186418159063977984,"id_str":"1186418159063977984","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBB54U0AAae8b.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBB54U0AAae8b.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 07:08:40 +0000 2019","id":1186539852759814144,"id_str":"1186539852759814144","full_text":"RT + @sjojackson: This is what excites me. I''ll have to find out how to access + these conference proceedings #aect19 #DesignThinking #instruct\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[106,113]},{"text":"DesignThinking","indices":[114,129]}],"symbols":[],"user_mentions":[{"screen_name":"sjojackson","name":"Stephanie + Jackson","id":1151597371,"id_str":"1151597371","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/sprintbaseapp.com\" rel=\"nofollow\"\u003eSprintbaseBot\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1007518859979579392,"id_str":"1007518859979579392","name":"SprintbaseBot","screen_name":"SprintbaseB","location":"","description":"I + am a bot tweeting on behalf of @SprintbaseApp. I auto-retweet tweets with + the hashtag #designthinking","url":"https:\/\/t.co\/C8I59NSAvP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/C8I59NSAvP","expanded_url":"http:\/\/sprintbase.io","display_url":"sprintbase.io","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1565,"friends_count":9,"listed_count":42,"created_at":"Fri + Jun 15 07:03:09 +0000 2018","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":168904,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1007520117889077248\/akwuaVbc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1007520117889077248\/akwuaVbc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1007518859979579392\/1529046644","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3071EE","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 06:58:52 +0000 2019","id":1186537387524005888,"id_str":"1186537387524005888","full_text":"This + is what excites me. I''ll have to find out how to access these conference + proceedings #aect19 #DesignThinking #instructionaldesign https:\/\/t.co\/qAlIjHoFHm","truncated":false,"display_text_range":[0,134],"entities":{"hashtags":[{"text":"aect19","indices":[90,97]},{"text":"DesignThinking","indices":[98,113]},{"text":"instructionaldesign","indices":[114,134]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qAlIjHoFHm","expanded_url":"https:\/\/twitter.com\/kariword\/status\/1186419605570379776","display_url":"twitter.com\/kariword\/statu\u2026","indices":[135,158]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1151597371,"id_str":"1151597371","name":"Stephanie + Jackson","screen_name":"sjojackson","location":"","description":"Educator: + Higher Ed | International | Career Development | Budding: #VO Artist | L&D + Professional | Finds joy in jazz, travel, sports, documentaries & seafood!","url":"https:\/\/t.co\/pxEmpSzHhu","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/pxEmpSzHhu","expanded_url":"http:\/\/www.sjojackson.com","display_url":"sjojackson.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":633,"friends_count":816,"listed_count":41,"created_at":"Tue + Feb 05 18:05:31 +0000 2013","favourites_count":21640,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13510,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/737993815995355136\/6A2ips_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/737993815995355136\/6A2ips_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1151597371\/1553800395","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186419605570379776,"quoted_status_id_str":"1186419605570379776","quoted_status_permalink":{"url":"https:\/\/t.co\/qAlIjHoFHm","expanded":"https:\/\/twitter.com\/kariword\/status\/1186419605570379776","display":"twitter.com\/kariword\/statu\u2026"},"quoted_status":{"created_at":"Mon + Oct 21 23:10:51 +0000 2019","id":1186419605570379776,"id_str":"1186419605570379776","full_text":"Just + finished a Design Thinking for Instructional Designers all day workshop here + at #AECT19 in #vegas. Learned quite a bit and anxious to implement some more + #journeymapping, #personas, and #empathy mapping. #ID #instructionalDesign + #DesignThinking #AECT2019 https:\/\/t.co\/YFvHMIC19k","truncated":false,"display_text_range":[0,259],"entities":{"hashtags":[{"text":"AECT19","indices":[85,92]},{"text":"vegas","indices":[96,102]},{"text":"journeymapping","indices":[159,174]},{"text":"personas","indices":[176,185]},{"text":"empathy","indices":[191,199]},{"text":"ID","indices":[209,212]},{"text":"instructionalDesign","indices":[213,233]},{"text":"DesignThinking","indices":[234,249]},{"text":"AECT2019","indices":[250,259]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186419594094731265,"id_str":"1186419594094731265","indices":[260,283],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcCVbyUYAEdaQe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcCVbyUYAEdaQe.jpg","url":"https:\/\/t.co\/YFvHMIC19k","display_url":"pic.twitter.com\/YFvHMIC19k","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186419605570379776\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186419594094731265,"id_str":"1186419594094731265","indices":[260,283],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcCVbyUYAEdaQe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcCVbyUYAEdaQe.jpg","url":"https:\/\/t.co\/YFvHMIC19k","display_url":"pic.twitter.com\/YFvHMIC19k","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186419605570379776\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":39,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186419605570379776,"quoted_status_id_str":"1186419605570379776","quoted_status_permalink":{"url":"https:\/\/t.co\/qAlIjHoFHm","expanded":"https:\/\/twitter.com\/kariword\/status\/1186419605570379776","display":"twitter.com\/kariword\/statu\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:43:26 +0000 2019","id":1186382506775302144,"id_str":"1186382506775302144","full_text":"RT + @caranorth11: Watch out #AECT19, glitter and glue are in the house!! @AnnaRoseLeach. + Check out our presentations on Tuesday, Thursday, a\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[27,34]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]},{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[72,86]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 17:35:58 +0000 2019","id":1186335329004818432,"id_str":"1186335329004818432","full_text":"Watch + out #AECT19, glitter and glue are in the house!! @AnnaRoseLeach. Check out + our presentations on Tuesday, Thursday, and Friday!! https:\/\/t.co\/i4Ht7mLhuC","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"AECT19","indices":[10,17]}],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[55,69]}],"urls":[],"media":[{"id":1186335324328230912,"id_str":"1186335324328230912","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa1sScVAAAa39m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa1sScVAAAa39m.jpg","url":"https:\/\/t.co\/i4Ht7mLhuC","display_url":"pic.twitter.com\/i4Ht7mLhuC","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186335329004818432\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186335324328230912,"id_str":"1186335324328230912","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa1sScVAAAa39m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa1sScVAAAa39m.jpg","url":"https:\/\/t.co\/i4Ht7mLhuC","display_url":"pic.twitter.com\/i4Ht7mLhuC","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186335329004818432\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:35:00 +0000 2019","id":1186380384683978752,"id_str":"1186380384683978752","full_text":"Interested + in #learning #analytics? Check out this session with @tintinluo and @PaulineMuljana + on Tuesday at 1pm in Conference Room 14. #aect19 #aect19inspired https:\/\/t.co\/ymIPEGnKIu","truncated":false,"display_text_range":[0,159],"entities":{"hashtags":[{"text":"learning","indices":[14,23]},{"text":"analytics","indices":[24,34]},{"text":"aect19","indices":[136,143]},{"text":"aect19inspired","indices":[144,159]}],"symbols":[],"user_mentions":[{"screen_name":"tintinluo","name":"Tian + Luo","id":29474883,"id_str":"29474883","indices":[64,74]},{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[79,94]}],"urls":[],"media":[{"id":1184457773087707138,"id_str":"1184457773087707138","indices":[160,183],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAKEbBX0AImeub.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAKEbBX0AImeub.png","url":"https:\/\/t.co\/ymIPEGnKIu","display_url":"pic.twitter.com\/ymIPEGnKIu","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186380384683978752\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":495,"resize":"fit"},"large":{"w":732,"h":533,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":732,"h":533,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184457773087707138,"id_str":"1184457773087707138","indices":[160,183],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAKEbBX0AImeub.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAKEbBX0AImeub.png","url":"https:\/\/t.co\/ymIPEGnKIu","display_url":"pic.twitter.com\/ymIPEGnKIu","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186380384683978752\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":495,"resize":"fit"},"large":{"w":732,"h":533,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":732,"h":533,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 04:50:59 +0000 2019","id":1186505204419588098,"id_str":"1186505204419588098","full_text":"First + day of @AECT Conference was a total success!!! #aect19inspired #aect https:\/\/t.co\/6Hvf3QbGrC","truncated":false,"display_text_range":[0,74],"entities":{"hashtags":[{"text":"aect19inspired","indices":[53,68]},{"text":"aect","indices":[69,74]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[13,18]}],"urls":[],"media":[{"id":1186505197868089344,"id_str":"1186505197868089344","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHdQMOsVAAA9GAi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHdQMOsVAAA9GAi.jpg","url":"https:\/\/t.co\/6Hvf3QbGrC","display_url":"pic.twitter.com\/6Hvf3QbGrC","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1186505204419588098\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":306,"h":284,"resize":"fit"},"large":{"w":306,"h":284,"resize":"fit"},"small":{"w":306,"h":284,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186505197868089344,"id_str":"1186505197868089344","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHdQMOsVAAA9GAi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHdQMOsVAAA9GAi.jpg","url":"https:\/\/t.co\/6Hvf3QbGrC","display_url":"pic.twitter.com\/6Hvf3QbGrC","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1186505204419588098\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":306,"h":284,"resize":"fit"},"large":{"w":306,"h":284,"resize":"fit"},"small":{"w":306,"h":284,"resize":"fit"}},"video_info":{"aspect_ratio":[153,142],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHdQMOsVAAA9GAi.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":763378325712674818,"id_str":"763378325712674818","name":"Tay + Fess, M.Ed.","screen_name":"Captain_Fess","location":"Naples, FL","description":"Music + Educator l \ud83c\udff3\ufe0f\u200d\ud83c\udf08 l Presenter l UDL l FGCU l + Doctoral Student Ed.D. l EdTech l Disney Geek","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":576,"listed_count":3,"created_at":"Wed + Aug 10 14:15:50 +0000 2016","favourites_count":1730,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":665,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/763378325712674818\/1595378873","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 03:59:51 +0000 2019","id":1186492337855139841,"id_str":"1186492337855139841","full_text":"One + of the added bonuses of conference trips. #aect19 #aect19inspired https:\/\/t.co\/Wvwvjlvyx7","truncated":false,"display_text_range":[0,69],"entities":{"hashtags":[{"text":"aect19","indices":[46,53]},{"text":"aect19inspired","indices":[54,69]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186492333627301888,"id_str":"1186492333627301888","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdEfbqUYAAh0zy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdEfbqUYAAh0zy.jpg","url":"https:\/\/t.co\/Wvwvjlvyx7","display_url":"pic.twitter.com\/Wvwvjlvyx7","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1186492337855139841\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":566,"h":561,"resize":"fit"},"small":{"w":566,"h":561,"resize":"fit"},"large":{"w":566,"h":561,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186492333627301888,"id_str":"1186492333627301888","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/EHdEfbqUYAAh0zy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHdEfbqUYAAh0zy.jpg","url":"https:\/\/t.co\/Wvwvjlvyx7","display_url":"pic.twitter.com\/Wvwvjlvyx7","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1186492337855139841\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":566,"h":561,"resize":"fit"},"small":{"w":566,"h":561,"resize":"fit"},"large":{"w":566,"h":561,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:33:12 +0000 2019","id":1186379931212664832,"id_str":"1186379931212664832","full_text":"@trishuhl + @NickSarillo Is this at #DevLearn or #aect19inspired","truncated":false,"display_text_range":[23,62],"entities":{"hashtags":[{"text":"DevLearn","indices":[34,43]},{"text":"aect19inspired","indices":[47,62]}],"symbols":[],"user_mentions":[{"screen_name":"trishuhl","name":"trishuhl.eth + \u262e\ufe0f\ud83e\udd89$WISE #CryptoOwls #Sustainability","id":19557673,"id_str":"19557673","indices":[0,9]},{"screen_name":"NickSarillo","name":"Nick + Sarillo","id":564829828,"id_str":"564829828","indices":[10,22]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186378500200189952,"in_reply_to_status_id_str":"1186378500200189952","in_reply_to_user_id":19557673,"in_reply_to_user_id_str":"19557673","in_reply_to_screen_name":"trishuhl","user":{"id":207345575,"id_str":"207345575","name":"Michelle + Webb","screen_name":"Livn2Learn","location":"Denver, CO","description":"Exploring + the world of learning, one day at a time and as part of a great #PLN. Voracious + reader. Talent and L&D nerd. Opinions are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":451,"friends_count":795,"listed_count":25,"created_at":"Mon + Oct 25 03:22:04 +0000 2010","favourites_count":1956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1738,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1321182029099241472\/tEqwLQx3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1321182029099241472\/tEqwLQx3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/207345575\/1446144967","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:26:59 +0000 2019","id":1186378366523301888,"id_str":"1186378366523301888","full_text":"Inspired + by the wonderful presentation by Elizabeth Boling, kicking off the Early Career + Symposium. #AECT2019 #inspiredme https:\/\/t.co\/tzsuVxTB3w","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"AECT2019","indices":[100,109]},{"text":"inspiredme","indices":[110,121]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186378355043553280,"id_str":"1186378355043553280","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbc1AWVUAArevF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbc1AWVUAArevF.jpg","url":"https:\/\/t.co\/tzsuVxTB3w","display_url":"pic.twitter.com\/tzsuVxTB3w","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186378366523301888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186378355043553280,"id_str":"1186378355043553280","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbc1AWVUAArevF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbc1AWVUAArevF.jpg","url":"https:\/\/t.co\/tzsuVxTB3w","display_url":"pic.twitter.com\/tzsuVxTB3w","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186378366523301888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:56:30 +0000 2019","id":1186385797345202176,"id_str":"1186385797345202176","full_text":"Early + career symposium hosted by Theory and Research division of \u2066@AECT\u2069 + Kick off speaker Elizabeth Boling #aect19 #aect19inspired https:\/\/t.co\/1fi7BshlWy","truncated":false,"display_text_range":[0,130],"entities":{"hashtags":[{"text":"aect19","indices":[107,114]},{"text":"aect19inspired","indices":[115,130]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[66,71]}],"urls":[],"media":[{"id":1186385791997505536,"id_str":"1186385791997505536","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbjl5KU8AATAIS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbjl5KU8AATAIS.jpg","url":"https:\/\/t.co\/1fi7BshlWy","display_url":"pic.twitter.com\/1fi7BshlWy","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186385797345202176\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186385791997505536,"id_str":"1186385791997505536","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbjl5KU8AATAIS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbjl5KU8AATAIS.jpg","url":"https:\/\/t.co\/1fi7BshlWy","display_url":"pic.twitter.com\/1fi7BshlWy","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186385797345202176\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 05:24:56 +0000 2019","id":1186513749265408000,"id_str":"1186513749265408000","full_text":"RT + @kolorkid: Dinner with lots of inspiring faculty and students from BYU and + USU. #AECT19 #inspiredme https:\/\/t.co\/k5degN4mzV","truncated":false,"display_text_range":[0,126],"entities":{"hashtags":[{"text":"AECT19","indices":[83,90]},{"text":"inspiredme","indices":[91,102]}],"symbols":[],"user_mentions":[{"screen_name":"kolorkid","name":"Dr. + Heather Leary","id":14669702,"id_str":"14669702","indices":[3,12]}],"urls":[],"media":[{"id":1186467643974250496,"id_str":"1186467643974250496","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcuCTiUcAAbMOZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcuCTiUcAAbMOZ.jpg","url":"https:\/\/t.co\/k5degN4mzV","display_url":"pic.twitter.com\/k5degN4mzV","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186467651880513536\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1186467651880513536,"source_status_id_str":"1186467651880513536","source_user_id":14669702,"source_user_id_str":"14669702"}]},"extended_entities":{"media":[{"id":1186467643974250496,"id_str":"1186467643974250496","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcuCTiUcAAbMOZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcuCTiUcAAbMOZ.jpg","url":"https:\/\/t.co\/k5degN4mzV","display_url":"pic.twitter.com\/k5degN4mzV","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186467651880513536\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"source_status_id":1186467651880513536,"source_status_id_str":"1186467651880513536","source_user_id":14669702,"source_user_id_str":"14669702","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 02:21:46 +0000 2019","id":1186467651880513536,"id_str":"1186467651880513536","full_text":"Dinner + with lots of inspiring faculty and students from BYU and USU. #AECT19 #inspiredme + https:\/\/t.co\/k5degN4mzV","truncated":false,"display_text_range":[0,88],"entities":{"hashtags":[{"text":"AECT19","indices":[69,76]},{"text":"inspiredme","indices":[77,88]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186467643974250496,"id_str":"1186467643974250496","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcuCTiUcAAbMOZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcuCTiUcAAbMOZ.jpg","url":"https:\/\/t.co\/k5degN4mzV","display_url":"pic.twitter.com\/k5degN4mzV","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186467651880513536\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186467643974250496,"id_str":"1186467643974250496","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcuCTiUcAAbMOZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcuCTiUcAAbMOZ.jpg","url":"https:\/\/t.co\/k5degN4mzV","display_url":"pic.twitter.com\/k5degN4mzV","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186467651880513536\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 23:04:03 +0000 2019","id":1186417896374915074,"id_str":"1186417896374915074","full_text":"A + new ''do for #AECT19 \ud83e\udd23 https:\/\/t.co\/RSDKBTzkj5 https:\/\/t.co\/q4aEP3Zviq","truncated":false,"display_text_range":[0,47],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RSDKBTzkj5","expanded_url":"http:\/\/bit.ly\/2pFcvYi","display_url":"bit.ly\/2pFcvYi","indices":[24,47]}],"media":[{"id":1186417894898438149,"id_str":"1186417894898438149","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcAyhyWkAUKkof.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcAyhyWkAUKkof.jpg","url":"https:\/\/t.co\/q4aEP3Zviq","display_url":"pic.twitter.com\/q4aEP3Zviq","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186417896374915074\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186417894898438149,"id_str":"1186417894898438149","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcAyhyWkAUKkof.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcAyhyWkAUKkof.jpg","url":"https:\/\/t.co\/q4aEP3Zviq","display_url":"pic.twitter.com\/q4aEP3Zviq","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186417896374915074\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 21:54:07 +0000 2019","id":1186400294185271296,"id_str":"1186400294185271296","full_text":"@richardewest + facilitating a discussion about managing your time for academic writing. #AECT19 #EarlyCareerSymposium + https:\/\/t.co\/tTTExNZ3e1","truncated":false,"display_text_range":[0,118],"entities":{"hashtags":[{"text":"AECT19","indices":[87,94]},{"text":"EarlyCareerSymposium","indices":[97,118]}],"symbols":[],"user_mentions":[{"screen_name":"richardewest","name":"Rick + West","id":17639668,"id_str":"17639668","indices":[0,13]}],"urls":[],"media":[{"id":1186400284689326082,"id_str":"1186400284689326082","indices":[119,142],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbwxepUYAI3_TC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbwxepUYAI3_TC.jpg","url":"https:\/\/t.co\/tTTExNZ3e1","display_url":"pic.twitter.com\/tTTExNZ3e1","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186400294185271296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186400284689326082,"id_str":"1186400284689326082","indices":[119,142],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbwxepUYAI3_TC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbwxepUYAI3_TC.jpg","url":"https:\/\/t.co\/tTTExNZ3e1","display_url":"pic.twitter.com\/tTTExNZ3e1","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186400294185271296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":17639668,"in_reply_to_user_id_str":"17639668","in_reply_to_screen_name":"richardewest","user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 21:12:12 +0000 2019","id":1186389747368939520,"id_str":"1186389747368939520","full_text":"RT + @ISLT_FSU: #FSU #FSUCOE #ISLT students and faculty in Vegas for #AECT19, you + now have access to a chronological listing of all ISLT pres\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"FSU","indices":[14,18]},{"text":"FSUCOE","indices":[19,26]},{"text":"ISLT","indices":[27,32]},{"text":"AECT19","indices":[67,74]}],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1664133686,"id_str":"1664133686","name":"Zhongrui(Ray) + Yao","screen_name":"ZhongruiYao","location":"Davis, CA","description":"Dr. + Zhongrui Yao in ISLT program at Florida State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":109,"friends_count":438,"listed_count":6,"created_at":"Mon + Aug 12 04:22:44 +0000 2013","favourites_count":511,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":690,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1168975986920214530\/OJRLfdQQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1168975986920214530\/OJRLfdQQ_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 07:27:14 +0000 2019","id":1186182137080205313,"id_str":"1186182137080205313","full_text":"#FSU + #FSUCOE #ISLT students and faculty in Vegas for #AECT19, you now have access + to a chronological listing of all ISLT presentations this week: https:\/\/t.co\/XQy25xuLbt","truncated":false,"display_text_range":[0,169],"entities":{"hashtags":[{"text":"FSU","indices":[0,4]},{"text":"FSUCOE","indices":[5,12]},{"text":"ISLT","indices":[13,18]},{"text":"AECT19","indices":[53,60]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XQy25xuLbt","expanded_url":"https:\/\/isfsu.blogspot.com\/2019\/10\/2019-aect-islt-presenters-organized-in.html","display_url":"isfsu.blogspot.com\/2019\/10\/2019-a\u2026","indices":[146,169]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 04:44:19 +0000 2019","id":1186503524697268224,"id_str":"1186503524697268224","full_text":"RT + @FakeBobGagne: How many AECT members does it take to screw in a lightbulb? + 7 +- 2 #aect19","truncated":false,"display_text_range":[0,92],"entities":{"hashtags":[{"text":"aect19","indices":[85,92]}],"symbols":[],"user_mentions":[{"screen_name":"FakeBobGagne","name":"FakeBobGagne","id":4130346912,"id_str":"4130346912","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 23:33:32 +0000 2019","id":1186425313107951616,"id_str":"1186425313107951616","full_text":"How + many AECT members does it take to screw in a lightbulb? 7 +- 2 #aect19","truncated":false,"display_text_range":[0,74],"entities":{"hashtags":[{"text":"aect19","indices":[67,74]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 23:05:08 +0000 2019","id":1186418166357868545,"id_str":"1186418166357868545","full_text":"Very + timely workshop on evaluating online course designs by @camille_dd with great + takeaways - and Tam Tams:) #aect19inspired @AECT @aectclt https:\/\/t.co\/ix2TB6lykw","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[110,125]}],"symbols":[],"user_mentions":[{"screen_name":"camille_dd","name":"Camille + Dickson-Deane","id":398945750,"id_str":"398945750","indices":[60,71]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[126,131]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[132,140]}],"urls":[],"media":[{"id":1186418127996772352,"id_str":"1186418127996772352","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBAGJU4AAckBn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBAGJU4AAckBn.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186418127996772352,"id_str":"1186418127996772352","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBAGJU4AAckBn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBAGJU4AAckBn.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":576,"resize":"fit"},"medium":{"w":1024,"h":576,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null},{"id":1186418135596814337,"id_str":"1186418135596814337","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBAidUUAEH31C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBAidUUAEH31C.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186418148590776321,"id_str":"1186418148590776321","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBBS3UcAEBsFr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBBS3UcAEBsFr.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186418159063977984,"id_str":"1186418159063977984","indices":[141,164],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcBB54U0AAae8b.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcBB54U0AAae8b.jpg","url":"https:\/\/t.co\/ix2TB6lykw","display_url":"pic.twitter.com\/ix2TB6lykw","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186418166357868545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 02:03:20 +0000 2019","id":1186463012498001920,"id_str":"1186463012498001920","full_text":"RT + @DrTerriC: #aect19inspired what a great chat to join in! @anneleftwich you + in Vegas already? @robmoore3 #nvedchat https:\/\/t.co\/bcLsD3I\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[14,29]},{"text":"nvedchat","indices":[109,118]}],"symbols":[],"user_mentions":[{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[3,12]},{"screen_name":"anneleftwich","name":"Anne + Leftwich","id":6141122,"id_str":"6141122","indices":[62,75]},{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[98,108]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2691013705,"id_str":"2691013705","name":"#NVedchat","screen_name":"NevadaEdChat","location":"Nevada","description":"We + are a 30 minute chat about Education on Mondays at 7pm PST. \nEveryone Welcome! + #NVedchat Founded by @Snehalstocks","url":"https:\/\/t.co\/ReYrqLRTne","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ReYrqLRTne","expanded_url":"http:\/\/tinyurl.com\/NevadaEdChat","display_url":"tinyurl.com\/NevadaEdChat","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1862,"friends_count":1485,"listed_count":92,"created_at":"Tue + Jul 29 20:27:12 +0000 2014","favourites_count":26122,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15940,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1161083569172729856\/bsZ2A0UM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1161083569172729856\/bsZ2A0UM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2691013705\/1565658740","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 02:03:12 +0000 2019","id":1186462981305098240,"id_str":"1186462981305098240","full_text":"#aect19inspired what + a great chat to join in! @anneleftwich you in Vegas already? @robmoore3 #nvedchat + https:\/\/t.co\/bcLsD3IyZF","truncated":false,"display_text_range":[0,104],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]},{"text":"nvedchat","indices":[95,104]}],"symbols":[],"user_mentions":[{"screen_name":"anneleftwich","name":"Anne + Leftwich","id":6141122,"id_str":"6141122","indices":[48,61]},{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[84,94]}],"urls":[{"url":"https:\/\/t.co\/bcLsD3IyZF","expanded_url":"https:\/\/twitter.com\/LCHS_Physics\/status\/1186462249768161280","display_url":"twitter.com\/LCHS_Physics\/s\u2026","indices":[105,128]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186462249768161280,"quoted_status_id_str":"1186462249768161280","quoted_status_permalink":{"url":"https:\/\/t.co\/bcLsD3IyZF","expanded":"https:\/\/twitter.com\/LCHS_Physics\/status\/1186462249768161280","display":"twitter.com\/LCHS_Physics\/s\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 02:00:18 +0000 2019","id":1186462249768161280,"id_str":"1186462249768161280","full_text":"It''s + 10:00 EST\/7:00 PST. Welcome to this week\u2019s edition of #NVedchat. I + am Kevin Self, your moderator for tonight\u2019s session. I am a physics + and computer science teacher from @LCHSBears in Indianapolis, IN. Tonight + we are going to discuss Transforming Education. #NVedchat","truncated":false,"display_text_range":[0,276],"entities":{"hashtags":[{"text":"NVedchat","indices":[60,69]},{"text":"NVedchat","indices":[267,276]}],"symbols":[],"user_mentions":[{"screen_name":"LCHSBears","name":"Lawrence + Central","id":350595075,"id_str":"350595075","indices":[177,187]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3351894659,"id_str":"3351894659","name":"Kevin + Self","screen_name":"LCHS_Physics","location":"Indianapolis, IN","description":"I + teach physics and biology at Lawrence Central High School in Indianapolis, + IN. @LTGoodNews @lchsbears","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1060,"friends_count":299,"listed_count":54,"created_at":"Tue + Jun 30 15:09:20 +0000 2015","favourites_count":65902,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26540,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/898208121881071616\/Ac2AGJiR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/898208121881071616\/Ac2AGJiR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3351894659\/1502501166","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1186462249768161280,"quoted_status_id_str":"1186462249768161280","quoted_status_permalink":{"url":"https:\/\/t.co\/bcLsD3IyZF","expanded":"https:\/\/twitter.com\/LCHS_Physics\/status\/1186462249768161280","display":"twitter.com\/LCHS_Physics\/s\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 04:44:18 +0000 2019","id":1186503523858386944,"id_str":"1186503523858386944","full_text":"RT + @FakeBobGagne: We need to do more problem-centered instruction, centered on + my own personal problems #aect19","truncated":false,"display_text_range":[0,111],"entities":{"hashtags":[{"text":"aect19","indices":[104,111]}],"symbols":[],"user_mentions":[{"screen_name":"FakeBobGagne","name":"FakeBobGagne","id":4130346912,"id_str":"4130346912","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 23:31:31 +0000 2019","id":1186424808256360448,"id_str":"1186424808256360448","full_text":"We + need to do more problem-centered instruction, centered on my own personal + problems #aect19","truncated":false,"display_text_range":[0,93],"entities":{"hashtags":[{"text":"aect19","indices":[86,93]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 23:56:10 +0000 2019","id":1186431009081815040,"id_str":"1186431009081815040","full_text":"#FSU + #FSUCOE #ISLT doctoral students (with Past President Ana Donaldson) at the + First Timer\u2019s Orientation #AECT19 learning about the conference. https:\/\/t.co\/IG2l7uBX6O","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"FSU","indices":[0,4]},{"text":"FSUCOE","indices":[5,12]},{"text":"ISLT","indices":[13,18]},{"text":"AECT19","indices":[106,113]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186430996926697472,"id_str":"1186430996926697472","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcMtKpUEAA1M-L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcMtKpUEAA1M-L.jpg","url":"https:\/\/t.co\/IG2l7uBX6O","display_url":"pic.twitter.com\/IG2l7uBX6O","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186431009081815040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186430996926697472,"id_str":"1186430996926697472","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcMtKpUEAA1M-L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcMtKpUEAA1M-L.jpg","url":"https:\/\/t.co\/IG2l7uBX6O","display_url":"pic.twitter.com\/IG2l7uBX6O","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1186431009081815040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:42:58 +0000 2019","id":1186382389016006657,"id_str":"1186382389016006657","full_text":"RT + @kolorkid: Check out the History & Archive Committee posters in the hallways + here at the Westgate, we are approaching 100yrs. Inspired b\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kolorkid","name":"Dr. + Heather Leary","id":14669702,"id_str":"14669702","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 19:39:51 +0000 2019","id":1186366508089233409,"id_str":"1186366508089233409","full_text":"Check + out the History & Archive Committee posters in the hallways here at the + Westgate, we are approaching 100yrs. Inspired by the great people on this + committee. #AECT2019 #inspiredme https:\/\/t.co\/iiIvjSAGFl","truncated":false,"display_text_range":[0,188],"entities":{"hashtags":[{"text":"AECT2019","indices":[167,176]},{"text":"inspiredme","indices":[177,188]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186366498199048192,"id_str":"1186366498199048192","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbSC2KUEAAG_Ep.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbSC2KUEAAG_Ep.jpg","url":"https:\/\/t.co\/iiIvjSAGFl","display_url":"pic.twitter.com\/iiIvjSAGFl","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186366508089233409\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186366498199048192,"id_str":"1186366498199048192","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbSC2KUEAAG_Ep.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbSC2KUEAAG_Ep.jpg","url":"https:\/\/t.co\/iiIvjSAGFl","display_url":"pic.twitter.com\/iiIvjSAGFl","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186366508089233409\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 22 00:20:43 +0000 2019","id":1186437191209107456,"id_str":"1186437191209107456","full_text":"Prepping + and packing for #aect19 #aect19inspired https:\/\/t.co\/8jcwEnDVJb","truncated":false,"display_text_range":[0,48],"entities":{"hashtags":[{"text":"aect19","indices":[25,32]},{"text":"aect19inspired","indices":[33,48]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186437160997515265,"id_str":"1186437160997515265","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcST9mUcAE8GD9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcST9mUcAE8GD9.jpg","url":"https:\/\/t.co\/8jcwEnDVJb","display_url":"pic.twitter.com\/8jcwEnDVJb","expanded_url":"https:\/\/twitter.com\/kristaruggles\/status\/1186437191209107456\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":526,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1585,"resize":"fit"},"medium":{"w":1200,"h":929,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186437160997515265,"id_str":"1186437160997515265","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcST9mUcAE8GD9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcST9mUcAE8GD9.jpg","url":"https:\/\/t.co\/8jcwEnDVJb","display_url":"pic.twitter.com\/8jcwEnDVJb","expanded_url":"https:\/\/twitter.com\/kristaruggles\/status\/1186437191209107456\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":526,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1585,"resize":"fit"},"medium":{"w":1200,"h":929,"resize":"fit"}},"ext_alt_text":null},{"id":1186437161010135041,"id_str":"1186437161010135041","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcST9pVAAEMYwh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcST9pVAAEMYwh.jpg","url":"https:\/\/t.co\/8jcwEnDVJb","display_url":"pic.twitter.com\/8jcwEnDVJb","expanded_url":"https:\/\/twitter.com\/kristaruggles\/status\/1186437191209107456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":641,"h":680,"resize":"fit"},"large":{"w":1125,"h":1194,"resize":"fit"},"medium":{"w":1125,"h":1194,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1022045132,"id_str":"1022045132","name":"Krista + Ruggles, PhD, NBCT","screen_name":"kristaruggles","location":"Salt Lake City, + UT","description":"Associate Professor @ Utah Valley University, ISTE Certified, + \ud83d\udc0a\ud83e\udde1\ud83d\udc99","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":252,"friends_count":544,"listed_count":5,"created_at":"Wed + Dec 19 13:05:12 +0000 2012","favourites_count":504,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":548,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/871368520747040769\/bh0EdaUI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/871368520747040769\/bh0EdaUI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1022045132\/1496585421","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:44:38 +0000 2019","id":1186382810375847936,"id_str":"1186382810375847936","full_text":"RT + @nangur1: Enjoying the food and the company at the leadership luncheon at + #aect19 #aectinspired \u2066@khuett\u2069 https:\/\/t.co\/zzvZeHlP02","truncated":false,"display_text_range":[0,132],"entities":{"hashtags":[{"text":"aect19","indices":[77,84]},{"text":"aectinspired","indices":[85,98]}],"symbols":[],"user_mentions":[{"screen_name":"nangur1","name":"Dr. + Nandita Gurjar","id":2743313304,"id_str":"2743313304","indices":[3,11]},{"screen_name":"khuett","name":"khuett","id":18109307,"id_str":"18109307","indices":[100,107]}],"urls":[],"media":[{"id":1186358975379337216,"id_str":"1186358975379337216","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbLM9eU8AAYKcH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbLM9eU8AAYKcH.jpg","url":"https:\/\/t.co\/zzvZeHlP02","display_url":"pic.twitter.com\/zzvZeHlP02","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186358985059790853\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1186358985059790853,"source_status_id_str":"1186358985059790853","source_user_id":2743313304,"source_user_id_str":"2743313304"}]},"extended_entities":{"media":[{"id":1186358975379337216,"id_str":"1186358975379337216","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbLM9eU8AAYKcH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbLM9eU8AAYKcH.jpg","url":"https:\/\/t.co\/zzvZeHlP02","display_url":"pic.twitter.com\/zzvZeHlP02","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186358985059790853\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1186358985059790853,"source_status_id_str":"1186358985059790853","source_user_id":2743313304,"source_user_id_str":"2743313304","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 19:09:58 +0000 2019","id":1186358985059790853,"id_str":"1186358985059790853","full_text":"Enjoying + the food and the company at the leadership luncheon at #aect19 #aectinspired + \u2066@khuett\u2069 https:\/\/t.co\/zzvZeHlP02","truncated":false,"display_text_range":[0,95],"entities":{"hashtags":[{"text":"aect19","indices":[64,71]},{"text":"aectinspired","indices":[72,85]}],"symbols":[],"user_mentions":[{"screen_name":"khuett","name":"khuett","id":18109307,"id_str":"18109307","indices":[87,94]}],"urls":[],"media":[{"id":1186358975379337216,"id_str":"1186358975379337216","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbLM9eU8AAYKcH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbLM9eU8AAYKcH.jpg","url":"https:\/\/t.co\/zzvZeHlP02","display_url":"pic.twitter.com\/zzvZeHlP02","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186358985059790853\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186358975379337216,"id_str":"1186358975379337216","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbLM9eU8AAYKcH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbLM9eU8AAYKcH.jpg","url":"https:\/\/t.co\/zzvZeHlP02","display_url":"pic.twitter.com\/zzvZeHlP02","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186358985059790853\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 05:26:14 +0000 2019","id":1186514075917811712,"id_str":"1186514075917811712","full_text":"RT + @hampthephd: Great night with the PhD crew and got to try some some authentic + Chengdu food! \ud83d\ude0b #aect19 https:\/\/t.co\/65dnxPjA06","truncated":false,"display_text_range":[0,128],"entities":{"hashtags":[{"text":"aect19","indices":[97,104]}],"symbols":[],"user_mentions":[{"screen_name":"hampthephd","name":"John + Hampton, PhD","id":936686250,"id_str":"936686250","indices":[3,14]}],"urls":[],"media":[{"id":1186473626888888325,"id_str":"1186473626888888325","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/EHczejoU4AUmdJ4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHczejoU4AUmdJ4.jpg","url":"https:\/\/t.co\/65dnxPjA06","display_url":"pic.twitter.com\/65dnxPjA06","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1186473630785425408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":314,"resize":"fit"},"large":{"w":1024,"h":473,"resize":"fit"},"medium":{"w":1024,"h":473,"resize":"fit"}},"source_status_id":1186473630785425408,"source_status_id_str":"1186473630785425408","source_user_id":936686250,"source_user_id_str":"936686250"}]},"extended_entities":{"media":[{"id":1186473626888888325,"id_str":"1186473626888888325","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/EHczejoU4AUmdJ4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHczejoU4AUmdJ4.jpg","url":"https:\/\/t.co\/65dnxPjA06","display_url":"pic.twitter.com\/65dnxPjA06","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1186473630785425408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":314,"resize":"fit"},"large":{"w":1024,"h":473,"resize":"fit"},"medium":{"w":1024,"h":473,"resize":"fit"}},"source_status_id":1186473630785425408,"source_status_id_str":"1186473630785425408","source_user_id":936686250,"source_user_id_str":"936686250","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 22 02:45:31 +0000 2019","id":1186473630785425408,"id_str":"1186473630785425408","full_text":"Great + night with the PhD crew and got to try some some authentic Chengdu food! \ud83d\ude0b + #aect19 https:\/\/t.co\/65dnxPjA06","truncated":false,"display_text_range":[0,88],"entities":{"hashtags":[{"text":"aect19","indices":[81,88]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186473626888888325,"id_str":"1186473626888888325","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/EHczejoU4AUmdJ4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHczejoU4AUmdJ4.jpg","url":"https:\/\/t.co\/65dnxPjA06","display_url":"pic.twitter.com\/65dnxPjA06","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1186473630785425408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":314,"resize":"fit"},"large":{"w":1024,"h":473,"resize":"fit"},"medium":{"w":1024,"h":473,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186473626888888325,"id_str":"1186473626888888325","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/EHczejoU4AUmdJ4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHczejoU4AUmdJ4.jpg","url":"https:\/\/t.co\/65dnxPjA06","display_url":"pic.twitter.com\/65dnxPjA06","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1186473630785425408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":314,"resize":"fit"},"large":{"w":1024,"h":473,"resize":"fit"},"medium":{"w":1024,"h":473,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 02:21:46 +0000 2019","id":1186467651880513536,"id_str":"1186467651880513536","full_text":"Dinner + with lots of inspiring faculty and students from BYU and USU. #AECT19 #inspiredme + https:\/\/t.co\/k5degN4mzV","truncated":false,"display_text_range":[0,88],"entities":{"hashtags":[{"text":"AECT19","indices":[69,76]},{"text":"inspiredme","indices":[77,88]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186467643974250496,"id_str":"1186467643974250496","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcuCTiUcAAbMOZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcuCTiUcAAbMOZ.jpg","url":"https:\/\/t.co\/k5degN4mzV","display_url":"pic.twitter.com\/k5degN4mzV","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186467651880513536\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186467643974250496,"id_str":"1186467643974250496","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcuCTiUcAAbMOZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcuCTiUcAAbMOZ.jpg","url":"https:\/\/t.co\/k5degN4mzV","display_url":"pic.twitter.com\/k5degN4mzV","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186467651880513536\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 01:27:27 +0000 2019","id":1186453984308944896,"id_str":"1186453984308944896","full_text":"RT + @kariknisely: Just finished a Design Thinking for Instructional Designers + all day workshop here at #AECT19 in #vegas. Learned quite a bi\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[102,109]},{"text":"vegas","indices":[113,119]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 23:10:51 +0000 2019","id":1186419605570379776,"id_str":"1186419605570379776","full_text":"Just + finished a Design Thinking for Instructional Designers all day workshop here + at #AECT19 in #vegas. Learned quite a bit and anxious to implement some more + #journeymapping, #personas, and #empathy mapping. #ID #instructionalDesign + #DesignThinking #AECT2019 https:\/\/t.co\/YFvHMIC19k","truncated":false,"display_text_range":[0,259],"entities":{"hashtags":[{"text":"AECT19","indices":[85,92]},{"text":"vegas","indices":[96,102]},{"text":"journeymapping","indices":[159,174]},{"text":"personas","indices":[176,185]},{"text":"empathy","indices":[191,199]},{"text":"ID","indices":[209,212]},{"text":"instructionalDesign","indices":[213,233]},{"text":"DesignThinking","indices":[234,249]},{"text":"AECT2019","indices":[250,259]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186419594094731265,"id_str":"1186419594094731265","indices":[260,283],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcCVbyUYAEdaQe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcCVbyUYAEdaQe.jpg","url":"https:\/\/t.co\/YFvHMIC19k","display_url":"pic.twitter.com\/YFvHMIC19k","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186419605570379776\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186419594094731265,"id_str":"1186419594094731265","indices":[260,283],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcCVbyUYAEdaQe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcCVbyUYAEdaQe.jpg","url":"https:\/\/t.co\/YFvHMIC19k","display_url":"pic.twitter.com\/YFvHMIC19k","expanded_url":"https:\/\/twitter.com\/kariknisely\/status\/1186419605570379776\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605791300,"id_str":"1605791300","name":"Kari + (Knisely) Word","screen_name":"kariword","location":"Remote","description":"ID + - eLearning - EdTech - FSU Doctoral Student - ATD FL Suncoast - Foodie - Travel + - Yoga - SUP - Scuba","url":"https:\/\/t.co\/0OWcjw89da","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0OWcjw89da","expanded_url":"http:\/\/www.kariknisely.com","display_url":"kariknisely.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":687,"friends_count":1430,"listed_count":5,"created_at":"Fri + Jul 19 12:07:07 +0000 2013","favourites_count":2217,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1136097734044377088\/5-Fg0FUz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605791300\/1560547017","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":39,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 22:56:17 +0000 2019","id":1186415939497021440,"id_str":"1186415939497021440","full_text":"Learned + I am a \u201cfield independent\u201d in online courses according to the presentation + I am attending. There are 6 of us. There were 7 in the other \u201cfield dependent\u201d + group. Interesting. @aect #aect19 #aect19inspired","truncated":false,"display_text_range":[0,211],"entities":{"hashtags":[{"text":"aect19","indices":[188,195]},{"text":"aect19inspired","indices":[196,211]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[182,187]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 22:41:22 +0000 2019","id":1186412187784339457,"id_str":"1186412187784339457","full_text":"I + really \u2764\ufe0f the \u201cpay what you want\u201d stack at the AECT conference. + #aect19 #aect19inspired https:\/\/t.co\/uxsNkhQ7VY","truncated":false,"display_text_range":[0,89],"entities":{"hashtags":[{"text":"aect19","indices":[66,73]},{"text":"aect19inspired","indices":[74,89]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186412180477898752,"id_str":"1186412180477898752","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/EHb7l56U8AAvvVE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHb7l56U8AAvvVE.jpg","url":"https:\/\/t.co\/uxsNkhQ7VY","display_url":"pic.twitter.com\/uxsNkhQ7VY","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1186412187784339457\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186412180477898752,"id_str":"1186412180477898752","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/EHb7l56U8AAvvVE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHb7l56U8AAvvVE.jpg","url":"https:\/\/t.co\/uxsNkhQ7VY","display_url":"pic.twitter.com\/uxsNkhQ7VY","expanded_url":"https:\/\/twitter.com\/WilsonInEdu\/status\/1186412187784339457\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":2048,"resize":"fit"},"small":{"w":680,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:41:57 +0000 2019","id":1186382133868126208,"id_str":"1186382133868126208","full_text":"RT + @kolorkid: Inspired by the wonderful presentation by Elizabeth Boling, kicking + off the Early Career Symposium. #AECT2019 #inspiredme htt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT2019","indices":[114,123]},{"text":"inspiredme","indices":[124,135]}],"symbols":[],"user_mentions":[{"screen_name":"kolorkid","name":"Dr. + Heather Leary","id":14669702,"id_str":"14669702","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 20:26:59 +0000 2019","id":1186378366523301888,"id_str":"1186378366523301888","full_text":"Inspired + by the wonderful presentation by Elizabeth Boling, kicking off the Early Career + Symposium. #AECT2019 #inspiredme https:\/\/t.co\/tzsuVxTB3w","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"AECT2019","indices":[100,109]},{"text":"inspiredme","indices":[110,121]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186378355043553280,"id_str":"1186378355043553280","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbc1AWVUAArevF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbc1AWVUAArevF.jpg","url":"https:\/\/t.co\/tzsuVxTB3w","display_url":"pic.twitter.com\/tzsuVxTB3w","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186378366523301888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186378355043553280,"id_str":"1186378355043553280","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbc1AWVUAArevF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbc1AWVUAArevF.jpg","url":"https:\/\/t.co\/tzsuVxTB3w","display_url":"pic.twitter.com\/tzsuVxTB3w","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186378366523301888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 22:17:00 +0000 2019","id":1186406053967208448,"id_str":"1186406053967208448","full_text":"What + is Virtuality Culture Theory? https:\/\/t.co\/FVnvBDDl5d @aect @aectclt #aect19inspired + #aect19 #virtualityculturetheory #virtualityculture #virtuality https:\/\/t.co\/ECoEzA6UZq","truncated":false,"display_text_range":[0,153],"entities":{"hashtags":[{"text":"aect19inspired","indices":[74,89]},{"text":"aect19","indices":[90,97]},{"text":"virtualityculturetheory","indices":[98,122]},{"text":"virtualityculture","indices":[123,141]},{"text":"virtuality","indices":[142,153]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[59,64]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[65,73]}],"urls":[{"url":"https:\/\/t.co\/FVnvBDDl5d","expanded_url":"https:\/\/sites.google.com\/view\/dr-camille-dempsey\/theory-of-virtuality-culture","display_url":"sites.google.com\/view\/dr-camill\u2026","indices":[35,58]}],"media":[{"id":1186340594727022592,"id_str":"1186340594727022592","indices":[154,177],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa6fENUcAAG02k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa6fENUcAAG02k.jpg","url":"https:\/\/t.co\/ECoEzA6UZq","display_url":"pic.twitter.com\/ECoEzA6UZq","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186406053967208448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":2048,"h":1365,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186340594727022592,"id_str":"1186340594727022592","indices":[154,177],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa6fENUcAAG02k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa6fENUcAAG02k.jpg","url":"https:\/\/t.co\/ECoEzA6UZq","display_url":"pic.twitter.com\/ECoEzA6UZq","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186406053967208448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":2048,"h":1365,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:43:35 +0000 2019","id":1186382546130493440,"id_str":"1186382546130493440","full_text":"RT + @srogidd: #aect19 https:\/\/t.co\/jNK2701Zii","truncated":false,"display_text_range":[0,44],"entities":{"hashtags":[{"text":"aect19","indices":[13,20]}],"symbols":[],"user_mentions":[{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[3,11]}],"urls":[],"media":[{"id":1186119827665997825,"id_str":"1186119827665997825","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","url":"https:\/\/t.co\/jNK2701Zii","display_url":"pic.twitter.com\/jNK2701Zii","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1186119831617077248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1186119831617077248,"source_status_id_str":"1186119831617077248","source_user_id":28836047,"source_user_id_str":"28836047"}]},"extended_entities":{"media":[{"id":1186119827665997825,"id_str":"1186119827665997825","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","url":"https:\/\/t.co\/jNK2701Zii","display_url":"pic.twitter.com\/jNK2701Zii","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1186119831617077248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1186119831617077248,"source_status_id_str":"1186119831617077248","source_user_id":28836047,"source_user_id_str":"28836047","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 03:19:39 +0000 2019","id":1186119831617077248,"id_str":"1186119831617077248","full_text":"#aect19 + https:\/\/t.co\/jNK2701Zii","truncated":false,"display_text_range":[0,7],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186119827665997825,"id_str":"1186119827665997825","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","url":"https:\/\/t.co\/jNK2701Zii","display_url":"pic.twitter.com\/jNK2701Zii","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1186119831617077248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186119827665997825,"id_str":"1186119827665997825","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","url":"https:\/\/t.co\/jNK2701Zii","display_url":"pic.twitter.com\/jNK2701Zii","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1186119831617077248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28836047,"id_str":"28836047","name":"Sylvia + Rogers","screen_name":"srogidd","location":"Auburn, AL","description":"PhD + in Instructional Design, I work as an Instructional Designer and Consultant + for Scholarship of Teaching and Learning at the Harrison School of Pharmacy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":550,"friends_count":1089,"listed_count":18,"created_at":"Sat + Apr 04 17:47:27 +0000 2009","favourites_count":12191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2400,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28836047\/1439418186","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Mon + Oct 21 21:10:21 +0000 2019","id":1186389280060596224,"id_str":"1186389280060596224","full_text":"Roster + of Designers for Learning sessions at\u00a0#AECT19 https:\/\/t.co\/KziGcP2Y5d","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"AECT19","indices":[45,52]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KziGcP2Y5d","expanded_url":"https:\/\/rickscafe.wordpress.com\/2019\/10\/21\/roster-of-designers-for-learning-sessions-at-aect19\/","display_url":"rickscafe.wordpress.com\/2019\/10\/21\/ros\u2026","indices":[53,76]}]},"source":"\u003ca + href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12162982,"id_str":"12162982","name":"Rick + Schwier","screen_name":"schwier","location":"iPhone: 52.126092,-106.648576","description":"Mostly + about technology and\/or teaching & SoTL -- the questions more than the answers","url":"https:\/\/t.co\/IBoW7NB9mT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IBoW7NB9mT","expanded_url":"http:\/\/rickscafe.wordpress.com","display_url":"rickscafe.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1190,"friends_count":565,"listed_count":118,"created_at":"Sat + Jan 12 20:46:08 +0000 2008","favourites_count":934,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13873,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/880502074789605376\/TGsKjnSR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/880502074789605376\/TGsKjnSR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12162982\/1444946465","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0000FF","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 22 02:03:12 +0000 2019","id":1186462981305098240,"id_str":"1186462981305098240","full_text":"#aect19inspired what + a great chat to join in! @anneleftwich you in Vegas already? @robmoore3 #nvedchat + https:\/\/t.co\/bcLsD3IyZF","truncated":false,"display_text_range":[0,104],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]},{"text":"nvedchat","indices":[95,104]}],"symbols":[],"user_mentions":[{"screen_name":"anneleftwich","name":"Anne + Leftwich","id":6141122,"id_str":"6141122","indices":[48,61]},{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[84,94]}],"urls":[{"url":"https:\/\/t.co\/bcLsD3IyZF","expanded_url":"https:\/\/twitter.com\/LCHS_Physics\/status\/1186462249768161280","display_url":"twitter.com\/LCHS_Physics\/s\u2026","indices":[105,128]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186462249768161280,"quoted_status_id_str":"1186462249768161280","quoted_status_permalink":{"url":"https:\/\/t.co\/bcLsD3IyZF","expanded":"https:\/\/twitter.com\/LCHS_Physics\/status\/1186462249768161280","display":"twitter.com\/LCHS_Physics\/s\u2026"},"quoted_status":{"created_at":"Tue + Oct 22 02:00:18 +0000 2019","id":1186462249768161280,"id_str":"1186462249768161280","full_text":"It''s + 10:00 EST\/7:00 PST. Welcome to this week\u2019s edition of #NVedchat. I + am Kevin Self, your moderator for tonight\u2019s session. I am a physics + and computer science teacher from @LCHSBears in Indianapolis, IN. Tonight + we are going to discuss Transforming Education. #NVedchat","truncated":false,"display_text_range":[0,276],"entities":{"hashtags":[{"text":"NVedchat","indices":[60,69]},{"text":"NVedchat","indices":[267,276]}],"symbols":[],"user_mentions":[{"screen_name":"LCHSBears","name":"Lawrence + Central","id":350595075,"id_str":"350595075","indices":[177,187]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3351894659,"id_str":"3351894659","name":"Kevin + Self","screen_name":"LCHS_Physics","location":"Indianapolis, IN","description":"I + teach physics and biology at Lawrence Central High School in Indianapolis, + IN. @LTGoodNews @lchsbears","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1060,"friends_count":299,"listed_count":54,"created_at":"Tue + Jun 30 15:09:20 +0000 2015","favourites_count":65902,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26540,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/898208121881071616\/Ac2AGJiR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/898208121881071616\/Ac2AGJiR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3351894659\/1502501166","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 23:18:33 +0000 2019","id":1186421545880604672,"id_str":"1186421545880604672","full_text":"RT + @jcmadison2007: #inspiredme #aect19 https:\/\/t.co\/yVlyg3LpZw","truncated":false,"display_text_range":[0,62],"entities":{"hashtags":[{"text":"inspiredme","indices":[19,30]},{"text":"aect19","indices":[31,38]}],"symbols":[],"user_mentions":[{"screen_name":"jcmadison2007","name":"Szu-Yueh + Justine Chien","id":93868762,"id_str":"93868762","indices":[3,17]}],"urls":[],"media":[{"id":1186346649091600393,"id_str":"1186346649091600393","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa__eeUcAkAax4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa__eeUcAkAax4.jpg","url":"https:\/\/t.co\/yVlyg3LpZw","display_url":"pic.twitter.com\/yVlyg3LpZw","expanded_url":"https:\/\/twitter.com\/jcmadison2007\/status\/1186346655727046657\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1186346655727046657,"source_status_id_str":"1186346655727046657","source_user_id":93868762,"source_user_id_str":"93868762"}]},"extended_entities":{"media":[{"id":1186346649091600393,"id_str":"1186346649091600393","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa__eeUcAkAax4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa__eeUcAkAax4.jpg","url":"https:\/\/t.co\/yVlyg3LpZw","display_url":"pic.twitter.com\/yVlyg3LpZw","expanded_url":"https:\/\/twitter.com\/jcmadison2007\/status\/1186346655727046657\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"source_status_id":1186346655727046657,"source_status_id_str":"1186346655727046657","source_user_id":93868762,"source_user_id_str":"93868762","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 18:20:58 +0000 2019","id":1186346655727046657,"id_str":"1186346655727046657","full_text":"#inspiredme + #aect19 https:\/\/t.co\/yVlyg3LpZw","truncated":false,"display_text_range":[0,19],"entities":{"hashtags":[{"text":"inspiredme","indices":[0,11]},{"text":"aect19","indices":[12,19]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186346649091600393,"id_str":"1186346649091600393","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa__eeUcAkAax4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa__eeUcAkAax4.jpg","url":"https:\/\/t.co\/yVlyg3LpZw","display_url":"pic.twitter.com\/yVlyg3LpZw","expanded_url":"https:\/\/twitter.com\/jcmadison2007\/status\/1186346655727046657\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186346649091600393,"id_str":"1186346649091600393","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa__eeUcAkAax4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa__eeUcAkAax4.jpg","url":"https:\/\/t.co\/yVlyg3LpZw","display_url":"pic.twitter.com\/yVlyg3LpZw","expanded_url":"https:\/\/twitter.com\/jcmadison2007\/status\/1186346655727046657\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":93868762,"id_str":"93868762","name":"Szu-Yueh + Justine Chien","screen_name":"jcmadison2007","location":"Madison, WI","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":61,"listed_count":3,"created_at":"Tue + Dec 01 14:25:12 +0000 2009","favourites_count":15,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":45,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1143281723796574208\/fKIs6ct8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1143281723796574208\/fKIs6ct8_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1186378289436192768%2C1186378274802257920%2C1186378001673404416%2C1186377880810311680%2C1186377410180042752%2C1186377260103659520%2C1186376506584391680%2C1186375632134914049%2C1186373842467471360%2C1186372470284136448%2C1186372470284136448%2C1186369925511692288%2C1186369337625473024%2C1186367682712502273%2C1186366848482213888%2C1186366508089233409%2C1186364608170336256%2C1186364374513934336%2C1186360908152479746%2C1186358985059790853%2C1186357911636840450%2C1186357334257422336%2C1186355681403629569%2C1186355681403629569%2C1186353749159223296%2C1186353656137805825%2C1186350568882597888%2C1186346655727046657%2C1186345249444192256%2C1186344529839804416%2C1186343642488721408%2C1186343238426193922%2C1186342818656055296%2C1186342384432345091%2C1186341460435582976%2C1186341100014825473%2C1186340541551673344%2C1186340473842987011%2C1186340297929682946%2C1186340297929682946%2C1186339881452097536%2C1186339063365718016%2C1186336062013984768%2C1186335329004818432%2C1186334745300365318%2C1186334505948323840%2C1186334463476649984%2C1186333337524158466%2C1186333008476942337%2C1186332558172143618%2C1186332014464638977%2C1186330612375797762%2C1186330287917191169%2C1186330250994565124%2C1186330250231181312%2C1186328840982777856%2C1186328723848478727%2C1186327061666775042%2C1186326572283744256%2C1186326572283744256%2C1186320553801465861%2C1186320116289421317%2C1186318243436216320%2C1186317543184580610%2C1186317184579981312%2C1186315116238770176%2C1186315116238770176%2C1186303845309149184%2C1186302751359172609%2C1186301122182402049%2C1186300354239094784%2C1186298592610279424%2C1186295406256279552%2C1186295406256279552%2C1186291465657319424%2C1186290903385690113%2C1186284376289693696%2C1186282604221358080%2C1186282604221358080%2C1186279502747525123%2C1186275409844813826%2C1186270564631007234%2C1186268214948270080%2C1186268214948270080%2C1186262225066983424%2C1186262105256673280%2C1186261771721404422%2C1186257704668540928%2C1186257704668540928%2C1186222333415043073%2C1186218733699776512%2C1186208280701476864%2C1186208280701476864%2C1186183451457867777%2C1186182137080205313%2C1186182137080205313%2C1186164045772050433%2C1186158936681922561%2C1186158861901676549%2C1186158831459454976&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:55 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:55 GMT + x-transaction: d500b90536408b7e + content-length: '48474' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '274' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '298' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Mon Oct 21 19:51:06 +0000 2019","id":1186369337625473024,"id_str":"1186369337625473024","full_text":"Unintentionally + missed the @AECT leadership luncheon today ... so already off to a great start + at #aect19 . Instead of a nice meal with great colleagues, I had a soda and + energy bar (only $6.50 total!!) by myself. https:\/\/t.co\/mXURxi6LeY","truncated":false,"display_text_range":[0,213],"entities":{"hashtags":[{"text":"aect19","indices":[98,105]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]}],"urls":[],"media":[{"id":1186369334043537408,"id_str":"1186369334043537408","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbUn6gU8AApYEl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbUn6gU8AApYEl.jpg","url":"https:\/\/t.co\/mXURxi6LeY","display_url":"pic.twitter.com\/mXURxi6LeY","expanded_url":"https:\/\/twitter.com\/DrRossPerkins\/status\/1186369337625473024\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":249,"h":227,"resize":"fit"},"large":{"w":249,"h":227,"resize":"fit"},"small":{"w":249,"h":227,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186369334043537408,"id_str":"1186369334043537408","indices":[214,237],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbUn6gU8AApYEl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbUn6gU8AApYEl.jpg","url":"https:\/\/t.co\/mXURxi6LeY","display_url":"pic.twitter.com\/mXURxi6LeY","expanded_url":"https:\/\/twitter.com\/DrRossPerkins\/status\/1186369337625473024\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":249,"h":227,"resize":"fit"},"large":{"w":249,"h":227,"resize":"fit"},"small":{"w":249,"h":227,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2905458781,"id_str":"2905458781","name":"Ross + Perkins, PhD","screen_name":"DrRossPerkins","location":"Apex, NC","description":"Asc + Prof @ Boise State. EdS\/EdD ProgCoord. https:\/\/t.co\/8jp7WXqbV1 | Huge + listserv influencer, 1998-2006.","url":"https:\/\/t.co\/8jp7WXqbV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[43,66]}]}},"protected":false,"followers_count":773,"friends_count":485,"listed_count":21,"created_at":"Thu + Nov 20 19:52:09 +0000 2014","favourites_count":3672,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2751,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2905458781\/1618315302","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 09:11:07 +0000 2019","id":1186208280701476864,"id_str":"1186208280701476864","full_text":"RT + @AECT: Safe travels everyone! The convention starts tomorrow! If you haven''t + yet, download the #AECT19 app to help you manage your confe\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[98,105]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":157377292,"id_str":"157377292","name":"Lurdinha + Nunes","screen_name":"lurdinharlnunes","location":"Teresina","description":"Professora, + Bi\u00f3loga, Jornalista. Militante de direitos humanos. Trabalho com educa\u00e7\u00e3o + em direitos humanos. Working with human rights education.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1092,"friends_count":2678,"listed_count":8,"created_at":"Sat + Jun 19 16:35:41 +0000 2010","favourites_count":41321,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":40246,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"AFBDE0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1356507131067965440\/IB_9BrlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1356507131067965440\/IB_9BrlO_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"04072E","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 20 12:58:00 +0000 2019","id":1185902988088492032,"id_str":"1185902988088492032","full_text":"Safe + travels everyone! The convention starts tomorrow! If you haven''t yet, download + the #AECT19 app to help you manage your conference schedule:\n\n\ud83c\udf4e- + https:\/\/t.co\/wGmQg29rRb \n\u25b6\ufe0f- https:\/\/t.co\/DBp8L89r9E https:\/\/t.co\/UhaAypI8It","truncated":false,"display_text_range":[0,201],"entities":{"hashtags":[{"text":"AECT19","indices":[88,95]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wGmQg29rRb","expanded_url":"http:\/\/bit.ly\/AECTapple","display_url":"bit.ly\/AECTapple","indices":[149,172]},{"url":"https:\/\/t.co\/DBp8L89r9E","expanded_url":"http:\/\/bit.ly\/AECTandroid","display_url":"bit.ly\/AECTandroid","indices":[178,201]}],"media":[{"id":1185902978047324162,"id_str":"1185902978047324162","indices":[202,225],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185902978047324162\/pu\/img\/2-JGkyLhp9G__fz8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185902978047324162\/pu\/img\/2-JGkyLhp9G__fz8.jpg","url":"https:\/\/t.co\/UhaAypI8It","display_url":"pic.twitter.com\/UhaAypI8It","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1185902988088492032\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":336,"resize":"fit"},"medium":{"w":640,"h":336,"resize":"fit"},"large":{"w":640,"h":336,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185902978047324162,"id_str":"1185902978047324162","indices":[202,225],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185902978047324162\/pu\/img\/2-JGkyLhp9G__fz8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185902978047324162\/pu\/img\/2-JGkyLhp9G__fz8.jpg","url":"https:\/\/t.co\/UhaAypI8It","display_url":"pic.twitter.com\/UhaAypI8It","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1185902988088492032\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":336,"resize":"fit"},"medium":{"w":640,"h":336,"resize":"fit"},"large":{"w":640,"h":336,"resize":"fit"}},"video_info":{"aspect_ratio":[40,21],"duration_millis":3700,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185902978047324162\/pu\/vid\/514x270\/eXjI_Vjncv8Hc-Ef.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185902978047324162\/pu\/vid\/640x336\/QLUJPMXwg_0BNVQf.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185902978047324162\/pu\/pl\/mJ67-9G0iY63s7r1.m3u8?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 14:13:30 +0000 2019","id":1186284376289693696,"id_str":"1186284376289693696","full_text":"Wish + I could be there, folks! God willing, maybe next year! It''s been way too + long. #AECT19 https:\/\/t.co\/utymvPg9pK","truncated":false,"display_text_range":[0,91],"entities":{"hashtags":[{"text":"AECT19","indices":[84,91]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/utymvPg9pK","expanded_url":"https:\/\/twitter.com\/opencontent\/status\/1186279502747525123","display_url":"twitter.com\/opencontent\/st\u2026","indices":[92,115]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":860265492,"id_str":"860265492","name":"James + Ellsworth PhD","screen_name":"EINS_Institute","location":"Albuquerque, NM","description":"Educator\/architect + of instructional systems. Soldier. Muslim. Scholar (but not alim). Retired + General Officer level US military intelligence leader. Yep--weird.","url":"https:\/\/t.co\/GwDIuUtRB1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GwDIuUtRB1","expanded_url":"http:\/\/www.linkedin.com\/in\/ellsworthj","display_url":"linkedin.com\/in\/ellsworthj","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4099,"friends_count":1926,"listed_count":36,"created_at":"Wed + Oct 03 20:09:48 +0000 2012","favourites_count":212736,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":107275,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1393326633336156163\/aiT8Pu7i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1393326633336156163\/aiT8Pu7i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/860265492\/1491924222","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186279502747525123,"quoted_status_id_str":"1186279502747525123","quoted_status_permalink":{"url":"https:\/\/t.co\/utymvPg9pK","expanded":"https:\/\/twitter.com\/opencontent\/status\/1186279502747525123","display":"twitter.com\/opencontent\/st\u2026"},"quoted_status":{"created_at":"Mon + Oct 21 13:54:08 +0000 2019","id":1186279502747525123,"id_str":"1186279502747525123","full_text":"Super + excited to be heading to #AECT19 today! Lots to do this year, including a + workshop on professional networking for the Early Career Symposium, an Intro + to Open Ed workshop with @johnhiltoniii, and two other presentations. Looking + forward to seeing everyone later today! \u2708\ufe0f","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"AECT19","indices":[31,38]}],"symbols":[],"user_mentions":[{"screen_name":"johnhiltoniii","name":"John + Hilton III","id":45002394,"id_str":"45002394","indices":[182,196]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4514361,"id_str":"4514361","name":"David + Wiley","screen_name":"opencontent","location":"WV, USA","description":"#Learning, + #StudentSuccess, #Pedagogy, #InstructionalDesign, #Open, #DataScience, #SocialEntrepreneurship, + #Music, #WestVirginia. WV8EDU on #AmateurRadio","url":"https:\/\/t.co\/cAhKaObC6x","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cAhKaObC6x","expanded_url":"http:\/\/davidwiley.org\/","display_url":"davidwiley.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13528,"friends_count":452,"listed_count":822,"created_at":"Fri + Apr 13 16:07:05 +0000 2007","favourites_count":6762,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":7248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/781256117884030976\/m0ZvHf4j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/781256117884030976\/m0ZvHf4j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4514361\/1547424759","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":25,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 16:35:31 +0000 2019","id":1186320116289421317,"id_str":"1186320116289421317","full_text":"RT + @PaulineMuljana: #aect19 attendees, come and join us. Drs. @ifenthaler and + @andrewatawfik will be amongst the panelists discussing the i\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[20,27]}],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]},{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[62,73]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[78,92]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2411486725,"id_str":"2411486725","name":"Andrew + Tawfik","screen_name":"andrewatawfik","location":"Memphis, TN","description":"Husband, + Father, Runner, Believer, Ed Tech Researcher at the University of Memphis, + Matt Murton Fan, Aspiring Hobbit","url":"https:\/\/t.co\/AhT8vHVE0Q","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AhT8vHVE0Q","expanded_url":"https:\/\/www.researchgate.net\/profile\/Andrew_Tawfik","display_url":"researchgate.net\/profile\/Andrew\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":596,"friends_count":898,"listed_count":24,"created_at":"Tue + Mar 25 20:08:19 +0000 2014","favourites_count":899,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1167,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/890710823290720257\/XfJ6f_n-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/890710823290720257\/XfJ6f_n-_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 10 04:17:39 +0000 2019","id":1182148161361473536,"id_str":"1182148161361473536","full_text":"#aect19 + attendees, come and join us. Drs. @ifenthaler and @andrewatawfik will be amongst + the panelists discussing the intersection where LA and ID meet. #aect19inspired + https:\/\/t.co\/i21G3RTJl1","truncated":false,"display_text_range":[0,168],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]},{"text":"aect19inspired","indices":[153,168]}],"symbols":[],"user_mentions":[{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[42,53]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[58,72]}],"urls":[{"url":"https:\/\/t.co\/i21G3RTJl1","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973","display_url":"twitter.com\/gsa_aect\/statu\u2026","indices":[169,192]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"36ac79e68ace76e4","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/36ac79e68ace76e4.json","place_type":"city","name":"Rancho + Cucamonga","full_name":"Rancho Cucamonga, CA","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-117.637862,34.077184],[-117.4864431,34.077184],[-117.4864431,34.166156],[-117.637862,34.166156]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1182075810934611973,"quoted_status_id_str":"1182075810934611973","quoted_status_permalink":{"url":"https:\/\/t.co\/i21G3RTJl1","expanded":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973","display":"twitter.com\/gsa_aect\/statu\u2026"},"quoted_status":{"created_at":"Wed + Oct 09 23:30:09 +0000 2019","id":1182075810934611973,"id_str":"1182075810934611973","full_text":"Come + and join this panel discussion, moderated by Meina Zhu and Pauline Muljana, + on Oct 22 from 10:00 to 10:50 am, at Convention Center, Conference Rm 4. https:\/\/t.co\/SYdxF7JQc1 #aect19 + #aect19inspired #aectgsa https:\/\/t.co\/biptIlEZyT","truncated":false,"display_text_range":[0,211],"entities":{"hashtags":[{"text":"aect19","indices":[179,186]},{"text":"aect19inspired","indices":[187,202]},{"text":"aectgsa","indices":[203,211]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SYdxF7JQc1","expanded_url":"http:\/\/tinyurl.com\/y5qg7kwf","display_url":"tinyurl.com\/y5qg7kwf","indices":[154,177]}],"media":[{"id":1182075809219121152,"id_str":"1182075809219121152","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","url":"https:\/\/t.co\/biptIlEZyT","display_url":"pic.twitter.com\/biptIlEZyT","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182075809219121152,"id_str":"1182075809219121152","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","url":"https:\/\/t.co\/biptIlEZyT","display_url":"pic.twitter.com\/biptIlEZyT","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1182075810934611973,"quoted_status_id_str":"1182075810934611973","quoted_status_permalink":{"url":"https:\/\/t.co\/i21G3RTJl1","expanded":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973","display":"twitter.com\/gsa_aect\/statu\u2026"},"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:26:40 +0000 2019","id":1186378289436192768,"id_str":"1186378289436192768","full_text":"RT + @art_brownlow: Learning a lot about instructional use of AR @AECT. Meanwhile, + we had a visitor at our session. #aect2019 #aect19inspired\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect2019","indices":[114,123]},{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"art_brownlow","name":"Art + Brownlow","id":887813304311087104,"id_str":"887813304311087104","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[63,68]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 17:15:47 +0000 2019","id":1186330250994565124,"id_str":"1186330250994565124","full_text":"Learning + a lot about instructional use of AR @AECT. Meanwhile, we had a visitor at + our session. #aect2019 #aect19inspired https:\/\/t.co\/HjfO4IZVEm","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"aect2019","indices":[96,105]},{"text":"aect19inspired","indices":[106,121]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[45,50]}],"urls":[],"media":[{"id":1186330138339753986,"id_str":"1186330138339753986","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","url":"https:\/\/t.co\/HjfO4IZVEm","display_url":"pic.twitter.com\/HjfO4IZVEm","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186330138339753986,"id_str":"1186330138339753986","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","url":"https:\/\/t.co\/HjfO4IZVEm","display_url":"pic.twitter.com\/HjfO4IZVEm","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}},"video_info":{"aspect_ratio":[37,80],"duration_millis":11690,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/320x690\/qzYSXhtp8GVHwAkS.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/pl\/HOQqLq2LCOe8QZdY.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/360x778\/mxoPjfmwzOZWrqSf.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/592x1280\/pBUtbxYAYdW5YWLx.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":887813304311087104,"id_str":"887813304311087104","name":"Art + Brownlow","screen_name":"art_brownlow","location":"Brownsville, TX","description":"UTRGV + Music Prof & Academic Innovation Fellow, UT System Academy of Distinguished + Teachers, ROTA 2016, \uf8ffADE 2015, Braves fan, Husband & Dad","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":291,"friends_count":338,"listed_count":5,"created_at":"Wed + Jul 19 23:16:01 +0000 2017","favourites_count":237,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":132,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887813304311087104\/1500521777","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":42,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:22:35 +0000 2019","id":1186377260103659520,"id_str":"1186377260103659520","full_text":"I + blew my diet at the Leadership & Awards Luncheon !\n#aect19inspired https:\/\/t.co\/n1b0oizTMo","truncated":false,"display_text_range":[0,72],"entities":{"hashtags":[{"text":"aect19inspired","indices":[57,72]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186377253816418304,"id_str":"1186377253816418304","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbb059UwAAj1lQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbb059UwAAj1lQ.jpg","url":"https:\/\/t.co\/n1b0oizTMo","display_url":"pic.twitter.com\/n1b0oizTMo","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186377260103659520\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186377253816418304,"id_str":"1186377253816418304","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbb059UwAAj1lQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbb059UwAAj1lQ.jpg","url":"https:\/\/t.co\/n1b0oizTMo","display_url":"pic.twitter.com\/n1b0oizTMo","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186377260103659520\/photo\/1","type":"photo","sizes":{"medium":{"w":900,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":15,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 17:32:41 +0000 2019","id":1186334505948323840,"id_str":"1186334505948323840","full_text":"Supporting + unlearning through misdevelopment of non instructional objectives, by Notta + Person. #aect19 https:\/\/t.co\/HEQqPvTk78","truncated":false,"display_text_range":[0,102],"entities":{"hashtags":[{"text":"aect19","indices":[95,102]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HEQqPvTk78","expanded_url":"https:\/\/twitter.com\/johnbrindletel\/status\/1186236310375321600","display_url":"twitter.com\/johnbrindletel\u2026","indices":[103,126]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186236310375321600,"quoted_status_id_str":"1186236310375321600","quoted_status_permalink":{"url":"https:\/\/t.co\/HEQqPvTk78","expanded":"https:\/\/twitter.com\/johnbrindletel\/status\/1186236310375321600","display":"twitter.com\/johnbrindletel\u2026"},"quoted_status":{"created_at":"Mon + Oct 21 11:02:30 +0000 2019","id":1186236310375321600,"id_str":"1186236310375321600","full_text":"If + you could recommend one book about Instructional Design, what would it be? + #Education #InstructionalDesign #Learning","truncated":false,"display_text_range":[0,119],"entities":{"hashtags":[{"text":"Education","indices":[78,88]},{"text":"InstructionalDesign","indices":[89,109]},{"text":"Learning","indices":[110,119]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":953218315425603584,"id_str":"953218315425603584","name":"John + Brindle","screen_name":"johnbrindletel","location":"Liverpool, England","description":"Educational + Developer @livuniCIE . He\/Him. Enjoy plugging things in and chatting rubbish + about learning design. PhD Student #MScBoE #CMALT #FHEA. Views my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1089,"friends_count":1537,"listed_count":14,"created_at":"Tue + Jan 16 10:52:11 +0000 2018","favourites_count":4343,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2184,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1554366191690457089\/adTLwGPy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1554366191690457089\/adTLwGPy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/953218315425603584\/1557899094","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:25:32 +0000 2019","id":1186378001673404416,"id_str":"1186378001673404416","full_text":"RT + @AECT: Changing of the AECT guard! Immediate past President Trey Martindale + passes the gavel to incoming President Michael Grant. #AECT1\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 18:49:09 +0000 2019","id":1186353749159223296,"id_str":"1186353749159223296","full_text":"Changing + of the AECT guard! Immediate past President Trey Martindale passes the gavel + to incoming President Michael Grant. #AECT19 https:\/\/t.co\/LUZueMl4VE","truncated":false,"display_text_range":[0,130],"entities":{"hashtags":[{"text":"AECT19","indices":[123,130]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186353742582411271,"id_str":"1186353742582411271","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbGcXyUcAcBkvV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbGcXyUcAcBkvV.jpg","url":"https:\/\/t.co\/LUZueMl4VE","display_url":"pic.twitter.com\/LUZueMl4VE","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186353749159223296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":798,"resize":"fit"},"small":{"w":680,"h":452,"resize":"fit"},"large":{"w":2048,"h":1362,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186353742582411271,"id_str":"1186353742582411271","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbGcXyUcAcBkvV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbGcXyUcAcBkvV.jpg","url":"https:\/\/t.co\/LUZueMl4VE","display_url":"pic.twitter.com\/LUZueMl4VE","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186353749159223296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":798,"resize":"fit"},"small":{"w":680,"h":452,"resize":"fit"},"large":{"w":2048,"h":1362,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":32,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 18:09:00 +0000 2019","id":1186343642488721408,"id_str":"1186343642488721408","full_text":"I''m + presenting (Tues, Oct 22, 9am, Pavilion 10) on some of my MOOC research! This + study looked at student''s motivational factors and course performance in + a MOOC. You dont want to miss it! #aect19 #aect19inspired https:\/\/t.co\/5MryVUbBed + https:\/\/t.co\/t8K5zdusgC","truncated":false,"display_text_range":[0,236],"entities":{"hashtags":[{"text":"aect19","indices":[189,196]},{"text":"aect19inspired","indices":[197,212]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/5MryVUbBed","expanded_url":"http:\/\/bit.ly\/33D4SAp","display_url":"bit.ly\/33D4SAp","indices":[213,236]}],"media":[{"id":1184451271169851393,"id_str":"1184451271169851393","indices":[237,260],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAEJ9fWwAEu113.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAEJ9fWwAEu113.png","url":"https:\/\/t.co\/t8K5zdusgC","display_url":"pic.twitter.com\/t8K5zdusgC","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186343642488721408\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":461,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":723,"h":490,"resize":"fit"},"medium":{"w":723,"h":490,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184451271169851393,"id_str":"1184451271169851393","indices":[237,260],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAEJ9fWwAEu113.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAEJ9fWwAEu113.png","url":"https:\/\/t.co\/t8K5zdusgC","display_url":"pic.twitter.com\/t8K5zdusgC","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1186343642488721408\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":461,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":723,"h":490,"resize":"fit"},"medium":{"w":723,"h":490,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 14:06:27 +0000 2019","id":1186282604221358080,"id_str":"1186282604221358080","full_text":"Robots + and badges and moocs oh my! #aect19","truncated":false,"display_text_range":[0,42],"entities":{"hashtags":[{"text":"aect19","indices":[35,42]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 14:57:19 +0000 2019","id":1186295406256279552,"id_str":"1186295406256279552","full_text":"I''ll + be learning about #AR today @ZapparApp workshop today @AECT #aect19inspired","truncated":false,"display_text_range":[0,81],"entities":{"hashtags":[{"text":"AR","indices":[23,26]},{"text":"aect19inspired","indices":[66,81]}],"symbols":[],"user_mentions":[{"screen_name":"ZapparApp","name":"Zappar","id":424375943,"id_str":"424375943","indices":[33,43]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[59,64]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 19:44:31 +0000 2019","id":1186367682712502273,"id_str":"1186367682712502273","full_text":"#makerspaces + resources! @AECT #AECT19inspired #aect19 https:\/\/t.co\/mKZ5tR34dg","truncated":false,"display_text_range":[0,53],"entities":{"hashtags":[{"text":"makerspaces","indices":[0,12]},{"text":"AECT19inspired","indices":[30,45]},{"text":"aect19","indices":[46,53]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[24,29]}],"urls":[{"url":"https:\/\/t.co\/mKZ5tR34dg","expanded_url":"https:\/\/twitter.com\/Captain_Fess\/status\/1186366104332931072","display_url":"twitter.com\/Captain_Fess\/s\u2026","indices":[54,77]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1186366104332931072,"quoted_status_id_str":"1186366104332931072","quoted_status_permalink":{"url":"https:\/\/t.co\/mKZ5tR34dg","expanded":"https:\/\/twitter.com\/Captain_Fess\/status\/1186366104332931072","display":"twitter.com\/Captain_Fess\/s\u2026"},"quoted_status":{"created_at":"Mon + Oct 21 19:38:15 +0000 2019","id":1186366104332931072,"id_str":"1186366104332931072","full_text":"@DrVirtuality + @TheMakerBit @AECT @rogerwagner Here\u2019s some links I took pictures of. + He taught us so much! https:\/\/t.co\/TCxhs06Jje","truncated":false,"display_text_range":[46,105],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[0,13]},{"screen_name":"TheMakerBit","name":"TheMakerBit","id":826327660078911488,"id_str":"826327660078911488","indices":[14,26]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]},{"screen_name":"rogerwagner","name":"rogerwagner","id":9920032,"id_str":"9920032","indices":[33,45]}],"urls":[],"media":[{"id":1186366099501113344,"id_str":"1186366099501113344","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbRro5UYAA6Cwj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbRro5UYAA6Cwj.jpg","url":"https:\/\/t.co\/TCxhs06Jje","display_url":"pic.twitter.com\/TCxhs06Jje","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1186366104332931072\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186366099501113344,"id_str":"1186366099501113344","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbRro5UYAA6Cwj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbRro5UYAA6Cwj.jpg","url":"https:\/\/t.co\/TCxhs06Jje","display_url":"pic.twitter.com\/TCxhs06Jje","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1186366104332931072\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186318966517424132,"in_reply_to_status_id_str":"1186318966517424132","in_reply_to_user_id":15667548,"in_reply_to_user_id_str":"15667548","in_reply_to_screen_name":"DrVirtuality","user":{"id":763378325712674818,"id_str":"763378325712674818","name":"Tay + Fess, M.Ed.","screen_name":"Captain_Fess","location":"Naples, FL","description":"Music + Educator l \ud83c\udff3\ufe0f\u200d\ud83c\udf08 l Presenter l UDL l FGCU l + Doctoral Student Ed.D. l EdTech l Disney Geek","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":576,"listed_count":3,"created_at":"Wed + Aug 10 14:15:50 +0000 2016","favourites_count":1730,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":665,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/763378325712674818\/1595378873","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 17:24:57 +0000 2019","id":1186332558172143618,"id_str":"1186332558172143618","full_text":"#inspiredme + #aect19 https:\/\/t.co\/mFujZEQvpH","truncated":false,"display_text_range":[0,19],"entities":{"hashtags":[{"text":"inspiredme","indices":[0,11]},{"text":"aect19","indices":[12,19]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186332553281585153,"id_str":"1186332553281585153","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/EHazK_fUwAEACS1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHazK_fUwAEACS1.jpg","url":"https:\/\/t.co\/mFujZEQvpH","display_url":"pic.twitter.com\/mFujZEQvpH","expanded_url":"https:\/\/twitter.com\/jcmadison2007\/status\/1186332558172143618\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186332553281585153,"id_str":"1186332553281585153","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/EHazK_fUwAEACS1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHazK_fUwAEACS1.jpg","url":"https:\/\/t.co\/mFujZEQvpH","display_url":"pic.twitter.com\/mFujZEQvpH","expanded_url":"https:\/\/twitter.com\/jcmadison2007\/status\/1186332558172143618\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":93868762,"id_str":"93868762","name":"Szu-Yueh + Justine Chien","screen_name":"jcmadison2007","location":"Madison, WI","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":61,"listed_count":3,"created_at":"Tue + Dec 01 14:25:12 +0000 2009","favourites_count":15,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":45,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1143281723796574208\/fKIs6ct8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1143281723796574208\/fKIs6ct8_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Mon + Oct 21 19:05:42 +0000 2019","id":1186357911636840450,"id_str":"1186357911636840450","full_text":"Those + people who think they know everything are a great annoyance to me, because + I do. #aect19 #aect19inspired","truncated":false,"display_text_range":[0,110],"entities":{"hashtags":[{"text":"aect19","indices":[87,94]},{"text":"aect19inspired","indices":[95,110]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 18:36:31 +0000 2019","id":1186350568882597888,"id_str":"1186350568882597888","full_text":"Got + a selfie with David Merrill because I''m feeling #aect19inspired @AECT https:\/\/t.co\/EgnfVpFPOL","truncated":false,"display_text_range":[0,73],"entities":{"hashtags":[{"text":"aect19inspired","indices":[52,67]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[68,73]}],"urls":[],"media":[{"id":1186350559164452864,"id_str":"1186350559164452864","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbDjEoVUAAfRvM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbDjEoVUAAfRvM.jpg","url":"https:\/\/t.co\/EgnfVpFPOL","display_url":"pic.twitter.com\/EgnfVpFPOL","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186350568882597888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186350559164452864,"id_str":"1186350559164452864","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbDjEoVUAAfRvM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbDjEoVUAAfRvM.jpg","url":"https:\/\/t.co\/EgnfVpFPOL","display_url":"pic.twitter.com\/EgnfVpFPOL","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186350568882597888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:03:33 +0000 2019","id":1186372470284136448,"id_str":"1186372470284136448","full_text":"RT + @kolorkid: Check out the History & Archive Committee posters in the hallways + here at the Westgate, we are approaching 100yrs. Inspired b\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"kolorkid","name":"Dr. + Heather Leary","id":14669702,"id_str":"14669702","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":860265492,"id_str":"860265492","name":"James + Ellsworth PhD","screen_name":"EINS_Institute","location":"Albuquerque, NM","description":"Educator\/architect + of instructional systems. Soldier. Muslim. Scholar (but not alim). Retired + General Officer level US military intelligence leader. Yep--weird.","url":"https:\/\/t.co\/GwDIuUtRB1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GwDIuUtRB1","expanded_url":"http:\/\/www.linkedin.com\/in\/ellsworthj","display_url":"linkedin.com\/in\/ellsworthj","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4099,"friends_count":1926,"listed_count":36,"created_at":"Wed + Oct 03 20:09:48 +0000 2012","favourites_count":212736,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":107275,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1393326633336156163\/aiT8Pu7i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1393326633336156163\/aiT8Pu7i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/860265492\/1491924222","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 19:39:51 +0000 2019","id":1186366508089233409,"id_str":"1186366508089233409","full_text":"Check + out the History & Archive Committee posters in the hallways here at the + Westgate, we are approaching 100yrs. Inspired by the great people on this + committee. #AECT2019 #inspiredme https:\/\/t.co\/iiIvjSAGFl","truncated":false,"display_text_range":[0,188],"entities":{"hashtags":[{"text":"AECT2019","indices":[167,176]},{"text":"inspiredme","indices":[177,188]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186366498199048192,"id_str":"1186366498199048192","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbSC2KUEAAG_Ep.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbSC2KUEAAG_Ep.jpg","url":"https:\/\/t.co\/iiIvjSAGFl","display_url":"pic.twitter.com\/iiIvjSAGFl","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186366508089233409\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186366498199048192,"id_str":"1186366498199048192","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbSC2KUEAAG_Ep.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbSC2KUEAAG_Ep.jpg","url":"https:\/\/t.co\/iiIvjSAGFl","display_url":"pic.twitter.com\/iiIvjSAGFl","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186366508089233409\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:16:07 +0000 2019","id":1186375632134914049,"id_str":"1186375632134914049","full_text":"It\u2019s + alive! #aect19inspired @TheMakerBit https:\/\/t.co\/t4GSDD4jkr","truncated":false,"display_text_range":[0,40],"entities":{"hashtags":[{"text":"aect19inspired","indices":[12,27]}],"symbols":[],"user_mentions":[{"screen_name":"TheMakerBit","name":"TheMakerBit","id":826327660078911488,"id_str":"826327660078911488","indices":[28,40]}],"urls":[],"media":[{"id":1186375626896207872,"id_str":"1186375626896207872","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbaWNNUcAAmOGz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbaWNNUcAAmOGz.jpg","url":"https:\/\/t.co\/t4GSDD4jkr","display_url":"pic.twitter.com\/t4GSDD4jkr","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186375632134914049\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186375626896207872,"id_str":"1186375626896207872","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbaWNNUcAAmOGz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbaWNNUcAAmOGz.jpg","url":"https:\/\/t.co\/t4GSDD4jkr","display_url":"pic.twitter.com\/t4GSDD4jkr","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186375632134914049\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2786357411,"id_str":"2786357411","name":"Rebecca + Clark","screen_name":"rebeccamclark87","location":"Blacksburg, VA","description":"PhD + Student - Instructional Design and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":124,"listed_count":1,"created_at":"Fri + Sep 26 21:55:13 +0000 2014","favourites_count":370,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":94,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1116743962067460096\/nxZX1CVu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1116743962067460096\/nxZX1CVu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2786357411\/1551977207","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 07:27:14 +0000 2019","id":1186182137080205313,"id_str":"1186182137080205313","full_text":"#FSU + #FSUCOE #ISLT students and faculty in Vegas for #AECT19, you now have access + to a chronological listing of all ISLT presentations this week: https:\/\/t.co\/XQy25xuLbt","truncated":false,"display_text_range":[0,169],"entities":{"hashtags":[{"text":"FSU","indices":[0,4]},{"text":"FSUCOE","indices":[5,12]},{"text":"ISLT","indices":[13,18]},{"text":"AECT19","indices":[53,60]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XQy25xuLbt","expanded_url":"https:\/\/isfsu.blogspot.com\/2019\/10\/2019-aect-islt-presenters-organized-in.html","display_url":"isfsu.blogspot.com\/2019\/10\/2019-a\u2026","indices":[146,169]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 17:55:42 +0000 2019","id":1186340297929682946,"id_str":"1186340297929682946","full_text":"#aect19inspired + #aect #Westgate #LasVegas #education #technology #distancelearning #criticalthinking + https:\/\/t.co\/aq5EWK9fY2","truncated":false,"display_text_range":[0,100],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]},{"text":"aect","indices":[16,21]},{"text":"Westgate","indices":[22,31]},{"text":"LasVegas","indices":[32,41]},{"text":"education","indices":[42,52]},{"text":"technology","indices":[53,64]},{"text":"distancelearning","indices":[65,82]},{"text":"criticalthinking","indices":[83,100]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186340291130736640,"id_str":"1186340291130736640","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa6NZOUwAA0BHu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa6NZOUwAA0BHu.jpg","url":"https:\/\/t.co\/aq5EWK9fY2","display_url":"pic.twitter.com\/aq5EWK9fY2","expanded_url":"https:\/\/twitter.com\/kcsabina_\/status\/1186340297929682946\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":768,"h":1024,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186340291130736640,"id_str":"1186340291130736640","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa6NZOUwAA0BHu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa6NZOUwAA0BHu.jpg","url":"https:\/\/t.co\/aq5EWK9fY2","display_url":"pic.twitter.com\/aq5EWK9fY2","expanded_url":"https:\/\/twitter.com\/kcsabina_\/status\/1186340297929682946\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":768,"h":1024,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":930858708258738178,"id_str":"930858708258738178","name":"Sabina + KC","screen_name":"kcsabina_","location":"Odessa, TX","description":"Ed.D, + Instructional Design and Performance Technology, Instructional Designer, Life + Coach, Dreamer, Do-er, Achiever, Optimist, Learner, Teacher","url":"https:\/\/t.co\/IBPYKJja50","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IBPYKJja50","expanded_url":"https:\/\/www.linkedin.com\/in\/sabina-k-c-044b77133\/","display_url":"linkedin.com\/in\/sabina-k-c-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":496,"listed_count":2,"created_at":"Wed + Nov 15 18:03:05 +0000 2017","favourites_count":3136,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":415,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1390058813223575560\/eKI3EIR__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1390058813223575560\/eKI3EIR__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/930858708258738178\/1613749154","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"07d9ebf375c86001","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ebf375c86001.json","place_type":"poi","name":"Westgate + Las Vegas Resort & Casino","full_name":"Westgate Las Vegas Resort & Casino","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864],[-115.1524579,36.1352864]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Mon + Oct 21 19:41:12 +0000 2019","id":1186366848482213888,"id_str":"1186366848482213888","full_text":"Here''s + the other poster. #AECT2019 #inspiredme https:\/\/t.co\/7sFc5myTa2","truncated":false,"display_text_range":[0,46],"entities":{"hashtags":[{"text":"AECT2019","indices":[25,34]},{"text":"inspiredme","indices":[35,46]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186366838231334912,"id_str":"1186366838231334912","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbSWo4VAAA9Wh9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbSWo4VAAA9Wh9.jpg","url":"https:\/\/t.co\/7sFc5myTa2","display_url":"pic.twitter.com\/7sFc5myTa2","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186366848482213888\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186366838231334912,"id_str":"1186366838231334912","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbSWo4VAAA9Wh9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbSWo4VAAA9Wh9.jpg","url":"https:\/\/t.co\/7sFc5myTa2","display_url":"pic.twitter.com\/7sFc5myTa2","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186366848482213888\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 15:26:31 +0000 2019","id":1186302751359172609,"id_str":"1186302751359172609","full_text":"#inspiredme + #aect19 https:\/\/t.co\/pegyCVq1zQ","truncated":false,"display_text_range":[0,19],"entities":{"hashtags":[{"text":"inspiredme","indices":[0,11]},{"text":"aect19","indices":[12,19]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186302744199516161,"id_str":"1186302744199516161","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/EHaYD4AVUAE0KcV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHaYD4AVUAE0KcV.jpg","url":"https:\/\/t.co\/pegyCVq1zQ","display_url":"pic.twitter.com\/pegyCVq1zQ","expanded_url":"https:\/\/twitter.com\/suhatamim\/status\/1186302751359172609\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":996,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186302744199516161,"id_str":"1186302744199516161","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/EHaYD4AVUAE0KcV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHaYD4AVUAE0KcV.jpg","url":"https:\/\/t.co\/pegyCVq1zQ","display_url":"pic.twitter.com\/pegyCVq1zQ","expanded_url":"https:\/\/twitter.com\/suhatamim\/status\/1186302751359172609\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":996,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":584,"resize":"fit"},"small":{"w":680,"h":331,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15448744,"id_str":"15448744","name":"suhatamim","screen_name":"suhatamim","location":"Memphis, + TN, USA","description":"EdD, MPH, CHES. Clinical Assistant Professor at the + University of South Carolina.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":171,"friends_count":281,"listed_count":5,"created_at":"Wed + Jul 16 01:15:51 +0000 2008","favourites_count":31,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":260,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1228951710\/Suha_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1228951710\/Suha_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"0000FF","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Mon + Oct 21 17:01:10 +0000 2019","id":1186326572283744256,"id_str":"1186326572283744256","full_text":"Learning + how to make! #aect19inspired @themakerbit #thisisawesome https:\/\/t.co\/WrdjAvZFPc","truncated":false,"display_text_range":[0,65],"entities":{"hashtags":[{"text":"aect19inspired","indices":[22,37]},{"text":"thisisawesome","indices":[51,65]}],"symbols":[],"user_mentions":[{"screen_name":"TheMakerBit","name":"TheMakerBit","id":826327660078911488,"id_str":"826327660078911488","indices":[38,50]}],"urls":[],"media":[{"id":1186326567103807488,"id_str":"1186326567103807488","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EHatujPUwAAy0FT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHatujPUwAAy0FT.jpg","url":"https:\/\/t.co\/WrdjAvZFPc","display_url":"pic.twitter.com\/WrdjAvZFPc","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186326572283744256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186326567103807488,"id_str":"1186326567103807488","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EHatujPUwAAy0FT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHatujPUwAAy0FT.jpg","url":"https:\/\/t.co\/WrdjAvZFPc","display_url":"pic.twitter.com\/WrdjAvZFPc","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186326572283744256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2786357411,"id_str":"2786357411","name":"Rebecca + Clark","screen_name":"rebeccamclark87","location":"Blacksburg, VA","description":"PhD + Student - Instructional Design and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":124,"listed_count":1,"created_at":"Fri + Sep 26 21:55:13 +0000 2014","favourites_count":370,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":94,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1116743962067460096\/nxZX1CVu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1116743962067460096\/nxZX1CVu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2786357411\/1551977207","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 17:22:47 +0000 2019","id":1186332014464638977,"id_str":"1186332014464638977","full_text":"#aect19 + = inspirational. Flight to #aect19 = not inspirational, but there were pretzels","truncated":false,"display_text_range":[0,87],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]},{"text":"aect19","indices":[35,42]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 16:23:52 +0000 2019","id":1186317184579981312,"id_str":"1186317184579981312","full_text":"Just + picked up my #devlearn badge! It makes it so much sweeter to be doing this + with my girls @lxdify & @AnnaRoseLeach \u2764\ufe0f\u2764\ufe0f Now off + to #aect19 to pick up our badges there too! https:\/\/t.co\/urKThG6uMJ","truncated":false,"display_text_range":[0,179],"entities":{"hashtags":[{"text":"devlearn","indices":[18,27]},{"text":"aect19","indices":[139,146]}],"symbols":[],"user_mentions":[{"screen_name":"lxdify","name":"Ceren + K\ud83d\udc9crkmaz \u2615","id":724195673143386112,"id_str":"724195673143386112","indices":[94,101]},{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[108,122]}],"urls":[],"media":[{"id":1186317165932138496,"id_str":"1186317165932138496","indices":[180,203],"media_url":"http:\/\/pbs.twimg.com\/media\/EHalLVJVUAA21Ix.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHalLVJVUAA21Ix.jpg","url":"https:\/\/t.co\/urKThG6uMJ","display_url":"pic.twitter.com\/urKThG6uMJ","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186317184579981312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186317165932138496,"id_str":"1186317165932138496","indices":[180,203],"media_url":"http:\/\/pbs.twimg.com\/media\/EHalLVJVUAA21Ix.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHalLVJVUAA21Ix.jpg","url":"https:\/\/t.co\/urKThG6uMJ","display_url":"pic.twitter.com\/urKThG6uMJ","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186317184579981312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1186317165906911232,"id_str":"1186317165906911232","indices":[180,203],"media_url":"http:\/\/pbs.twimg.com\/media\/EHalLVDUYAA8Rp9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHalLVDUYAA8Rp9.jpg","url":"https:\/\/t.co\/urKThG6uMJ","display_url":"pic.twitter.com\/urKThG6uMJ","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186317184579981312\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 18:49:09 +0000 2019","id":1186353749159223296,"id_str":"1186353749159223296","full_text":"Changing + of the AECT guard! Immediate past President Trey Martindale passes the gavel + to incoming President Michael Grant. #AECT19 https:\/\/t.co\/LUZueMl4VE","truncated":false,"display_text_range":[0,130],"entities":{"hashtags":[{"text":"AECT19","indices":[123,130]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186353742582411271,"id_str":"1186353742582411271","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbGcXyUcAcBkvV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbGcXyUcAcBkvV.jpg","url":"https:\/\/t.co\/LUZueMl4VE","display_url":"pic.twitter.com\/LUZueMl4VE","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186353749159223296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":798,"resize":"fit"},"small":{"w":680,"h":452,"resize":"fit"},"large":{"w":2048,"h":1362,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186353742582411271,"id_str":"1186353742582411271","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbGcXyUcAcBkvV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbGcXyUcAcBkvV.jpg","url":"https:\/\/t.co\/LUZueMl4VE","display_url":"pic.twitter.com\/LUZueMl4VE","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186353749159223296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":798,"resize":"fit"},"small":{"w":680,"h":452,"resize":"fit"},"large":{"w":2048,"h":1362,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":32,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 12:27:31 +0000 2019","id":1186257704668540928,"id_str":"1186257704668540928","full_text":"#aect19inspired + starts today. Advice from an old timer to this year''s presenters: say smart + things, so people dont think you''re dumb.","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:09:00 +0000 2019","id":1186373842467471360,"id_str":"1186373842467471360","full_text":"For + the uninitiated, @AECT had its origins as the Department of Visual Instruction + (later, the Division for Audio-Visual Instruction, or DAVI) of the @NEA. Approaching + our Centennial! #AECT19 #inspiredme https:\/\/t.co\/DkgI0GqtHv","truncated":false,"display_text_range":[0,203],"entities":{"hashtags":[{"text":"AECT19","indices":[184,191]},{"text":"inspiredme","indices":[192,203]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[21,26]},{"screen_name":"NEA","name":"NEA","id":165503959,"id_str":"165503959","indices":[150,154]}],"urls":[{"url":"https:\/\/t.co\/DkgI0GqtHv","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186366848482213888","display_url":"twitter.com\/kolorkid\/statu\u2026","indices":[204,227]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":860265492,"id_str":"860265492","name":"James + Ellsworth PhD","screen_name":"EINS_Institute","location":"Albuquerque, NM","description":"Educator\/architect + of instructional systems. Soldier. Muslim. Scholar (but not alim). Retired + General Officer level US military intelligence leader. Yep--weird.","url":"https:\/\/t.co\/GwDIuUtRB1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GwDIuUtRB1","expanded_url":"http:\/\/www.linkedin.com\/in\/ellsworthj","display_url":"linkedin.com\/in\/ellsworthj","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4099,"friends_count":1926,"listed_count":36,"created_at":"Wed + Oct 03 20:09:48 +0000 2012","favourites_count":212736,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":107275,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1393326633336156163\/aiT8Pu7i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1393326633336156163\/aiT8Pu7i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/860265492\/1491924222","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186366848482213888,"quoted_status_id_str":"1186366848482213888","quoted_status_permalink":{"url":"https:\/\/t.co\/DkgI0GqtHv","expanded":"https:\/\/twitter.com\/kolorkid\/status\/1186366848482213888","display":"twitter.com\/kolorkid\/statu\u2026"},"quoted_status":{"created_at":"Mon + Oct 21 19:41:12 +0000 2019","id":1186366848482213888,"id_str":"1186366848482213888","full_text":"Here''s + the other poster. #AECT2019 #inspiredme https:\/\/t.co\/7sFc5myTa2","truncated":false,"display_text_range":[0,46],"entities":{"hashtags":[{"text":"AECT2019","indices":[25,34]},{"text":"inspiredme","indices":[35,46]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186366838231334912,"id_str":"1186366838231334912","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbSWo4VAAA9Wh9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbSWo4VAAA9Wh9.jpg","url":"https:\/\/t.co\/7sFc5myTa2","display_url":"pic.twitter.com\/7sFc5myTa2","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186366848482213888\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186366838231334912,"id_str":"1186366838231334912","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbSWo4VAAA9Wh9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbSWo4VAAA9Wh9.jpg","url":"https:\/\/t.co\/7sFc5myTa2","display_url":"pic.twitter.com\/7sFc5myTa2","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186366848482213888\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:23:11 +0000 2019","id":1186377410180042752,"id_str":"1186377410180042752","full_text":"RT + @dctrcurry: #aect19inspired \n\nWelcome, y''all. Let''s do this.\n\n@michaelmgrant + @AECT https:\/\/t.co\/hEqWB9LukW","truncated":false,"display_text_range":[0,109],"entities":{"hashtags":[{"text":"aect19inspired","indices":[15,30]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[3,13]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[65,79]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[80,85]}],"urls":[],"media":[{"id":1186275405239443456,"id_str":"1186275405239443456","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EHZ_MicUYAA3AK1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHZ_MicUYAA3AK1.jpg","url":"https:\/\/t.co\/hEqWB9LukW","display_url":"pic.twitter.com\/hEqWB9LukW","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1186275409844813826\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":920,"h":476,"resize":"fit"},"medium":{"w":920,"h":476,"resize":"fit"},"small":{"w":680,"h":352,"resize":"fit"}},"source_status_id":1186275409844813826,"source_status_id_str":"1186275409844813826","source_user_id":14116271,"source_user_id_str":"14116271"}]},"extended_entities":{"media":[{"id":1186275405239443456,"id_str":"1186275405239443456","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/EHZ_MicUYAA3AK1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHZ_MicUYAA3AK1.jpg","url":"https:\/\/t.co\/hEqWB9LukW","display_url":"pic.twitter.com\/hEqWB9LukW","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1186275409844813826\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":920,"h":476,"resize":"fit"},"medium":{"w":920,"h":476,"resize":"fit"},"small":{"w":680,"h":352,"resize":"fit"}},"source_status_id":1186275409844813826,"source_status_id_str":"1186275409844813826","source_user_id":14116271,"source_user_id_str":"14116271","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 13:37:52 +0000 2019","id":1186275409844813826,"id_str":"1186275409844813826","full_text":"#aect19inspired + \n\nWelcome, y''all. Let''s do this.\n\n@michaelmgrant @AECT https:\/\/t.co\/hEqWB9LukW","truncated":false,"display_text_range":[0,70],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[50,64]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[65,70]}],"urls":[],"media":[{"id":1186275405239443456,"id_str":"1186275405239443456","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/EHZ_MicUYAA3AK1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHZ_MicUYAA3AK1.jpg","url":"https:\/\/t.co\/hEqWB9LukW","display_url":"pic.twitter.com\/hEqWB9LukW","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1186275409844813826\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":920,"h":476,"resize":"fit"},"medium":{"w":920,"h":476,"resize":"fit"},"small":{"w":680,"h":352,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186275405239443456,"id_str":"1186275405239443456","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/EHZ_MicUYAA3AK1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHZ_MicUYAA3AK1.jpg","url":"https:\/\/t.co\/hEqWB9LukW","display_url":"pic.twitter.com\/hEqWB9LukW","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1186275409844813826\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":920,"h":476,"resize":"fit"},"medium":{"w":920,"h":476,"resize":"fit"},"small":{"w":680,"h":352,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:19:35 +0000 2019","id":1186376506584391680,"id_str":"1186376506584391680","full_text":"#aect19 + #making @TheMakerBit Round 2!!! https:\/\/t.co\/QrXU4m0npG","truncated":false,"display_text_range":[0,39],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]},{"text":"making","indices":[8,15]}],"symbols":[],"user_mentions":[{"screen_name":"TheMakerBit","name":"TheMakerBit","id":826327660078911488,"id_str":"826327660078911488","indices":[16,28]}],"urls":[],"media":[{"id":1186376501312114688,"id_str":"1186376501312114688","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbbJGqUUAAXmUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbbJGqUUAAXmUU.jpg","url":"https:\/\/t.co\/QrXU4m0npG","display_url":"pic.twitter.com\/QrXU4m0npG","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186376506584391680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186376501312114688,"id_str":"1186376501312114688","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbbJGqUUAAXmUU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbbJGqUUAAXmUU.jpg","url":"https:\/\/t.co\/QrXU4m0npG","display_url":"pic.twitter.com\/QrXU4m0npG","expanded_url":"https:\/\/twitter.com\/rebeccamclark87\/status\/1186376506584391680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2786357411,"id_str":"2786357411","name":"Rebecca + Clark","screen_name":"rebeccamclark87","location":"Blacksburg, VA","description":"PhD + Student - Instructional Design and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":76,"friends_count":124,"listed_count":1,"created_at":"Fri + Sep 26 21:55:13 +0000 2014","favourites_count":370,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":94,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1116743962067460096\/nxZX1CVu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1116743962067460096\/nxZX1CVu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2786357411\/1551977207","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 14:41:40 +0000 2019","id":1186291465657319424,"id_str":"1186291465657319424","full_text":"RT + @JenM: Here''s the @design4learn roster of sessions at #aect19. We''ll be + updating the list with the slides at the conclusion of the confe\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[57,64]}],"symbols":[],"user_mentions":[{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[3,8]},{"screen_name":"design4learn","name":"Designers + for Learning","id":1610558420,"id_str":"1610558420","indices":[21,34]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2647362354,"id_str":"2647362354","name":"Design + & Development","screen_name":"aectdddivision","location":"","description":"The + Division of Design and Development represents the interests of AECT members + concerned with systematic development of instruction.","url":"https:\/\/t.co\/TA4X41BlOt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TA4X41BlOt","expanded_url":"http:\/\/aectdesign.org","display_url":"aectdesign.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":793,"friends_count":112,"listed_count":15,"created_at":"Tue + Jul 15 10:52:23 +0000 2014","favourites_count":166,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":404,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/489341341474643968\/oAA63Du4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/489341341474643968\/oAA63Du4_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2647362354\/1405503058","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 14:39:26 +0000 2019","id":1186290903385690113,"id_str":"1186290903385690113","full_text":"Here''s + the @design4learn roster of sessions at #aect19. We''ll be updating the list + with the slides at the conclusion of the conference. Thanks! https:\/\/t.co\/bs61Ehh0rt","truncated":false,"display_text_range":[0,167],"entities":{"hashtags":[{"text":"aect19","indices":[47,54]}],"symbols":[],"user_mentions":[{"screen_name":"design4learn","name":"Designers + for Learning","id":1610558420,"id_str":"1610558420","indices":[11,24]}],"urls":[{"url":"https:\/\/t.co\/bs61Ehh0rt","expanded_url":"https:\/\/designersforlearning.org\/aect19","display_url":"designersforlearning.org\/aect19","indices":[144,167]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":13515,"id_str":"13515","name":"Jennifer + Maddrell","screen_name":"JenM","location":"Chicago, IL","description":"Teach, + study & design learning experiences","url":"https:\/\/t.co\/725I4m2QWv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/725I4m2QWv","expanded_url":"https:\/\/jennifermaddrell.com","display_url":"jennifermaddrell.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2420,"friends_count":4448,"listed_count":80,"created_at":"Tue + Nov 21 13:57:14 +0000 2006","favourites_count":7779,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3455,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13515\/1604669803","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 19:53:26 +0000 2019","id":1186369925511692288,"id_str":"1186369925511692288","full_text":"Thank + you @lynnhummel and Shirley Campbell for including me in the @aect conference + booklet for the @PAECT higher ed state journal article award. Such an honor + and I appreciate everything! Thanks to anyone else who was involved too! @nwpaect + #aect19 @aect19inspired https:\/\/t.co\/rXrZ62vWBk","truncated":false,"display_text_range":[0,265],"entities":{"hashtags":[{"text":"aect19","indices":[242,249]}],"symbols":[],"user_mentions":[{"screen_name":"lynnhummel","name":"Lynn + Hummel","id":21052453,"id_str":"21052453","indices":[10,21]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[67,72]},{"screen_name":"PAECT","name":"PAECT","id":29761198,"id_str":"29761198","indices":[100,106]},{"screen_name":"nwpaect","name":"nwpaect","id":4758463697,"id_str":"4758463697","indices":[233,241]}],"urls":[],"media":[{"id":1186369919929090048,"id_str":"1186369919929090048","indices":[266,289],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbVKBGVAAA_eCZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbVKBGVAAA_eCZ.jpg","url":"https:\/\/t.co\/rXrZ62vWBk","display_url":"pic.twitter.com\/rXrZ62vWBk","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186369925511692288\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186369919929090048,"id_str":"1186369919929090048","indices":[266,289],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbVKBGVAAA_eCZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbVKBGVAAA_eCZ.jpg","url":"https:\/\/t.co\/rXrZ62vWBk","display_url":"pic.twitter.com\/rXrZ62vWBk","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186369925511692288\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 10:06:57 +0000 2019","id":1186222333415043073,"id_str":"1186222333415043073","full_text":"RT + @tutaleni: Ok...flight #1 #AECT19 cancelled. Time to channel some creative + problem solving to make it to #aect19inspired https:\/\/t.co\/tI\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[29,36]},{"text":"aect19inspired","indices":[108,123]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/claimcompanies.com\" rel=\"nofollow\"\u003eFlight Claim Companies\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1024338385404682246,"id_str":"1024338385404682246","name":"ClaimCompanies.com","screen_name":"claimcompanies","location":"","description":"\u2708\ufe0f + Delayed, cancelled or overbooked flight?\n\ud83d\udd0e Choose claim company + from our more than 40 global companies list and get 600\u20ac\/700$\/540\u00a3 + refund.","url":"https:\/\/t.co\/Piw3vknn6g","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Piw3vknn6g","expanded_url":"https:\/\/flight.claimcompanies.com","display_url":"flight.claimcompanies.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4446,"friends_count":37,"listed_count":6,"created_at":"Tue + Jul 31 16:57:57 +0000 2018","favourites_count":36,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":498411,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1024338533312614403\/-1O9UFTw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1024338533312614403\/-1O9UFTw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1024338385404682246\/1533056776","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 09:52:39 +0000 2019","id":1186218733699776512,"id_str":"1186218733699776512","full_text":"Ok...flight + #1 #AECT19 cancelled. Time to channel some creative problem solving to make + it to #aect19inspired https:\/\/t.co\/tIzvxZPGlr","truncated":false,"display_text_range":[0,109],"entities":{"hashtags":[{"text":"AECT19","indices":[15,22]},{"text":"aect19inspired","indices":[94,109]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186218722123571200,"id_str":"1186218722123571200","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHZLpJYX4AAX2cd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHZLpJYX4AAX2cd.jpg","url":"https:\/\/t.co\/tIzvxZPGlr","display_url":"pic.twitter.com\/tIzvxZPGlr","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1186218733699776512\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":270,"resize":"fit"},"large":{"w":480,"h":270,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186218722123571200,"id_str":"1186218722123571200","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHZLpJYX4AAX2cd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHZLpJYX4AAX2cd.jpg","url":"https:\/\/t.co\/tIzvxZPGlr","display_url":"pic.twitter.com\/tIzvxZPGlr","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1186218733699776512\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":480,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":270,"resize":"fit"},"large":{"w":480,"h":270,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHZLpJYX4AAX2cd.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 19:31:23 +0000 2019","id":1186364374513934336,"id_str":"1186364374513934336","full_text":"#AECT19 + If you or anyone you know is looking for a teaching #ISLT #faculty position, + you may want to take a look at this open position. We have over 15 students + and some faculty in #Vegas this week. https:\/\/t.co\/sYRQL5jaUm https:\/\/t.co\/pyJXR294uO","truncated":false,"display_text_range":[0,223],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"ISLT","indices":[60,65]},{"text":"faculty","indices":[66,74]},{"text":"Vegas","indices":[181,187]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/sYRQL5jaUm","expanded_url":"http:\/\/isfsu.blogspot.com\/2019\/10\/2019-aect-islt-presenters-organized-in.html","display_url":"isfsu.blogspot.com\/2019\/10\/2019-a\u2026","indices":[200,223]},{"url":"https:\/\/t.co\/pyJXR294uO","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1182627147057422336","display_url":"twitter.com\/ISLT_FSU\/statu\u2026","indices":[224,247]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1182627147057422336,"quoted_status_id_str":"1182627147057422336","quoted_status_permalink":{"url":"https:\/\/t.co\/pyJXR294uO","expanded":"https:\/\/twitter.com\/ISLT_FSU\/status\/1182627147057422336","display":"twitter.com\/ISLT_FSU\/statu\u2026"},"quoted_status":{"created_at":"Fri + Oct 11 12:00:58 +0000 2019","id":1182627147057422336,"id_str":"1182627147057422336","full_text":"#FSU + #FSUCOE #ISLT has a faculty position open. Feel free to share and pass along + to anyone you think would be interested. You can view more at the ISLT blog. + #HigherEd #Faculty #JobOpening #Professor #ID #InstructionalDesign #HumanPerformance\nhttps:\/\/t.co\/HrvvWwB2FR + https:\/\/t.co\/1bY2CodBQG","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"FSU","indices":[0,4]},{"text":"FSUCOE","indices":[5,12]},{"text":"ISLT","indices":[13,18]},{"text":"HigherEd","indices":[160,169]},{"text":"Faculty","indices":[170,178]},{"text":"JobOpening","indices":[179,190]},{"text":"Professor","indices":[191,201]},{"text":"ID","indices":[202,205]},{"text":"InstructionalDesign","indices":[206,226]},{"text":"HumanPerformance","indices":[227,244]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HrvvWwB2FR","expanded_url":"https:\/\/isfsu.blogspot.com\/2019\/10\/image-of-job-posting-flyer.html","display_url":"isfsu.blogspot.com\/2019\/10\/image-\u2026","indices":[245,268]}],"media":[{"id":1182627144607899648,"id_str":"1182627144607899648","indices":[269,292],"media_url":"http:\/\/pbs.twimg.com\/media\/EGmJH0gWoAAZ1oe.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGmJH0gWoAAZ1oe.png","url":"https:\/\/t.co\/1bY2CodBQG","display_url":"pic.twitter.com\/1bY2CodBQG","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1182627147057422336\/photo\/1","type":"photo","sizes":{"medium":{"w":636,"h":814,"resize":"fit"},"large":{"w":636,"h":814,"resize":"fit"},"small":{"w":531,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1182627144607899648,"id_str":"1182627144607899648","indices":[269,292],"media_url":"http:\/\/pbs.twimg.com\/media\/EGmJH0gWoAAZ1oe.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGmJH0gWoAAZ1oe.png","url":"https:\/\/t.co\/1bY2CodBQG","display_url":"pic.twitter.com\/1bY2CodBQG","expanded_url":"https:\/\/twitter.com\/ISLT_FSU\/status\/1182627147057422336\/photo\/1","type":"photo","sizes":{"medium":{"w":636,"h":814,"resize":"fit"},"large":{"w":636,"h":814,"resize":"fit"},"small":{"w":531,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 17:09:43 +0000 2019","id":1186328723848478727,"id_str":"1186328723848478727","full_text":"Here\u2019s + a reminder of our #aect19 sessions. We look forward to connecting this week! + https:\/\/t.co\/cGBZZrUESs","truncated":false,"display_text_range":[0,83],"entities":{"hashtags":[{"text":"aect19","indices":[25,32]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/cGBZZrUESs","expanded_url":"https:\/\/twitter.com\/JenM\/status\/1186290903385690113","display_url":"twitter.com\/JenM\/status\/11\u2026","indices":[84,107]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1610558420,"id_str":"1610558420","name":"Designers + for Learning","screen_name":"design4learn","location":"","description":"We\u2019re + a 501c3 nonprofit & facilitate service-learning experiences to support the + social impact sector\u2018s instructional design needs. Gain experience for + good!","url":"https:\/\/t.co\/0EpugCwjuq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/0EpugCwjuq","expanded_url":"http:\/\/designersforlearning.org\/","display_url":"designersforlearning.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1616,"friends_count":3214,"listed_count":44,"created_at":"Sun + Jul 21 13:40:27 +0000 2013","favourites_count":606,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":649,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/906635912687374343\/HORpC_lq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/906635912687374343\/HORpC_lq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1610558420\/1520105240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186290903385690113,"quoted_status_id_str":"1186290903385690113","quoted_status_permalink":{"url":"https:\/\/t.co\/cGBZZrUESs","expanded":"https:\/\/twitter.com\/JenM\/status\/1186290903385690113","display":"twitter.com\/JenM\/status\/11\u2026"},"quoted_status":{"created_at":"Mon + Oct 21 14:39:26 +0000 2019","id":1186290903385690113,"id_str":"1186290903385690113","full_text":"Here''s + the @design4learn roster of sessions at #aect19. We''ll be updating the list + with the slides at the conclusion of the conference. Thanks! https:\/\/t.co\/bs61Ehh0rt","truncated":false,"display_text_range":[0,167],"entities":{"hashtags":[{"text":"aect19","indices":[47,54]}],"symbols":[],"user_mentions":[{"screen_name":"design4learn","name":"Designers + for Learning","id":1610558420,"id_str":"1610558420","indices":[11,24]}],"urls":[{"url":"https:\/\/t.co\/bs61Ehh0rt","expanded_url":"https:\/\/designersforlearning.org\/aect19","display_url":"designersforlearning.org\/aect19","indices":[144,167]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":13515,"id_str":"13515","name":"Jennifer + Maddrell","screen_name":"JenM","location":"Chicago, IL","description":"Teach, + study & design learning experiences","url":"https:\/\/t.co\/725I4m2QWv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/725I4m2QWv","expanded_url":"https:\/\/jennifermaddrell.com","display_url":"jennifermaddrell.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2420,"friends_count":4448,"listed_count":80,"created_at":"Tue + Nov 21 13:57:14 +0000 2006","favourites_count":7779,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3455,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13515\/1604669803","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 17:17:13 +0000 2019","id":1186330612375797762,"id_str":"1186330612375797762","full_text":"RT + @art_brownlow: Learning a lot about instructional use of AR @AECT. Meanwhile, + we had a visitor at our session. #aect2019 #aect19inspired\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect2019","indices":[114,123]},{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"art_brownlow","name":"Art + Brownlow","id":887813304311087104,"id_str":"887813304311087104","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[63,68]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 17:15:47 +0000 2019","id":1186330250994565124,"id_str":"1186330250994565124","full_text":"Learning + a lot about instructional use of AR @AECT. Meanwhile, we had a visitor at + our session. #aect2019 #aect19inspired https:\/\/t.co\/HjfO4IZVEm","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"aect2019","indices":[96,105]},{"text":"aect19inspired","indices":[106,121]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[45,50]}],"urls":[],"media":[{"id":1186330138339753986,"id_str":"1186330138339753986","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","url":"https:\/\/t.co\/HjfO4IZVEm","display_url":"pic.twitter.com\/HjfO4IZVEm","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186330138339753986,"id_str":"1186330138339753986","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","url":"https:\/\/t.co\/HjfO4IZVEm","display_url":"pic.twitter.com\/HjfO4IZVEm","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}},"video_info":{"aspect_ratio":[37,80],"duration_millis":11690,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/320x690\/qzYSXhtp8GVHwAkS.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/pl\/HOQqLq2LCOe8QZdY.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/360x778\/mxoPjfmwzOZWrqSf.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/592x1280\/pBUtbxYAYdW5YWLx.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":887813304311087104,"id_str":"887813304311087104","name":"Art + Brownlow","screen_name":"art_brownlow","location":"Brownsville, TX","description":"UTRGV + Music Prof & Academic Innovation Fellow, UT System Academy of Distinguished + Teachers, ROTA 2016, \uf8ffADE 2015, Braves fan, Husband & Dad","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":291,"friends_count":338,"listed_count":5,"created_at":"Wed + Jul 19 23:16:01 +0000 2017","favourites_count":237,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":132,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887813304311087104\/1500521777","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":42,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 17:03:07 +0000 2019","id":1186327061666775042,"id_str":"1186327061666775042","full_text":"And + testing @themakerbit project made at #aect19","truncated":false,"display_text_range":[0,48],"entities":{"hashtags":[{"text":"aect19","indices":[41,48]}],"symbols":[],"user_mentions":[{"screen_name":"TheMakerBit","name":"TheMakerBit","id":826327660078911488,"id_str":"826327660078911488","indices":[12,24]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1186326738139136001,"in_reply_to_status_id_str":"1186326738139136001","in_reply_to_user_id":38657815,"in_reply_to_user_id_str":"38657815","in_reply_to_screen_name":"DKSch","user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 18:05:43 +0000 2019","id":1186342818656055296,"id_str":"1186342818656055296","full_text":"RT + @robmoore3: Come see our #aect19 session Tuesday at 9 am! https:\/\/t.co\/W97VdgjjOz","truncated":false,"display_text_range":[0,84],"entities":{"hashtags":[{"text":"aect19","indices":[28,35]}],"symbols":[],"user_mentions":[{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[3,13]}],"urls":[{"url":"https:\/\/t.co\/W97VdgjjOz","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477","display_url":"twitter.com\/robmoore3\/stat\u2026","indices":[61,84]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 11:35:11 +0000 2019","id":1185519759967821824,"id_str":"1185519759967821824","full_text":"Come + see our #aect19 session Tuesday at 9 am! https:\/\/t.co\/W97VdgjjOz","truncated":false,"display_text_range":[0,45],"entities":{"hashtags":[{"text":"aect19","indices":[13,20]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/W97VdgjjOz","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477","display_url":"twitter.com\/robmoore3\/stat\u2026","indices":[46,69]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1122991739692777477,"quoted_status_id_str":"1122991739692777477","quoted_status_permalink":{"url":"https:\/\/t.co\/W97VdgjjOz","expanded":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477","display":"twitter.com\/robmoore3\/stat\u2026"},"quoted_status":{"created_at":"Mon + Apr 29 22:31:09 +0000 2019","id":1122991739692777477,"id_str":"1122991739692777477","full_text":"Chuang + Wang (@uncc_coed) and I will be presenting @AECT the results of our latent + profile analysis of a HarvardX course to identify the motivational factors + that influence #MOOC completion #aect19 #aect19inspired https:\/\/t.co\/ax3rdGkoiz","truncated":false,"display_text_range":[0,212],"entities":{"hashtags":[{"text":"MOOC","indices":[172,177]},{"text":"aect19","indices":[189,196]},{"text":"aect19inspired","indices":[197,212]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[50,55]}],"urls":[],"media":[{"id":1122990385578557443,"id_str":"1122990385578557443","indices":[213,236],"media_url":"http:\/\/pbs.twimg.com\/media\/D5WpzkqWwAMQ1Iw.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/D5WpzkqWwAMQ1Iw.png","url":"https:\/\/t.co\/ax3rdGkoiz","display_url":"pic.twitter.com\/ax3rdGkoiz","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1122990385578557443,"id_str":"1122990385578557443","indices":[213,236],"media_url":"http:\/\/pbs.twimg.com\/media\/D5WpzkqWwAMQ1Iw.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/D5WpzkqWwAMQ1Iw.png","url":"https:\/\/t.co\/ax3rdGkoiz","display_url":"pic.twitter.com\/ax3rdGkoiz","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1122991739692777477,"quoted_status_id_str":"1122991739692777477","quoted_status_permalink":{"url":"https:\/\/t.co\/W97VdgjjOz","expanded":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477","display":"twitter.com\/robmoore3\/stat\u2026"},"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 18:04:00 +0000 2019","id":1186342384432345091,"id_str":"1186342384432345091","full_text":"Hope + to see you Tuesday and Wednesday! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/hxFAXoYNom","truncated":false,"display_text_range":[0,71],"entities":{"hashtags":[{"text":"AECT19","indices":[48,55]},{"text":"AECT19inspired","indices":[56,71]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[39,47]}],"urls":[],"media":[{"id":1185703365826662401,"id_str":"1185703365826662401","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR27dkVUAEf_AV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR27dkVUAEf_AV.jpg","url":"https:\/\/t.co\/hxFAXoYNom","display_url":"pic.twitter.com\/hxFAXoYNom","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186342384432345091\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185703365826662401,"id_str":"1185703365826662401","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR27dkVUAEf_AV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR27dkVUAEf_AV.jpg","url":"https:\/\/t.co\/hxFAXoYNom","display_url":"pic.twitter.com\/hxFAXoYNom","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186342384432345091\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 19:32:18 +0000 2019","id":1186364608170336256,"id_str":"1186364608170336256","full_text":"Getting + #AECT19 started right! (Thanks to the OTP division for the invite!) https:\/\/t.co\/3g2EeiJTni","truncated":false,"display_text_range":[0,75],"entities":{"hashtags":[{"text":"AECT19","indices":[8,15]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186364598871445504,"id_str":"1186364598871445504","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbQUSnU0AAl-pu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbQUSnU0AAl-pu.jpg","url":"https:\/\/t.co\/3g2EeiJTni","display_url":"pic.twitter.com\/3g2EeiJTni","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1186364608170336256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1412,"h":1883,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186364598871445504,"id_str":"1186364598871445504","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbQUSnU0AAl-pu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbQUSnU0AAl-pu.jpg","url":"https:\/\/t.co\/3g2EeiJTni","display_url":"pic.twitter.com\/3g2EeiJTni","expanded_url":"https:\/\/twitter.com\/jennkepka\/status\/1186364608170336256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1412,"h":1883,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":"Sign + reads \"AECT leadership and awards luncheon\""}]},"source":"\u003ca href=\"https:\/\/mobile.twitter.com\" + rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3733671685,"id_str":"3733671685","name":"Jenn + Kepka","screen_name":"jennkepka","location":"Oregon, USA","description":"Outreach\/retention\/tutoring + faculty in OR; doc student in #edtech at Boise St. Past: UO, WOU, KU. \u2764 + #oer & \u2615 & \u26f8. Views my own. she\/her\/hers","url":"https:\/\/t.co\/nvazHyg5JB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nvazHyg5JB","expanded_url":"http:\/\/jennkepka.com","display_url":"jennkepka.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":700,"friends_count":1225,"listed_count":45,"created_at":"Wed + Sep 30 05:39:55 +0000 2015","favourites_count":19836,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5150,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/908755902315896832\/0uDCVsrI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3733671685\/1446791014","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 15:20:02 +0000 2019","id":1186301122182402049,"id_str":"1186301122182402049","full_text":"Welcome + to Las Vegas (to me)!! Finally made it to the #AECT19 Convention at Westgate. + Look forward to a week of exciting conference sessions! Now off to my augmented + reality workshop! \ud83e\udd13","truncated":false,"display_text_range":[0,186],"entities":{"hashtags":[{"text":"AECT19","indices":[54,61]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":361417910,"id_str":"361417910","name":"Alice + Swift","screen_name":"AliceWuSwift","location":"Honolulu, HI","description":"","url":"https:\/\/t.co\/6zQ8FAaqWh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6zQ8FAaqWh","expanded_url":"http:\/\/www.aliceswift.com","display_url":"aliceswift.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":40,"friends_count":99,"listed_count":0,"created_at":"Wed + Aug 24 19:13:58 +0000 2011","favourites_count":40,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":106,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/860038188319899648\/FSra4ptU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/860038188319899648\/FSra4ptU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/361417910\/1493884059","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 19:39:51 +0000 2019","id":1186366508089233409,"id_str":"1186366508089233409","full_text":"Check + out the History & Archive Committee posters in the hallways here at the + Westgate, we are approaching 100yrs. Inspired by the great people on this + committee. #AECT2019 #inspiredme https:\/\/t.co\/iiIvjSAGFl","truncated":false,"display_text_range":[0,188],"entities":{"hashtags":[{"text":"AECT2019","indices":[167,176]},{"text":"inspiredme","indices":[177,188]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186366498199048192,"id_str":"1186366498199048192","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbSC2KUEAAG_Ep.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbSC2KUEAAG_Ep.jpg","url":"https:\/\/t.co\/iiIvjSAGFl","display_url":"pic.twitter.com\/iiIvjSAGFl","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186366508089233409\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186366498199048192,"id_str":"1186366498199048192","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbSC2KUEAAG_Ep.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbSC2KUEAAG_Ep.jpg","url":"https:\/\/t.co\/iiIvjSAGFl","display_url":"pic.twitter.com\/iiIvjSAGFl","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186366508089233409\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 18:20:58 +0000 2019","id":1186346655727046657,"id_str":"1186346655727046657","full_text":"#inspiredme + #aect19 https:\/\/t.co\/yVlyg3LpZw","truncated":false,"display_text_range":[0,19],"entities":{"hashtags":[{"text":"inspiredme","indices":[0,11]},{"text":"aect19","indices":[12,19]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186346649091600393,"id_str":"1186346649091600393","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa__eeUcAkAax4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa__eeUcAkAax4.jpg","url":"https:\/\/t.co\/yVlyg3LpZw","display_url":"pic.twitter.com\/yVlyg3LpZw","expanded_url":"https:\/\/twitter.com\/jcmadison2007\/status\/1186346655727046657\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186346649091600393,"id_str":"1186346649091600393","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa__eeUcAkAax4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa__eeUcAkAax4.jpg","url":"https:\/\/t.co\/yVlyg3LpZw","display_url":"pic.twitter.com\/yVlyg3LpZw","expanded_url":"https:\/\/twitter.com\/jcmadison2007\/status\/1186346655727046657\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":93868762,"id_str":"93868762","name":"Szu-Yueh + Justine Chien","screen_name":"jcmadison2007","location":"Madison, WI","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":61,"listed_count":3,"created_at":"Tue + Dec 01 14:25:12 +0000 2009","favourites_count":15,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":45,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1143281723796574208\/fKIs6ct8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1143281723796574208\/fKIs6ct8_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Mon + Oct 21 16:37:15 +0000 2019","id":1186320553801465861,"id_str":"1186320553801465861","full_text":"Learning + to use @themakerbit at #aect19 with @rogerwagner, it''s inventor. @tecfa @faclab. + https:\/\/t.co\/67XiAu6LXC","truncated":false,"display_text_range":[0,89],"entities":{"hashtags":[{"text":"aect19","indices":[32,39]}],"symbols":[],"user_mentions":[{"screen_name":"TheMakerBit","name":"TheMakerBit","id":826327660078911488,"id_str":"826327660078911488","indices":[16,28]},{"screen_name":"rogerwagner","name":"rogerwagner","id":9920032,"id_str":"9920032","indices":[45,57]},{"screen_name":"tecfa","name":"TECFA","id":24355006,"id_str":"24355006","indices":[74,80]},{"screen_name":"faclab","name":"faclab","id":174689000,"id_str":"174689000","indices":[81,88]}],"urls":[],"media":[{"id":1186320546398519297,"id_str":"1186320546398519297","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/EHaoQGXUwAENm4J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHaoQGXUwAENm4J.jpg","url":"https:\/\/t.co\/67XiAu6LXC","display_url":"pic.twitter.com\/67XiAu6LXC","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1186320553801465861\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":310,"resize":"fit"},"medium":{"w":1200,"h":547,"resize":"fit"},"large":{"w":2048,"h":934,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186320546398519297,"id_str":"1186320546398519297","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/EHaoQGXUwAENm4J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHaoQGXUwAENm4J.jpg","url":"https:\/\/t.co\/67XiAu6LXC","display_url":"pic.twitter.com\/67XiAu6LXC","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1186320553801465861\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":310,"resize":"fit"},"medium":{"w":1200,"h":547,"resize":"fit"},"large":{"w":2048,"h":934,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 19:03:24 +0000 2019","id":1186357334257422336,"id_str":"1186357334257422336","full_text":"First + rule of leadership: everything is your fault. #aect19 https:\/\/t.co\/i2AsMDxMbD","truncated":false,"display_text_range":[0,59],"entities":{"hashtags":[{"text":"aect19","indices":[52,59]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/i2AsMDxMbD","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186353749159223296","display_url":"twitter.com\/AECT\/status\/11\u2026","indices":[60,83]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1186353749159223296,"quoted_status_id_str":"1186353749159223296","quoted_status_permalink":{"url":"https:\/\/t.co\/i2AsMDxMbD","expanded":"https:\/\/twitter.com\/AECT\/status\/1186353749159223296","display":"twitter.com\/AECT\/status\/11\u2026"},"quoted_status":{"created_at":"Mon + Oct 21 18:49:09 +0000 2019","id":1186353749159223296,"id_str":"1186353749159223296","full_text":"Changing + of the AECT guard! Immediate past President Trey Martindale passes the gavel + to incoming President Michael Grant. #AECT19 https:\/\/t.co\/LUZueMl4VE","truncated":false,"display_text_range":[0,130],"entities":{"hashtags":[{"text":"AECT19","indices":[123,130]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186353742582411271,"id_str":"1186353742582411271","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbGcXyUcAcBkvV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbGcXyUcAcBkvV.jpg","url":"https:\/\/t.co\/LUZueMl4VE","display_url":"pic.twitter.com\/LUZueMl4VE","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186353749159223296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":798,"resize":"fit"},"small":{"w":680,"h":452,"resize":"fit"},"large":{"w":2048,"h":1362,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186353742582411271,"id_str":"1186353742582411271","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbGcXyUcAcBkvV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbGcXyUcAcBkvV.jpg","url":"https:\/\/t.co\/LUZueMl4VE","display_url":"pic.twitter.com\/LUZueMl4VE","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186353749159223296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":798,"resize":"fit"},"small":{"w":680,"h":452,"resize":"fit"},"large":{"w":2048,"h":1362,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":32,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 17:32:31 +0000 2019","id":1186334463476649984,"id_str":"1186334463476649984","full_text":"Enjoying + the workshop on course design using first principles with David Merrill at + #aect19inspired #AECT2019 @AECT https:\/\/t.co\/5mGeZCqOVh","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect19inspired","indices":[84,99]},{"text":"AECT2019","indices":[100,109]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[110,115]}],"urls":[],"media":[{"id":1186334431046324224,"id_str":"1186334431046324224","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa04StU0AA7bna.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa04StU0AA7bna.jpg","url":"https:\/\/t.co\/5mGeZCqOVh","display_url":"pic.twitter.com\/5mGeZCqOVh","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186334463476649984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186334431046324224,"id_str":"1186334431046324224","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa04StU0AA7bna.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa04StU0AA7bna.jpg","url":"https:\/\/t.co\/5mGeZCqOVh","display_url":"pic.twitter.com\/5mGeZCqOVh","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186334463476649984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 07:32:27 +0000 2019","id":1186183451457867777,"id_str":"1186183451457867777","full_text":"RT + @nicolapallitt: I''ll be sharing about @emergeAfrica at @AECT #aect19 #aect19inspired + Join ''A Taste of the International Division'' sessi\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[64,71]},{"text":"aect19inspired","indices":[73,88]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[41,54]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[58,63]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":123168263,"id_str":"123168263","name":"Irene + Maweu \ud83c\udf3b\ud83c\udf3b","screen_name":"wavinya66","location":"Kenya","description":"By + Faith \/ With Respect \/ Facilitating from the heart \/ Liberating Structures + Gospel \/ IAF Member","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":762,"friends_count":772,"listed_count":9,"created_at":"Mon + Mar 15 06:31:31 +0000 2010","favourites_count":10218,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5795,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123168263\/1610274071","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 05:22:19 +0000 2019","id":1186150701983879168,"id_str":"1186150701983879168","full_text":"I''ll + be sharing about @emergeAfrica at @AECT #aect19 #aect19inspired Join ''A + Taste of the International Division'' session on Tuesday https:\/\/t.co\/1zFZPHmu7U + or check out these slides https:\/\/t.co\/jf3RZuwayj Also going to be at the + Wednesday BOAF https:\/\/t.co\/I0LOIg397s https:\/\/t.co\/qSDD9xuyVp","truncated":false,"display_text_range":[0,270],"entities":{"hashtags":[{"text":"aect19","indices":[45,52]},{"text":"aect19inspired","indices":[54,69]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[22,35]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[39,44]}],"urls":[{"url":"https:\/\/t.co\/1zFZPHmu7U","expanded_url":"http:\/\/tinyurl.com\/yxtq7qbm","display_url":"tinyurl.com\/yxtq7qbm","indices":[134,157]},{"url":"https:\/\/t.co\/jf3RZuwayj","expanded_url":"http:\/\/bit.ly\/emergeAfrica2019","display_url":"bit.ly\/emergeAfrica20\u2026","indices":[184,207]},{"url":"https:\/\/t.co\/I0LOIg397s","expanded_url":"http:\/\/tinyurl.com\/y68fgpjw","display_url":"tinyurl.com\/y68fgpjw","indices":[247,270]}],"media":[{"id":1186150696137027585,"id_str":"1186150696137027585","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EHYNxg1UcAEikxd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHYNxg1UcAEikxd.jpg","url":"https:\/\/t.co\/qSDD9xuyVp","display_url":"pic.twitter.com\/qSDD9xuyVp","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186150701983879168\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186150696137027585,"id_str":"1186150696137027585","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EHYNxg1UcAEikxd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHYNxg1UcAEikxd.jpg","url":"https:\/\/t.co\/qSDD9xuyVp","display_url":"pic.twitter.com\/qSDD9xuyVp","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186150701983879168\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 05:54:45 +0000 2019","id":1186158861901676549,"id_str":"1186158861901676549","full_text":"RT + @SmithShannonM: If you\u2019re #AECT19 bound, you\u2019ll find me at these + two sessions! #maker #designthinking #AECT19inspired https:\/\/t.co\/Nwl17\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[29,36]},{"text":"maker","indices":[82,88]},{"text":"designthinking","indices":[89,104]},{"text":"AECT19inspired","indices":[105,120]}],"symbols":[],"user_mentions":[{"screen_name":"SmithShannonM","name":"Shannon + M. Smith","id":1408637941,"id_str":"1408637941","indices":[3,17]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 20 20:42:18 +0000 2019","id":1186019834229747712,"id_str":"1186019834229747712","full_text":"If + you\u2019re #AECT19 bound, you\u2019ll find me at these two sessions! #maker + #designthinking #AECT19inspired https:\/\/t.co\/Nwl17Au9vO","truncated":false,"display_text_range":[0,101],"entities":{"hashtags":[{"text":"AECT19","indices":[10,17]},{"text":"maker","indices":[63,69]},{"text":"designthinking","indices":[70,85]},{"text":"AECT19inspired","indices":[86,101]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186019828097662976,"id_str":"1186019828097662976","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWWv_ZUwAA3QP2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWWv_ZUwAA3QP2.jpg","url":"https:\/\/t.co\/Nwl17Au9vO","display_url":"pic.twitter.com\/Nwl17Au9vO","expanded_url":"https:\/\/twitter.com\/SmithShannonM\/status\/1186019834229747712\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":1046,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":1046,"resize":"fit"},"small":{"w":488,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186019828097662976,"id_str":"1186019828097662976","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWWv_ZUwAA3QP2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWWv_ZUwAA3QP2.jpg","url":"https:\/\/t.co\/Nwl17Au9vO","display_url":"pic.twitter.com\/Nwl17Au9vO","expanded_url":"https:\/\/twitter.com\/SmithShannonM\/status\/1186019834229747712\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":1046,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":1046,"resize":"fit"},"small":{"w":488,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1186019828093468673,"id_str":"1186019828093468673","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWWv_YUwAEwk_r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWWv_YUwAEwk_r.jpg","url":"https:\/\/t.co\/Nwl17Au9vO","display_url":"pic.twitter.com\/Nwl17Au9vO","expanded_url":"https:\/\/twitter.com\/SmithShannonM\/status\/1186019834229747712\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":1059,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":1059,"resize":"fit"},"small":{"w":482,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1408637941,"id_str":"1408637941","name":"Shannon + M. Smith","screen_name":"SmithShannonM","location":"Boise, ID","description":"Librarian + @BSULibrary + @UW_iSchool alum | OER, OA, Schol Comm, STEM, Design Thinking + | opinions my own | dreaming + reflecting + learning","url":"https:\/\/t.co\/cP2kwcqbcn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cP2kwcqbcn","expanded_url":"https:\/\/orcid.org\/0000-0002-2560-7410","display_url":"orcid.org\/0000-0002-2560\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":421,"friends_count":863,"listed_count":15,"created_at":"Mon + May 06 20:13:09 +0000 2013","favourites_count":5591,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2346,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1528811834257526784\/FoWd_4Uj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1528811834257526784\/FoWd_4Uj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1408637941\/1653332130","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 19:09:58 +0000 2019","id":1186358985059790853,"id_str":"1186358985059790853","full_text":"Enjoying + the food and the company at the leadership luncheon at #aect19 #aectinspired + \u2066@khuett\u2069 https:\/\/t.co\/zzvZeHlP02","truncated":false,"display_text_range":[0,95],"entities":{"hashtags":[{"text":"aect19","indices":[64,71]},{"text":"aectinspired","indices":[72,85]}],"symbols":[],"user_mentions":[{"screen_name":"khuett","name":"khuett","id":18109307,"id_str":"18109307","indices":[87,94]}],"urls":[],"media":[{"id":1186358975379337216,"id_str":"1186358975379337216","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbLM9eU8AAYKcH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbLM9eU8AAYKcH.jpg","url":"https:\/\/t.co\/zzvZeHlP02","display_url":"pic.twitter.com\/zzvZeHlP02","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186358985059790853\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186358975379337216,"id_str":"1186358975379337216","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbLM9eU8AAYKcH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbLM9eU8AAYKcH.jpg","url":"https:\/\/t.co\/zzvZeHlP02","display_url":"pic.twitter.com\/zzvZeHlP02","expanded_url":"https:\/\/twitter.com\/nangur1\/status\/1186358985059790853\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743313304,"id_str":"2743313304","name":"Dr. + Nandita Gurjar","screen_name":"nangur1","location":"","description":"Incoming + assistant professor of elementary education at Rhode Island College @ricnews + \nPassion for innovation, social justice, and equity.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1856,"friends_count":1460,"listed_count":64,"created_at":"Mon + Aug 18 23:15:13 +0000 2014","favourites_count":9064,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4203,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1513030010625474561\/l26qMVXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743313304\/1514865156","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"11120F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:25:03 +0000 2019","id":1186377880810311680,"id_str":"1186377880810311680","full_text":"Computationally-enabled + devices with @rogerwagner at #aect19inspired . Tutorial on programming @themakerbit + with @Msmakecode @FacLabUnige https:\/\/t.co\/APADcYzcDU","truncated":false,"display_text_range":[0,137],"entities":{"hashtags":[{"text":"aect19inspired","indices":[53,68]}],"symbols":[],"user_mentions":[{"screen_name":"rogerwagner","name":"rogerwagner","id":9920032,"id_str":"9920032","indices":[37,49]},{"screen_name":"TheMakerBit","name":"TheMakerBit","id":826327660078911488,"id_str":"826327660078911488","indices":[95,107]},{"screen_name":"MSMakeCode","name":"Microsoft + MakeCode","id":853151395351937024,"id_str":"853151395351937024","indices":[113,124]},{"screen_name":"FacLabUnige","name":"FacLabUnige","id":781887225088933888,"id_str":"781887225088933888","indices":[125,137]}],"urls":[],"media":[{"id":1186377874036510720,"id_str":"1186377874036510720","indices":[138,161],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbcZAdUUAAhJGL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbcZAdUUAAhJGL.jpg","url":"https:\/\/t.co\/APADcYzcDU","display_url":"pic.twitter.com\/APADcYzcDU","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1186377880810311680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1363,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":1200,"h":799,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186377874036510720,"id_str":"1186377874036510720","indices":[138,161],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbcZAdUUAAhJGL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbcZAdUUAAhJGL.jpg","url":"https:\/\/t.co\/APADcYzcDU","display_url":"pic.twitter.com\/APADcYzcDU","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1186377880810311680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1363,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":1200,"h":799,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 14:39:26 +0000 2019","id":1186290903385690113,"id_str":"1186290903385690113","full_text":"Here''s + the @design4learn roster of sessions at #aect19. We''ll be updating the list + with the slides at the conclusion of the conference. Thanks! https:\/\/t.co\/bs61Ehh0rt","truncated":false,"display_text_range":[0,167],"entities":{"hashtags":[{"text":"aect19","indices":[47,54]}],"symbols":[],"user_mentions":[{"screen_name":"design4learn","name":"Designers + for Learning","id":1610558420,"id_str":"1610558420","indices":[11,24]}],"urls":[{"url":"https:\/\/t.co\/bs61Ehh0rt","expanded_url":"https:\/\/designersforlearning.org\/aect19","display_url":"designersforlearning.org\/aect19","indices":[144,167]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":13515,"id_str":"13515","name":"Jennifer + Maddrell","screen_name":"JenM","location":"Chicago, IL","description":"Teach, + study & design learning experiences","url":"https:\/\/t.co\/725I4m2QWv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/725I4m2QWv","expanded_url":"https:\/\/jennifermaddrell.com","display_url":"jennifermaddrell.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2420,"friends_count":4448,"listed_count":80,"created_at":"Tue + Nov 21 13:57:14 +0000 2006","favourites_count":7779,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3455,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13515\/1604669803","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 19:17:36 +0000 2019","id":1186360908152479746,"id_str":"1186360908152479746","full_text":"RT + @AECT: Changing of the AECT guard! Immediate past President Trey Martindale + passes the gavel to incoming President Michael Grant. #AECT1\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 18:49:09 +0000 2019","id":1186353749159223296,"id_str":"1186353749159223296","full_text":"Changing + of the AECT guard! Immediate past President Trey Martindale passes the gavel + to incoming President Michael Grant. #AECT19 https:\/\/t.co\/LUZueMl4VE","truncated":false,"display_text_range":[0,130],"entities":{"hashtags":[{"text":"AECT19","indices":[123,130]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186353742582411271,"id_str":"1186353742582411271","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbGcXyUcAcBkvV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbGcXyUcAcBkvV.jpg","url":"https:\/\/t.co\/LUZueMl4VE","display_url":"pic.twitter.com\/LUZueMl4VE","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186353749159223296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":798,"resize":"fit"},"small":{"w":680,"h":452,"resize":"fit"},"large":{"w":2048,"h":1362,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186353742582411271,"id_str":"1186353742582411271","indices":[131,154],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbGcXyUcAcBkvV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbGcXyUcAcBkvV.jpg","url":"https:\/\/t.co\/LUZueMl4VE","display_url":"pic.twitter.com\/LUZueMl4VE","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186353749159223296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":798,"resize":"fit"},"small":{"w":680,"h":452,"resize":"fit"},"large":{"w":2048,"h":1362,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":32,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 17:15:47 +0000 2019","id":1186330250994565124,"id_str":"1186330250994565124","full_text":"Learning + a lot about instructional use of AR @AECT. Meanwhile, we had a visitor at + our session. #aect2019 #aect19inspired https:\/\/t.co\/HjfO4IZVEm","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"aect2019","indices":[96,105]},{"text":"aect19inspired","indices":[106,121]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[45,50]}],"urls":[],"media":[{"id":1186330138339753986,"id_str":"1186330138339753986","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","url":"https:\/\/t.co\/HjfO4IZVEm","display_url":"pic.twitter.com\/HjfO4IZVEm","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186330138339753986,"id_str":"1186330138339753986","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1186330138339753986\/pu\/img\/82LxTihXQHPFY8tN.jpg","url":"https:\/\/t.co\/HjfO4IZVEm","display_url":"pic.twitter.com\/HjfO4IZVEm","expanded_url":"https:\/\/twitter.com\/art_brownlow\/status\/1186330250994565124\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":315,"h":680,"resize":"fit"},"medium":{"w":555,"h":1200,"resize":"fit"},"large":{"w":592,"h":1280,"resize":"fit"}},"video_info":{"aspect_ratio":[37,80],"duration_millis":11690,"variants":[{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/320x690\/qzYSXhtp8GVHwAkS.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/pl\/HOQqLq2LCOe8QZdY.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/360x778\/mxoPjfmwzOZWrqSf.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1186330138339753986\/pu\/vid\/592x1280\/pBUtbxYAYdW5YWLx.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":887813304311087104,"id_str":"887813304311087104","name":"Art + Brownlow","screen_name":"art_brownlow","location":"Brownsville, TX","description":"UTRGV + Music Prof & Academic Innovation Fellow, UT System Academy of Distinguished + Teachers, ROTA 2016, \uf8ffADE 2015, Braves fan, Husband & Dad","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":291,"friends_count":338,"listed_count":5,"created_at":"Wed + Jul 19 23:16:01 +0000 2017","favourites_count":237,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":132,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179121289757417472\/zl-Uy6RT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887813304311087104\/1500521777","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":42,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 17:28:03 +0000 2019","id":1186333337524158466,"id_str":"1186333337524158466","full_text":"Why + do it yourself; here\u2019s Pearson\u2019s literature review of learning theories + applying to digital learning: https:\/\/t.co\/7rLJVZzKgs #aect19","truncated":false,"display_text_range":[0,137],"entities":{"hashtags":[{"text":"aect19","indices":[130,137]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/7rLJVZzKgs","expanded_url":"http:\/\/Bit.ly\/PearsonLDPs","display_url":"Bit.ly\/PearsonLDPs","indices":[106,129]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 20:26:37 +0000 2019","id":1186378274802257920,"id_str":"1186378274802257920","full_text":"Met + another Camille @ \u2066@AECT\u2069 convention. Highly recommend this session! #aect19 + @aect19inspired #distancelearning #onlinelearning #onlinelearn https:\/\/t.co\/eLRqYpm3ew","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"aect19","indices":[74,81]},{"text":"distancelearning","indices":[98,115]},{"text":"onlinelearning","indices":[116,131]},{"text":"onlinelearn","indices":[132,144]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[23,28]}],"urls":[],"media":[{"id":1186378268720549888,"id_str":"1186378268720549888","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbcv-xU0AA1JGt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbcv-xU0AA1JGt.jpg","url":"https:\/\/t.co\/eLRqYpm3ew","display_url":"pic.twitter.com\/eLRqYpm3ew","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186378274802257920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186378268720549888,"id_str":"1186378268720549888","indices":[145,168],"media_url":"http:\/\/pbs.twimg.com\/media\/EHbcv-xU0AA1JGt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHbcv-xU0AA1JGt.jpg","url":"https:\/\/t.co\/eLRqYpm3ew","display_url":"pic.twitter.com\/eLRqYpm3ew","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186378274802257920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 15:16:59 +0000 2019","id":1186300354239094784,"id_str":"1186300354239094784","full_text":"RT + @WilsonInEdu: Getting ready to rep @KSUITEC @KSUBCOE and @kennesawstate at + #aect19inspired along side @AlbertRitzhaupt from @UF_COE cond\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WilsonInEdu","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","id":489118534,"id_str":"489118534","indices":[3,15]},{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[38,46]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/meta-evidence.co.uk\" rel=\"nofollow\"\u003eSystematic Review + Bot\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":985820315522650113,"id_str":"985820315522650113","name":"SystematicReviewBot","screen_name":"EvidenceRobot","location":"Belfast, + Northern Ireland","description":"A happy little robot that loves to retweet + any #systematicreview #metaanalysis #SysRev #evidencesynthesis #researchsynthesis + tweets. By @MetaEvidence","url":"https:\/\/t.co\/WDApxmReo2","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/WDApxmReo2","expanded_url":"http:\/\/meta-evidence.co.uk\/","display_url":"meta-evidence.co.uk","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7131,"friends_count":1,"listed_count":79,"created_at":"Mon + Apr 16 10:00:53 +0000 2018","favourites_count":55,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":256060,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/986202760881336320\/2MRBBaFE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/986202760881336320\/2MRBBaFE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/985820315522650113\/1523964007","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 15:09:59 +0000 2019","id":1186298592610279424,"id_str":"1186298592610279424","full_text":"Getting + ready to rep @KSUITEC @KSUBCOE and @kennesawstate at #aect19inspired along + side @AlbertRitzhaupt from @UF_COE conducting a primer on the application + of meta-analysis to educational technology research with examples using open-source + software.","truncated":false,"display_text_range":[0,250],"entities":{"hashtags":[{"text":"aect19inspired","indices":[61,76]}],"symbols":[],"user_mentions":[{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[21,29]},{"screen_name":"kennesawstate","name":"Kennesaw + State","id":54637018,"id_str":"54637018","indices":[43,57]},{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[88,104]},{"screen_name":"UF_COE","name":"UF + College of Education","id":38508931,"id_str":"38508931","indices":[110,117]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 17:38:52 +0000 2019","id":1186336062013984768,"id_str":"1186336062013984768","full_text":"RT + @AECT: #AECT19 is underway with invited workshops like Makerspaces & Advancing + the Curriculum: Interactive Maker Projects with @rogerwag\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"AECT19","indices":[10,17]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":25740539,"id_str":"25740539","name":"Samantha + Blevins","screen_name":"sjblevin","location":"Dublin, VA","description":"Instructional + Designer. Learning Architect. ePortfolio Enthusiast. Maker. Connector.","url":"https:\/\/t.co\/MiKrTm0s7C","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MiKrTm0s7C","expanded_url":"http:\/\/about.me\/samanthajblevins","display_url":"about.me\/samanthajblevi\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":296,"friends_count":423,"listed_count":10,"created_at":"Sat + Mar 21 22:40:49 +0000 2009","favourites_count":467,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1094,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/902546685682966531\/gPHFejMt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/902546685682966531\/gPHFejMt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25740539\/1603239627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 16:28:04 +0000 2019","id":1186318243436216320,"id_str":"1186318243436216320","full_text":"#AECT19 + is underway with invited workshops like Makerspaces & Advancing the Curriculum: + Interactive Maker Projects with @rogerwagner. Come and find what inspires + you! #AECT19inspired https:\/\/t.co\/rpgGGojDpU","truncated":false,"display_text_range":[0,186],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"AECT19inspired","indices":[171,186]}],"symbols":[],"user_mentions":[{"screen_name":"rogerwagner","name":"rogerwagner","id":9920032,"id_str":"9920032","indices":[124,136]}],"urls":[],"media":[{"id":1186317868029231105,"id_str":"1186317868029231105","indices":[187,210],"media_url":"http:\/\/pbs.twimg.com\/media\/EHal0MqUwAE7C7g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHal0MqUwAE7C7g.jpg","url":"https:\/\/t.co\/rpgGGojDpU","display_url":"pic.twitter.com\/rpgGGojDpU","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186318243436216320\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186317868029231105,"id_str":"1186317868029231105","indices":[187,210],"media_url":"http:\/\/pbs.twimg.com\/media\/EHal0MqUwAE7C7g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHal0MqUwAE7C7g.jpg","url":"https:\/\/t.co\/rpgGGojDpU","display_url":"pic.twitter.com\/rpgGGojDpU","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186318243436216320\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1186317868025036801,"id_str":"1186317868025036801","indices":[187,210],"media_url":"http:\/\/pbs.twimg.com\/media\/EHal0MpUwAENf4Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHal0MpUwAENf4Z.jpg","url":"https:\/\/t.co\/rpgGGojDpU","display_url":"pic.twitter.com\/rpgGGojDpU","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186318243436216320\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186318004742606856,"id_str":"1186318004742606856","indices":[187,210],"media_url":"http:\/\/pbs.twimg.com\/media\/EHal8J9VUAgnOy4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHal8J9VUAgnOy4.jpg","url":"https:\/\/t.co\/rpgGGojDpU","display_url":"pic.twitter.com\/rpgGGojDpU","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186318243436216320\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1537,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 06:15:21 +0000 2019","id":1186164045772050433,"id_str":"1186164045772050433","full_text":"Just + arrived at the conference hotel for #aect19! Anyone else here and about?","truncated":false,"display_text_range":[0,77],"entities":{"hashtags":[{"text":"aect19","indices":[41,48]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 13:37:52 +0000 2019","id":1186275409844813826,"id_str":"1186275409844813826","full_text":"#aect19inspired + \n\nWelcome, y''all. Let''s do this.\n\n@michaelmgrant @AECT https:\/\/t.co\/hEqWB9LukW","truncated":false,"display_text_range":[0,70],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[50,64]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[65,70]}],"urls":[],"media":[{"id":1186275405239443456,"id_str":"1186275405239443456","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/EHZ_MicUYAA3AK1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHZ_MicUYAA3AK1.jpg","url":"https:\/\/t.co\/hEqWB9LukW","display_url":"pic.twitter.com\/hEqWB9LukW","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1186275409844813826\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":920,"h":476,"resize":"fit"},"medium":{"w":920,"h":476,"resize":"fit"},"small":{"w":680,"h":352,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186275405239443456,"id_str":"1186275405239443456","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/EHZ_MicUYAA3AK1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHZ_MicUYAA3AK1.jpg","url":"https:\/\/t.co\/hEqWB9LukW","display_url":"pic.twitter.com\/hEqWB9LukW","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1186275409844813826\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":920,"h":476,"resize":"fit"},"medium":{"w":920,"h":476,"resize":"fit"},"small":{"w":680,"h":352,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 17:56:40 +0000 2019","id":1186340541551673344,"id_str":"1186340541551673344","full_text":"#aect19inspired","truncated":false,"display_text_range":[0,15],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186318434964930560,"id_str":"1186318434964930560","name":"Murat + Turk, Ph.D.","screen_name":"MuratTurkEd","location":"Cincinnati, OH","description":"Online + Learning | motivation | engagement | online presences | loving husband of + Sinem Toraman Turk \u2764\ufe0f| loving father of @bgmtrk1\u2764\ufe0f | @FulbrightTurkey","url":"https:\/\/t.co\/DmCPHu9r7d","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/DmCPHu9r7d","expanded_url":"http:\/\/www.ardat.net","display_url":"ardat.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":853,"listed_count":5,"created_at":"Mon + Oct 21 16:29:13 +0000 2019","favourites_count":4396,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2544,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1441135866278301696\/JZ2xasjP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186318434964930560\/1653078596","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"qht"},{"created_at":"Mon + Oct 21 18:00:19 +0000 2019","id":1186341460435582976,"id_str":"1186341460435582976","full_text":"RT + @nicolapallitt: Enjoying the workshop on course design using first principles + with David Merrill at #aect19inspired #AECT2019 @AECT http\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[103,118]},{"text":"AECT2019","indices":[119,128]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[129,134]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 17:32:31 +0000 2019","id":1186334463476649984,"id_str":"1186334463476649984","full_text":"Enjoying + the workshop on course design using first principles with David Merrill at + #aect19inspired #AECT2019 @AECT https:\/\/t.co\/5mGeZCqOVh","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect19inspired","indices":[84,99]},{"text":"AECT2019","indices":[100,109]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[110,115]}],"urls":[],"media":[{"id":1186334431046324224,"id_str":"1186334431046324224","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa04StU0AA7bna.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa04StU0AA7bna.jpg","url":"https:\/\/t.co\/5mGeZCqOVh","display_url":"pic.twitter.com\/5mGeZCqOVh","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186334463476649984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186334431046324224,"id_str":"1186334431046324224","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa04StU0AA7bna.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa04StU0AA7bna.jpg","url":"https:\/\/t.co\/5mGeZCqOVh","display_url":"pic.twitter.com\/5mGeZCqOVh","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186334463476649984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 12:45:00 +0000 2019","id":1186262105256673280,"id_str":"1186262105256673280","full_text":"Looking + for @AECT sessions to attend? Come explore virtuality culture theory! @gsa_aect + @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/ueHv3QHoRc","truncated":false,"display_text_range":[0,120],"entities":{"hashtags":[{"text":"AECT19","indices":[97,104]},{"text":"AECT19inspired","indices":[105,120]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[12,17]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[78,87]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[88,96]}],"urls":[],"media":[{"id":1185381298958934016,"id_str":"1185381298958934016","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/EHNSAs_WoAAlGSk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHNSAs_WoAAlGSk.jpg","url":"https:\/\/t.co\/ueHv3QHoRc","display_url":"pic.twitter.com\/ueHv3QHoRc","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186262105256673280\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185381298958934016,"id_str":"1185381298958934016","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/EHNSAs_WoAAlGSk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHNSAs_WoAAlGSk.jpg","url":"https:\/\/t.co\/ueHv3QHoRc","display_url":"pic.twitter.com\/ueHv3QHoRc","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186262105256673280\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 17:35:58 +0000 2019","id":1186335329004818432,"id_str":"1186335329004818432","full_text":"Watch + out #AECT19, glitter and glue are in the house!! @AnnaRoseLeach. Check out + our presentations on Tuesday, Thursday, and Friday!! https:\/\/t.co\/i4Ht7mLhuC","truncated":false,"display_text_range":[0,133],"entities":{"hashtags":[{"text":"AECT19","indices":[10,17]}],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[55,69]}],"urls":[],"media":[{"id":1186335324328230912,"id_str":"1186335324328230912","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa1sScVAAAa39m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa1sScVAAAa39m.jpg","url":"https:\/\/t.co\/i4Ht7mLhuC","display_url":"pic.twitter.com\/i4Ht7mLhuC","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186335329004818432\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186335324328230912,"id_str":"1186335324328230912","indices":[134,157],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa1sScVAAAa39m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa1sScVAAAa39m.jpg","url":"https:\/\/t.co\/i4Ht7mLhuC","display_url":"pic.twitter.com\/i4Ht7mLhuC","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1186335329004818432\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 17:26:44 +0000 2019","id":1186333008476942337,"id_str":"1186333008476942337","full_text":"VR + = virtual reality, AR = augmented reality, MR = moustache reality, with great + moustache, comes great responsibility #aect19 #aect19inspired","truncated":false,"display_text_range":[0,142],"entities":{"hashtags":[{"text":"aect19","indices":[119,126]},{"text":"aect19inspired","indices":[127,142]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":9,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 09:52:39 +0000 2019","id":1186218733699776512,"id_str":"1186218733699776512","full_text":"Ok...flight + #1 #AECT19 cancelled. Time to channel some creative problem solving to make + it to #aect19inspired https:\/\/t.co\/tIzvxZPGlr","truncated":false,"display_text_range":[0,109],"entities":{"hashtags":[{"text":"AECT19","indices":[15,22]},{"text":"aect19inspired","indices":[94,109]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186218722123571200,"id_str":"1186218722123571200","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHZLpJYX4AAX2cd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHZLpJYX4AAX2cd.jpg","url":"https:\/\/t.co\/tIzvxZPGlr","display_url":"pic.twitter.com\/tIzvxZPGlr","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1186218733699776512\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":270,"resize":"fit"},"large":{"w":480,"h":270,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186218722123571200,"id_str":"1186218722123571200","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHZLpJYX4AAX2cd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHZLpJYX4AAX2cd.jpg","url":"https:\/\/t.co\/tIzvxZPGlr","display_url":"pic.twitter.com\/tIzvxZPGlr","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1186218733699776512\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":480,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":270,"resize":"fit"},"large":{"w":480,"h":270,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHZLpJYX4AAX2cd.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 17:58:54 +0000 2019","id":1186341100014825473,"id_str":"1186341100014825473","full_text":"RT + @KuiXieOSU: For folks attending #aect19 this week, check out our panel on + #CollaborativeResearch on Tuesday morning. I will join @ge_xun\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[35,42]},{"text":"CollaborativeResearch","indices":[77,99]}],"symbols":[],"user_mentions":[{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[132,139]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 20 22:39:22 +0000 2019","id":1186049296304693250,"id_str":"1186049296304693250","full_text":"For + folks attending #aect19 this week, check out our panel on #CollaborativeResearch + on Tuesday morning. I will join @ge_xun @amy_c_bradshaw @fake_reeves @christieliuidtr + and others to share our experience in collaborative research from proposal + to implementation. #aect19inspired https:\/\/t.co\/mYhbxXJGFj","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"aect19","indices":[20,27]},{"text":"CollaborativeResearch","indices":[62,84]},{"text":"aect19inspired","indices":[265,280]}],"symbols":[],"user_mentions":[{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[117,124]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[125,140]}],"urls":[],"media":[{"id":1186049289006538753,"id_str":"1186049289006538753","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","url":"https:\/\/t.co\/mYhbxXJGFj","display_url":"pic.twitter.com\/mYhbxXJGFj","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186049296304693250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186049289006538753,"id_str":"1186049289006538753","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","url":"https:\/\/t.co\/mYhbxXJGFj","display_url":"pic.twitter.com\/mYhbxXJGFj","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186049296304693250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter + for Mac\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 16:25:17 +0000 2019","id":1186317543184580610,"id_str":"1186317543184580610","full_text":"@TheMakerBit + session @AECT with the @rogerwagner!!! #aect19 #MakerSpace #edtech","truncated":false,"display_text_range":[0,79],"entities":{"hashtags":[{"text":"aect19","indices":[52,59]},{"text":"MakerSpace","indices":[60,71]},{"text":"edtech","indices":[72,79]}],"symbols":[],"user_mentions":[{"screen_name":"TheMakerBit","name":"TheMakerBit","id":826327660078911488,"id_str":"826327660078911488","indices":[0,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[21,26]},{"screen_name":"rogerwagner","name":"rogerwagner","id":9920032,"id_str":"9920032","indices":[36,48]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":826327660078911488,"in_reply_to_user_id_str":"826327660078911488","in_reply_to_screen_name":"TheMakerBit","user":{"id":763378325712674818,"id_str":"763378325712674818","name":"Tay + Fess, M.Ed.","screen_name":"Captain_Fess","location":"Naples, FL","description":"Music + Educator l \ud83c\udff3\ufe0f\u200d\ud83c\udf08 l Presenter l UDL l FGCU l + Doctoral Student Ed.D. l EdTech l Disney Geek","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":576,"listed_count":3,"created_at":"Wed + Aug 10 14:15:50 +0000 2016","favourites_count":1730,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":665,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/763378325712674818\/1595378873","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 15:09:59 +0000 2019","id":1186298592610279424,"id_str":"1186298592610279424","full_text":"Getting + ready to rep @KSUITEC @KSUBCOE and @kennesawstate at #aect19inspired along + side @AlbertRitzhaupt from @UF_COE conducting a primer on the application + of meta-analysis to educational technology research with examples using open-source + software.","truncated":false,"display_text_range":[0,250],"entities":{"hashtags":[{"text":"aect19inspired","indices":[61,76]}],"symbols":[],"user_mentions":[{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[21,29]},{"screen_name":"kennesawstate","name":"Kennesaw + State","id":54637018,"id_str":"54637018","indices":[43,57]},{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[88,104]},{"screen_name":"UF_COE","name":"UF + College of Education","id":38508931,"id_str":"38508931","indices":[110,117]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 16:28:04 +0000 2019","id":1186318243436216320,"id_str":"1186318243436216320","full_text":"#AECT19 + is underway with invited workshops like Makerspaces & Advancing the Curriculum: + Interactive Maker Projects with @rogerwagner. Come and find what inspires + you! #AECT19inspired https:\/\/t.co\/rpgGGojDpU","truncated":false,"display_text_range":[0,186],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]},{"text":"AECT19inspired","indices":[171,186]}],"symbols":[],"user_mentions":[{"screen_name":"rogerwagner","name":"rogerwagner","id":9920032,"id_str":"9920032","indices":[124,136]}],"urls":[],"media":[{"id":1186317868029231105,"id_str":"1186317868029231105","indices":[187,210],"media_url":"http:\/\/pbs.twimg.com\/media\/EHal0MqUwAE7C7g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHal0MqUwAE7C7g.jpg","url":"https:\/\/t.co\/rpgGGojDpU","display_url":"pic.twitter.com\/rpgGGojDpU","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186318243436216320\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186317868029231105,"id_str":"1186317868029231105","indices":[187,210],"media_url":"http:\/\/pbs.twimg.com\/media\/EHal0MqUwAE7C7g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHal0MqUwAE7C7g.jpg","url":"https:\/\/t.co\/rpgGGojDpU","display_url":"pic.twitter.com\/rpgGGojDpU","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186318243436216320\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1186317868025036801,"id_str":"1186317868025036801","indices":[187,210],"media_url":"http:\/\/pbs.twimg.com\/media\/EHal0MpUwAENf4Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHal0MpUwAENf4Z.jpg","url":"https:\/\/t.co\/rpgGGojDpU","display_url":"pic.twitter.com\/rpgGGojDpU","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186318243436216320\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186318004742606856,"id_str":"1186318004742606856","indices":[187,210],"media_url":"http:\/\/pbs.twimg.com\/media\/EHal8J9VUAgnOy4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHal8J9VUAgnOy4.jpg","url":"https:\/\/t.co\/rpgGGojDpU","display_url":"pic.twitter.com\/rpgGGojDpU","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1186318243436216320\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1537,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 05:54:37 +0000 2019","id":1186158831459454976,"id_str":"1186158831459454976","full_text":"RT + @KuiXieOSU: For folks attending #aect19 this week, check out our panel on + #CollaborativeResearch on Tuesday morning. I will join @ge_xun\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[35,42]},{"text":"CollaborativeResearch","indices":[77,99]}],"symbols":[],"user_mentions":[{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[132,139]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 20 22:39:22 +0000 2019","id":1186049296304693250,"id_str":"1186049296304693250","full_text":"For + folks attending #aect19 this week, check out our panel on #CollaborativeResearch + on Tuesday morning. I will join @ge_xun @amy_c_bradshaw @fake_reeves @christieliuidtr + and others to share our experience in collaborative research from proposal + to implementation. #aect19inspired https:\/\/t.co\/mYhbxXJGFj","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"aect19","indices":[20,27]},{"text":"CollaborativeResearch","indices":[62,84]},{"text":"aect19inspired","indices":[265,280]}],"symbols":[],"user_mentions":[{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[117,124]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[125,140]}],"urls":[],"media":[{"id":1186049289006538753,"id_str":"1186049289006538753","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","url":"https:\/\/t.co\/mYhbxXJGFj","display_url":"pic.twitter.com\/mYhbxXJGFj","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186049296304693250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186049289006538753,"id_str":"1186049289006538753","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","url":"https:\/\/t.co\/mYhbxXJGFj","display_url":"pic.twitter.com\/mYhbxXJGFj","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186049296304693250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter + for Mac\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 17:15:56 +0000 2019","id":1186330287917191169,"id_str":"1186330287917191169","full_text":"RT + @DrVirtuality: General steps for meta-analysis @AECT #AECT19 #AECT19inspired + https:\/\/t.co\/1Qs56nA3UV","truncated":false,"display_text_range":[0,103],"entities":{"hashtags":[{"text":"AECT19","indices":[56,63]},{"text":"AECT19inspired","indices":[64,79]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[50,55]}],"urls":[],"media":[{"id":1186309070346575872,"id_str":"1186309070346575872","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/EHad0GvU4AAURNp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHad0GvU4AAURNp.jpg","url":"https:\/\/t.co\/1Qs56nA3UV","display_url":"pic.twitter.com\/1Qs56nA3UV","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186309075161640960\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":1186309075161640960,"source_status_id_str":"1186309075161640960","source_user_id":15667548,"source_user_id_str":"15667548"}]},"extended_entities":{"media":[{"id":1186309070346575872,"id_str":"1186309070346575872","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/EHad0GvU4AAURNp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHad0GvU4AAURNp.jpg","url":"https:\/\/t.co\/1Qs56nA3UV","display_url":"pic.twitter.com\/1Qs56nA3UV","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186309075161640960\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":1186309075161640960,"source_status_id_str":"1186309075161640960","source_user_id":15667548,"source_user_id_str":"15667548","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 15:51:38 +0000 2019","id":1186309075161640960,"id_str":"1186309075161640960","full_text":"General + steps for meta-analysis @AECT #AECT19 #AECT19inspired https:\/\/t.co\/1Qs56nA3UV","truncated":false,"display_text_range":[0,61],"entities":{"hashtags":[{"text":"AECT19","indices":[38,45]},{"text":"AECT19inspired","indices":[46,61]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[32,37]}],"urls":[],"media":[{"id":1186309070346575872,"id_str":"1186309070346575872","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/EHad0GvU4AAURNp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHad0GvU4AAURNp.jpg","url":"https:\/\/t.co\/1Qs56nA3UV","display_url":"pic.twitter.com\/1Qs56nA3UV","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186309075161640960\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186309070346575872,"id_str":"1186309070346575872","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/EHad0GvU4AAURNp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHad0GvU4AAURNp.jpg","url":"https:\/\/t.co\/1Qs56nA3UV","display_url":"pic.twitter.com\/1Qs56nA3UV","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186309075161640960\/photo\/1","type":"photo","sizes":{"small":{"w":510,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"no"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"no"},{"created_at":"Mon + Oct 21 13:54:08 +0000 2019","id":1186279502747525123,"id_str":"1186279502747525123","full_text":"Super + excited to be heading to #AECT19 today! Lots to do this year, including a + workshop on professional networking for the Early Career Symposium, an Intro + to Open Ed workshop with @johnhiltoniii, and two other presentations. Looking + forward to seeing everyone later today! \u2708\ufe0f","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"AECT19","indices":[31,38]}],"symbols":[],"user_mentions":[{"screen_name":"johnhiltoniii","name":"John + Hilton III","id":45002394,"id_str":"45002394","indices":[182,196]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4514361,"id_str":"4514361","name":"David + Wiley","screen_name":"opencontent","location":"WV, USA","description":"#Learning, + #StudentSuccess, #Pedagogy, #InstructionalDesign, #Open, #DataScience, #SocialEntrepreneurship, + #Music, #WestVirginia. WV8EDU on #AmateurRadio","url":"https:\/\/t.co\/cAhKaObC6x","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cAhKaObC6x","expanded_url":"http:\/\/davidwiley.org\/","display_url":"davidwiley.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13528,"friends_count":452,"listed_count":822,"created_at":"Fri + Apr 13 16:07:05 +0000 2007","favourites_count":6762,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":true,"statuses_count":7248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/781256117884030976\/m0ZvHf4j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/781256117884030976\/m0ZvHf4j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4514361\/1547424759","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":25,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 17:33:38 +0000 2019","id":1186334745300365318,"id_str":"1186334745300365318","full_text":"I\u2019m + ready! #aect19inspired https:\/\/t.co\/lUeMwZm5At","truncated":false,"display_text_range":[0,26],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186334738476232704,"id_str":"1186334738476232704","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa1KL-U8AAmPkW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa1KL-U8AAmPkW.jpg","url":"https:\/\/t.co\/lUeMwZm5At","display_url":"pic.twitter.com\/lUeMwZm5At","expanded_url":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1186334745300365318\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186334738476232704,"id_str":"1186334738476232704","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa1KL-U8AAmPkW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa1KL-U8AAmPkW.jpg","url":"https:\/\/t.co\/lUeMwZm5At","display_url":"pic.twitter.com\/lUeMwZm5At","expanded_url":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1186334745300365318\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 17:56:24 +0000 2019","id":1186340473842987011,"id_str":"1186340473842987011","full_text":"What + is Virtuality Culture Theory? https:\/\/t.co\/FVnvBDUVWL @aect @aectclt #aect19inspired + #aect19 #virtualityculturetheory #virtualityculture #virtuality https:\/\/t.co\/dFcWyuHGTz","truncated":false,"display_text_range":[0,153],"entities":{"hashtags":[{"text":"aect19inspired","indices":[74,89]},{"text":"aect19","indices":[90,97]},{"text":"virtualityculturetheory","indices":[98,122]},{"text":"virtualityculture","indices":[123,141]},{"text":"virtuality","indices":[142,153]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[59,64]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[65,73]}],"urls":[{"url":"https:\/\/t.co\/FVnvBDUVWL","expanded_url":"https:\/\/sites.google.com\/view\/dr-camille-dempsey\/theory-of-virtuality-culture","display_url":"sites.google.com\/view\/dr-camill\u2026","indices":[35,58]}],"media":[{"id":1186340310953054208,"id_str":"1186340310953054208","indices":[154,177],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa6OjEVUAAUFOx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa6OjEVUAAUFOx.jpg","url":"https:\/\/t.co\/dFcWyuHGTz","display_url":"pic.twitter.com\/dFcWyuHGTz","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186340473842987011\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":2048,"h":1365,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186340310953054208,"id_str":"1186340310953054208","indices":[154,177],"media_url":"http:\/\/pbs.twimg.com\/media\/EHa6OjEVUAAUFOx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHa6OjEVUAAUFOx.jpg","url":"https:\/\/t.co\/dFcWyuHGTz","display_url":"pic.twitter.com\/dFcWyuHGTz","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186340473842987011\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":800,"resize":"fit"},"large":{"w":2048,"h":1365,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 12:45:28 +0000 2019","id":1186262225066983424,"id_str":"1186262225066983424","full_text":"Before + @AnnaRoseLeach and I go have breakfast & people watch for \"walks of shame\", + we are planning our schedules for the week. I''m picking my #devlearn & + #aect19 sessions. Also here is the \"unofficial\" calendar of where I will + be: https:\/\/t.co\/G7FlZXlVBt","truncated":false,"display_text_range":[0,264],"entities":{"hashtags":[{"text":"devlearn","indices":[147,156]},{"text":"aect19","indices":[163,170]}],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[7,21]}],"urls":[{"url":"https:\/\/t.co\/G7FlZXlVBt","expanded_url":"https:\/\/caranorth.com\/uncategorized\/2019\/10\/08\/2-conferences-5-presentations-1-place-where-to-find-me-october-20-26\/","display_url":"caranorth.com\/uncategorized\/\u2026","indices":[241,264]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 16:15:39 +0000 2019","id":1186315116238770176,"id_str":"1186315116238770176","full_text":"RT + @WilsonInEdu: Getting ready to rep @KSUITEC @KSUBCOE and @kennesawstate at + #aect19inspired along side @AlbertRitzhaupt from @UF_COE cond\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"WilsonInEdu","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","id":489118534,"id_str":"489118534","indices":[3,15]},{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[38,46]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186310378206179328,"id_str":"1186310378206179328","name":"Mhammed + Al Sahafi","screen_name":"MhammedSahafi","location":"","description":"Teacher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":0,"listed_count":0,"created_at":"Mon + Oct 21 15:57:01 +0000 2019","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1186312847942438912\/JcJPTMt-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186312847942438912\/JcJPTMt-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186310378206179328\/1571674097","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 15:09:59 +0000 2019","id":1186298592610279424,"id_str":"1186298592610279424","full_text":"Getting + ready to rep @KSUITEC @KSUBCOE and @kennesawstate at #aect19inspired along + side @AlbertRitzhaupt from @UF_COE conducting a primer on the application + of meta-analysis to educational technology research with examples using open-source + software.","truncated":false,"display_text_range":[0,250],"entities":{"hashtags":[{"text":"aect19inspired","indices":[61,76]}],"symbols":[],"user_mentions":[{"screen_name":"KSUITEC","name":"Kennesaw + State ITEC","id":1154888858,"id_str":"1154888858","indices":[21,29]},{"screen_name":"kennesawstate","name":"Kennesaw + State","id":54637018,"id_str":"54637018","indices":[43,57]},{"screen_name":"AlbertRitzhaupt","name":"Albert + Ritzhaupt","id":898778402332835844,"id_str":"898778402332835844","indices":[88,104]},{"screen_name":"UF_COE","name":"UF + College of Education","id":38508931,"id_str":"38508931","indices":[110,117]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 15:30:51 +0000 2019","id":1186303845309149184,"id_str":"1186303845309149184","full_text":"Members + of the Leadership Development Committee inspire me! #AECT19 #inspiredme #inspiresme + https:\/\/t.co\/xJA3lKnZmw","truncated":false,"display_text_range":[0,91],"entities":{"hashtags":[{"text":"AECT19","indices":[60,67]},{"text":"inspiredme","indices":[68,79]},{"text":"inspiresme","indices":[80,91]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186303839785275394,"id_str":"1186303839785275394","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHaZDpYVUAI0mjs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHaZDpYVUAI0mjs.jpg","url":"https:\/\/t.co\/xJA3lKnZmw","display_url":"pic.twitter.com\/xJA3lKnZmw","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186303845309149184\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186303839785275394,"id_str":"1186303839785275394","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHaZDpYVUAI0mjs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHaZDpYVUAI0mjs.jpg","url":"https:\/\/t.co\/xJA3lKnZmw","display_url":"pic.twitter.com\/xJA3lKnZmw","expanded_url":"https:\/\/twitter.com\/kolorkid\/status\/1186303845309149184\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669702,"id_str":"14669702","name":"Dr. + Heather Leary","screen_name":"kolorkid","location":"Provo, UT","description":"Associate + Professor in IP&T at BYU, Researcher, Teacher, Mentor, Designer, Artist, Wife, + Always a Mom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":556,"friends_count":539,"listed_count":35,"created_at":"Tue + May 06 05:04:35 +0000 2008","favourites_count":232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1521,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"112B45","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/671602275442364416\/jJE8X9Nc_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"147008","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 13:09:16 +0000 2019","id":1186268214948270080,"id_str":"1186268214948270080","full_text":"RT + @michaelmgrant: You know, @RobBranch #inspiredme today. He provoked me to + interrogate my own thinking about student centeredness & how I\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"inspiredme","indices":[40,51]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[3,17]},{"screen_name":"RobBranch","name":"Rob + Branch","id":114768863,"id_str":"114768863","indices":[29,39]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2791867335,"id_str":"2791867335","name":"UofSC + CTE","screen_name":"UofSC_CTE","location":"Columbia, SC","description":"The + Center for Teaching Excellence (CTE) provides faculty and GTA\/GIA professional + development, pedagogical consultations, and instructional design support.","url":"https:\/\/t.co\/33P54qgrX3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/33P54qgrX3","expanded_url":"http:\/\/sc.edu\/cte","display_url":"sc.edu\/cte","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1365,"friends_count":1280,"listed_count":51,"created_at":"Mon + Sep 29 14:56:25 +0000 2014","favourites_count":1544,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1311699104049889282\/chlpfWmy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1311699104049889282\/chlpfWmy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2791867335\/1563461163","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 20:48:34 +0000 2019","id":1185296636278214656,"id_str":"1185296636278214656","full_text":"You + know, @RobBranch #inspiredme today. He provoked me to interrogate my own thinking + about student centeredness & how I invite students into our course and + content with expectations. #aect19inspired https:\/\/t.co\/xlPh87Kphq","truncated":false,"display_text_range":[0,203],"entities":{"hashtags":[{"text":"inspiredme","indices":[21,32]},{"text":"aect19inspired","indices":[188,203]}],"symbols":[],"user_mentions":[{"screen_name":"RobBranch","name":"Rob + Branch","id":114768863,"id_str":"114768863","indices":[10,20]}],"urls":[],"media":[{"id":1185296617001209856,"id_str":"1185296617001209856","indices":[204,227],"media_url":"http:\/\/pbs.twimg.com\/media\/EHME_kHUUAA9GXL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHME_kHUUAA9GXL.jpg","url":"https:\/\/t.co\/xlPh87Kphq","display_url":"pic.twitter.com\/xlPh87Kphq","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1185296636278214656\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185296617001209856,"id_str":"1185296617001209856","indices":[204,227],"media_url":"http:\/\/pbs.twimg.com\/media\/EHME_kHUUAA9GXL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHME_kHUUAA9GXL.jpg","url":"https:\/\/t.co\/xlPh87Kphq","display_url":"pic.twitter.com\/xlPh87Kphq","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1185296636278214656\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"6057f1e35bcc6c20","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/6057f1e35bcc6c20.json","place_type":"admin","name":"South + Carolina","full_name":"South Carolina, USA","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-83.353955,32.04683],[-78.499301,32.04683],[-78.499301,35.215449],[-83.353955,35.215449]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 17:54:03 +0000 2019","id":1186339881452097536,"id_str":"1186339881452097536","full_text":"@aect19 + Looking for the pdf of the conference booklet. Someone mentioned it is on + the #AECT web page. Where? Thank you! #AECT19Inspired","truncated":false,"display_text_range":[0,135],"entities":{"hashtags":[{"text":"AECT","indices":[86,91]},{"text":"AECT19Inspired","indices":[120,135]}],"symbols":[],"user_mentions":[{"screen_name":"aect19","name":"Windy + Trinidad","id":918458306619891712,"id_str":"918458306619891712","indices":[0,7]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":918458306619891712,"in_reply_to_user_id_str":"918458306619891712","in_reply_to_screen_name":"aect19","user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1186158831459454976%2C1186157131621289984%2C1186150701983879168%2C1186150701983879168%2C1186141267211640832%2C1186140050842701825%2C1186135535095447552%2C1186133229222285313%2C1186133229222285313%2C1186119831617077248%2C1186100660233592832%2C1186099771213275136%2C1186099771213275136%2C1186090150666887168%2C1186089873582776321%2C1186088999292669955%2C1186087066234306560%2C1186086316511027201%2C1186086316511027201%2C1186079401210834944%2C1186054663482691584%2C1186049296304693250%2C1186039207204016128%2C1186039207204016128%2C1186036344088420353%2C1186034546254450693%2C1186032363903565830%2C1186030716385030144%2C1186030212930330625%2C1186025767613845504%2C1186025767613845504%2C1186021395844751362%2C1186019834229747712%2C1186010698578423808%2C1186010698578423808%2C1185996870109319171%2C1185996779080343552%2C1185996528260911109%2C1185996528260911109%2C1185982851407171584%2C1185978315317764096%2C1185977941894877184%2C1185977941894877184%2C1185977255941439488%2C1185973559446757376%2C1185973559446757376%2C1185953427442020352%2C1185950803892137985%2C1185950803892137985%2C1185939862928711680%2C1185924695302037506%2C1185924366682353664%2C1185923911772528641%2C1185920543641325568%2C1185919436785618945%2C1185917232787755009%2C1185917232787755009%2C1185905050880749573%2C1185903190719582209%2C1185902988088492032%2C1185902841149493250%2C1185902788389359617%2C1185902515016962050%2C1185902515016962050%2C1185877482840494080%2C1185855361833689088%2C1185786722816331781%2C1185713578998935552%2C1185707457286262784%2C1185707457286262784%2C1185689462086520832%2C1185687818594484224%2C1185687799036440576%2C1185682013145182209%2C1185682013145182209%2C1185670640814170112%2C1185657142717681666%2C1185656805357170688%2C1185656538012278784%2C1185656395531784193%2C1185656368633696256%2C1185652568833298435%2C1185652568833298435%2C1185638894160830471%2C1185612579122667520%2C1185612234623541249%2C1185611088752238592%2C1185610918253776896%2C1185608495539904512%2C1185607666078572545%2C1185607666078572545%2C1185598827975335940%2C1185597998354579456%2C1185597440977711104%2C1185594520739700742%2C1185594053058015233%2C1185585902699106315%2C1185585902699106315%2C1185582029330616324%2C1185574871738150917&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:56 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:56 GMT + x-transaction: dac0825b0d601154 + content-length: '49547' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '273' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '418' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Sat Oct 19 15:42:37 +0000 2019","id":1185582029330616324,"id_str":"1185582029330616324","full_text":"It''s + that time of year again! #aect19inspired https:\/\/t.co\/X2s4lIXTIN","truncated":false,"display_text_range":[0,45],"entities":{"hashtags":[{"text":"aect19inspired","indices":[30,45]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1185582012251414529,"id_str":"1185582012251414529","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQIjwRWoAEYBps.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQIjwRWoAEYBps.jpg","url":"https:\/\/t.co\/X2s4lIXTIN","display_url":"pic.twitter.com\/X2s4lIXTIN","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1185582029330616324\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185582012251414529,"id_str":"1185582012251414529","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQIjwRWoAEYBps.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQIjwRWoAEYBps.jpg","url":"https:\/\/t.co\/X2s4lIXTIN","display_url":"pic.twitter.com\/X2s4lIXTIN","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1185582029330616324\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":8005732,"id_str":"8005732","name":"rmreese","screen_name":"rmreese1","location":"Denver, + CO","description":"ID, edtech, all around gerd (geek+nerd). Opinions are my + own and RTs are not endorsements. Pronouns: she\/they","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":564,"friends_count":293,"listed_count":271,"created_at":"Mon + Aug 06 23:59:29 +0000 2007","favourites_count":960,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9941,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2A2828","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8005732\/1573836551","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"091378","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 03:19:39 +0000 2019","id":1186119831617077248,"id_str":"1186119831617077248","full_text":"#aect19 + https:\/\/t.co\/jNK2701Zii","truncated":false,"display_text_range":[0,7],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186119827665997825,"id_str":"1186119827665997825","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","url":"https:\/\/t.co\/jNK2701Zii","display_url":"pic.twitter.com\/jNK2701Zii","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1186119831617077248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186119827665997825,"id_str":"1186119827665997825","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","url":"https:\/\/t.co\/jNK2701Zii","display_url":"pic.twitter.com\/jNK2701Zii","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1186119831617077248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28836047,"id_str":"28836047","name":"Sylvia + Rogers","screen_name":"srogidd","location":"Auburn, AL","description":"PhD + in Instructional Design, I work as an Instructional Designer and Consultant + for Scholarship of Teaching and Learning at the Harrison School of Pharmacy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":550,"friends_count":1089,"listed_count":18,"created_at":"Sat + Apr 04 17:47:27 +0000 2009","favourites_count":12191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2400,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28836047\/1439418186","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Sun + Oct 20 12:57:12 +0000 2019","id":1185902788389359617,"id_str":"1185902788389359617","full_text":"RT + @DrVirtuality: Who is going to @aect this week?! @aectclt #AECT19 #AECT19inspired + https:\/\/t.co\/kYVTLloXQw","truncated":false,"display_text_range":[0,108],"entities":{"hashtags":[{"text":"AECT19","indices":[61,68]},{"text":"AECT19inspired","indices":[69,84]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[34,39]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[52,60]}],"urls":[],"media":[{"id":1185706404994146305,"id_str":"1185706404994146305","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5sXWU4AE8uu5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5sXWU4AE8uu5.jpg","url":"https:\/\/t.co\/kYVTLloXQw","display_url":"pic.twitter.com\/kYVTLloXQw","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185786722816331781\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"source_status_id":1185786722816331781,"source_status_id_str":"1185786722816331781","source_user_id":15667548,"source_user_id_str":"15667548"}]},"extended_entities":{"media":[{"id":1185706404994146305,"id_str":"1185706404994146305","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5sXWU4AE8uu5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5sXWU4AE8uu5.jpg","url":"https:\/\/t.co\/kYVTLloXQw","display_url":"pic.twitter.com\/kYVTLloXQw","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185786722816331781\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"source_status_id":1185786722816331781,"source_status_id_str":"1185786722816331781","source_user_id":15667548,"source_user_id_str":"15667548","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 20 05:16:00 +0000 2019","id":1185786722816331781,"id_str":"1185786722816331781","full_text":"Who + is going to @aect this week?! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/kYVTLloXQw","truncated":false,"display_text_range":[0,66],"entities":{"hashtags":[{"text":"AECT19","indices":[43,50]},{"text":"AECT19inspired","indices":[51,66]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[16,21]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[34,42]}],"urls":[],"media":[{"id":1185706404994146305,"id_str":"1185706404994146305","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5sXWU4AE8uu5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5sXWU4AE8uu5.jpg","url":"https:\/\/t.co\/kYVTLloXQw","display_url":"pic.twitter.com\/kYVTLloXQw","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185786722816331781\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185706404994146305,"id_str":"1185706404994146305","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5sXWU4AE8uu5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5sXWU4AE8uu5.jpg","url":"https:\/\/t.co\/kYVTLloXQw","display_url":"pic.twitter.com\/kYVTLloXQw","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185786722816331781\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 19 16:32:15 +0000 2019","id":1185594520739700742,"id_str":"1185594520739700742","full_text":"@DKSch + No way! That\u2019s so \ud83d\ude0e cool! The other badges you showed yesterday + were really neat. I\u2019m so honored to be in stitches! \ud83e\udd23 #aect19inspired","truncated":false,"display_text_range":[7,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[125,140]}],"symbols":[],"user_mentions":[{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[0,6]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1185195005171949569,"in_reply_to_status_id_str":"1185195005171949569","in_reply_to_user_id":38657815,"in_reply_to_user_id_str":"38657815","in_reply_to_screen_name":"DKSch","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 21:47:54 +0000 2019","id":1186036344088420353,"id_str":"1186036344088420353","full_text":"Looking + forward to #aect19. Good people.","truncated":false,"display_text_range":[0,40],"entities":{"hashtags":[{"text":"aect19","indices":[19,26]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14125173,"id_str":"14125173","name":"Trey + Martindale","screen_name":"treymartindale","location":"","description":"News + about #instructionaldesign and #onlinelearning , mostly in #highered .","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1170,"friends_count":0,"listed_count":98,"created_at":"Tue + Mar 11 16:32:25 +0000 2008","favourites_count":110,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4164,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1291200178553327619\/BcPSjP2-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1291200178553327619\/BcPSjP2-_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 09:48:45 +0000 2019","id":1185855361833689088,"id_str":"1185855361833689088","full_text":"Boarded + and heading to Las Vegas!!! We will see you for breakfast @jachutchinson and + we will see you this evening @AnnaRoseLeach :) #devlearn #aect19 https:\/\/t.co\/dyg8oxmqQE","truncated":false,"display_text_range":[0,149],"entities":{"hashtags":[{"text":"devlearn","indices":[132,141]},{"text":"aect19","indices":[142,149]}],"symbols":[],"user_mentions":[{"screen_name":"jachutchinson","name":"Jac + Hutchinson","id":14799068,"id_str":"14799068","indices":[66,80]},{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[114,128]}],"urls":[],"media":[{"id":1185855356406325248,"id_str":"1185855356406325248","indices":[150,173],"media_url":"http:\/\/pbs.twimg.com\/media\/EHUBKemX4AAZpdo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHUBKemX4AAZpdo.jpg","url":"https:\/\/t.co\/dyg8oxmqQE","display_url":"pic.twitter.com\/dyg8oxmqQE","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1185855361833689088\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185855356406325248,"id_str":"1185855356406325248","indices":[150,173],"media_url":"http:\/\/pbs.twimg.com\/media\/EHUBKemX4AAZpdo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHUBKemX4AAZpdo.jpg","url":"https:\/\/t.co\/dyg8oxmqQE","display_url":"pic.twitter.com\/dyg8oxmqQE","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1185855361833689088\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":35,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 20 14:22:57 +0000 2019","id":1185924366682353664,"id_str":"1185924366682353664","full_text":"I\u2019m + looking forward to seeing y\u2019all in Vegas!\n#aect19inspired https:\/\/t.co\/oeNrd9iBLG","truncated":false,"display_text_range":[0,61],"entities":{"hashtags":[{"text":"aect19inspired","indices":[46,61]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1185924361640792065,"id_str":"1185924361640792065","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/EHU_7HIU0AEfDL7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHU_7HIU0AEfDL7.jpg","url":"https:\/\/t.co\/oeNrd9iBLG","display_url":"pic.twitter.com\/oeNrd9iBLG","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1185924366682353664\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185924361640792065,"id_str":"1185924361640792065","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/EHU_7HIU0AEfDL7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHU_7HIU0AEfDL7.jpg","url":"https:\/\/t.co\/oeNrd9iBLG","display_url":"pic.twitter.com\/oeNrd9iBLG","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1185924366682353664\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.1280771],[-115.083699,36.1280771],[-115.083699,36.144748],[-115.173994,36.144748]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 19 16:46:04 +0000 2019","id":1185597998354579456,"id_str":"1185597998354579456","full_text":"RT + @dctrcurry: How long until @michaelmgrant and I see you at #aect19inspired?\n\nTwo + days, Deuce. Two days . . . \n\n@AECT https:\/\/t.co\/Re5cxd\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[62,77]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[3,13]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[30,44]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[114,119]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1088189033266798598,"id_str":"1088189033266798598","name":"AECT + Division of Distance Learning","screen_name":"aectddl","location":"","description":"The + Division of Distance Learning is a special interest group of the Association + for Educational Communications and Technology (AECT).","url":"https:\/\/t.co\/Rg9uXQTkSM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Rg9uXQTkSM","expanded_url":"https:\/\/aect.org\/ddl.php","display_url":"aect.org\/ddl.php","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":861,"friends_count":482,"listed_count":6,"created_at":"Wed + Jan 23 21:37:37 +0000 2019","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088189033266798598\/1548280679","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 15:14:10 +0000 2019","id":1185574871738150917,"id_str":"1185574871738150917","full_text":"How + long until @michaelmgrant and I see you at #aect19inspired?\n\nTwo days, Deuce. + Two days . . . \n\n@AECT https:\/\/t.co\/Re5cxda33q","truncated":false,"display_text_range":[0,104],"entities":{"hashtags":[{"text":"aect19inspired","indices":[47,62]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[15,29]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[99,104]}],"urls":[],"media":[{"id":1185574869154455555,"id_str":"1185574869154455555","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQCD-KU4AMM1a9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQCD-KU4AMM1a9.jpg","url":"https:\/\/t.co\/Re5cxda33q","display_url":"pic.twitter.com\/Re5cxda33q","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1185574871738150917\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":474,"h":261,"resize":"fit"},"small":{"w":474,"h":261,"resize":"fit"},"medium":{"w":474,"h":261,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185574869154455555,"id_str":"1185574869154455555","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQCD-KU4AMM1a9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQCD-KU4AMM1a9.jpg","url":"https:\/\/t.co\/Re5cxda33q","display_url":"pic.twitter.com\/Re5cxda33q","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1185574871738150917\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":474,"h":261,"resize":"fit"},"small":{"w":474,"h":261,"resize":"fit"},"medium":{"w":474,"h":261,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 12:58:48 +0000 2019","id":1185903190719582209,"id_str":"1185903190719582209","full_text":"RT + @KuiXieOSU: Look forward to the upcoming #aect19 conference in Las Vegas. + I am honored to serve as a keynote for the Society of Internat\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[44,51]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 20:22:55 +0000 2019","id":1185652568833298435,"id_str":"1185652568833298435","full_text":"Look + forward to the upcoming #aect19 conference in Las Vegas. I am honored to serve + as a keynote for the Society of International Chinese in Educational Technology + @SICET I will share some of our #TranslationalResearch from @DLResearchLab + @OSUehe #edtech \nhttps:\/\/t.co\/hceoPsTINv","truncated":false,"display_text_range":[0,279],"entities":{"hashtags":[{"text":"aect19","indices":[29,36]},{"text":"TranslationalResearch","indices":[196,218]},{"text":"edtech","indices":[247,254]}],"symbols":[],"user_mentions":[{"screen_name":"SICET","name":"SICET","id":114832274,"id_str":"114832274","indices":[164,170]},{"screen_name":"DLResearchLab","name":"Digital + Learning Lab","id":866326285999591426,"id_str":"866326285999591426","indices":[224,238]},{"screen_name":"OSUehe","name":"Ohio + State Education and Human Ecology","id":48771513,"id_str":"48771513","indices":[239,246]}],"urls":[{"url":"https:\/\/t.co\/hceoPsTINv","expanded_url":"https:\/\/sicet.org\/main\/conventions\/aect-sicet-2019-convention\/","display_url":"sicet.org\/main\/conventio\u2026","indices":[256,279]}]},"source":"\u003ca + href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter + for Mac\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 22:39:22 +0000 2019","id":1186049296304693250,"id_str":"1186049296304693250","full_text":"For + folks attending #aect19 this week, check out our panel on #CollaborativeResearch + on Tuesday morning. I will join @ge_xun @amy_c_bradshaw @fake_reeves @christieliuidtr + and others to share our experience in collaborative research from proposal + to implementation. #aect19inspired https:\/\/t.co\/mYhbxXJGFj","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"aect19","indices":[20,27]},{"text":"CollaborativeResearch","indices":[62,84]},{"text":"aect19inspired","indices":[265,280]}],"symbols":[],"user_mentions":[{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[117,124]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[125,140]}],"urls":[],"media":[{"id":1186049289006538753,"id_str":"1186049289006538753","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","url":"https:\/\/t.co\/mYhbxXJGFj","display_url":"pic.twitter.com\/mYhbxXJGFj","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186049296304693250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186049289006538753,"id_str":"1186049289006538753","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","url":"https:\/\/t.co\/mYhbxXJGFj","display_url":"pic.twitter.com\/mYhbxXJGFj","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186049296304693250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter + for Mac\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 19 17:24:29 +0000 2019","id":1185607666078572545,"id_str":"1185607666078572545","full_text":"Looking + forward to presenting with colleagues, mentors, and friends #aect19 @tutaleni + @srogidd @KuiXieOSU @ge_xun @fake_reeves @michaelmgrant @Happy_Tao @ChihHsiungTu + @barblockee @amy_c_bradshaw \ud835\uddd7\ud835\uddf2\ud835\uddf2\ud835\uddfd\ud835\uddee\ud835\uddf8 + \ud835\udde6\ud835\ude02\ud835\uddef\ud835\uddff\ud835\uddee\ud835\uddfa\ud835\uddfc\ud835\uddfb\ud835\ude06, + \ud835\udde0\ud835\uddf6\ud835\uddff\ud835\uddf6\ud835\uddee\ud835\uddfa \ud835\udddf\ud835\uddee\ud835\uddff\ud835\ude00\ud835\uddfc\ud835\uddfb + and many others, & learn","truncated":false,"display_text_range":[0,255],"entities":{"hashtags":[{"text":"aect19","indices":[68,75]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[76,85]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[86,94]},{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[106,113]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[127,141]},{"screen_name":"Happy_Tao","name":"Hengtao + Tang","id":482227724,"id_str":"482227724","indices":[142,152]},{"screen_name":"barblockee","name":"Barbara + Lockee","id":208230436,"id_str":"208230436","indices":[167,178]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[179,194]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 17:38:05 +0000 2019","id":1185611088752238592,"id_str":"1185611088752238592","full_text":"RT + @christieliuidtr: Collaborations @aectclt #aect19inspired #aect19 @AECT w\/ + @nicolapallitt \ud835\udddb\ud835\uddee\ud835\uddfb\ud835\uddfb\ud835\uddee\ud835\uddf5 + \ud835\uddda\ud835\uddff\ud835\uddfc\ud835\ude00\ud835\ude00\ud835\uddfa\ud835\uddee\ud835\uddfb, + @AmyLomellini_ID \ud835\uddd4\ud835\uddf9\ud835\uddf6\ud835\uddf0\ud835\uddf2,\ud835\uddd5\ud835\uddf2\ud835\uddf0\ud835\uddfc\ud835\uddf9\ud835\uddee\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[45,60]},{"text":"aect19","indices":[61,68]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[36,44]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[69,74]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[78,92]},{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[110,126]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 17:37:25 +0000 2019","id":1185610918253776896,"id_str":"1185610918253776896","full_text":"Collaborations + @aectclt #aect19inspired #aect19 @AECT w\/ @nicolapallitt \ud835\udddb\ud835\uddee\ud835\uddfb\ud835\uddfb\ud835\uddee\ud835\uddf5 + \ud835\uddda\ud835\uddff\ud835\uddfc\ud835\ude00\ud835\ude00\ud835\uddfa\ud835\uddee\ud835\uddfb, + @AmyLomellini_ID \ud835\uddd4\ud835\uddf9\ud835\uddf6\ud835\uddf0\ud835\uddf2,\ud835\uddd5\ud835\uddf2\ud835\uddf0\ud835\uddfc\ud835\uddf9\ud835\uddee,\ud835\udde7\ud835\uddf6\ud835\uddee,\ud835\udde0\ud835\uddfa\ud835\uddee\ud835\uddef\ud835\uddee\ud835\uddf9\ud835\uddf2\ud835\uddf1\ud835\uddf6,\ud835\udddf\ud835\uddf2\ud835\uddee\ud835\uddf5,\ud835\udde1\ud835\uddf2\ud835\uddf6\ud835\uddf9,\ud835\uddfc\ud835\uddf9\ud835\ude02\ud835\ude04\ud835\uddee\ud835\ude00\ud835\uddf2\ud835\uddf3\ud835\ude02\ud835\uddfb\ud835\uddfa\ud835\uddf6,\ud835\udde1\ud835\uddfc\ud835\uddfa\ud835\uddfd\ud835\uddf6\ud835\uddf9\ud835\uddfc10\/23,11am + & 4pm. Safe travels @emergeAfrica friends! https:\/\/t.co\/Unp2OoqT6b","truncated":false,"display_text_range":[0,220],"entities":{"hashtags":[{"text":"aect19inspired","indices":[24,39]},{"text":"aect19","indices":[40,47]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[15,23]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[48,53]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[57,71]},{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[89,105]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[198,211]}],"urls":[],"media":[{"id":1185610914269151235,"id_str":"1185610914269151235","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"large":{"w":707,"h":393,"resize":"fit"},"medium":{"w":707,"h":393,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185610914269151235,"id_str":"1185610914269151235","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"large":{"w":707,"h":393,"resize":"fit"},"medium":{"w":707,"h":393,"resize":"fit"}},"ext_alt_text":null},{"id":1185610914281725953,"id_str":"1185610914281725953","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2EuWoAELmy-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2EuWoAELmy-.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":683,"h":381,"resize":"fit"},"large":{"w":683,"h":381,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 14:07:45 +0000 2019","id":1185920543641325568,"id_str":"1185920543641325568","full_text":"On + our way to #aect19 #inspiredme #LasVegas https:\/\/t.co\/g6kDWQanGL","truncated":false,"display_text_range":[0,43],"entities":{"hashtags":[{"text":"aect19","indices":[14,21]},{"text":"inspiredme","indices":[22,33]},{"text":"LasVegas","indices":[34,43]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1185920537488347136,"id_str":"1185920537488347136","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/EHU8chDVUAAGDVL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHU8chDVUAAGDVL.jpg","url":"https:\/\/t.co\/g6kDWQanGL","display_url":"pic.twitter.com\/g6kDWQanGL","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1185920543641325568\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185920537488347136,"id_str":"1185920537488347136","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/EHU8chDVUAAGDVL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHU8chDVUAAGDVL.jpg","url":"https:\/\/t.co\/g6kDWQanGL","display_url":"pic.twitter.com\/g6kDWQanGL","expanded_url":"https:\/\/twitter.com\/jeroen69\/status\/1185920543641325568\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6848632,"id_str":"6848632","name":"Jeroen","screen_name":"jeroen69","location":"Boise, + ID","description":"Instructional designer, presenter, and author","url":"https:\/\/t.co\/GEkiKnWbiX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GEkiKnWbiX","expanded_url":"http:\/\/jeroenbreman.com","display_url":"jeroenbreman.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":378,"friends_count":379,"listed_count":7,"created_at":"Sat + Jun 16 07:10:38 +0000 2007","favourites_count":2847,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1537,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326278851819810816\/m2LbPv-0_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 20 13:06:11 +0000 2019","id":1185905050880749573,"id_str":"1185905050880749573","full_text":"It''s + that time! \ud83d\ude0d #AECT19 #inspiredme https:\/\/t.co\/uJVzNrzXFt https:\/\/t.co\/rgF7RIx8kP","truncated":false,"display_text_range":[0,62],"entities":{"hashtags":[{"text":"AECT19","indices":[19,26]},{"text":"inspiredme","indices":[27,38]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/uJVzNrzXFt","expanded_url":"http:\/\/bit.ly\/32wsqqh","display_url":"bit.ly\/32wsqqh","indices":[39,62]}],"media":[{"id":1185905049668591616,"id_str":"1185905049668591616","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/EHUuXAbWoAA_Bcm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHUuXAbWoAA_Bcm.jpg","url":"https:\/\/t.co\/rgF7RIx8kP","display_url":"pic.twitter.com\/rgF7RIx8kP","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1185905050880749573\/photo\/1","type":"photo","sizes":{"small":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":640,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185905049668591616,"id_str":"1185905049668591616","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/EHUuXAbWoAA_Bcm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHUuXAbWoAA_Bcm.jpg","url":"https:\/\/t.co\/rgF7RIx8kP","display_url":"pic.twitter.com\/rgF7RIx8kP","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1185905050880749573\/photo\/1","type":"photo","sizes":{"small":{"w":640,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":640,"h":640,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 04:44:50 +0000 2019","id":1186141267211640832,"id_str":"1186141267211640832","full_text":"RT + @srogidd: #aect19 https:\/\/t.co\/jNK2701Zii","truncated":false,"display_text_range":[0,44],"entities":{"hashtags":[{"text":"aect19","indices":[13,20]}],"symbols":[],"user_mentions":[{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[3,11]}],"urls":[],"media":[{"id":1186119827665997825,"id_str":"1186119827665997825","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","url":"https:\/\/t.co\/jNK2701Zii","display_url":"pic.twitter.com\/jNK2701Zii","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1186119831617077248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1186119831617077248,"source_status_id_str":"1186119831617077248","source_user_id":28836047,"source_user_id_str":"28836047"}]},"extended_entities":{"media":[{"id":1186119827665997825,"id_str":"1186119827665997825","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","url":"https:\/\/t.co\/jNK2701Zii","display_url":"pic.twitter.com\/jNK2701Zii","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1186119831617077248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1186119831617077248,"source_status_id_str":"1186119831617077248","source_user_id":28836047,"source_user_id_str":"28836047","ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 03:19:39 +0000 2019","id":1186119831617077248,"id_str":"1186119831617077248","full_text":"#aect19 + https:\/\/t.co\/jNK2701Zii","truncated":false,"display_text_range":[0,7],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186119827665997825,"id_str":"1186119827665997825","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","url":"https:\/\/t.co\/jNK2701Zii","display_url":"pic.twitter.com\/jNK2701Zii","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1186119831617077248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186119827665997825,"id_str":"1186119827665997825","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","url":"https:\/\/t.co\/jNK2701Zii","display_url":"pic.twitter.com\/jNK2701Zii","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1186119831617077248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28836047,"id_str":"28836047","name":"Sylvia + Rogers","screen_name":"srogidd","location":"Auburn, AL","description":"PhD + in Instructional Design, I work as an Instructional Designer and Consultant + for Scholarship of Teaching and Learning at the Harrison School of Pharmacy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":550,"friends_count":1089,"listed_count":18,"created_at":"Sat + Apr 04 17:47:27 +0000 2009","favourites_count":12191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2400,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28836047\/1439418186","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Sun + Oct 20 18:15:20 +0000 2019","id":1185982851407171584,"id_str":"1185982851407171584","full_text":"It\u2019s + time for a reunion! #westbound #lasvegas #academiclife #aect19 https:\/\/t.co\/a1eqwdpYFT","truncated":false,"display_text_range":[0,91],"entities":{"hashtags":[{"text":"westbound","indices":[25,35]},{"text":"lasvegas","indices":[36,45]},{"text":"academiclife","indices":[46,59]},{"text":"aect19","indices":[60,67]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/a1eqwdpYFT","expanded_url":"https:\/\/www.instagram.com\/p\/B32Ya6klUXhL-Szi4PIuDMqRhGAgdztG_UwA6A0\/?igshid=1dz90wdl6au8j","display_url":"instagram.com\/p\/B32Ya6klUXhL\u2026","indices":[68,91]}]},"source":"\u003ca + href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1601019379,"id_str":"1601019379","name":"Yin-Chan + (Janet) Liao","screen_name":"janetliao33","location":"Atlanta, GA","description":"Assistant + Professor at Georgia State University | K-12 Computing Education, Teacher + Preparation & Development, Tech Integration","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":614,"listed_count":55,"created_at":"Wed + Jul 17 13:45:52 +0000 2013","favourites_count":706,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":952,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E0ECF8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/907351602339627008\/manV5xaw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/907351602339627008\/manV5xaw_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 20 20:48:30 +0000 2019","id":1186021395844751362,"id_str":"1186021395844751362","full_text":"RT + @LF_Hampton: Technology might not be the best solution, especially as students + get older. Check out implications... too much independenc\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"LF_Hampton","name":"Lindsey + Hampton","id":743784287024087040,"id_str":"743784287024087040","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":44679243,"id_str":"44679243","name":"Learning-Focused","screen_name":"LearningFocused","location":"Marion, + NC","description":"The Learning-Focused Instructional Framework connects the + \u201ceducation dots\u201d so you can focus on what matters most \u2014 helping + every student be successful!","url":"https:\/\/t.co\/X9q3qd4X6M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/X9q3qd4X6M","expanded_url":"https:\/\/learningfocused.com\/accelerating-learning\/","display_url":"learningfocused.com\/accelerating-l\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1138,"friends_count":1232,"listed_count":29,"created_at":"Thu + Jun 04 18:16:42 +0000 2009","favourites_count":595,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1256,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"62AEB1","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1138475411904577536\/a69LdxqR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1138475411904577536\/a69LdxqR_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/44679243\/1648736559","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"171A19","profile_sidebar_fill_color":"7AEFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 20 15:24:31 +0000 2019","id":1185939862928711680,"id_str":"1185939862928711680","full_text":"Technology + might not be the best solution, especially as students get older. Check out + implications... too much independence may negate positive impact of using + tech. #aect19 #edchat @LearningFocused https:\/\/t.co\/iNqeax0RhG","truncated":false,"display_text_range":[0,199],"entities":{"hashtags":[{"text":"aect19","indices":[167,174]},{"text":"edchat","indices":[175,182]}],"symbols":[],"user_mentions":[{"screen_name":"LearningFocused","name":"Learning-Focused","id":44679243,"id_str":"44679243","indices":[183,199]}],"urls":[{"url":"https:\/\/t.co\/iNqeax0RhG","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1185585902699106315","display_url":"twitter.com\/hampthephd\/sta\u2026","indices":[200,223]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":743784287024087040,"id_str":"743784287024087040","name":"Lindsey + Hampton","screen_name":"LF_Hampton","location":"Ocala, FL","description":"Chief + Academic Officer of LEARNING-FOCUSED. Obsessed with exemplary practices and + helping schools connect the instructional dots! #withLF","url":"https:\/\/t.co\/PYvm0PVz02","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/PYvm0PVz02","expanded_url":"http:\/\/learningfocused.com","display_url":"learningfocused.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":235,"friends_count":392,"listed_count":1,"created_at":"Fri + Jun 17 12:36:07 +0000 2016","favourites_count":908,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":555,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1141874670398050309\/MlUYgJJw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1141874670398050309\/MlUYgJJw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/743784287024087040\/1517936193","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1185585902699106315,"quoted_status_id_str":"1185585902699106315","quoted_status_permalink":{"url":"https:\/\/t.co\/iNqeax0RhG","expanded":"https:\/\/twitter.com\/hampthephd\/status\/1185585902699106315","display":"twitter.com\/hampthephd\/sta\u2026"},"quoted_status":{"created_at":"Sat + Oct 19 15:58:00 +0000 2019","id":1185585902699106315,"id_str":"1185585902699106315","full_text":"Excited + to announce our poster for \"K-12 Students'' Conceptions of Learning with + Technology: A Drawing Analysis\" \ud83d\udcbb\u270f\ufe0f\ud83d\udcdc is finished! + Shout out to my team for all their hard work! Come see us at 4 pm on Tuesday! + #AECT19 @AECT https:\/\/t.co\/PlzabmW8s5","truncated":false,"display_text_range":[0,221],"entities":{"hashtags":[{"text":"AECT19","indices":[208,215]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[216,221]}],"urls":[],"media":[{"id":1185585896474722309,"id_str":"1185585896474722309","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","url":"https:\/\/t.co\/PlzabmW8s5","display_url":"pic.twitter.com\/PlzabmW8s5","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1185585902699106315\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":511,"resize":"fit"},"large":{"w":2048,"h":1539,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185585896474722309,"id_str":"1185585896474722309","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","url":"https:\/\/t.co\/PlzabmW8s5","display_url":"pic.twitter.com\/PlzabmW8s5","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1185585902699106315\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":511,"resize":"fit"},"large":{"w":2048,"h":1539,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1185585902699106315,"quoted_status_id_str":"1185585902699106315","quoted_status_permalink":{"url":"https:\/\/t.co\/iNqeax0RhG","expanded":"https:\/\/twitter.com\/hampthephd\/status\/1185585902699106315","display":"twitter.com\/hampthephd\/sta\u2026"},"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 19:11:03 +0000 2019","id":1185996870109319171,"id_str":"1185996870109319171","full_text":"RT + @dctrcurry: #aect19inspired @michaelmgrant @AECT https:\/\/t.co\/dLkrIa4ekX","truncated":false,"display_text_range":[0,75],"entities":{"hashtags":[{"text":"aect19inspired","indices":[15,30]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[3,13]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[31,45]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[46,51]}],"urls":[],"media":[{"id":1185917225921728513,"id_str":"1185917225921728513","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/EHU5bwgU0AEe1gu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHU5bwgU0AEe1gu.jpg","url":"https:\/\/t.co\/dLkrIa4ekX","display_url":"pic.twitter.com\/dLkrIa4ekX","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1185917232787755009\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":356,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":628,"resize":"fit"},"medium":{"w":1200,"h":628,"resize":"fit"}},"source_status_id":1185917232787755009,"source_status_id_str":"1185917232787755009","source_user_id":14116271,"source_user_id_str":"14116271"}]},"extended_entities":{"media":[{"id":1185917225921728513,"id_str":"1185917225921728513","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/EHU5bwgU0AEe1gu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHU5bwgU0AEe1gu.jpg","url":"https:\/\/t.co\/dLkrIa4ekX","display_url":"pic.twitter.com\/dLkrIa4ekX","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1185917232787755009\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":356,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":628,"resize":"fit"},"medium":{"w":1200,"h":628,"resize":"fit"}},"source_status_id":1185917232787755009,"source_status_id_str":"1185917232787755009","source_user_id":14116271,"source_user_id_str":"14116271","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 20 13:54:36 +0000 2019","id":1185917232787755009,"id_str":"1185917232787755009","full_text":"#aect19inspired + @michaelmgrant @AECT https:\/\/t.co\/dLkrIa4ekX","truncated":false,"display_text_range":[0,36],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[16,30]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[31,36]}],"urls":[],"media":[{"id":1185917225921728513,"id_str":"1185917225921728513","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EHU5bwgU0AEe1gu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHU5bwgU0AEe1gu.jpg","url":"https:\/\/t.co\/dLkrIa4ekX","display_url":"pic.twitter.com\/dLkrIa4ekX","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1185917232787755009\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":356,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":628,"resize":"fit"},"medium":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185917225921728513,"id_str":"1185917225921728513","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EHU5bwgU0AEe1gu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHU5bwgU0AEe1gu.jpg","url":"https:\/\/t.co\/dLkrIa4ekX","display_url":"pic.twitter.com\/dLkrIa4ekX","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1185917232787755009\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":356,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":628,"resize":"fit"},"medium":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Sun + Oct 20 16:08:00 +0000 2019","id":1185950803892137985,"id_str":"1185950803892137985","full_text":"See + you Tuesday and Wednesday @aect! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/DVqcQsMoVc","truncated":false,"display_text_range":[0,69],"entities":{"hashtags":[{"text":"AECT19","indices":[46,53]},{"text":"AECT19inspired","indices":[54,69]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[30,35]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[37,45]}],"urls":[],"media":[{"id":1185704317887508480,"id_str":"1185704317887508480","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR3y4RU8AADVRA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR3y4RU8AADVRA.jpg","url":"https:\/\/t.co\/DVqcQsMoVc","display_url":"pic.twitter.com\/DVqcQsMoVc","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185950803892137985\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185704317887508480,"id_str":"1185704317887508480","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR3y4RU8AADVRA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR3y4RU8AADVRA.jpg","url":"https:\/\/t.co\/DVqcQsMoVc","display_url":"pic.twitter.com\/DVqcQsMoVc","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185950803892137985\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 20 21:25:32 +0000 2019","id":1186030716385030144,"id_str":"1186030716385030144","full_text":"RT + @DrVirtuality: Looking for @AECT sessions to attend? Come explore #virtualityculturetheory. + @gsa_aect @aectclt #AECT19 #AECT19inspired h\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"virtualityculturetheory","indices":[69,93]},{"text":"AECT19","indices":[114,121]},{"text":"AECT19inspired","indices":[122,137]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[30,35]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[95,104]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[105,113]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 06:59:13 +0000 2019","id":1185450309503479809,"id_str":"1185450309503479809","full_text":"Looking + for @AECT sessions to attend? Come explore #virtualityculturetheory. @gsa_aect + @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/f4HD9B9rCa","truncated":false,"display_text_range":[0,119],"entities":{"hashtags":[{"text":"virtualityculturetheory","indices":[51,75]},{"text":"AECT19","indices":[96,103]},{"text":"AECT19inspired","indices":[104,119]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[12,17]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[77,86]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[87,95]}],"urls":[],"media":[{"id":1185450304646471680,"id_str":"1185450304646471680","indices":[120,143],"media_url":"http:\/\/pbs.twimg.com\/media\/EHOQxXNU4AAxUUE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHOQxXNU4AAxUUE.jpg","url":"https:\/\/t.co\/f4HD9B9rCa","display_url":"pic.twitter.com\/f4HD9B9rCa","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185450309503479809\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185450304646471680,"id_str":"1185450304646471680","indices":[120,143],"media_url":"http:\/\/pbs.twimg.com\/media\/EHOQxXNU4AAxUUE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHOQxXNU4AAxUUE.jpg","url":"https:\/\/t.co\/f4HD9B9rCa","display_url":"pic.twitter.com\/f4HD9B9rCa","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185450309503479809\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 21:32:05 +0000 2019","id":1186032363903565830,"id_str":"1186032363903565830","full_text":"RT + @DrTerriC: Kind of impressed that @AECT conference planners @michaelmgrant + John Curry are going to great lengths to make All attendees\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[3,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[37,42]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[64,78]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910574724748644353,"id_str":"910574724748644353","name":"Amy + Lomellini","screen_name":"AmyLomellini_ID","location":"New York, USA","description":"Associate + Director of Blended & Online Learning and doctoral candidate with a passion + for accessible and inclusive online teaching and learning. #EdTech #A11y","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":644,"friends_count":1061,"listed_count":9,"created_at":"Wed + Sep 20 18:41:46 +0000 2017","favourites_count":7378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1141,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910574724748644353\/1551624059","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 20 14:21:08 +0000 2019","id":1185923911772528641,"id_str":"1185923911772528641","full_text":"Kind + of impressed that @AECT conference planners @michaelmgrant John Curry are + going to great lengths to make All attendees feel supported. #aect19 #aect19inspired + each day includes a quiet room. https:\/\/t.co\/VlQg9lffmk","truncated":false,"display_text_range":[0,196],"entities":{"hashtags":[{"text":"aect19","indices":[141,148]},{"text":"aect19inspired","indices":[149,164]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[23,28]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[50,64]}],"urls":[],"media":[{"id":1185923906491863041,"id_str":"1185923906491863041","indices":[197,220],"media_url":"http:\/\/pbs.twimg.com\/media\/EHU_gnkXUAEk5fN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHU_gnkXUAEk5fN.jpg","url":"https:\/\/t.co\/VlQg9lffmk","display_url":"pic.twitter.com\/VlQg9lffmk","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1185923911772528641\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":554,"h":1200,"resize":"fit"},"large":{"w":828,"h":1792,"resize":"fit"},"small":{"w":314,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185923906491863041,"id_str":"1185923906491863041","indices":[197,220],"media_url":"http:\/\/pbs.twimg.com\/media\/EHU_gnkXUAEk5fN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHU_gnkXUAEk5fN.jpg","url":"https:\/\/t.co\/VlQg9lffmk","display_url":"pic.twitter.com\/VlQg9lffmk","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1185923911772528641\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":554,"h":1200,"resize":"fit"},"large":{"w":828,"h":1792,"resize":"fit"},"small":{"w":314,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"27de1a6e27075587","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/27de1a6e27075587.json","place_type":"city","name":"Norman","full_name":"Norman, + OK","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-97.51982,35.15327],[-97.370527,35.15327],[-97.370527,35.291332],[-97.51982,35.291332]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 13:54:36 +0000 2019","id":1185917232787755009,"id_str":"1185917232787755009","full_text":"#aect19inspired + @michaelmgrant @AECT https:\/\/t.co\/dLkrIa4ekX","truncated":false,"display_text_range":[0,36],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[16,30]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[31,36]}],"urls":[],"media":[{"id":1185917225921728513,"id_str":"1185917225921728513","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EHU5bwgU0AEe1gu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHU5bwgU0AEe1gu.jpg","url":"https:\/\/t.co\/dLkrIa4ekX","display_url":"pic.twitter.com\/dLkrIa4ekX","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1185917232787755009\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":356,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":628,"resize":"fit"},"medium":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185917225921728513,"id_str":"1185917225921728513","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EHU5bwgU0AEe1gu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHU5bwgU0AEe1gu.jpg","url":"https:\/\/t.co\/dLkrIa4ekX","display_url":"pic.twitter.com\/dLkrIa4ekX","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1185917232787755009\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":356,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":628,"resize":"fit"},"medium":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Sat + Oct 19 20:38:41 +0000 2019","id":1185656538012278784,"id_str":"1185656538012278784","full_text":"RT + @christieliuidtr: Looking forward to presenting with colleagues, mentors, + and friends #aect19 @tutaleni @srogidd @KuiXieOSU @ge_xun @fak\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[89,96]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[97,106]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[107,115]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 17:24:29 +0000 2019","id":1185607666078572545,"id_str":"1185607666078572545","full_text":"Looking + forward to presenting with colleagues, mentors, and friends #aect19 @tutaleni + @srogidd @KuiXieOSU @ge_xun @fake_reeves @michaelmgrant @Happy_Tao @ChihHsiungTu + @barblockee @amy_c_bradshaw \ud835\uddd7\ud835\uddf2\ud835\uddf2\ud835\uddfd\ud835\uddee\ud835\uddf8 + \ud835\udde6\ud835\ude02\ud835\uddef\ud835\uddff\ud835\uddee\ud835\uddfa\ud835\uddfc\ud835\uddfb\ud835\ude06, + \ud835\udde0\ud835\uddf6\ud835\uddff\ud835\uddf6\ud835\uddee\ud835\uddfa \ud835\udddf\ud835\uddee\ud835\uddff\ud835\ude00\ud835\uddfc\ud835\uddfb + and many others, & learn","truncated":false,"display_text_range":[0,255],"entities":{"hashtags":[{"text":"aect19","indices":[68,75]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[76,85]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[86,94]},{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[106,113]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[127,141]},{"screen_name":"Happy_Tao","name":"Hengtao + Tang","id":482227724,"id_str":"482227724","indices":[142,152]},{"screen_name":"barblockee","name":"Barbara + Lockee","id":208230436,"id_str":"208230436","indices":[167,178]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[179,194]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 12:58:00 +0000 2019","id":1185902988088492032,"id_str":"1185902988088492032","full_text":"Safe + travels everyone! The convention starts tomorrow! If you haven''t yet, download + the #AECT19 app to help you manage your conference schedule:\n\n\ud83c\udf4e- + https:\/\/t.co\/wGmQg29rRb \n\u25b6\ufe0f- https:\/\/t.co\/DBp8L89r9E https:\/\/t.co\/UhaAypI8It","truncated":false,"display_text_range":[0,201],"entities":{"hashtags":[{"text":"AECT19","indices":[88,95]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wGmQg29rRb","expanded_url":"http:\/\/bit.ly\/AECTapple","display_url":"bit.ly\/AECTapple","indices":[149,172]},{"url":"https:\/\/t.co\/DBp8L89r9E","expanded_url":"http:\/\/bit.ly\/AECTandroid","display_url":"bit.ly\/AECTandroid","indices":[178,201]}],"media":[{"id":1185902978047324162,"id_str":"1185902978047324162","indices":[202,225],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185902978047324162\/pu\/img\/2-JGkyLhp9G__fz8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185902978047324162\/pu\/img\/2-JGkyLhp9G__fz8.jpg","url":"https:\/\/t.co\/UhaAypI8It","display_url":"pic.twitter.com\/UhaAypI8It","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1185902988088492032\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":336,"resize":"fit"},"medium":{"w":640,"h":336,"resize":"fit"},"large":{"w":640,"h":336,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185902978047324162,"id_str":"1185902978047324162","indices":[202,225],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185902978047324162\/pu\/img\/2-JGkyLhp9G__fz8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185902978047324162\/pu\/img\/2-JGkyLhp9G__fz8.jpg","url":"https:\/\/t.co\/UhaAypI8It","display_url":"pic.twitter.com\/UhaAypI8It","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1185902988088492032\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":336,"resize":"fit"},"medium":{"w":640,"h":336,"resize":"fit"},"large":{"w":640,"h":336,"resize":"fit"}},"video_info":{"aspect_ratio":[40,21],"duration_millis":3700,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185902978047324162\/pu\/vid\/514x270\/eXjI_Vjncv8Hc-Ef.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185902978047324162\/pu\/vid\/640x336\/QLUJPMXwg_0BNVQf.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185902978047324162\/pu\/pl\/mJ67-9G0iY63s7r1.m3u8?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 01:09:27 +0000 2019","id":1186087066234306560,"id_str":"1186087066234306560","full_text":"Planet + Hollywood preview!\n#aect19inspired https:\/\/t.co\/ByqKxaWY4L","truncated":false,"display_text_range":[0,41],"entities":{"hashtags":[{"text":"aect19inspired","indices":[26,41]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186087048735707137,"id_str":"1186087048735707137","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EHXT4vyVUAEJTxf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHXT4vyVUAEJTxf.jpg","url":"https:\/\/t.co\/ByqKxaWY4L","display_url":"pic.twitter.com\/ByqKxaWY4L","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186087066234306560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186087048735707137,"id_str":"1186087048735707137","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EHXT4vyVUAEJTxf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHXT4vyVUAEJTxf.jpg","url":"https:\/\/t.co\/ByqKxaWY4L","display_url":"pic.twitter.com\/ByqKxaWY4L","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186087066234306560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186087048777613312,"id_str":"1186087048777613312","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EHXT4v8UwAAm39q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHXT4v8UwAAm39q.jpg","url":"https:\/\/t.co\/ByqKxaWY4L","display_url":"pic.twitter.com\/ByqKxaWY4L","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186087066234306560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1186087048739844096,"id_str":"1186087048739844096","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EHXT4vzUcAAoouR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHXT4vzUcAAoouR.jpg","url":"https:\/\/t.co\/ByqKxaWY4L","display_url":"pic.twitter.com\/ByqKxaWY4L","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186087066234306560\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186087048777621504,"id_str":"1186087048777621504","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/EHXT4v8U4AAaVNI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHXT4v8U4AAaVNI.jpg","url":"https:\/\/t.co\/ByqKxaWY4L","display_url":"pic.twitter.com\/ByqKxaWY4L","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1186087066234306560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"8fa6d7a33b83ef26","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8fa6d7a33b83ef26.json","place_type":"city","name":"Paradise","full_name":"Paradise, + NV","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-115.2092535,35.984784],[-115.0610763,35.984784],[-115.0610763,36.137145],[-115.2092535,36.137145]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 20 15:24:31 +0000 2019","id":1185939862928711680,"id_str":"1185939862928711680","full_text":"Technology + might not be the best solution, especially as students get older. Check out + implications... too much independence may negate positive impact of using + tech. #aect19 #edchat @LearningFocused https:\/\/t.co\/iNqeax0RhG","truncated":false,"display_text_range":[0,199],"entities":{"hashtags":[{"text":"aect19","indices":[167,174]},{"text":"edchat","indices":[175,182]}],"symbols":[],"user_mentions":[{"screen_name":"LearningFocused","name":"Learning-Focused","id":44679243,"id_str":"44679243","indices":[183,199]}],"urls":[{"url":"https:\/\/t.co\/iNqeax0RhG","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1185585902699106315","display_url":"twitter.com\/hampthephd\/sta\u2026","indices":[200,223]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":743784287024087040,"id_str":"743784287024087040","name":"Lindsey + Hampton","screen_name":"LF_Hampton","location":"Ocala, FL","description":"Chief + Academic Officer of LEARNING-FOCUSED. Obsessed with exemplary practices and + helping schools connect the instructional dots! #withLF","url":"https:\/\/t.co\/PYvm0PVz02","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/PYvm0PVz02","expanded_url":"http:\/\/learningfocused.com","display_url":"learningfocused.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":235,"friends_count":392,"listed_count":1,"created_at":"Fri + Jun 17 12:36:07 +0000 2016","favourites_count":908,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":555,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1141874670398050309\/MlUYgJJw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1141874670398050309\/MlUYgJJw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/743784287024087040\/1517936193","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1185585902699106315,"quoted_status_id_str":"1185585902699106315","quoted_status_permalink":{"url":"https:\/\/t.co\/iNqeax0RhG","expanded":"https:\/\/twitter.com\/hampthephd\/status\/1185585902699106315","display":"twitter.com\/hampthephd\/sta\u2026"},"quoted_status":{"created_at":"Sat + Oct 19 15:58:00 +0000 2019","id":1185585902699106315,"id_str":"1185585902699106315","full_text":"Excited + to announce our poster for \"K-12 Students'' Conceptions of Learning with + Technology: A Drawing Analysis\" \ud83d\udcbb\u270f\ufe0f\ud83d\udcdc is finished! + Shout out to my team for all their hard work! Come see us at 4 pm on Tuesday! + #AECT19 @AECT https:\/\/t.co\/PlzabmW8s5","truncated":false,"display_text_range":[0,221],"entities":{"hashtags":[{"text":"AECT19","indices":[208,215]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[216,221]}],"urls":[],"media":[{"id":1185585896474722309,"id_str":"1185585896474722309","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","url":"https:\/\/t.co\/PlzabmW8s5","display_url":"pic.twitter.com\/PlzabmW8s5","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1185585902699106315\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":511,"resize":"fit"},"large":{"w":2048,"h":1539,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185585896474722309,"id_str":"1185585896474722309","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","url":"https:\/\/t.co\/PlzabmW8s5","display_url":"pic.twitter.com\/PlzabmW8s5","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1185585902699106315\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":511,"resize":"fit"},"large":{"w":2048,"h":1539,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 19 22:49:31 +0000 2019","id":1185689462086520832,"id_str":"1185689462086520832","full_text":"RT + @TAmankwatia: @aectdddivision @aectddl #aect19 #onlinelearning Time to give + back and help lift those ready to exercise their leadership\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"aect19","indices":[42,49]},{"text":"onlinelearning","indices":[50,65]}],"symbols":[],"user_mentions":[{"screen_name":"TAmankwatia","name":"Tonya + Amankwatia","id":25068789,"id_str":"25068789","indices":[3,15]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[17,32]},{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[33,41]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 22:19:55 +0000 2019","id":1185682013145182209,"id_str":"1185682013145182209","full_text":"@aectdddivision + @aectddl #aect19 #onlinelearning Time to give back and help lift those ready + to exercise their leadership skills! https:\/\/t.co\/7I1t9xNAWl","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[{"text":"aect19","indices":[25,32]},{"text":"onlinelearning","indices":[33,48]}],"symbols":[],"user_mentions":[{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[0,15]},{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[16,24]}],"urls":[],"media":[{"id":1185682005037596673,"id_str":"1185682005037596673","indices":[130,153],"media_url":"http:\/\/pbs.twimg.com\/media\/EHRjgGbWwAEMVSW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHRjgGbWwAEMVSW.png","url":"https:\/\/t.co\/7I1t9xNAWl","display_url":"pic.twitter.com\/7I1t9xNAWl","expanded_url":"https:\/\/twitter.com\/TAmankwatia\/status\/1185682013145182209\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1185682005037596673,"id_str":"1185682005037596673","indices":[130,153],"media_url":"http:\/\/pbs.twimg.com\/media\/EHRjgGbWwAEMVSW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHRjgGbWwAEMVSW.png","url":"https:\/\/t.co\/7I1t9xNAWl","display_url":"pic.twitter.com\/7I1t9xNAWl","expanded_url":"https:\/\/twitter.com\/TAmankwatia\/status\/1185682013145182209\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2647362354,"in_reply_to_user_id_str":"2647362354","in_reply_to_screen_name":"aectdddivision","user":{"id":25068789,"id_str":"25068789","name":"Tonya + Amankwatia","screen_name":"TAmankwatia","location":"Greensboro, NC","description":"North + Carolina A&T Assistant Vice Provost-Extended Campus. I evaluate programs, + design models for accessible, supportive online instruction & lifelong learning.","url":"https:\/\/t.co\/JWw4AAXsRF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JWw4AAXsRF","expanded_url":"https:\/\/www.linkedin.com\/in\/tonyalehigh\/","display_url":"linkedin.com\/in\/tonyalehigh\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":339,"friends_count":346,"listed_count":33,"created_at":"Wed + Mar 18 13:10:23 +0000 2009","favourites_count":1300,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1840,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E8CFA9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1185683022684790785\/fBnwhav1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1185683022684790785\/fBnwhav1_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"CC3366","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 22:42:59 +0000 2019","id":1185687818594484224,"id_str":"1185687818594484224","full_text":"RT + @steph_moore: Can''t wait to see everyone @AECT! \n#AECT19inspired","truncated":false,"display_text_range":[0,67],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[52,67]}],"symbols":[],"user_mentions":[{"screen_name":"steph_moore","name":"stephanie + moore","id":15636128,"id_str":"15636128","indices":[3,15]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[44,49]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 17:27:47 +0000 2019","id":1185608495539904512,"id_str":"1185608495539904512","full_text":"Can''t + wait to see everyone @AECT! \n#AECT19inspired","truncated":false,"display_text_range":[0,50],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[35,50]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15636128,"id_str":"15636128","name":"stephanie + moore","screen_name":"steph_moore","location":"New Mexico Baby!","description":"Online + learning. Ethics & design. Tea. Bourbon. Chocolate. Leaning into metamodern. + Editor in Chief of @JCHEResearch she\/her, Author: SEL at a Distance","url":"https:\/\/t.co\/zwm2yMkODU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zwm2yMkODU","expanded_url":"https:\/\/wwnorton.com\/books\/9781324016571","display_url":"wwnorton.com\/books\/97813240\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3098,"friends_count":1316,"listed_count":54,"created_at":"Mon + Jul 28 19:10:00 +0000 2008","favourites_count":18809,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13765,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15636128\/1656742799","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 04:40:00 +0000 2019","id":1186140050842701825,"id_str":"1186140050842701825","full_text":"Who + is going to @aect this week?! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/r0mduFYJo1","truncated":false,"display_text_range":[0,66],"entities":{"hashtags":[{"text":"AECT19","indices":[43,50]},{"text":"AECT19inspired","indices":[51,66]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[16,21]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[34,42]}],"urls":[],"media":[{"id":1185706742052605952,"id_str":"1185706742052605952","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5_-_U0AAbQgn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5_-_U0AAbQgn.jpg","url":"https:\/\/t.co\/r0mduFYJo1","display_url":"pic.twitter.com\/r0mduFYJo1","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186140050842701825\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185706742052605952,"id_str":"1185706742052605952","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5_-_U0AAbQgn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5_-_U0AAbQgn.jpg","url":"https:\/\/t.co\/r0mduFYJo1","display_url":"pic.twitter.com\/r0mduFYJo1","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186140050842701825\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 19 20:38:01 +0000 2019","id":1185656368633696256,"id_str":"1185656368633696256","full_text":"RT + @steph_moore: Can''t wait to see everyone @AECT! \n#AECT19inspired","truncated":false,"display_text_range":[0,67],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[52,67]}],"symbols":[],"user_mentions":[{"screen_name":"steph_moore","name":"stephanie + moore","id":15636128,"id_str":"15636128","indices":[3,15]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[44,49]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 17:27:47 +0000 2019","id":1185608495539904512,"id_str":"1185608495539904512","full_text":"Can''t + wait to see everyone @AECT! \n#AECT19inspired","truncated":false,"display_text_range":[0,50],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[35,50]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15636128,"id_str":"15636128","name":"stephanie + moore","screen_name":"steph_moore","location":"New Mexico Baby!","description":"Online + learning. Ethics & design. Tea. Bourbon. Chocolate. Leaning into metamodern. + Editor in Chief of @JCHEResearch she\/her, Author: SEL at a Distance","url":"https:\/\/t.co\/zwm2yMkODU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zwm2yMkODU","expanded_url":"https:\/\/wwnorton.com\/books\/9781324016571","display_url":"wwnorton.com\/books\/97813240\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3098,"friends_count":1316,"listed_count":54,"created_at":"Mon + Jul 28 19:10:00 +0000 2008","favourites_count":18809,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13765,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15636128\/1656742799","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 19:10:41 +0000 2019","id":1185996779080343552,"id_str":"1185996779080343552","full_text":"RT + @DrTerriC: Kind of impressed that @AECT conference planners @michaelmgrant + John Curry are going to great lengths to make All attendees\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrTerriC","name":"Dr + Theresa Cullen","id":466078904,"id_str":"466078904","indices":[3,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[37,42]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[64,78]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 20 14:21:08 +0000 2019","id":1185923911772528641,"id_str":"1185923911772528641","full_text":"Kind + of impressed that @AECT conference planners @michaelmgrant John Curry are + going to great lengths to make All attendees feel supported. #aect19 #aect19inspired + each day includes a quiet room. https:\/\/t.co\/VlQg9lffmk","truncated":false,"display_text_range":[0,196],"entities":{"hashtags":[{"text":"aect19","indices":[141,148]},{"text":"aect19inspired","indices":[149,164]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[23,28]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[50,64]}],"urls":[],"media":[{"id":1185923906491863041,"id_str":"1185923906491863041","indices":[197,220],"media_url":"http:\/\/pbs.twimg.com\/media\/EHU_gnkXUAEk5fN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHU_gnkXUAEk5fN.jpg","url":"https:\/\/t.co\/VlQg9lffmk","display_url":"pic.twitter.com\/VlQg9lffmk","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1185923911772528641\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":554,"h":1200,"resize":"fit"},"large":{"w":828,"h":1792,"resize":"fit"},"small":{"w":314,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185923906491863041,"id_str":"1185923906491863041","indices":[197,220],"media_url":"http:\/\/pbs.twimg.com\/media\/EHU_gnkXUAEk5fN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHU_gnkXUAEk5fN.jpg","url":"https:\/\/t.co\/VlQg9lffmk","display_url":"pic.twitter.com\/VlQg9lffmk","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1185923911772528641\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":554,"h":1200,"resize":"fit"},"large":{"w":828,"h":1792,"resize":"fit"},"small":{"w":314,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"27de1a6e27075587","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/27de1a6e27075587.json","place_type":"city","name":"Norman","full_name":"Norman, + OK","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-97.51982,35.15327],[-97.370527,35.15327],[-97.370527,35.291332],[-97.51982,35.291332]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 23:00:42 +0000 2019","id":1186054663482691584,"id_str":"1186054663482691584","full_text":"On + the road to #aect19 passing through Utah https:\/\/t.co\/bn9hSlT1mg","truncated":false,"display_text_range":[0,43],"entities":{"hashtags":[{"text":"aect19","indices":[15,22]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186054542711853057,"id_str":"1186054542711853057","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/EHW2UpaUEAEMj1m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHW2UpaUEAEMj1m.jpg","url":"https:\/\/t.co\/bn9hSlT1mg","display_url":"pic.twitter.com\/bn9hSlT1mg","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1186054663482691584\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186054542711853057,"id_str":"1186054542711853057","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/EHW2UpaUEAEMj1m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHW2UpaUEAEMj1m.jpg","url":"https:\/\/t.co\/bn9hSlT1mg","display_url":"pic.twitter.com\/bn9hSlT1mg","expanded_url":"https:\/\/twitter.com\/kzenovka\/status\/1186054663482691584\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14994538,"id_str":"14994538","name":"Kzenovka","screen_name":"kzenovka","location":"Metaverse","description":"educator, + coolhunter, and sometimes puppetmaster. Metagame Book Club, Games & Sim Network + and Inevitable Instructors","url":"https:\/\/t.co\/SN1thrlVqD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SN1thrlVqD","expanded_url":"https:\/\/sites.google.com\/site\/metagamebookclub\/","display_url":"sites.google.com\/site\/metagameb\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1338,"friends_count":3152,"listed_count":228,"created_at":"Tue + Jun 03 16:35:29 +0000 2008","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15007,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14994538\/1436550079","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 01:17:08 +0000 2019","id":1186088999292669955,"id_str":"1186088999292669955","full_text":"RT + @AnnaRoseLeach: To those of you that hire instructional designers, what are + you looking for in a candidate? @caranorth11 @dr_tracy_s @c\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[3,17]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[112,124]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":238192284,"id_str":"238192284","name":"Alan + Natachu","screen_name":"Natachu","location":"Madison, WI","description":"Geek + of the Following: Apple, LnD, Ed Tech, Presentations, Video, Storytelling. + Has a MacGyver-like tech intellect. Opinions are my own. Pronouns: He \/ + Him","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":961,"friends_count":1009,"listed_count":39,"created_at":"Fri + Jan 14 15:47:17 +0000 2011","favourites_count":16806,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10238,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1186516273397678080\/bjdxGrgh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186516273397678080\/bjdxGrgh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/238192284\/1556220424","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 13:25:29 +0000 2019","id":1185185132522524672,"id_str":"1185185132522524672","full_text":"To + those of you that hire instructional designers, what are you looking for in + a candidate? @caranorth11 @dr_tracy_s @correia65 and I are presenting at + #aect19inspired (an academic conference) about what we think ID graduates + need to be ready for the real world.","truncated":false,"display_text_range":[0,263],"entities":{"hashtags":[{"text":"aect19inspired","indices":[153,168]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[93,105]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[118,128]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"013379ee5729a5e6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/013379ee5729a5e6.json","place_type":"city","name":"Tucson","full_name":"Tucson, + AZ","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-111.083219,32.057802],[-110.747928,32.057802],[-110.747928,32.320979],[-111.083219,32.320979]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":28,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 02:03:28 +0000 2019","id":1186100660233592832,"id_str":"1186100660233592832","full_text":"Looking + forward to seeing y\u2019all #aect19","truncated":false,"display_text_range":[0,39],"entities":{"hashtags":[{"text":"aect19","indices":[32,39]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":11,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 17:44:01 +0000 2019","id":1185612579122667520,"id_str":"1185612579122667520","full_text":"RT + @christieliuidtr: Collaborations @aectclt #aect19inspired #aect19 @AECT w\/ + @nicolapallitt \ud835\udddb\ud835\uddee\ud835\uddfb\ud835\uddfb\ud835\uddee\ud835\uddf5 + \ud835\uddda\ud835\uddff\ud835\uddfc\ud835\ude00\ud835\ude00\ud835\uddfa\ud835\uddee\ud835\uddfb, + @AmyLomellini_ID \ud835\uddd4\ud835\uddf9\ud835\uddf6\ud835\uddf0\ud835\uddf2,\ud835\uddd5\ud835\uddf2\ud835\uddf0\ud835\uddfc\ud835\uddf9\ud835\uddee\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[45,60]},{"text":"aect19","indices":[61,68]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[36,44]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[69,74]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[78,92]},{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[110,126]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":123168263,"id_str":"123168263","name":"Irene + Maweu \ud83c\udf3b\ud83c\udf3b","screen_name":"wavinya66","location":"Kenya","description":"By + Faith \/ With Respect \/ Facilitating from the heart \/ Liberating Structures + Gospel \/ IAF Member","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":762,"friends_count":772,"listed_count":9,"created_at":"Mon + Mar 15 06:31:31 +0000 2010","favourites_count":10218,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5795,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123168263\/1610274071","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 17:37:25 +0000 2019","id":1185610918253776896,"id_str":"1185610918253776896","full_text":"Collaborations + @aectclt #aect19inspired #aect19 @AECT w\/ @nicolapallitt \ud835\udddb\ud835\uddee\ud835\uddfb\ud835\uddfb\ud835\uddee\ud835\uddf5 + \ud835\uddda\ud835\uddff\ud835\uddfc\ud835\ude00\ud835\ude00\ud835\uddfa\ud835\uddee\ud835\uddfb, + @AmyLomellini_ID \ud835\uddd4\ud835\uddf9\ud835\uddf6\ud835\uddf0\ud835\uddf2,\ud835\uddd5\ud835\uddf2\ud835\uddf0\ud835\uddfc\ud835\uddf9\ud835\uddee,\ud835\udde7\ud835\uddf6\ud835\uddee,\ud835\udde0\ud835\uddfa\ud835\uddee\ud835\uddef\ud835\uddee\ud835\uddf9\ud835\uddf2\ud835\uddf1\ud835\uddf6,\ud835\udddf\ud835\uddf2\ud835\uddee\ud835\uddf5,\ud835\udde1\ud835\uddf2\ud835\uddf6\ud835\uddf9,\ud835\uddfc\ud835\uddf9\ud835\ude02\ud835\ude04\ud835\uddee\ud835\ude00\ud835\uddf2\ud835\uddf3\ud835\ude02\ud835\uddfb\ud835\uddfa\ud835\uddf6,\ud835\udde1\ud835\uddfc\ud835\uddfa\ud835\uddfd\ud835\uddf6\ud835\uddf9\ud835\uddfc10\/23,11am + & 4pm. Safe travels @emergeAfrica friends! https:\/\/t.co\/Unp2OoqT6b","truncated":false,"display_text_range":[0,220],"entities":{"hashtags":[{"text":"aect19inspired","indices":[24,39]},{"text":"aect19","indices":[40,47]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[15,23]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[48,53]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[57,71]},{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[89,105]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[198,211]}],"urls":[],"media":[{"id":1185610914269151235,"id_str":"1185610914269151235","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"large":{"w":707,"h":393,"resize":"fit"},"medium":{"w":707,"h":393,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185610914269151235,"id_str":"1185610914269151235","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"large":{"w":707,"h":393,"resize":"fit"},"medium":{"w":707,"h":393,"resize":"fit"}},"ext_alt_text":null},{"id":1185610914281725953,"id_str":"1185610914281725953","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2EuWoAELmy-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2EuWoAELmy-.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":683,"h":381,"resize":"fit"},"large":{"w":683,"h":381,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 16:43:51 +0000 2019","id":1185597440977711104,"id_str":"1185597440977711104","full_text":"Bummed + to have to miss #AECT19. I will enjoy experiencing it vicariously, so please + tweet often!","truncated":false,"display_text_range":[0,96],"entities":{"hashtags":[{"text":"AECT19","indices":[23,30]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":320387643,"id_str":"320387643","name":"Dr. + Kathy Essmiller","screen_name":"KathyEssmiller","location":"Oklahoma","description":"Mom, + musician, educator, sort of librarian","url":"https:\/\/t.co\/6uygOVDnDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6uygOVDnDF","expanded_url":"http:\/\/musicmatters405.com","display_url":"musicmatters405.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":645,"friends_count":842,"listed_count":21,"created_at":"Sun + Jun 19 20:33:57 +0000 2011","favourites_count":10037,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5018,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/814963827653701632\/XdD0JU60_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/814963827653701632\/XdD0JU60_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/320387643\/1483137494","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 04:12:53 +0000 2019","id":1186133229222285313,"id_str":"1186133229222285313","full_text":"RT + @KuiXieOSU: For folks attending #aect19 this week, check out our panel on + #CollaborativeResearch on Tuesday morning. I will join @ge_xun\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[35,42]},{"text":"CollaborativeResearch","indices":[77,99]}],"symbols":[],"user_mentions":[{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[132,139]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 20 22:39:22 +0000 2019","id":1186049296304693250,"id_str":"1186049296304693250","full_text":"For + folks attending #aect19 this week, check out our panel on #CollaborativeResearch + on Tuesday morning. I will join @ge_xun @amy_c_bradshaw @fake_reeves @christieliuidtr + and others to share our experience in collaborative research from proposal + to implementation. #aect19inspired https:\/\/t.co\/mYhbxXJGFj","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"aect19","indices":[20,27]},{"text":"CollaborativeResearch","indices":[62,84]},{"text":"aect19inspired","indices":[265,280]}],"symbols":[],"user_mentions":[{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[117,124]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[125,140]}],"urls":[],"media":[{"id":1186049289006538753,"id_str":"1186049289006538753","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","url":"https:\/\/t.co\/mYhbxXJGFj","display_url":"pic.twitter.com\/mYhbxXJGFj","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186049296304693250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186049289006538753,"id_str":"1186049289006538753","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","url":"https:\/\/t.co\/mYhbxXJGFj","display_url":"pic.twitter.com\/mYhbxXJGFj","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186049296304693250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter + for Mac\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 21:05:52 +0000 2019","id":1186025767613845504,"id_str":"1186025767613845504","full_text":"RT + @DrVirtuality: Who is going to @aect this week?! @aectclt #AECT19 #AECT19inspired + https:\/\/t.co\/kYVTLloXQw","truncated":false,"display_text_range":[0,108],"entities":{"hashtags":[{"text":"AECT19","indices":[61,68]},{"text":"AECT19inspired","indices":[69,84]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[34,39]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[52,60]}],"urls":[],"media":[{"id":1185706404994146305,"id_str":"1185706404994146305","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5sXWU4AE8uu5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5sXWU4AE8uu5.jpg","url":"https:\/\/t.co\/kYVTLloXQw","display_url":"pic.twitter.com\/kYVTLloXQw","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185786722816331781\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"source_status_id":1185786722816331781,"source_status_id_str":"1185786722816331781","source_user_id":15667548,"source_user_id_str":"15667548"}]},"extended_entities":{"media":[{"id":1185706404994146305,"id_str":"1185706404994146305","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5sXWU4AE8uu5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5sXWU4AE8uu5.jpg","url":"https:\/\/t.co\/kYVTLloXQw","display_url":"pic.twitter.com\/kYVTLloXQw","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185786722816331781\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"source_status_id":1185786722816331781,"source_status_id_str":"1185786722816331781","source_user_id":15667548,"source_user_id_str":"15667548","ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1173601704010559490,"id_str":"1173601704010559490","name":"Kiaira + Burek","screen_name":"MissKBurek","location":"","description":"Early Childhood + Education Major at Edinboro University \ud83c\udf4e","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":41,"listed_count":2,"created_at":"Mon + Sep 16 14:17:48 +0000 2019","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":43,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1186028415255633920\/f5uERmxv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1186028415255633920\/f5uERmxv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1173601704010559490\/1568644785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 20 05:16:00 +0000 2019","id":1185786722816331781,"id_str":"1185786722816331781","full_text":"Who + is going to @aect this week?! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/kYVTLloXQw","truncated":false,"display_text_range":[0,66],"entities":{"hashtags":[{"text":"AECT19","indices":[43,50]},{"text":"AECT19inspired","indices":[51,66]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[16,21]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[34,42]}],"urls":[],"media":[{"id":1185706404994146305,"id_str":"1185706404994146305","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5sXWU4AE8uu5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5sXWU4AE8uu5.jpg","url":"https:\/\/t.co\/kYVTLloXQw","display_url":"pic.twitter.com\/kYVTLloXQw","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185786722816331781\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185706404994146305,"id_str":"1185706404994146305","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5sXWU4AE8uu5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5sXWU4AE8uu5.jpg","url":"https:\/\/t.co\/kYVTLloXQw","display_url":"pic.twitter.com\/kYVTLloXQw","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185786722816331781\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 00:39:00 +0000 2019","id":1186079401210834944,"id_str":"1186079401210834944","full_text":"Looking + for @AECT sessions to attend? Come explore virtuality culture theory. @gsa_aect + @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/MgNYz2t9yW","truncated":false,"display_text_range":[0,120],"entities":{"hashtags":[{"text":"AECT19","indices":[97,104]},{"text":"AECT19inspired","indices":[105,120]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[12,17]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[78,87]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[88,96]}],"urls":[],"media":[{"id":1185380101036359680,"id_str":"1185380101036359680","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/EHNQ6-YWwAAOmPb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHNQ6-YWwAAOmPb.jpg","url":"https:\/\/t.co\/MgNYz2t9yW","display_url":"pic.twitter.com\/MgNYz2t9yW","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186079401210834944\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185380101036359680,"id_str":"1185380101036359680","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/EHNQ6-YWwAAOmPb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHNQ6-YWwAAOmPb.jpg","url":"https:\/\/t.co\/MgNYz2t9yW","display_url":"pic.twitter.com\/MgNYz2t9yW","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186079401210834944\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 19 16:30:24 +0000 2019","id":1185594053058015233,"id_str":"1185594053058015233","full_text":"RT + @dctrcurry: How long until @michaelmgrant and I see you at #aect19inspired?\n\nTwo + days, Deuce. Two days . . . \n\n@AECT https:\/\/t.co\/Re5cxd\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[62,77]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[3,13]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[30,44]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[114,119]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 15:14:10 +0000 2019","id":1185574871738150917,"id_str":"1185574871738150917","full_text":"How + long until @michaelmgrant and I see you at #aect19inspired?\n\nTwo days, Deuce. + Two days . . . \n\n@AECT https:\/\/t.co\/Re5cxda33q","truncated":false,"display_text_range":[0,104],"entities":{"hashtags":[{"text":"aect19inspired","indices":[47,62]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[15,29]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[99,104]}],"urls":[],"media":[{"id":1185574869154455555,"id_str":"1185574869154455555","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQCD-KU4AMM1a9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQCD-KU4AMM1a9.jpg","url":"https:\/\/t.co\/Re5cxda33q","display_url":"pic.twitter.com\/Re5cxda33q","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1185574871738150917\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":474,"h":261,"resize":"fit"},"small":{"w":474,"h":261,"resize":"fit"},"medium":{"w":474,"h":261,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185574869154455555,"id_str":"1185574869154455555","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQCD-KU4AMM1a9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQCD-KU4AMM1a9.jpg","url":"https:\/\/t.co\/Re5cxda33q","display_url":"pic.twitter.com\/Re5cxda33q","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1185574871738150917\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":474,"h":261,"resize":"fit"},"small":{"w":474,"h":261,"resize":"fit"},"medium":{"w":474,"h":261,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 21:23:32 +0000 2019","id":1186030212930330625,"id_str":"1186030212930330625","full_text":"RT + @AECT: Safe travels everyone! The convention starts tomorrow! If you haven''t + yet, download the #AECT19 app to help you manage your confe\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[98,105]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1098051352645623808,"id_str":"1098051352645623808","name":"Fan + XU \u8bb8\u5e06","screen_name":"FanXU92073425","location":"Columbus, Ohio","description":"Ph.D. + candidate of Learning Technologies @OhioState @OSUehe Graduate Research Assistant + @OSUcete Member of Research Group @LEDresearch","url":"https:\/\/t.co\/wYY2xiYHsc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/wYY2xiYHsc","expanded_url":"https:\/\/fanxuspace.webnode.page","display_url":"fanxuspace.webnode.page","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":158,"friends_count":302,"listed_count":0,"created_at":"Wed + Feb 20 02:46:58 +0000 2019","favourites_count":391,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":109,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1489296055430696974\/xC9fMoIm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1098051352645623808\/1646758591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 20 12:58:00 +0000 2019","id":1185902988088492032,"id_str":"1185902988088492032","full_text":"Safe + travels everyone! The convention starts tomorrow! If you haven''t yet, download + the #AECT19 app to help you manage your conference schedule:\n\n\ud83c\udf4e- + https:\/\/t.co\/wGmQg29rRb \n\u25b6\ufe0f- https:\/\/t.co\/DBp8L89r9E https:\/\/t.co\/UhaAypI8It","truncated":false,"display_text_range":[0,201],"entities":{"hashtags":[{"text":"AECT19","indices":[88,95]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wGmQg29rRb","expanded_url":"http:\/\/bit.ly\/AECTapple","display_url":"bit.ly\/AECTapple","indices":[149,172]},{"url":"https:\/\/t.co\/DBp8L89r9E","expanded_url":"http:\/\/bit.ly\/AECTandroid","display_url":"bit.ly\/AECTandroid","indices":[178,201]}],"media":[{"id":1185902978047324162,"id_str":"1185902978047324162","indices":[202,225],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185902978047324162\/pu\/img\/2-JGkyLhp9G__fz8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185902978047324162\/pu\/img\/2-JGkyLhp9G__fz8.jpg","url":"https:\/\/t.co\/UhaAypI8It","display_url":"pic.twitter.com\/UhaAypI8It","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1185902988088492032\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":336,"resize":"fit"},"medium":{"w":640,"h":336,"resize":"fit"},"large":{"w":640,"h":336,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185902978047324162,"id_str":"1185902978047324162","indices":[202,225],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185902978047324162\/pu\/img\/2-JGkyLhp9G__fz8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185902978047324162\/pu\/img\/2-JGkyLhp9G__fz8.jpg","url":"https:\/\/t.co\/UhaAypI8It","display_url":"pic.twitter.com\/UhaAypI8It","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1185902988088492032\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":336,"resize":"fit"},"medium":{"w":640,"h":336,"resize":"fit"},"large":{"w":640,"h":336,"resize":"fit"}},"video_info":{"aspect_ratio":[40,21],"duration_millis":3700,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185902978047324162\/pu\/vid\/514x270\/eXjI_Vjncv8Hc-Ef.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185902978047324162\/pu\/vid\/640x336\/QLUJPMXwg_0BNVQf.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185902978047324162\/pu\/pl\/mJ67-9G0iY63s7r1.m3u8?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 04:22:03 +0000 2019","id":1186135535095447552,"id_str":"1186135535095447552","full_text":"RT + @srogidd: #aect19 https:\/\/t.co\/jNK2701Zii","truncated":false,"display_text_range":[0,44],"entities":{"hashtags":[{"text":"aect19","indices":[13,20]}],"symbols":[],"user_mentions":[{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[3,11]}],"urls":[],"media":[{"id":1186119827665997825,"id_str":"1186119827665997825","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","url":"https:\/\/t.co\/jNK2701Zii","display_url":"pic.twitter.com\/jNK2701Zii","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1186119831617077248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1186119831617077248,"source_status_id_str":"1186119831617077248","source_user_id":28836047,"source_user_id_str":"28836047"}]},"extended_entities":{"media":[{"id":1186119827665997825,"id_str":"1186119827665997825","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","url":"https:\/\/t.co\/jNK2701Zii","display_url":"pic.twitter.com\/jNK2701Zii","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1186119831617077248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1186119831617077248,"source_status_id_str":"1186119831617077248","source_user_id":28836047,"source_user_id_str":"28836047","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 03:19:39 +0000 2019","id":1186119831617077248,"id_str":"1186119831617077248","full_text":"#aect19 + https:\/\/t.co\/jNK2701Zii","truncated":false,"display_text_range":[0,7],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186119827665997825,"id_str":"1186119827665997825","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","url":"https:\/\/t.co\/jNK2701Zii","display_url":"pic.twitter.com\/jNK2701Zii","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1186119831617077248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186119827665997825,"id_str":"1186119827665997825","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHXxsu0UUAEZqA_.jpg","url":"https:\/\/t.co\/jNK2701Zii","display_url":"pic.twitter.com\/jNK2701Zii","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1186119831617077248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28836047,"id_str":"28836047","name":"Sylvia + Rogers","screen_name":"srogidd","location":"Auburn, AL","description":"PhD + in Instructional Design, I work as an Instructional Designer and Consultant + for Scholarship of Teaching and Learning at the Harrison School of Pharmacy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":550,"friends_count":1089,"listed_count":18,"created_at":"Sat + Apr 04 17:47:27 +0000 2009","favourites_count":12191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2400,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28836047\/1439418186","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Sat + Oct 19 17:27:47 +0000 2019","id":1185608495539904512,"id_str":"1185608495539904512","full_text":"Can''t + wait to see everyone @AECT! \n#AECT19inspired","truncated":false,"display_text_range":[0,50],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[35,50]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15636128,"id_str":"15636128","name":"stephanie + moore","screen_name":"steph_moore","location":"New Mexico Baby!","description":"Online + learning. Ethics & design. Tea. Bourbon. Chocolate. Leaning into metamodern. + Editor in Chief of @JCHEResearch she\/her, Author: SEL at a Distance","url":"https:\/\/t.co\/zwm2yMkODU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zwm2yMkODU","expanded_url":"https:\/\/wwnorton.com\/books\/9781324016571","display_url":"wwnorton.com\/books\/97813240\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3098,"friends_count":1316,"listed_count":54,"created_at":"Mon + Jul 28 19:10:00 +0000 2008","favourites_count":18809,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13765,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15636128\/1656742799","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":13,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 00:01:01 +0000 2019","id":1185707457286262784,"id_str":"1185707457286262784","full_text":"RT + @AECT: Have you downloaded\/updated the #AECT19 app yet? Get it today! See + tips below.\n\n\ud83c\udf4e- https:\/\/t.co\/wGmQg29rRb \n\u25b6\ufe0f- https:\/\/t.co\/DBp8\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[42,49]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[{"url":"https:\/\/t.co\/wGmQg29rRb","expanded_url":"http:\/\/bit.ly\/AECTapple","display_url":"bit.ly\/AECTapple","indices":[93,116]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 17 14:44:23 +0000 2019","id":1184842599632461825,"id_str":"1184842599632461825","full_text":"Have + you downloaded\/updated the #AECT19 app yet? Get it today! See tips below.\n\n\ud83c\udf4e- + https:\/\/t.co\/wGmQg29rRb \n\u25b6\ufe0f- https:\/\/t.co\/DBp8L89r9E https:\/\/t.co\/wajTROJsld","truncated":false,"display_text_range":[0,135],"entities":{"hashtags":[{"text":"AECT19","indices":[32,39]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wGmQg29rRb","expanded_url":"http:\/\/bit.ly\/AECTapple","display_url":"bit.ly\/AECTapple","indices":[83,106]},{"url":"https:\/\/t.co\/DBp8L89r9E","expanded_url":"http:\/\/bit.ly\/AECTandroid","display_url":"bit.ly\/AECTandroid","indices":[112,135]},{"url":"https:\/\/t.co\/wajTROJsld","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1184829702235545600","display_url":"twitter.com\/michaelmgrant\/\u2026","indices":[136,159]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1184829702235545600,"quoted_status_id_str":"1184829702235545600","quoted_status_permalink":{"url":"https:\/\/t.co\/wajTROJsld","expanded":"https:\/\/twitter.com\/michaelmgrant\/status\/1184829702235545600","display":"twitter.com\/michaelmgrant\/\u2026"},"quoted_status":{"created_at":"Thu + Oct 17 13:53:08 +0000 2019","id":1184829702235545600,"id_str":"1184829702235545600","full_text":"@AECT + friends, a little job aid to share to help get you ready.\n#aect19inspired + https:\/\/t.co\/YIYDZbqUsM","truncated":false,"display_text_range":[0,79],"entities":{"hashtags":[{"text":"aect19inspired","indices":[64,79]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]}],"urls":[],"media":[{"id":1184829621272866816,"id_str":"1184829621272866816","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/EHFcQ1dUcAA9rQ0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHFcQ1dUcAA9rQ0.jpg","url":"https:\/\/t.co\/YIYDZbqUsM","display_url":"pic.twitter.com\/YIYDZbqUsM","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1184829702235545600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184829621272866816,"id_str":"1184829621272866816","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/EHFcQ1dUcAA9rQ0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHFcQ1dUcAA9rQ0.jpg","url":"https:\/\/t.co\/YIYDZbqUsM","display_url":"pic.twitter.com\/YIYDZbqUsM","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1184829702235545600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1184829702235545600,"quoted_status_id_str":"1184829702235545600","quoted_status_permalink":{"url":"https:\/\/t.co\/wajTROJsld","expanded":"https:\/\/twitter.com\/michaelmgrant\/status\/1184829702235545600","display":"twitter.com\/michaelmgrant\/\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 20 12:57:24 +0000 2019","id":1185902841149493250,"id_str":"1185902841149493250","full_text":"RT + @lpemusicguru: What\u2019s happening in my session @AECT?!? \n\u2728Come get + loose and enjoy Technology Inclusive Music Classrooms! \ud83c\udfb6\ud83c\udfb5 + #AECTech2019\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECTech2019","indices":[127,139]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[49,54]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 20 00:25:21 +0000 2019","id":1185713578998935552,"id_str":"1185713578998935552","full_text":"What\u2019s + happening in my session @AECT?!? \n\u2728Come get loose and enjoy Technology + Inclusive Music Classrooms! \ud83c\udfb6\ud83c\udfb5 #AECTech2019 #aect19 + #technology #music https:\/\/t.co\/Sog4QFMIJL","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[{"text":"AECTech2019","indices":[109,121]},{"text":"aect19","indices":[122,129]},{"text":"technology","indices":[130,141]},{"text":"music","indices":[142,148]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[31,36]}],"urls":[],"media":[{"id":1185713457481551872,"id_str":"1185713457481551872","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185713457481551872\/pu\/img\/v42M3HyY84z_QPpx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185713457481551872\/pu\/img\/v42M3HyY84z_QPpx.jpg","url":"https:\/\/t.co\/Sog4QFMIJL","display_url":"pic.twitter.com\/Sog4QFMIJL","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1185713578998935552\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185713457481551872,"id_str":"1185713457481551872","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185713457481551872\/pu\/img\/v42M3HyY84z_QPpx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185713457481551872\/pu\/img\/v42M3HyY84z_QPpx.jpg","url":"https:\/\/t.co\/Sog4QFMIJL","display_url":"pic.twitter.com\/Sog4QFMIJL","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1185713578998935552\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":5050,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185713457481551872\/pu\/pl\/88AAKwslGEFIp3Y9.m3u8?tag=10"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185713457481551872\/pu\/vid\/320x568\/Qe-wnvuvp4rCYfcp.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185713457481551872\/pu\/vid\/360x640\/IAZzyK-yfWuPC1Jt.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185713457481551872\/pu\/vid\/720x1280\/MA8M5Q_-WbLoZHg7.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":763378325712674818,"id_str":"763378325712674818","name":"Tay + Fess, M.Ed.","screen_name":"Captain_Fess","location":"Naples, FL","description":"Music + Educator l \ud83c\udff3\ufe0f\u200d\ud83c\udf08 l Presenter l UDL l FGCU l + Doctoral Student Ed.D. l EdTech l Disney Geek","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":576,"listed_count":3,"created_at":"Wed + Aug 10 14:15:50 +0000 2016","favourites_count":1730,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":665,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/763378325712674818\/1595378873","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 17:53:06 +0000 2019","id":1185977255941439488,"id_str":"1185977255941439488","full_text":"RT + @caranorth11: Boarded and heading to Las Vegas!!! We will see you for breakfast + @jachutchinson and we will see you this evening @AnnaRos\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]},{"screen_name":"jachutchinson","name":"Jac + Hutchinson","id":14799068,"id_str":"14799068","indices":[83,97]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":724195673143386112,"id_str":"724195673143386112","name":"Ceren + K\ud83d\udc9crkmaz \u2615","screen_name":"lxdify","location":"","description":"Passionate + & creative learning experience designer. Firm believer of humor-based learning. + Emotional design enthusiast \ud83d\udc9c","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":323,"listed_count":23,"created_at":"Sun + Apr 24 11:17:58 +0000 2016","favourites_count":471,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":337,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1278096699857215489\/uMnv-wHh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1278096699857215489\/uMnv-wHh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/724195673143386112\/1461499772","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 20 09:48:45 +0000 2019","id":1185855361833689088,"id_str":"1185855361833689088","full_text":"Boarded + and heading to Las Vegas!!! We will see you for breakfast @jachutchinson and + we will see you this evening @AnnaRoseLeach :) #devlearn #aect19 https:\/\/t.co\/dyg8oxmqQE","truncated":false,"display_text_range":[0,149],"entities":{"hashtags":[{"text":"devlearn","indices":[132,141]},{"text":"aect19","indices":[142,149]}],"symbols":[],"user_mentions":[{"screen_name":"jachutchinson","name":"Jac + Hutchinson","id":14799068,"id_str":"14799068","indices":[66,80]},{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[114,128]}],"urls":[],"media":[{"id":1185855356406325248,"id_str":"1185855356406325248","indices":[150,173],"media_url":"http:\/\/pbs.twimg.com\/media\/EHUBKemX4AAZpdo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHUBKemX4AAZpdo.jpg","url":"https:\/\/t.co\/dyg8oxmqQE","display_url":"pic.twitter.com\/dyg8oxmqQE","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1185855361833689088\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185855356406325248,"id_str":"1185855356406325248","indices":[150,173],"media_url":"http:\/\/pbs.twimg.com\/media\/EHUBKemX4AAZpdo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHUBKemX4AAZpdo.jpg","url":"https:\/\/t.co\/dyg8oxmqQE","display_url":"pic.twitter.com\/dyg8oxmqQE","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1185855361833689088\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":768,"h":1024,"resize":"fit"},"medium":{"w":768,"h":1024,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":35,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 00:25:21 +0000 2019","id":1185713578998935552,"id_str":"1185713578998935552","full_text":"What\u2019s + happening in my session @AECT?!? \n\u2728Come get loose and enjoy Technology + Inclusive Music Classrooms! \ud83c\udfb6\ud83c\udfb5 #AECTech2019 #aect19 + #technology #music https:\/\/t.co\/Sog4QFMIJL","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[{"text":"AECTech2019","indices":[109,121]},{"text":"aect19","indices":[122,129]},{"text":"technology","indices":[130,141]},{"text":"music","indices":[142,148]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[31,36]}],"urls":[],"media":[{"id":1185713457481551872,"id_str":"1185713457481551872","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185713457481551872\/pu\/img\/v42M3HyY84z_QPpx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185713457481551872\/pu\/img\/v42M3HyY84z_QPpx.jpg","url":"https:\/\/t.co\/Sog4QFMIJL","display_url":"pic.twitter.com\/Sog4QFMIJL","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1185713578998935552\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185713457481551872,"id_str":"1185713457481551872","indices":[149,172],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185713457481551872\/pu\/img\/v42M3HyY84z_QPpx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185713457481551872\/pu\/img\/v42M3HyY84z_QPpx.jpg","url":"https:\/\/t.co\/Sog4QFMIJL","display_url":"pic.twitter.com\/Sog4QFMIJL","expanded_url":"https:\/\/twitter.com\/lpemusicguru\/status\/1185713578998935552\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":383,"h":680,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":5050,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185713457481551872\/pu\/pl\/88AAKwslGEFIp3Y9.m3u8?tag=10"},{"bitrate":632000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185713457481551872\/pu\/vid\/320x568\/Qe-wnvuvp4rCYfcp.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185713457481551872\/pu\/vid\/360x640\/IAZzyK-yfWuPC1Jt.mp4?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185713457481551872\/pu\/vid\/720x1280\/MA8M5Q_-WbLoZHg7.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":763378325712674818,"id_str":"763378325712674818","name":"Tay + Fess, M.Ed.","screen_name":"Captain_Fess","location":"Naples, FL","description":"Music + Educator l \ud83c\udff3\ufe0f\u200d\ud83c\udf08 l Presenter l UDL l FGCU l + Doctoral Student Ed.D. l EdTech l Disney Geek","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":294,"friends_count":576,"listed_count":3,"created_at":"Wed + Aug 10 14:15:50 +0000 2016","favourites_count":1730,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":665,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123232516947759105\/oS5Rac0H_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/763378325712674818\/1595378873","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 01:59:56 +0000 2019","id":1186099771213275136,"id_str":"1186099771213275136","full_text":"RT + @KuiXieOSU: For folks attending #aect19 this week, check out our panel on + #CollaborativeResearch on Tuesday morning. I will join @ge_xun\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[35,42]},{"text":"CollaborativeResearch","indices":[77,99]}],"symbols":[],"user_mentions":[{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[132,139]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":866326285999591426,"id_str":"866326285999591426","name":"Digital + Learning Lab","screen_name":"DLResearchLab","location":"Columbus, OH","description":"In + Research Laboratory for Digital Learning, we strive to understand how students + learn and how to design and integrate technology to improve student success.","url":"https:\/\/t.co\/uuHiL3zY6O","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uuHiL3zY6O","expanded_url":"http:\/\/dl.ehe.osu.edu","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":523,"friends_count":211,"listed_count":8,"created_at":"Sun + May 21 16:14:16 +0000 2017","favourites_count":190,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":277,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/866338092130742273\/WzV6Mzgv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/866338092130742273\/WzV6Mzgv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/866326285999591426\/1495384056","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 20 22:39:22 +0000 2019","id":1186049296304693250,"id_str":"1186049296304693250","full_text":"For + folks attending #aect19 this week, check out our panel on #CollaborativeResearch + on Tuesday morning. I will join @ge_xun @amy_c_bradshaw @fake_reeves @christieliuidtr + and others to share our experience in collaborative research from proposal + to implementation. #aect19inspired https:\/\/t.co\/mYhbxXJGFj","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"aect19","indices":[20,27]},{"text":"CollaborativeResearch","indices":[62,84]},{"text":"aect19inspired","indices":[265,280]}],"symbols":[],"user_mentions":[{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[117,124]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[125,140]}],"urls":[],"media":[{"id":1186049289006538753,"id_str":"1186049289006538753","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","url":"https:\/\/t.co\/mYhbxXJGFj","display_url":"pic.twitter.com\/mYhbxXJGFj","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186049296304693250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186049289006538753,"id_str":"1186049289006538753","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","url":"https:\/\/t.co\/mYhbxXJGFj","display_url":"pic.twitter.com\/mYhbxXJGFj","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186049296304693250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter + for Mac\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 05:47:52 +0000 2019","id":1186157131621289984,"id_str":"1186157131621289984","full_text":"RT + @nicolapallitt: I''ll be sharing about @emergeAfrica at @AECT #aect19 #aect19inspired + Join ''A Taste of the International Division'' sessi\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[64,71]},{"text":"aect19inspired","indices":[73,88]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[41,54]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[58,63]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 21 05:22:19 +0000 2019","id":1186150701983879168,"id_str":"1186150701983879168","full_text":"I''ll + be sharing about @emergeAfrica at @AECT #aect19 #aect19inspired Join ''A + Taste of the International Division'' session on Tuesday https:\/\/t.co\/1zFZPHmu7U + or check out these slides https:\/\/t.co\/jf3RZuwayj Also going to be at the + Wednesday BOAF https:\/\/t.co\/I0LOIg397s https:\/\/t.co\/qSDD9xuyVp","truncated":false,"display_text_range":[0,270],"entities":{"hashtags":[{"text":"aect19","indices":[45,52]},{"text":"aect19inspired","indices":[54,69]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[22,35]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[39,44]}],"urls":[{"url":"https:\/\/t.co\/1zFZPHmu7U","expanded_url":"http:\/\/tinyurl.com\/yxtq7qbm","display_url":"tinyurl.com\/yxtq7qbm","indices":[134,157]},{"url":"https:\/\/t.co\/jf3RZuwayj","expanded_url":"http:\/\/bit.ly\/emergeAfrica2019","display_url":"bit.ly\/emergeAfrica20\u2026","indices":[184,207]},{"url":"https:\/\/t.co\/I0LOIg397s","expanded_url":"http:\/\/tinyurl.com\/y68fgpjw","display_url":"tinyurl.com\/y68fgpjw","indices":[247,270]}],"media":[{"id":1186150696137027585,"id_str":"1186150696137027585","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EHYNxg1UcAEikxd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHYNxg1UcAEikxd.jpg","url":"https:\/\/t.co\/qSDD9xuyVp","display_url":"pic.twitter.com\/qSDD9xuyVp","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186150701983879168\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186150696137027585,"id_str":"1186150696137027585","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EHYNxg1UcAEikxd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHYNxg1UcAEikxd.jpg","url":"https:\/\/t.co\/qSDD9xuyVp","display_url":"pic.twitter.com\/qSDD9xuyVp","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186150701983879168\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 14:21:08 +0000 2019","id":1185923911772528641,"id_str":"1185923911772528641","full_text":"Kind + of impressed that @AECT conference planners @michaelmgrant John Curry are + going to great lengths to make All attendees feel supported. #aect19 #aect19inspired + each day includes a quiet room. https:\/\/t.co\/VlQg9lffmk","truncated":false,"display_text_range":[0,196],"entities":{"hashtags":[{"text":"aect19","indices":[141,148]},{"text":"aect19inspired","indices":[149,164]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[23,28]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[50,64]}],"urls":[],"media":[{"id":1185923906491863041,"id_str":"1185923906491863041","indices":[197,220],"media_url":"http:\/\/pbs.twimg.com\/media\/EHU_gnkXUAEk5fN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHU_gnkXUAEk5fN.jpg","url":"https:\/\/t.co\/VlQg9lffmk","display_url":"pic.twitter.com\/VlQg9lffmk","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1185923911772528641\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":554,"h":1200,"resize":"fit"},"large":{"w":828,"h":1792,"resize":"fit"},"small":{"w":314,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185923906491863041,"id_str":"1185923906491863041","indices":[197,220],"media_url":"http:\/\/pbs.twimg.com\/media\/EHU_gnkXUAEk5fN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHU_gnkXUAEk5fN.jpg","url":"https:\/\/t.co\/VlQg9lffmk","display_url":"pic.twitter.com\/VlQg9lffmk","expanded_url":"https:\/\/twitter.com\/DrTerriC\/status\/1185923911772528641\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":554,"h":1200,"resize":"fit"},"large":{"w":828,"h":1792,"resize":"fit"},"small":{"w":314,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"27de1a6e27075587","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/27de1a6e27075587.json","place_type":"city","name":"Norman","full_name":"Norman, + OK","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-97.51982,35.15327],[-97.370527,35.15327],[-97.370527,35.291332],[-97.51982,35.291332]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 05:22:19 +0000 2019","id":1186150701983879168,"id_str":"1186150701983879168","full_text":"I''ll + be sharing about @emergeAfrica at @AECT #aect19 #aect19inspired Join ''A + Taste of the International Division'' session on Tuesday https:\/\/t.co\/1zFZPHmu7U + or check out these slides https:\/\/t.co\/jf3RZuwayj Also going to be at the + Wednesday BOAF https:\/\/t.co\/I0LOIg397s https:\/\/t.co\/qSDD9xuyVp","truncated":false,"display_text_range":[0,270],"entities":{"hashtags":[{"text":"aect19","indices":[45,52]},{"text":"aect19inspired","indices":[54,69]}],"symbols":[],"user_mentions":[{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[22,35]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[39,44]}],"urls":[{"url":"https:\/\/t.co\/1zFZPHmu7U","expanded_url":"http:\/\/tinyurl.com\/yxtq7qbm","display_url":"tinyurl.com\/yxtq7qbm","indices":[134,157]},{"url":"https:\/\/t.co\/jf3RZuwayj","expanded_url":"http:\/\/bit.ly\/emergeAfrica2019","display_url":"bit.ly\/emergeAfrica20\u2026","indices":[184,207]},{"url":"https:\/\/t.co\/I0LOIg397s","expanded_url":"http:\/\/tinyurl.com\/y68fgpjw","display_url":"tinyurl.com\/y68fgpjw","indices":[247,270]}],"media":[{"id":1186150696137027585,"id_str":"1186150696137027585","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EHYNxg1UcAEikxd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHYNxg1UcAEikxd.jpg","url":"https:\/\/t.co\/qSDD9xuyVp","display_url":"pic.twitter.com\/qSDD9xuyVp","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186150701983879168\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186150696137027585,"id_str":"1186150696137027585","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EHYNxg1UcAEikxd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHYNxg1UcAEikxd.jpg","url":"https:\/\/t.co\/qSDD9xuyVp","display_url":"pic.twitter.com\/qSDD9xuyVp","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1186150701983879168\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":960,"h":540,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 20 14:03:21 +0000 2019","id":1185919436785618945,"id_str":"1185919436785618945","full_text":"RT + @AECT: Safe travels everyone! The convention starts tomorrow! If you haven''t + yet, download the #AECT19 app to help you manage your confe\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[98,105]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":91361410,"id_str":"91361410","name":"Frances + Alvarado","screen_name":"francesmarg","location":"Earth","description":"Learning, + Design, & Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":146,"listed_count":1,"created_at":"Fri + Nov 20 15:25:28 +0000 2009","favourites_count":3639,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":567,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1333933432435568645\/WGnKKjwS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1333933432435568645\/WGnKKjwS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/91361410\/1533572819","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 20 12:58:00 +0000 2019","id":1185902988088492032,"id_str":"1185902988088492032","full_text":"Safe + travels everyone! The convention starts tomorrow! If you haven''t yet, download + the #AECT19 app to help you manage your conference schedule:\n\n\ud83c\udf4e- + https:\/\/t.co\/wGmQg29rRb \n\u25b6\ufe0f- https:\/\/t.co\/DBp8L89r9E https:\/\/t.co\/UhaAypI8It","truncated":false,"display_text_range":[0,201],"entities":{"hashtags":[{"text":"AECT19","indices":[88,95]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wGmQg29rRb","expanded_url":"http:\/\/bit.ly\/AECTapple","display_url":"bit.ly\/AECTapple","indices":[149,172]},{"url":"https:\/\/t.co\/DBp8L89r9E","expanded_url":"http:\/\/bit.ly\/AECTandroid","display_url":"bit.ly\/AECTandroid","indices":[178,201]}],"media":[{"id":1185902978047324162,"id_str":"1185902978047324162","indices":[202,225],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185902978047324162\/pu\/img\/2-JGkyLhp9G__fz8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185902978047324162\/pu\/img\/2-JGkyLhp9G__fz8.jpg","url":"https:\/\/t.co\/UhaAypI8It","display_url":"pic.twitter.com\/UhaAypI8It","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1185902988088492032\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":336,"resize":"fit"},"medium":{"w":640,"h":336,"resize":"fit"},"large":{"w":640,"h":336,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185902978047324162,"id_str":"1185902978047324162","indices":[202,225],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185902978047324162\/pu\/img\/2-JGkyLhp9G__fz8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185902978047324162\/pu\/img\/2-JGkyLhp9G__fz8.jpg","url":"https:\/\/t.co\/UhaAypI8It","display_url":"pic.twitter.com\/UhaAypI8It","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1185902988088492032\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":336,"resize":"fit"},"medium":{"w":640,"h":336,"resize":"fit"},"large":{"w":640,"h":336,"resize":"fit"}},"video_info":{"aspect_ratio":[40,21],"duration_millis":3700,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185902978047324162\/pu\/vid\/514x270\/eXjI_Vjncv8Hc-Ef.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185902978047324162\/pu\/vid\/640x336\/QLUJPMXwg_0BNVQf.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185902978047324162\/pu\/pl\/mJ67-9G0iY63s7r1.m3u8?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 17:42:39 +0000 2019","id":1185612234623541249,"id_str":"1185612234623541249","full_text":"@christieliuidtr + @tutaleni @srogidd @ge_xun @fake_reeves @michaelmgrant @Happy_Tao @ChihHsiungTu + @barblockee @amy_c_bradshaw Yes look forward to the upcoming #aect19 conference.","truncated":false,"display_text_range":[125,177],"entities":{"hashtags":[{"text":"aect19","indices":[158,165]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[17,26]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[27,35]},{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[36,43]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[57,71]},{"screen_name":"Happy_Tao","name":"Hengtao + Tang","id":482227724,"id_str":"482227724","indices":[72,82]},{"screen_name":"barblockee","name":"Barbara + Lockee","id":208230436,"id_str":"208230436","indices":[97,108]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[109,124]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1185607666078572545,"in_reply_to_status_id_str":"1185607666078572545","in_reply_to_user_id":321423678,"in_reply_to_user_id_str":"321423678","in_reply_to_screen_name":"LiuJh_Christie","user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"61f73dd1739509f0","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/61f73dd1739509f0.json","place_type":"city","name":"Upper + Arlington","full_name":"Upper Arlington, OH","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-83.104102,39.989304],[-83.042267,39.989304],[-83.042267,40.063889],[-83.104102,40.063889]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 01:06:28 +0000 2019","id":1186086316511027201,"id_str":"1186086316511027201","full_text":"Epic + silliness level achieved #limoselfie \ud83e\udd23 #AECT19 https:\/\/t.co\/IRwAuhpKXw + https:\/\/t.co\/f4BtkAnbCb","truncated":false,"display_text_range":[0,75],"entities":{"hashtags":[{"text":"limoselfie","indices":[30,41]},{"text":"AECT19","indices":[44,51]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IRwAuhpKXw","expanded_url":"http:\/\/bit.ly\/32veRaU","display_url":"bit.ly\/32veRaU","indices":[52,75]}],"media":[{"id":1186086315483373568,"id_str":"1186086315483373568","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHXTOENWoAAcJLQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHXTOENWoAAcJLQ.jpg","url":"https:\/\/t.co\/f4BtkAnbCb","display_url":"pic.twitter.com\/f4BtkAnbCb","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186086316511027201\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186086315483373568,"id_str":"1186086315483373568","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHXTOENWoAAcJLQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHXTOENWoAAcJLQ.jpg","url":"https:\/\/t.co\/f4BtkAnbCb","display_url":"pic.twitter.com\/f4BtkAnbCb","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1186086316511027201\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 20 20:42:18 +0000 2019","id":1186019834229747712,"id_str":"1186019834229747712","full_text":"If + you\u2019re #AECT19 bound, you\u2019ll find me at these two sessions! #maker + #designthinking #AECT19inspired https:\/\/t.co\/Nwl17Au9vO","truncated":false,"display_text_range":[0,101],"entities":{"hashtags":[{"text":"AECT19","indices":[10,17]},{"text":"maker","indices":[63,69]},{"text":"designthinking","indices":[70,85]},{"text":"AECT19inspired","indices":[86,101]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186019828097662976,"id_str":"1186019828097662976","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWWv_ZUwAA3QP2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWWv_ZUwAA3QP2.jpg","url":"https:\/\/t.co\/Nwl17Au9vO","display_url":"pic.twitter.com\/Nwl17Au9vO","expanded_url":"https:\/\/twitter.com\/SmithShannonM\/status\/1186019834229747712\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":1046,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":1046,"resize":"fit"},"small":{"w":488,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186019828097662976,"id_str":"1186019828097662976","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWWv_ZUwAA3QP2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWWv_ZUwAA3QP2.jpg","url":"https:\/\/t.co\/Nwl17Au9vO","display_url":"pic.twitter.com\/Nwl17Au9vO","expanded_url":"https:\/\/twitter.com\/SmithShannonM\/status\/1186019834229747712\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":1046,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":1046,"resize":"fit"},"small":{"w":488,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1186019828093468673,"id_str":"1186019828093468673","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWWv_YUwAEwk_r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWWv_YUwAEwk_r.jpg","url":"https:\/\/t.co\/Nwl17Au9vO","display_url":"pic.twitter.com\/Nwl17Au9vO","expanded_url":"https:\/\/twitter.com\/SmithShannonM\/status\/1186019834229747712\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":1059,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":1059,"resize":"fit"},"small":{"w":482,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1408637941,"id_str":"1408637941","name":"Shannon + M. Smith","screen_name":"SmithShannonM","location":"Boise, ID","description":"Librarian + @BSULibrary + @UW_iSchool alum | OER, OA, Schol Comm, STEM, Design Thinking + | opinions my own | dreaming + reflecting + learning","url":"https:\/\/t.co\/cP2kwcqbcn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cP2kwcqbcn","expanded_url":"https:\/\/orcid.org\/0000-0002-2560-7410","display_url":"orcid.org\/0000-0002-2560\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":421,"friends_count":863,"listed_count":15,"created_at":"Mon + May 06 20:13:09 +0000 2013","favourites_count":5591,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2346,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1528811834257526784\/FoWd_4Uj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1528811834257526784\/FoWd_4Uj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1408637941\/1653332130","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 19 19:28:35 +0000 2019","id":1185638894160830471,"id_str":"1185638894160830471","full_text":"#AECT2019 + Join us in Vegas Wed, Oct 23, 3:00 to 3:50pm, Convention Center, Ballroom + C! @adriannewilson_ @UT_IDT @utampaedu https:\/\/t.co\/1pox25eQO3","truncated":false,"display_text_range":[0,122],"entities":{"hashtags":[{"text":"AECT2019","indices":[0,9]}],"symbols":[],"user_mentions":[{"screen_name":"adriannewilson_","name":"Adrianne + Wilson","id":772896038566948864,"id_str":"772896038566948864","indices":[87,103]},{"screen_name":"UT_IDT","name":"UT + IDT Program","id":2205686646,"id_str":"2205686646","indices":[104,111]},{"screen_name":"UTampaEDU","name":"UTampa + Dept. of Education","id":1321947258435362817,"id_str":"1321947258435362817","indices":[112,122]}],"urls":[],"media":[{"id":1185638888888586246,"id_str":"1185638888888586246","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQ8SaQX0AYoUj-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQ8SaQX0AYoUj-.jpg","url":"https:\/\/t.co\/1pox25eQO3","display_url":"pic.twitter.com\/1pox25eQO3","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1185638894160830471\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":386,"resize":"fit"},"medium":{"w":1200,"h":681,"resize":"fit"},"large":{"w":1280,"h":726,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185638888888586246,"id_str":"1185638888888586246","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQ8SaQX0AYoUj-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQ8SaQX0AYoUj-.jpg","url":"https:\/\/t.co\/1pox25eQO3","display_url":"pic.twitter.com\/1pox25eQO3","expanded_url":"https:\/\/twitter.com\/ChangeIt4Better\/status\/1185638894160830471\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":386,"resize":"fit"},"medium":{"w":1200,"h":681,"resize":"fit"},"large":{"w":1280,"h":726,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596150056,"id_str":"1596150056","name":"Dr. + Suzanne Ensmann","screen_name":"ChangeIt4Better","location":"Florida","description":"Make + a difference to better a life! Current projects: The social impact of Games4change + & Wearable Technologies'' correlation to health, wellness & performance.","url":"https:\/\/t.co\/fhGlWqns1f","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/fhGlWqns1f","expanded_url":"https:\/\/www.suzanneensmann.com\/scholarship.html","display_url":"suzanneensmann.com\/scholarship.ht\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":397,"friends_count":537,"listed_count":0,"created_at":"Mon + Jul 15 15:51:50 +0000 2013","favourites_count":2466,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1764,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1502008960433508364\/QCX1iNtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596150056\/1420645440","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 20 21:40:45 +0000 2019","id":1186034546254450693,"id_str":"1186034546254450693","full_text":"@Livn2Learn + @eGeeking I might check it out.. my Wednesday at #aect19 is light.","truncated":false,"display_text_range":[22,78],"entities":{"hashtags":[{"text":"aect19","indices":[61,68]}],"symbols":[],"user_mentions":[{"screen_name":"Livn2Learn","name":"Michelle + Webb","id":207345575,"id_str":"207345575","indices":[0,11]},{"screen_name":"eGeeking","name":"Bianca + Woods","id":408187328,"id_str":"408187328","indices":[12,21]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1186021992023113729,"in_reply_to_status_id_str":"1186021992023113729","in_reply_to_user_id":207345575,"in_reply_to_user_id_str":"207345575","in_reply_to_screen_name":"Livn2Learn","user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 20:41:05 +0000 2019","id":1185657142717681666,"id_str":"1185657142717681666","full_text":"RT + @hampthephd: Excited to announce our poster for \"K-12 Students'' Conceptions + of Learning with Technology: A Drawing Analysis\" \ud83d\udcbb\u270f\ufe0f\ud83d\udcdc + is fin\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hampthephd","name":"John + Hampton, PhD","id":936686250,"id_str":"936686250","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 15:58:00 +0000 2019","id":1185585902699106315,"id_str":"1185585902699106315","full_text":"Excited + to announce our poster for \"K-12 Students'' Conceptions of Learning with + Technology: A Drawing Analysis\" \ud83d\udcbb\u270f\ufe0f\ud83d\udcdc is finished! + Shout out to my team for all their hard work! Come see us at 4 pm on Tuesday! + #AECT19 @AECT https:\/\/t.co\/PlzabmW8s5","truncated":false,"display_text_range":[0,221],"entities":{"hashtags":[{"text":"AECT19","indices":[208,215]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[216,221]}],"urls":[],"media":[{"id":1185585896474722309,"id_str":"1185585896474722309","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","url":"https:\/\/t.co\/PlzabmW8s5","display_url":"pic.twitter.com\/PlzabmW8s5","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1185585902699106315\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":511,"resize":"fit"},"large":{"w":2048,"h":1539,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185585896474722309,"id_str":"1185585896474722309","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","url":"https:\/\/t.co\/PlzabmW8s5","display_url":"pic.twitter.com\/PlzabmW8s5","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1185585902699106315\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":511,"resize":"fit"},"large":{"w":2048,"h":1539,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 15:58:00 +0000 2019","id":1185585902699106315,"id_str":"1185585902699106315","full_text":"Excited + to announce our poster for \"K-12 Students'' Conceptions of Learning with + Technology: A Drawing Analysis\" \ud83d\udcbb\u270f\ufe0f\ud83d\udcdc is finished! + Shout out to my team for all their hard work! Come see us at 4 pm on Tuesday! + #AECT19 @AECT https:\/\/t.co\/PlzabmW8s5","truncated":false,"display_text_range":[0,221],"entities":{"hashtags":[{"text":"AECT19","indices":[208,215]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[216,221]}],"urls":[],"media":[{"id":1185585896474722309,"id_str":"1185585896474722309","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","url":"https:\/\/t.co\/PlzabmW8s5","display_url":"pic.twitter.com\/PlzabmW8s5","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1185585902699106315\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":511,"resize":"fit"},"large":{"w":2048,"h":1539,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185585896474722309,"id_str":"1185585896474722309","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","url":"https:\/\/t.co\/PlzabmW8s5","display_url":"pic.twitter.com\/PlzabmW8s5","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1185585902699106315\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":511,"resize":"fit"},"large":{"w":2048,"h":1539,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 19 22:19:55 +0000 2019","id":1185682013145182209,"id_str":"1185682013145182209","full_text":"@aectdddivision + @aectddl #aect19 #onlinelearning Time to give back and help lift those ready + to exercise their leadership skills! https:\/\/t.co\/7I1t9xNAWl","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[{"text":"aect19","indices":[25,32]},{"text":"onlinelearning","indices":[33,48]}],"symbols":[],"user_mentions":[{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[0,15]},{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[16,24]}],"urls":[],"media":[{"id":1185682005037596673,"id_str":"1185682005037596673","indices":[130,153],"media_url":"http:\/\/pbs.twimg.com\/media\/EHRjgGbWwAEMVSW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHRjgGbWwAEMVSW.png","url":"https:\/\/t.co\/7I1t9xNAWl","display_url":"pic.twitter.com\/7I1t9xNAWl","expanded_url":"https:\/\/twitter.com\/TAmankwatia\/status\/1185682013145182209\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1185682005037596673,"id_str":"1185682005037596673","indices":[130,153],"media_url":"http:\/\/pbs.twimg.com\/media\/EHRjgGbWwAEMVSW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHRjgGbWwAEMVSW.png","url":"https:\/\/t.co\/7I1t9xNAWl","display_url":"pic.twitter.com\/7I1t9xNAWl","expanded_url":"https:\/\/twitter.com\/TAmankwatia\/status\/1185682013145182209\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2647362354,"in_reply_to_user_id_str":"2647362354","in_reply_to_screen_name":"aectdddivision","user":{"id":25068789,"id_str":"25068789","name":"Tonya + Amankwatia","screen_name":"TAmankwatia","location":"Greensboro, NC","description":"North + Carolina A&T Assistant Vice Provost-Extended Campus. I evaluate programs, + design models for accessible, supportive online instruction & lifelong learning.","url":"https:\/\/t.co\/JWw4AAXsRF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JWw4AAXsRF","expanded_url":"https:\/\/www.linkedin.com\/in\/tonyalehigh\/","display_url":"linkedin.com\/in\/tonyalehigh\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":339,"friends_count":346,"listed_count":33,"created_at":"Wed + Mar 18 13:10:23 +0000 2009","favourites_count":1300,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1840,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E8CFA9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1185683022684790785\/fBnwhav1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1185683022684790785\/fBnwhav1_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"CC3366","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 20 12:56:07 +0000 2019","id":1185902515016962050,"id_str":"1185902515016962050","full_text":"Looking + forward to collaborating and learning with colleagues and friends at #AECT19 + in Las Vegas this week.","truncated":false,"display_text_range":[0,108],"entities":{"hashtags":[{"text":"AECT19","indices":[77,84]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":36073247,"id_str":"36073247","name":"Dr. + Michele Stork","screen_name":"michelestork","location":"","description":"Associate + Professor, #edtech #edleadership. Committed to empowering learners. Views + expressed here are my own. #storkteach","url":"https:\/\/t.co\/Qhw0mZ4Y4K","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Qhw0mZ4Y4K","expanded_url":"http:\/\/www.michelestork.com","display_url":"michelestork.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1421,"friends_count":395,"listed_count":18,"created_at":"Tue + Apr 28 14:09:17 +0000 2009","favourites_count":2318,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1522,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"464646","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471984303252946948\/Dx8iRa3C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471984303252946948\/Dx8iRa3C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36073247\/1549417573","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"464646","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 14:24:15 +0000 2019","id":1185924695302037506,"id_str":"1185924695302037506","full_text":"How + do I make someone my friend in the #aect19inspired APP?","truncated":false,"display_text_range":[0,59],"entities":{"hashtags":[{"text":"aect19inspired","indices":[39,54]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466078904,"id_str":"466078904","name":"Dr + Theresa Cullen","screen_name":"DrTerriC","location":"Norman, Oklahoma","description":"Dept + Head @atueducation,#ADE2015 #SCRUM #ISTE20 research chair ORCID: 0000-0002-1636-4349 + LSS Captivate Specialist. she\/hers Posts are her own","url":"https:\/\/t.co\/1TOsxV9NHX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/1TOsxV9NHX","expanded_url":"http:\/\/www.drterric.com","display_url":"drterric.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":5297,"friends_count":5825,"listed_count":261,"created_at":"Tue + Jan 17 01:36:36 +0000 2012","favourites_count":9462,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":26961,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1019254468683034624\/p9GGX-zW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466078904\/1590414177","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"27de1a6e27075587","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/27de1a6e27075587.json","place_type":"city","name":"Norman","full_name":"Norman, + OK","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-97.51982,35.15327],[-97.370527,35.15327],[-97.370527,35.291332],[-97.51982,35.291332]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 20:39:45 +0000 2019","id":1185656805357170688,"id_str":"1185656805357170688","full_text":"RT + @rmreese1: It''s that time of year again! #aect19inspired https:\/\/t.co\/X2s4lIXTIN","truncated":false,"display_text_range":[0,83],"entities":{"hashtags":[{"text":"aect19inspired","indices":[44,59]}],"symbols":[],"user_mentions":[{"screen_name":"rmreese1","name":"rmreese","id":8005732,"id_str":"8005732","indices":[3,12]}],"urls":[],"media":[{"id":1185582012251414529,"id_str":"1185582012251414529","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQIjwRWoAEYBps.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQIjwRWoAEYBps.jpg","url":"https:\/\/t.co\/X2s4lIXTIN","display_url":"pic.twitter.com\/X2s4lIXTIN","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1185582029330616324\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}},"source_status_id":1185582029330616324,"source_status_id_str":"1185582029330616324","source_user_id":8005732,"source_user_id_str":"8005732"}]},"extended_entities":{"media":[{"id":1185582012251414529,"id_str":"1185582012251414529","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQIjwRWoAEYBps.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQIjwRWoAEYBps.jpg","url":"https:\/\/t.co\/X2s4lIXTIN","display_url":"pic.twitter.com\/X2s4lIXTIN","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1185582029330616324\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}},"source_status_id":1185582029330616324,"source_status_id_str":"1185582029330616324","source_user_id":8005732,"source_user_id_str":"8005732","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 15:42:37 +0000 2019","id":1185582029330616324,"id_str":"1185582029330616324","full_text":"It''s + that time of year again! #aect19inspired https:\/\/t.co\/X2s4lIXTIN","truncated":false,"display_text_range":[0,45],"entities":{"hashtags":[{"text":"aect19inspired","indices":[30,45]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1185582012251414529,"id_str":"1185582012251414529","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQIjwRWoAEYBps.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQIjwRWoAEYBps.jpg","url":"https:\/\/t.co\/X2s4lIXTIN","display_url":"pic.twitter.com\/X2s4lIXTIN","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1185582029330616324\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185582012251414529,"id_str":"1185582012251414529","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQIjwRWoAEYBps.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQIjwRWoAEYBps.jpg","url":"https:\/\/t.co\/X2s4lIXTIN","display_url":"pic.twitter.com\/X2s4lIXTIN","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1185582029330616324\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"large":{"w":1152,"h":2048,"resize":"fit"},"small":{"w":383,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":8005732,"id_str":"8005732","name":"rmreese","screen_name":"rmreese1","location":"Denver, + CO","description":"ID, edtech, all around gerd (geek+nerd). Opinions are my + own and RTs are not endorsements. Pronouns: she\/they","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":564,"friends_count":293,"listed_count":271,"created_at":"Mon + Aug 06 23:59:29 +0000 2007","favourites_count":960,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9941,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2A2828","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8005732\/1573836551","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"091378","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 19 21:34:44 +0000 2019","id":1185670640814170112,"id_str":"1185670640814170112","full_text":"RT + @hampthephd: Excited to announce our poster for \"K-12 Students'' Conceptions + of Learning with Technology: A Drawing Analysis\" \ud83d\udcbb\u270f\ufe0f\ud83d\udcdc + is fin\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"hampthephd","name":"John + Hampton, PhD","id":936686250,"id_str":"936686250","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988637594,"id_str":"2988637594","name":"Rui + \"Tammy\" Huang","screen_name":"ruitammyhuang","location":"FL","description":"PhD, + fellow in Ed Tech @UF_COE, game-based learning and immersive technology researcher, + designer & developer. Learning experience design researcher","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":150,"friends_count":185,"listed_count":6,"created_at":"Wed + Jan 21 02:08:50 +0000 2015","favourites_count":399,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":187,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490073661432283138\/GQLIStqs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988637594\/1621697544","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 15:58:00 +0000 2019","id":1185585902699106315,"id_str":"1185585902699106315","full_text":"Excited + to announce our poster for \"K-12 Students'' Conceptions of Learning with + Technology: A Drawing Analysis\" \ud83d\udcbb\u270f\ufe0f\ud83d\udcdc is finished! + Shout out to my team for all their hard work! Come see us at 4 pm on Tuesday! + #AECT19 @AECT https:\/\/t.co\/PlzabmW8s5","truncated":false,"display_text_range":[0,221],"entities":{"hashtags":[{"text":"AECT19","indices":[208,215]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[216,221]}],"urls":[],"media":[{"id":1185585896474722309,"id_str":"1185585896474722309","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","url":"https:\/\/t.co\/PlzabmW8s5","display_url":"pic.twitter.com\/PlzabmW8s5","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1185585902699106315\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":511,"resize":"fit"},"large":{"w":2048,"h":1539,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185585896474722309,"id_str":"1185585896474722309","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQMF2IWwAUO5xB.jpg","url":"https:\/\/t.co\/PlzabmW8s5","display_url":"pic.twitter.com\/PlzabmW8s5","expanded_url":"https:\/\/twitter.com\/hampthephd\/status\/1185585902699106315\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":511,"resize":"fit"},"large":{"w":2048,"h":1539,"resize":"fit"},"medium":{"w":1200,"h":902,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":22,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 17:57:19 +0000 2019","id":1185978315317764096,"id_str":"1185978315317764096","full_text":"\u26a0\ufe0f + AECT Peeps \u26a0\ufe0f\nFirst pitch for WS Game 1 is Tue @ 5:08PM. Who''s + watching \u26be with me? \ud83d\udc40 #AECT19 https:\/\/t.co\/aJiDeNQoUp","truncated":false,"display_text_range":[0,95],"entities":{"hashtags":[{"text":"AECT19","indices":[88,95]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1185978309361823744,"id_str":"1185978309361823744","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/EHVw_SDUcAARRKn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHVw_SDUcAARRKn.jpg","url":"https:\/\/t.co\/aJiDeNQoUp","display_url":"pic.twitter.com\/aJiDeNQoUp","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1185978315317764096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1371,"resize":"fit"},"medium":{"w":1200,"h":803,"resize":"fit"},"small":{"w":680,"h":455,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185978309361823744,"id_str":"1185978309361823744","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/EHVw_SDUcAARRKn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHVw_SDUcAARRKn.jpg","url":"https:\/\/t.co\/aJiDeNQoUp","display_url":"pic.twitter.com\/aJiDeNQoUp","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1185978315317764096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1371,"resize":"fit"},"medium":{"w":1200,"h":803,"resize":"fit"},"small":{"w":680,"h":455,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 19 16:49:22 +0000 2019","id":1185598827975335940,"id_str":"1185598827975335940","full_text":"I\u2019m + beginning the end of my #aect19inspired journey today. https:\/\/t.co\/RQvHWojCLd","truncated":false,"display_text_range":[0,58],"entities":{"hashtags":[{"text":"aect19inspired","indices":[28,43]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1185598820551401472,"id_str":"1185598820551401472","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQX2IEWoAAPtba.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQX2IEWoAAPtba.jpg","url":"https:\/\/t.co\/RQvHWojCLd","display_url":"pic.twitter.com\/RQvHWojCLd","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1185598827975335940\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":764,"resize":"fit"},"small":{"w":668,"h":680,"resize":"fit"},"large":{"w":750,"h":764,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185598820551401472,"id_str":"1185598820551401472","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQX2IEWoAAPtba.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQX2IEWoAAPtba.jpg","url":"https:\/\/t.co\/RQvHWojCLd","display_url":"pic.twitter.com\/RQvHWojCLd","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1185598827975335940\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":764,"resize":"fit"},"small":{"w":668,"h":680,"resize":"fit"},"large":{"w":750,"h":764,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"1d9a5370a355ab0c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1d9a5370a355ab0c.json","place_type":"city","name":"Chicago","full_name":"Chicago, + IL","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-87.940033,41.644102],[-87.523993,41.644102],[-87.523993,42.0230669],[-87.940033,42.0230669]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 19 22:42:54 +0000 2019","id":1185687799036440576,"id_str":"1185687799036440576","full_text":"RT + @TAmankwatia: @aectdddivision @aectddl #aect19 #onlinelearning Time to give + back and help lift those ready to exercise their leadership\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"aect19","indices":[42,49]},{"text":"onlinelearning","indices":[50,65]}],"symbols":[],"user_mentions":[{"screen_name":"TAmankwatia","name":"Tonya + Amankwatia","id":25068789,"id_str":"25068789","indices":[3,15]},{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[17,32]},{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[33,41]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 22:19:55 +0000 2019","id":1185682013145182209,"id_str":"1185682013145182209","full_text":"@aectdddivision + @aectddl #aect19 #onlinelearning Time to give back and help lift those ready + to exercise their leadership skills! https:\/\/t.co\/7I1t9xNAWl","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[{"text":"aect19","indices":[25,32]},{"text":"onlinelearning","indices":[33,48]}],"symbols":[],"user_mentions":[{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[0,15]},{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[16,24]}],"urls":[],"media":[{"id":1185682005037596673,"id_str":"1185682005037596673","indices":[130,153],"media_url":"http:\/\/pbs.twimg.com\/media\/EHRjgGbWwAEMVSW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHRjgGbWwAEMVSW.png","url":"https:\/\/t.co\/7I1t9xNAWl","display_url":"pic.twitter.com\/7I1t9xNAWl","expanded_url":"https:\/\/twitter.com\/TAmankwatia\/status\/1185682013145182209\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1185682005037596673,"id_str":"1185682005037596673","indices":[130,153],"media_url":"http:\/\/pbs.twimg.com\/media\/EHRjgGbWwAEMVSW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHRjgGbWwAEMVSW.png","url":"https:\/\/t.co\/7I1t9xNAWl","display_url":"pic.twitter.com\/7I1t9xNAWl","expanded_url":"https:\/\/twitter.com\/TAmankwatia\/status\/1185682013145182209\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2647362354,"in_reply_to_user_id_str":"2647362354","in_reply_to_screen_name":"aectdddivision","user":{"id":25068789,"id_str":"25068789","name":"Tonya + Amankwatia","screen_name":"TAmankwatia","location":"Greensboro, NC","description":"North + Carolina A&T Assistant Vice Provost-Extended Campus. I evaluate programs, + design models for accessible, supportive online instruction & lifelong learning.","url":"https:\/\/t.co\/JWw4AAXsRF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JWw4AAXsRF","expanded_url":"https:\/\/www.linkedin.com\/in\/tonyalehigh\/","display_url":"linkedin.com\/in\/tonyalehigh\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":339,"friends_count":346,"listed_count":33,"created_at":"Wed + Mar 18 13:10:23 +0000 2009","favourites_count":1300,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1840,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"E8CFA9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1185683022684790785\/fBnwhav1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1185683022684790785\/fBnwhav1_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"CC3366","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 20:06:00 +0000 2019","id":1186010698578423808,"id_str":"1186010698578423808","full_text":"Hope + to see you Tuesday and Wednesday @aect! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/ZBxBfijJ2C","truncated":false,"display_text_range":[0,77],"entities":{"hashtags":[{"text":"AECT19","indices":[54,61]},{"text":"AECT19inspired","indices":[62,77]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[38,43]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[45,53]}],"urls":[],"media":[{"id":1185703882871037952,"id_str":"1185703882871037952","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR3ZjtUYAApvLv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR3ZjtUYAApvLv.jpg","url":"https:\/\/t.co\/ZBxBfijJ2C","display_url":"pic.twitter.com\/ZBxBfijJ2C","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186010698578423808\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185703882871037952,"id_str":"1185703882871037952","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR3ZjtUYAApvLv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR3ZjtUYAApvLv.jpg","url":"https:\/\/t.co\/ZBxBfijJ2C","display_url":"pic.twitter.com\/ZBxBfijJ2C","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1186010698578423808\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 21 01:20:37 +0000 2019","id":1186089873582776321,"id_str":"1186089873582776321","full_text":"RT + @AnnaRoseLeach: To those of you that hire instructional designers, what are + you looking for in a candidate? @caranorth11 @dr_tracy_s @c\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[3,17]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[112,124]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":23448702,"id_str":"23448702","name":"Dana + C","screen_name":"livesimpleread","location":"Tennessee, USA","description":"Voracious + reader, Retired Community College accounting professor, CPA, southerner by + birth but raised by books. Tweets mainly re books & personal finance","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":807,"friends_count":2084,"listed_count":49,"created_at":"Mon + Mar 09 15:36:57 +0000 2009","favourites_count":2452,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13067,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1880581499\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1880581499\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23448702\/1425872542","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"333333","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"990000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 13:25:29 +0000 2019","id":1185185132522524672,"id_str":"1185185132522524672","full_text":"To + those of you that hire instructional designers, what are you looking for in + a candidate? @caranorth11 @dr_tracy_s @correia65 and I are presenting at + #aect19inspired (an academic conference) about what we think ID graduates + need to be ready for the real world.","truncated":false,"display_text_range":[0,263],"entities":{"hashtags":[{"text":"aect19inspired","indices":[153,168]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[93,105]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[118,128]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"013379ee5729a5e6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/013379ee5729a5e6.json","place_type":"city","name":"Tucson","full_name":"Tucson, + AZ","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-111.083219,32.057802],[-110.747928,32.057802],[-110.747928,32.320979],[-111.083219,32.320979]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":28,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 21 05:54:37 +0000 2019","id":1186158831459454976,"id_str":"1186158831459454976","full_text":"RT + @KuiXieOSU: For folks attending #aect19 this week, check out our panel on + #CollaborativeResearch on Tuesday morning. I will join @ge_xun\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[35,42]},{"text":"CollaborativeResearch","indices":[77,99]}],"symbols":[],"user_mentions":[{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[132,139]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 20 22:39:22 +0000 2019","id":1186049296304693250,"id_str":"1186049296304693250","full_text":"For + folks attending #aect19 this week, check out our panel on #CollaborativeResearch + on Tuesday morning. I will join @ge_xun @amy_c_bradshaw @fake_reeves @christieliuidtr + and others to share our experience in collaborative research from proposal + to implementation. #aect19inspired https:\/\/t.co\/mYhbxXJGFj","truncated":false,"display_text_range":[0,280],"entities":{"hashtags":[{"text":"aect19","indices":[20,27]},{"text":"CollaborativeResearch","indices":[62,84]},{"text":"aect19inspired","indices":[265,280]}],"symbols":[],"user_mentions":[{"screen_name":"ge_xun","name":"Xun","id":2522748974,"id_str":"2522748974","indices":[117,124]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[125,140]}],"urls":[],"media":[{"id":1186049289006538753,"id_str":"1186049289006538753","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","url":"https:\/\/t.co\/mYhbxXJGFj","display_url":"pic.twitter.com\/mYhbxXJGFj","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186049296304693250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186049289006538753,"id_str":"1186049289006538753","indices":[281,304],"media_url":"http:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHWxi11W4AEg9-v.jpg","url":"https:\/\/t.co\/mYhbxXJGFj","display_url":"pic.twitter.com\/mYhbxXJGFj","expanded_url":"https:\/\/twitter.com\/KuiXieOSU\/status\/1186049296304693250\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter + for Mac\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":18,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 20:22:55 +0000 2019","id":1185652568833298435,"id_str":"1185652568833298435","full_text":"Look + forward to the upcoming #aect19 conference in Las Vegas. I am honored to serve + as a keynote for the Society of International Chinese in Educational Technology + @SICET I will share some of our #TranslationalResearch from @DLResearchLab + @OSUehe #edtech \nhttps:\/\/t.co\/hceoPsTINv","truncated":false,"display_text_range":[0,279],"entities":{"hashtags":[{"text":"aect19","indices":[29,36]},{"text":"TranslationalResearch","indices":[196,218]},{"text":"edtech","indices":[247,254]}],"symbols":[],"user_mentions":[{"screen_name":"SICET","name":"SICET","id":114832274,"id_str":"114832274","indices":[164,170]},{"screen_name":"DLResearchLab","name":"Digital + Learning Lab","id":866326285999591426,"id_str":"866326285999591426","indices":[224,238]},{"screen_name":"OSUehe","name":"Ohio + State Education and Human Ecology","id":48771513,"id_str":"48771513","indices":[239,246]}],"urls":[{"url":"https:\/\/t.co\/hceoPsTINv","expanded_url":"https:\/\/sicet.org\/main\/conventions\/aect-sicet-2019-convention\/","display_url":"sicet.org\/main\/conventio\u2026","indices":[256,279]}]},"source":"\u003ca + href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter + for Mac\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 19 20:38:07 +0000 2019","id":1185656395531784193,"id_str":"1185656395531784193","full_text":"RT + @dctrcurry: How long until @michaelmgrant and I see you at #aect19inspired?\n\nTwo + days, Deuce. Two days . . . \n\n@AECT https:\/\/t.co\/Re5cxd\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[62,77]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[3,13]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[30,44]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[114,119]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 15:14:10 +0000 2019","id":1185574871738150917,"id_str":"1185574871738150917","full_text":"How + long until @michaelmgrant and I see you at #aect19inspired?\n\nTwo days, Deuce. + Two days . . . \n\n@AECT https:\/\/t.co\/Re5cxda33q","truncated":false,"display_text_range":[0,104],"entities":{"hashtags":[{"text":"aect19inspired","indices":[47,62]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[15,29]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[99,104]}],"urls":[],"media":[{"id":1185574869154455555,"id_str":"1185574869154455555","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQCD-KU4AMM1a9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQCD-KU4AMM1a9.jpg","url":"https:\/\/t.co\/Re5cxda33q","display_url":"pic.twitter.com\/Re5cxda33q","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1185574871738150917\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":474,"h":261,"resize":"fit"},"small":{"w":474,"h":261,"resize":"fit"},"medium":{"w":474,"h":261,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185574869154455555,"id_str":"1185574869154455555","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQCD-KU4AMM1a9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQCD-KU4AMM1a9.jpg","url":"https:\/\/t.co\/Re5cxda33q","display_url":"pic.twitter.com\/Re5cxda33q","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1185574871738150917\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":474,"h":261,"resize":"fit"},"small":{"w":474,"h":261,"resize":"fit"},"medium":{"w":474,"h":261,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 19:09:41 +0000 2019","id":1185996528260911109,"id_str":"1185996528260911109","full_text":"RT + @DrVirtuality: See you Tuesday and Wednesday @aect! @aectclt #AECT19 #AECT19inspired + https:\/\/t.co\/DVqcQsMoVc","truncated":false,"display_text_range":[0,111],"entities":{"hashtags":[{"text":"AECT19","indices":[64,71]},{"text":"AECT19inspired","indices":[72,87]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[48,53]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[55,63]}],"urls":[],"media":[{"id":1185704317887508480,"id_str":"1185704317887508480","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR3y4RU8AADVRA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR3y4RU8AADVRA.jpg","url":"https:\/\/t.co\/DVqcQsMoVc","display_url":"pic.twitter.com\/DVqcQsMoVc","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185950803892137985\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"source_status_id":1185950803892137985,"source_status_id_str":"1185950803892137985","source_user_id":15667548,"source_user_id_str":"15667548"}]},"extended_entities":{"media":[{"id":1185704317887508480,"id_str":"1185704317887508480","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR3y4RU8AADVRA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR3y4RU8AADVRA.jpg","url":"https:\/\/t.co\/DVqcQsMoVc","display_url":"pic.twitter.com\/DVqcQsMoVc","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185950803892137985\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"source_status_id":1185950803892137985,"source_status_id_str":"1185950803892137985","source_user_id":15667548,"source_user_id_str":"15667548","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 20 16:08:00 +0000 2019","id":1185950803892137985,"id_str":"1185950803892137985","full_text":"See + you Tuesday and Wednesday @aect! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/DVqcQsMoVc","truncated":false,"display_text_range":[0,69],"entities":{"hashtags":[{"text":"AECT19","indices":[46,53]},{"text":"AECT19inspired","indices":[54,69]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[30,35]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[37,45]}],"urls":[],"media":[{"id":1185704317887508480,"id_str":"1185704317887508480","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR3y4RU8AADVRA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR3y4RU8AADVRA.jpg","url":"https:\/\/t.co\/DVqcQsMoVc","display_url":"pic.twitter.com\/DVqcQsMoVc","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185950803892137985\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185704317887508480,"id_str":"1185704317887508480","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR3y4RU8AADVRA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR3y4RU8AADVRA.jpg","url":"https:\/\/t.co\/DVqcQsMoVc","display_url":"pic.twitter.com\/DVqcQsMoVc","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185950803892137985\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 20 11:16:39 +0000 2019","id":1185877482840494080,"id_str":"1185877482840494080","full_text":"Up + early to travel to #aect19inspired #aect19 #AECTech2019 #VegasbabyVegas","truncated":false,"display_text_range":[0,74],"entities":{"hashtags":[{"text":"aect19inspired","indices":[22,37]},{"text":"aect19","indices":[38,45]},{"text":"AECTech2019","indices":[46,58]},{"text":"VegasbabyVegas","indices":[59,74]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489118534,"id_str":"489118534","name":"\ud835\udd78\ud835\udd86\ud835\udd99\ud835\udd99\ud835\udd8d\ud835\udd8a\ud835\udd9c + \ud835\udd77. \ud835\udd82\ud835\udd8e\ud835\udd91\ud835\udd98\ud835\udd94\ud835\udd93, + \ud835\udd7b\ud835\udd8d.\ud835\udd6f.","screen_name":"WilsonInEdu","location":"Kennesaw, + GA","description":"Assistant professor of instructional technology at KSU. + Ph.D. in C&I (Ed Tech focus) and REM. Integrating technology for the empowerment + of students.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":253,"friends_count":166,"listed_count":4,"created_at":"Sat + Feb 11 06:10:36 +0000 2012","favourites_count":416,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":485,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1016257371268673542\/SMyoJzlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489118534\/1408628437","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 20 05:16:00 +0000 2019","id":1185786722816331781,"id_str":"1185786722816331781","full_text":"Who + is going to @aect this week?! @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/kYVTLloXQw","truncated":false,"display_text_range":[0,66],"entities":{"hashtags":[{"text":"AECT19","indices":[43,50]},{"text":"AECT19inspired","indices":[51,66]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[16,21]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[34,42]}],"urls":[],"media":[{"id":1185706404994146305,"id_str":"1185706404994146305","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5sXWU4AE8uu5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5sXWU4AE8uu5.jpg","url":"https:\/\/t.co\/kYVTLloXQw","display_url":"pic.twitter.com\/kYVTLloXQw","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185786722816331781\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185706404994146305,"id_str":"1185706404994146305","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHR5sXWU4AE8uu5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHR5sXWU4AE8uu5.jpg","url":"https:\/\/t.co\/kYVTLloXQw","display_url":"pic.twitter.com\/kYVTLloXQw","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185786722816331781\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 19 17:37:25 +0000 2019","id":1185610918253776896,"id_str":"1185610918253776896","full_text":"Collaborations + @aectclt #aect19inspired #aect19 @AECT w\/ @nicolapallitt \ud835\udddb\ud835\uddee\ud835\uddfb\ud835\uddfb\ud835\uddee\ud835\uddf5 + \ud835\uddda\ud835\uddff\ud835\uddfc\ud835\ude00\ud835\ude00\ud835\uddfa\ud835\uddee\ud835\uddfb, + @AmyLomellini_ID \ud835\uddd4\ud835\uddf9\ud835\uddf6\ud835\uddf0\ud835\uddf2,\ud835\uddd5\ud835\uddf2\ud835\uddf0\ud835\uddfc\ud835\uddf9\ud835\uddee,\ud835\udde7\ud835\uddf6\ud835\uddee,\ud835\udde0\ud835\uddfa\ud835\uddee\ud835\uddef\ud835\uddee\ud835\uddf9\ud835\uddf2\ud835\uddf1\ud835\uddf6,\ud835\udddf\ud835\uddf2\ud835\uddee\ud835\uddf5,\ud835\udde1\ud835\uddf2\ud835\uddf6\ud835\uddf9,\ud835\uddfc\ud835\uddf9\ud835\ude02\ud835\ude04\ud835\uddee\ud835\ude00\ud835\uddf2\ud835\uddf3\ud835\ude02\ud835\uddfb\ud835\uddfa\ud835\uddf6,\ud835\udde1\ud835\uddfc\ud835\uddfa\ud835\uddfd\ud835\uddf6\ud835\uddf9\ud835\uddfc10\/23,11am + & 4pm. Safe travels @emergeAfrica friends! https:\/\/t.co\/Unp2OoqT6b","truncated":false,"display_text_range":[0,220],"entities":{"hashtags":[{"text":"aect19inspired","indices":[24,39]},{"text":"aect19","indices":[40,47]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[15,23]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[48,53]},{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[57,71]},{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[89,105]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[198,211]}],"urls":[],"media":[{"id":1185610914269151235,"id_str":"1185610914269151235","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"large":{"w":707,"h":393,"resize":"fit"},"medium":{"w":707,"h":393,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185610914269151235,"id_str":"1185610914269151235","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2ErWwAMXGXa.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":378,"resize":"fit"},"large":{"w":707,"h":393,"resize":"fit"},"medium":{"w":707,"h":393,"resize":"fit"}},"ext_alt_text":null},{"id":1185610914281725953,"id_str":"1185610914281725953","indices":[221,244],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQi2EuWoAELmy-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQi2EuWoAELmy-.jpg","url":"https:\/\/t.co\/Unp2OoqT6b","display_url":"pic.twitter.com\/Unp2OoqT6b","expanded_url":"https:\/\/twitter.com\/christieliuidtr\/status\/1185610918253776896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":683,"h":381,"resize":"fit"},"large":{"w":683,"h":381,"resize":"fit"},"small":{"w":680,"h":379,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 19 15:14:10 +0000 2019","id":1185574871738150917,"id_str":"1185574871738150917","full_text":"How + long until @michaelmgrant and I see you at #aect19inspired?\n\nTwo days, Deuce. + Two days . . . \n\n@AECT https:\/\/t.co\/Re5cxda33q","truncated":false,"display_text_range":[0,104],"entities":{"hashtags":[{"text":"aect19inspired","indices":[47,62]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[15,29]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[99,104]}],"urls":[],"media":[{"id":1185574869154455555,"id_str":"1185574869154455555","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQCD-KU4AMM1a9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQCD-KU4AMM1a9.jpg","url":"https:\/\/t.co\/Re5cxda33q","display_url":"pic.twitter.com\/Re5cxda33q","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1185574871738150917\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":474,"h":261,"resize":"fit"},"small":{"w":474,"h":261,"resize":"fit"},"medium":{"w":474,"h":261,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185574869154455555,"id_str":"1185574869154455555","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/EHQCD-KU4AMM1a9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHQCD-KU4AMM1a9.jpg","url":"https:\/\/t.co\/Re5cxda33q","display_url":"pic.twitter.com\/Re5cxda33q","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1185574871738150917\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":474,"h":261,"resize":"fit"},"small":{"w":474,"h":261,"resize":"fit"},"medium":{"w":474,"h":261,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1185574039148007426%2C1185573633391022080%2C1185573166711791616%2C1185573166711791616%2C1185553098300907520%2C1185532096279916544%2C1185527170711506944%2C1185527170711506944%2C1185519759967821824%2C1185497783261900800%2C1185450309503479809%2C1185403887987113984%2C1185385778659987457%2C1185384824493600769%2C1185377777979142144%2C1185377777979142144%2C1185373590818037761%2C1185369910001721344%2C1185369718431113216%2C1185365158190813184%2C1185365023461466112%2C1185364960152637441%2C1185364742405283841%2C1185364685782245377%2C1185364594530885632%2C1185364447889637382%2C1185364367380045824%2C1185364318780579846%2C1185364210592768000%2C1185364210592768000%2C1185342788780675072%2C1185342151401623552%2C1185335623814647810%2C1185335623814647810%2C1185311975414358017%2C1185296836422074368%2C1185296636278214656%2C1185294371698151424%2C1185292389549690880%2C1185288082528051201%2C1185287179637055488%2C1185287023701188608%2C1185287023701188608%2C1185281643654930432%2C1185273369761067009%2C1185269857237065735%2C1185268178898903045%2C1185268178898903045%2C1185259363088375809%2C1185254766198304768%2C1185254766198304768%2C1185252686180048898%2C1185243991207374848%2C1185239730482380800%2C1185239098023239687%2C1185238899532034048%2C1185238899532034048%2C1185236632946925568%2C1185210006821453825%2C1185209095151742976%2C1185209095151742976%2C1185207463018000385%2C1185205869031477248%2C1185202455400738817%2C1185197375058563072%2C1185195752890490881%2C1185195005171949569%2C1185195005171949569%2C1185188434203140098%2C1185185132522524672%2C1185182701294362624%2C1185182701294362624%2C1185172880348340224%2C1185142971546656768%2C1185136664458514432%2C1185136664458514432%2C1185128075580887040%2C1185044643790106628%2C1184993683118014465%2C1184988595804917761%2C1184988595804917761%2C1184960595663163397%2C1184960326636359683%2C1184960326636359683%2C1184942797524291600%2C1184933143205371904%2C1184925053575716866%2C1184925053575716866%2C1184917911510536192%2C1184913532300808193%2C1184911765139873794%2C1184911765139873794%2C1184890746521997312%2C1184888799190573060%2C1184879421016043525%2C1184879421016043525%2C1184855685038825472%2C1184854209285500928%2C1184854209285500928%2C1184844217916493824&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:57 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:57 GMT + x-transaction: 151a5a3b6f8076f5 + content-length: '52586' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '272' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '323' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Sat Oct 19 12:04:38 +0000 2019","id":1185527170711506944,"id_str":"1185527170711506944","full_text":"RT + @AnnaRoseLeach: To those of you that hire instructional designers, what are + you looking for in a candidate? @caranorth11 @dr_tracy_s @c\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[3,17]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[112,124]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14694246,"id_str":"14694246","name":"Marcus + Haile","screen_name":"mwhaile","location":"Jacksonville, FL","description":"Girl + Dad. Library Spouse. Philosopher King. Writer. Golf Poet. Nonprofit Pro. #AdultLiteracy + Advocate. CEO @literacyallnefl.","url":"https:\/\/t.co\/477yZKjvYT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/477yZKjvYT","expanded_url":"http:\/\/www.marcushaile.com","display_url":"marcushaile.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":353,"friends_count":771,"listed_count":10,"created_at":"Thu + May 08 01:01:52 +0000 2008","favourites_count":3154,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":965,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9B9DE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1492991415969796097\/ZXYu64ER_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1492991415969796097\/ZXYu64ER_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14694246\/1658172002","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 13:25:29 +0000 2019","id":1185185132522524672,"id_str":"1185185132522524672","full_text":"To + those of you that hire instructional designers, what are you looking for in + a candidate? @caranorth11 @dr_tracy_s @correia65 and I are presenting at + #aect19inspired (an academic conference) about what we think ID graduates + need to be ready for the real world.","truncated":false,"display_text_range":[0,263],"entities":{"hashtags":[{"text":"aect19inspired","indices":[153,168]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[93,105]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[118,128]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"013379ee5729a5e6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/013379ee5729a5e6.json","place_type":"city","name":"Tucson","full_name":"Tucson, + AZ","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-111.083219,32.057802],[-110.747928,32.057802],[-110.747928,32.320979],[-111.083219,32.320979]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":28,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 23:51:58 +0000 2019","id":1185342788780675072,"id_str":"1185342788780675072","full_text":"RT + @AnnaRoseLeach: To those of you that hire instructional designers, what are + you looking for in a candidate? @caranorth11 @dr_tracy_s @c\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[3,17]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[112,124]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3300432047,"id_str":"3300432047","name":"PhD + Amplify","screen_name":"PhDprep","location":"The World","description":"#PhD''s + can change the world. We''re here to help them communicate their message in + the most effective way.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":978,"friends_count":887,"listed_count":24,"created_at":"Wed + May 27 13:39:17 +0000 2015","favourites_count":919,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":651,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/713726891946016769\/QvtKoXR1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/713726891946016769\/QvtKoXR1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3300432047\/1432735057","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 13:25:29 +0000 2019","id":1185185132522524672,"id_str":"1185185132522524672","full_text":"To + those of you that hire instructional designers, what are you looking for in + a candidate? @caranorth11 @dr_tracy_s @correia65 and I are presenting at + #aect19inspired (an academic conference) about what we think ID graduates + need to be ready for the real world.","truncated":false,"display_text_range":[0,263],"entities":{"hashtags":[{"text":"aect19inspired","indices":[153,168]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[93,105]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[118,128]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"013379ee5729a5e6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/013379ee5729a5e6.json","place_type":"city","name":"Tucson","full_name":"Tucson, + AZ","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-111.083219,32.057802],[-110.747928,32.057802],[-110.747928,32.320979],[-111.083219,32.320979]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":28,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 20:14:35 +0000 2019","id":1185288082528051201,"id_str":"1185288082528051201","full_text":"I\u2019m + really looking forward \ud83d\udc40 to seeing how many @AECT folks use the + #betterposter format during the Gallery Walk at #aect19.","truncated":false,"display_text_range":[0,124],"entities":{"hashtags":[{"text":"betterposter","indices":[68,81]},{"text":"aect19","indices":[116,123]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[48,53]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"6057f1e35bcc6c20","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/6057f1e35bcc6c20.json","place_type":"admin","name":"South + Carolina","full_name":"South Carolina, USA","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-83.353955,32.04683],[-78.499301,32.04683],[-78.499301,35.215449],[-83.353955,35.215449]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":12,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 16:59:08 +0000 2019","id":1185238899532034048,"id_str":"1185238899532034048","full_text":"RT + @teacherrogers: I''ve added 2 of 3 slide presentations for @AECT''s conference + next week to my blog post. My #aect19inspired mini-workshop\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[110,125]}],"symbols":[],"user_mentions":[{"screen_name":"teacherrogers","name":"Sandra + Annette Rogers, PhD","id":212784618,"id_str":"212784618","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[61,66]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14994538,"id_str":"14994538","name":"Kzenovka","screen_name":"kzenovka","location":"Metaverse","description":"educator, + coolhunter, and sometimes puppetmaster. Metagame Book Club, Games & Sim Network + and Inevitable Instructors","url":"https:\/\/t.co\/SN1thrlVqD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SN1thrlVqD","expanded_url":"https:\/\/sites.google.com\/site\/metagamebookclub\/","display_url":"sites.google.com\/site\/metagameb\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1338,"friends_count":3152,"listed_count":228,"created_at":"Tue + Jun 03 16:35:29 +0000 2008","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15007,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14994538\/1436550079","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 17 17:10:42 +0000 2019","id":1184879421016043525,"id_str":"1184879421016043525","full_text":"I''ve + added 2 of 3 slide presentations for @AECT''s conference next week to my blog + post. My #aect19inspired mini-workshop session for culture, technology, & + learning (@aectclt) is ready. Check it out! https:\/\/t.co\/BkjT0QkOpD","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"aect19inspired","indices":[91,106]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[42,47]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[170,178]}],"urls":[{"url":"https:\/\/t.co\/BkjT0QkOpD","expanded_url":"https:\/\/teacherrogers.wordpress.com\/2019\/09\/07\/join-me-at-aect-2019-in-las-vegas\/","display_url":"teacherrogers.wordpress.com\/2019\/09\/07\/joi\u2026","indices":[204,227]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 03:54:45 +0000 2019","id":1185403887987113984,"id_str":"1185403887987113984","full_text":"RT + @hodgesc: You are thinking about turning your #aect19inspired presentations + into manuscripts for @AECTTechTrends, right? @AECT","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[{"text":"aect19inspired","indices":[49,64]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[100,115]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[124,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":804807943,"id_str":"804807943","name":"TechTrends + Editor","screen_name":"AECTTechTrends","location":"","description":"Tweets + from the Editor of TechTrends, an AECT journal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2050,"friends_count":15,"listed_count":57,"created_at":"Wed + Sep 05 15:17:03 +0000 2012","favourites_count":772,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/804807943\/1483653902","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 18:20:27 +0000 2019","id":1185259363088375809,"id_str":"1185259363088375809","full_text":"You + are thinking about turning your #aect19inspired presentations into manuscripts + for @AECTTechTrends, right? @AECT","truncated":false,"display_text_range":[0,116],"entities":{"hashtags":[{"text":"aect19inspired","indices":[36,51]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[87,102]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[111,116]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":21,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 15:10:52 +0000 2019","id":1185574039148007426,"id_str":"1185574039148007426","full_text":"RT + @robmoore3: Come see our #aect19 session Tuesday at 9 am! https:\/\/t.co\/W97VdgjjOz","truncated":false,"display_text_range":[0,84],"entities":{"hashtags":[{"text":"aect19","indices":[28,35]}],"symbols":[],"user_mentions":[{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[3,13]}],"urls":[{"url":"https:\/\/t.co\/W97VdgjjOz","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477","display_url":"twitter.com\/robmoore3\/stat\u2026","indices":[61,84]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 11:35:11 +0000 2019","id":1185519759967821824,"id_str":"1185519759967821824","full_text":"Come + see our #aect19 session Tuesday at 9 am! https:\/\/t.co\/W97VdgjjOz","truncated":false,"display_text_range":[0,45],"entities":{"hashtags":[{"text":"aect19","indices":[13,20]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/W97VdgjjOz","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477","display_url":"twitter.com\/robmoore3\/stat\u2026","indices":[46,69]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1122991739692777477,"quoted_status_id_str":"1122991739692777477","quoted_status_permalink":{"url":"https:\/\/t.co\/W97VdgjjOz","expanded":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477","display":"twitter.com\/robmoore3\/stat\u2026"},"quoted_status":{"created_at":"Mon + Apr 29 22:31:09 +0000 2019","id":1122991739692777477,"id_str":"1122991739692777477","full_text":"Chuang + Wang (@uncc_coed) and I will be presenting @AECT the results of our latent + profile analysis of a HarvardX course to identify the motivational factors + that influence #MOOC completion #aect19 #aect19inspired https:\/\/t.co\/ax3rdGkoiz","truncated":false,"display_text_range":[0,212],"entities":{"hashtags":[{"text":"MOOC","indices":[172,177]},{"text":"aect19","indices":[189,196]},{"text":"aect19inspired","indices":[197,212]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[50,55]}],"urls":[],"media":[{"id":1122990385578557443,"id_str":"1122990385578557443","indices":[213,236],"media_url":"http:\/\/pbs.twimg.com\/media\/D5WpzkqWwAMQ1Iw.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/D5WpzkqWwAMQ1Iw.png","url":"https:\/\/t.co\/ax3rdGkoiz","display_url":"pic.twitter.com\/ax3rdGkoiz","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1122990385578557443,"id_str":"1122990385578557443","indices":[213,236],"media_url":"http:\/\/pbs.twimg.com\/media\/D5WpzkqWwAMQ1Iw.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/D5WpzkqWwAMQ1Iw.png","url":"https:\/\/t.co\/ax3rdGkoiz","display_url":"pic.twitter.com\/ax3rdGkoiz","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1122991739692777477,"quoted_status_id_str":"1122991739692777477","quoted_status_permalink":{"url":"https:\/\/t.co\/W97VdgjjOz","expanded":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477","display":"twitter.com\/robmoore3\/stat\u2026"},"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 17 22:32:12 +0000 2019","id":1184960326636359683,"id_str":"1184960326636359683","full_text":"RT + @arasbozkurt: Proud to get \"Reviewer Excellence Award 2019\" by ETR&D + to be presented at #AECT19. Feel motivated to review more \ud83d\udc4d\nAppreci\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"AECT19","indices":[95,102]}],"symbols":[],"user_mentions":[{"screen_name":"arasbozkurt","name":"Aras + Bozkurt","id":83447547,"id_str":"83447547","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 17 20:44:10 +0000 2019","id":1184933143205371904,"id_str":"1184933143205371904","full_text":"Proud + to get \"Reviewer Excellence Award 2019\" by ETR&D to be presented at + #AECT19. Feel motivated to review more \ud83d\udc4d\nAppreciate #ETRD editors + for recognizing all my efforts as a reviewer. See you in Las Vegas\n@AECT + @Publons #Review @PeerRevWeek","truncated":false,"display_text_range":[0,246],"entities":{"hashtags":[{"text":"AECT19","indices":[78,85]},{"text":"ETRD","indices":[130,135]},{"text":"Review","indices":[226,233]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[211,216]},{"screen_name":"Publons","name":"Publons","id":376019079,"id_str":"376019079","indices":[217,225]},{"screen_name":"PeerRevWeek","name":"PeerReviewWeek","id":856865889869869057,"id_str":"856865889869869057","indices":[234,246]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":26,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 14:14:08 +0000 2019","id":1185197375058563072,"id_str":"1185197375058563072","full_text":"RT + @AnnaRoseLeach: To those of you that hire instructional designers, what are + you looking for in a candidate? @caranorth11 @dr_tracy_s @c\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[3,17]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[112,124]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22146542,"id_str":"22146542","name":"Kevin + Maye","screen_name":"DonnyBoy71","location":"Doncaster","description":"Stay + active, keep learning - live long and prosper","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":988,"friends_count":272,"listed_count":146,"created_at":"Fri + Feb 27 14:50:22 +0000 2009","favourites_count":34129,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":36108,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1281830813076803585\/ZQ7UxWDO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1281830813076803585\/ZQ7UxWDO_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 13:25:29 +0000 2019","id":1185185132522524672,"id_str":"1185185132522524672","full_text":"To + those of you that hire instructional designers, what are you looking for in + a candidate? @caranorth11 @dr_tracy_s @correia65 and I are presenting at + #aect19inspired (an academic conference) about what we think ID graduates + need to be ready for the real world.","truncated":false,"display_text_range":[0,263],"entities":{"hashtags":[{"text":"aect19inspired","indices":[153,168]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[93,105]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[118,128]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"013379ee5729a5e6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/013379ee5729a5e6.json","place_type":"city","name":"Tucson","full_name":"Tucson, + AZ","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-111.083219,32.057802],[-110.747928,32.057802],[-110.747928,32.320979],[-111.083219,32.320979]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":28,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 17:02:27 +0000 2019","id":1185239730482380800,"id_str":"1185239730482380800","full_text":"RT + @gsa_aect: Join the fireside advice chat on how to make the most of your graduate + student experience on Oct 25th from 9:00 am to 9:50 am\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14994538,"id_str":"14994538","name":"Kzenovka","screen_name":"kzenovka","location":"Metaverse","description":"educator, + coolhunter, and sometimes puppetmaster. Metagame Book Club, Games & Sim Network + and Inevitable Instructors","url":"https:\/\/t.co\/SN1thrlVqD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SN1thrlVqD","expanded_url":"https:\/\/sites.google.com\/site\/metagamebookclub\/","display_url":"sites.google.com\/site\/metagameb\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1338,"friends_count":3152,"listed_count":228,"created_at":"Tue + Jun 03 16:35:29 +0000 2008","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15007,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14994538\/1436550079","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 11 23:30:06 +0000 2019","id":1182800571230818306,"id_str":"1182800571230818306","full_text":"Join + the fireside advice chat on how to make the most of your graduate student + experience on Oct 25th from 9:00 am to 9:50 am. The presenters will be Dr. + Jill Stefaniak and Dr. Tonia Dousay. This GSA session is facilitated by Kelly + Ross. #aect19 #aect19inspired #aectgsa https:\/\/t.co\/G1qRH7T4cx","truncated":false,"display_text_range":[0,270],"entities":{"hashtags":[{"text":"aect19","indices":[238,245]},{"text":"aect19inspired","indices":[246,261]},{"text":"aectgsa","indices":[262,270]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1182800568944939008,"id_str":"1182800568944939008","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EGom2cgX0AAGpGx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGom2cgX0AAGpGx.jpg","url":"https:\/\/t.co\/G1qRH7T4cx","display_url":"pic.twitter.com\/G1qRH7T4cx","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182800571230818306\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182800568944939008,"id_str":"1182800568944939008","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EGom2cgX0AAGpGx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGom2cgX0AAGpGx.jpg","url":"https:\/\/t.co\/G1qRH7T4cx","display_url":"pic.twitter.com\/G1qRH7T4cx","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182800571230818306\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 02:42:47 +0000 2019","id":1185385778659987457,"id_str":"1185385778659987457","full_text":"RT + @ekowch: AECT Conventioneers! Join me with national leaders from China talking + about the latest trends In China\u2019s vast Education technol\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ekowch","name":"Dr. + Eugene Kowch","id":28518944,"id_str":"28518944","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":370247755,"id_str":"370247755","name":"Richard + Fossey","screen_name":"rdfossey","location":"Calgary AB Canada","description":"Organizational + Change Manager, Project\/Program Manager, Educator, Senior Black Belt with + Leadership Development through Karate (LDK Foundation), Trumpet Player","url":"https:\/\/t.co\/g4YCNwcGAK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g4YCNwcGAK","expanded_url":"http:\/\/www.rftfgroup.com","display_url":"rftfgroup.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":156,"friends_count":162,"listed_count":10,"created_at":"Thu + Sep 08 18:08:42 +0000 2011","favourites_count":8235,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13729,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3069843951\/9594b798589b174c5cab2da3473987bd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3069843951\/9594b798589b174c5cab2da3473987bd_normal.jpeg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 20:31:41 +0000 2019","id":1185292389549690880,"id_str":"1185292389549690880","full_text":"AECT + Conventioneers! Join me with national leaders from China talking about the + latest trends In China\u2019s vast Education technology transformation CAET + Special Session in Las Vegas: Wed. Oct. 23 at 1:00 PM in Convention Centre + Pavilion 9. Don\u2019t miss it! @AECT #aect19 @edtechchat https:\/\/t.co\/pK7btfip4l","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"aect19","indices":[259,266]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[253,258]},{"screen_name":"edtechchat","name":"Chris + Borg","id":550773912,"id_str":"550773912","indices":[267,278]}],"urls":[],"media":[{"id":1185292370071306240,"id_str":"1185292370071306240","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","url":"https:\/\/t.co\/pK7btfip4l","display_url":"pic.twitter.com\/pK7btfip4l","expanded_url":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185292370071306240,"id_str":"1185292370071306240","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","url":"https:\/\/t.co\/pK7btfip4l","display_url":"pic.twitter.com\/pK7btfip4l","expanded_url":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28518944,"id_str":"28518944","name":"Dr. + Eugene Kowch","screen_name":"ekowch","location":"Calgary Alberta Canada","description":"Scholar, + Principal, Teacher, Engineer, Past President, AECT, & AERA SIG 17 | Helping + leaders create more adaptable education systems #highered #leadership","url":"https:\/\/t.co\/oDa3vYShbl","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oDa3vYShbl","expanded_url":"https:\/\/ekowch.wixsite.com\/systemsthinkingbook","display_url":"ekowch.wixsite.com\/systemsthinkin\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":936,"friends_count":887,"listed_count":0,"created_at":"Fri + Apr 03 06:44:28 +0000 2009","favourites_count":2393,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1315,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/705885195950370816\/i4XMnRs__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/705885195950370816\/i4XMnRs__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28518944\/1561768634","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 12:36:48 +0000 2019","id":1185172880348340224,"id_str":"1185172880348340224","full_text":"I + have a vision for my #aect19 presentation.. let''s see how well I can execute + that vision","truncated":false,"display_text_range":[0,90],"entities":{"hashtags":[{"text":"aect19","indices":[23,30]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 18:02:11 +0000 2019","id":1185254766198304768,"id_str":"1185254766198304768","full_text":"A + little teaser for my @AECT #AECT19inspired session on Thursday 10\/24 from + 9-9:50 am - \"Git Into It: Harnessing the World\u2019s Most Popular Open-Source + Software Platform for Education\", made possible by @GitHubDesktop...we just + might use @github to merge constitutional amendments! https:\/\/t.co\/WUlcFFMcdX","truncated":false,"display_text_range":[0,279],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[29,44]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[23,28]},{"screen_name":"GitHubDesktop","name":"GitHub + Desktop","id":872108011719983106,"id_str":"872108011719983106","indices":[201,215]},{"screen_name":"github","name":"GitHub","id":13334762,"id_str":"13334762","indices":[236,243]}],"urls":[],"media":[{"id":1185254757335732224,"id_str":"1185254757335732224","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHLe7AtWkAAQ0XD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHLe7AtWkAAQ0XD.jpg","url":"https:\/\/t.co\/WUlcFFMcdX","display_url":"pic.twitter.com\/WUlcFFMcdX","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1185254766198304768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":944,"h":638,"resize":"fit"},"large":{"w":944,"h":638,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185254757335732224,"id_str":"1185254757335732224","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHLe7AtWkAAQ0XD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHLe7AtWkAAQ0XD.jpg","url":"https:\/\/t.co\/WUlcFFMcdX","display_url":"pic.twitter.com\/WUlcFFMcdX","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1185254766198304768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":944,"h":638,"resize":"fit"},"large":{"w":944,"h":638,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}},"ext_alt_text":"Photoshopped + image of John Trumbull''s Declaration of Independence painting with Jefferson + holding a laptop displaying the GitHub logo"}]},"source":"\u003ca href=\"https:\/\/mobile.twitter.com\" + rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 18 21:49:31 +0000 2019","id":1185311975414358017,"id_str":"1185311975414358017","full_text":"Great + minds think alike @KristenLearning, I got some new personal cards made for + #Devlearn and #aect19. I hope you will consider signing up to be a participant + in my future research if you are an instructional designer :) Please! I\u2019d + like to graduate one day \u2764\ufe0f\u2764\ufe0f https:\/\/t.co\/UlJjAVHtBT","truncated":false,"display_text_range":[0,263],"entities":{"hashtags":[{"text":"Devlearn","indices":[81,90]},{"text":"aect19","indices":[95,102]}],"symbols":[],"user_mentions":[{"screen_name":"KristenLearning","name":"Kristen + Hayden Safdie","id":827198845020876801,"id_str":"827198845020876801","indices":[24,40]}],"urls":[],"media":[{"id":1185311965951995904,"id_str":"1185311965951995904","indices":[264,287],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMS8_aWsAAT71A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMS8_aWsAAT71A.jpg","url":"https:\/\/t.co\/UlJjAVHtBT","display_url":"pic.twitter.com\/UlJjAVHtBT","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1185311975414358017\/photo\/1","type":"photo","sizes":{"small":{"w":610,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1076,"h":1200,"resize":"fit"},"large":{"w":1836,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185311965951995904,"id_str":"1185311965951995904","indices":[264,287],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMS8_aWsAAT71A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMS8_aWsAAT71A.jpg","url":"https:\/\/t.co\/UlJjAVHtBT","display_url":"pic.twitter.com\/UlJjAVHtBT","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1185311975414358017\/photo\/1","type":"photo","sizes":{"small":{"w":610,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1076,"h":1200,"resize":"fit"},"large":{"w":1836,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1185311965952053248,"id_str":"1185311965952053248","indices":[264,287],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMS8_aXkAAXT0j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMS8_aXkAAXT0j.jpg","url":"https:\/\/t.co\/UlJjAVHtBT","display_url":"pic.twitter.com\/UlJjAVHtBT","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1185311975414358017\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":2002,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":665,"resize":"fit"},"medium":{"w":1200,"h":1173,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 18 10:12:54 +0000 2019","id":1185136664458514432,"id_str":"1185136664458514432","full_text":"Are + you ready to BE INSPIRED? The convention starts in 3 days! #AECT19 #AECT19inspired\n\nhttps:\/\/t.co\/HLbut9liTM\nhttps:\/\/t.co\/nZ8EUxpwMx + https:\/\/t.co\/Eb7Tlnz7g8","truncated":false,"display_text_range":[0,135],"entities":{"hashtags":[{"text":"AECT19","indices":[63,70]},{"text":"AECT19inspired","indices":[71,86]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HLbut9liTM","expanded_url":"http:\/\/bit.ly\/AECT19program","display_url":"bit.ly\/AECT19program","indices":[88,111]},{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[112,135]}],"media":[{"id":1185136651091267584,"id_str":"1185136651091267584","indices":[136,159],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185136651091267584\/pu\/img\/76BSJ-P4Zx3aysp1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185136651091267584\/pu\/img\/76BSJ-P4Zx3aysp1.jpg","url":"https:\/\/t.co\/Eb7Tlnz7g8","display_url":"pic.twitter.com\/Eb7Tlnz7g8","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1185136664458514432\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":336,"resize":"fit"},"medium":{"w":640,"h":336,"resize":"fit"},"large":{"w":640,"h":336,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185136651091267584,"id_str":"1185136651091267584","indices":[136,159],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185136651091267584\/pu\/img\/76BSJ-P4Zx3aysp1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1185136651091267584\/pu\/img\/76BSJ-P4Zx3aysp1.jpg","url":"https:\/\/t.co\/Eb7Tlnz7g8","display_url":"pic.twitter.com\/Eb7Tlnz7g8","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1185136664458514432\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":336,"resize":"fit"},"medium":{"w":640,"h":336,"resize":"fit"},"large":{"w":640,"h":336,"resize":"fit"}},"video_info":{"aspect_ratio":[40,21],"duration_millis":4533,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185136651091267584\/pu\/vid\/640x336\/ZZn0qBROd8a4m-7w.mp4?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185136651091267584\/pu\/vid\/514x270\/7cqLwadYsM0EQM4_.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1185136651091267584\/pu\/pl\/rifW0anxpnFdOYsN.m3u8?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 17 15:30:31 +0000 2019","id":1184854209285500928,"id_str":"1184854209285500928","full_text":"Think-Pair-Share + and split into groups like you have never experienced before. #aect19 #aect19inspired + https:\/\/t.co\/yEZOv0p3MJ","truncated":false,"display_text_range":[0,102],"entities":{"hashtags":[{"text":"aect19","indices":[79,86]},{"text":"aect19inspired","indices":[87,102]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1184854204004913154,"id_str":"1184854204004913154","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EHFynvRXUAIVBV8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHFynvRXUAIVBV8.jpg","url":"https:\/\/t.co\/yEZOv0p3MJ","display_url":"pic.twitter.com\/yEZOv0p3MJ","expanded_url":"https:\/\/twitter.com\/valarywithawhy\/status\/1184854209285500928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184854204004913154,"id_str":"1184854204004913154","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/EHFynvRXUAIVBV8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHFynvRXUAIVBV8.jpg","url":"https:\/\/t.co\/yEZOv0p3MJ","display_url":"pic.twitter.com\/yEZOv0p3MJ","expanded_url":"https:\/\/twitter.com\/valarywithawhy\/status\/1184854209285500928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":111391715,"id_str":"111391715","name":"Valary + Oleinik","screen_name":"valarywithawhy","location":"New York, NY","description":"speaker + | engager of learners | gamifier of things | unleasher of creativity | geek + | writer | queriest","url":"https:\/\/t.co\/5XjhvhYTqb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5XjhvhYTqb","expanded_url":"http:\/\/www.valarywithawhy.com","display_url":"valarywithawhy.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1251,"friends_count":1550,"listed_count":60,"created_at":"Thu + Feb 04 19:24:07 +0000 2010","favourites_count":9041,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4317,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111391715\/1454624226","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 19 15:07:24 +0000 2019","id":1185573166711791616,"id_str":"1185573166711791616","full_text":"RT + @MeganCMurtaugh: Ready and headed to #aect19 in Las Vegas today! Can''t wait + to spend time with my professional family this week! #inspir\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[40,47]}],"symbols":[],"user_mentions":[{"screen_name":"MeganCMurtaugh","name":"Megan + C. Murtaugh, Ed.D.","id":335613192,"id_str":"335613192","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 12:24:12 +0000 2019","id":1185532096279916544,"id_str":"1185532096279916544","full_text":"Ready + and headed to #aect19 in Las Vegas today! Can''t wait to spend time with my + professional family this week! #inspired","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"aect19","indices":[20,27]},{"text":"inspired","indices":[112,121]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":335613192,"id_str":"335613192","name":"Megan + C. Murtaugh, Ed.D.","screen_name":"MeganCMurtaugh","location":"","description":"Instructional + Design | Curriculum Development | Technology Integration | Online Learning","url":"http:\/\/t.co\/o8Fu5KipP8","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/o8Fu5KipP8","expanded_url":"http:\/\/www.megancmurtaugh.com","display_url":"megancmurtaugh.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":435,"friends_count":446,"listed_count":11,"created_at":"Thu + Jul 14 23:37:30 +0000 2011","favourites_count":767,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":433,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1239713824913186816\/ufuVavfV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1239713824913186816\/ufuVavfV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/335613192\/1584405785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"4ec01c9dbc693497","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4ec01c9dbc693497.json","place_type":"admin","name":"Florida","full_name":"Florida, + USA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-87.634643,24.396308],[-79.974307,24.396308],[-79.974307,31.001056],[-87.634643,31.001056]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":22,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 17 21:22:32 +0000 2019","id":1184942797524291600,"id_str":"1184942797524291600","full_text":"RT + @valarywithawhy: Want a sneak peek of one of my #aect19 sessions? Here you + go! #aect19inspired https:\/\/t.co\/jgE3g6cyyo","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"aect19","indices":[51,58]},{"text":"aect19inspired","indices":[82,97]}],"symbols":[],"user_mentions":[{"screen_name":"valarywithawhy","name":"Valary + Oleinik","id":111391715,"id_str":"111391715","indices":[3,18]}],"urls":[],"media":[{"id":1184911673074880514,"id_str":"1184911673074880514","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184911673074880514\/pu\/img\/XJs86Szp6ujDz8IL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184911673074880514\/pu\/img\/XJs86Szp6ujDz8IL.jpg","url":"https:\/\/t.co\/jgE3g6cyyo","display_url":"pic.twitter.com\/jgE3g6cyyo","expanded_url":"https:\/\/twitter.com\/valarywithawhy\/status\/1184911765139873794\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1184911765139873794,"source_status_id_str":"1184911765139873794","source_user_id":111391715,"source_user_id_str":"111391715"}]},"extended_entities":{"media":[{"id":1184911673074880514,"id_str":"1184911673074880514","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184911673074880514\/pu\/img\/XJs86Szp6ujDz8IL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184911673074880514\/pu\/img\/XJs86Szp6ujDz8IL.jpg","url":"https:\/\/t.co\/jgE3g6cyyo","display_url":"pic.twitter.com\/jgE3g6cyyo","expanded_url":"https:\/\/twitter.com\/valarywithawhy\/status\/1184911765139873794\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1184911765139873794,"source_status_id_str":"1184911765139873794","source_user_id":111391715,"source_user_id_str":"111391715","video_info":{"aspect_ratio":[16,9],"duration_millis":19019,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184911673074880514\/pu\/vid\/480x270\/90J6ZeHJ2Qi_1Q7S.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184911673074880514\/pu\/pl\/0woihr7spl1DnuVM.m3u8?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184911673074880514\/pu\/vid\/1280x720\/9tjwX29_U9i1wTe7.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184911673074880514\/pu\/vid\/640x360\/t_3bluH5NjK7eRY7.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false,"source_user":{"id":111391715,"id_str":"111391715","name":"Valary + Oleinik","screen_name":"valarywithawhy","location":"New York, NY","description":"speaker + | engager of learners | gamifier of things | unleasher of creativity | geek + | writer | queriest","url":"https:\/\/t.co\/5XjhvhYTqb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5XjhvhYTqb","expanded_url":"http:\/\/www.valarywithawhy.com","display_url":"valarywithawhy.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1251,"friends_count":1550,"listed_count":60,"created_at":"Thu + Feb 04 19:24:07 +0000 2010","favourites_count":9041,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4317,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111391715\/1454624226","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]}}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":706167822141911040,"id_str":"706167822141911040","name":"Keith + Lillico M.Ed, MBA","screen_name":"klillico72","location":"Chatham, IL","description":"Working + to bring Gamification to the Classroom","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13625,"friends_count":3210,"listed_count":63,"created_at":"Sat + Mar 05 17:21:43 +0000 2016","favourites_count":6935,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21135,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1550512588240347136\/YDbuRH2u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1550512588240347136\/YDbuRH2u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/706167822141911040\/1608233588","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"CB6015","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 17 19:19:14 +0000 2019","id":1184911765139873794,"id_str":"1184911765139873794","full_text":"Want + a sneak peek of one of my #aect19 sessions? Here you go! #aect19inspired https:\/\/t.co\/jgE3g6cyyo","truncated":false,"display_text_range":[0,77],"entities":{"hashtags":[{"text":"aect19","indices":[31,38]},{"text":"aect19inspired","indices":[62,77]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1184911673074880514,"id_str":"1184911673074880514","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184911673074880514\/pu\/img\/XJs86Szp6ujDz8IL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184911673074880514\/pu\/img\/XJs86Szp6ujDz8IL.jpg","url":"https:\/\/t.co\/jgE3g6cyyo","display_url":"pic.twitter.com\/jgE3g6cyyo","expanded_url":"https:\/\/twitter.com\/valarywithawhy\/status\/1184911765139873794\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184911673074880514,"id_str":"1184911673074880514","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184911673074880514\/pu\/img\/XJs86Szp6ujDz8IL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184911673074880514\/pu\/img\/XJs86Szp6ujDz8IL.jpg","url":"https:\/\/t.co\/jgE3g6cyyo","display_url":"pic.twitter.com\/jgE3g6cyyo","expanded_url":"https:\/\/twitter.com\/valarywithawhy\/status\/1184911765139873794\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":19019,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184911673074880514\/pu\/vid\/480x270\/90J6ZeHJ2Qi_1Q7S.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184911673074880514\/pu\/pl\/0woihr7spl1DnuVM.m3u8?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184911673074880514\/pu\/vid\/1280x720\/9tjwX29_U9i1wTe7.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184911673074880514\/pu\/vid\/640x360\/t_3bluH5NjK7eRY7.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":111391715,"id_str":"111391715","name":"Valary + Oleinik","screen_name":"valarywithawhy","location":"New York, NY","description":"speaker + | engager of learners | gamifier of things | unleasher of creativity | geek + | writer | queriest","url":"https:\/\/t.co\/5XjhvhYTqb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5XjhvhYTqb","expanded_url":"http:\/\/www.valarywithawhy.com","display_url":"valarywithawhy.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1251,"friends_count":1550,"listed_count":60,"created_at":"Thu + Feb 04 19:24:07 +0000 2010","favourites_count":9041,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4317,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111391715\/1454624226","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 18 13:25:29 +0000 2019","id":1185185132522524672,"id_str":"1185185132522524672","full_text":"To + those of you that hire instructional designers, what are you looking for in + a candidate? @caranorth11 @dr_tracy_s @correia65 and I are presenting at + #aect19inspired (an academic conference) about what we think ID graduates + need to be ready for the real world.","truncated":false,"display_text_range":[0,263],"entities":{"hashtags":[{"text":"aect19inspired","indices":[153,168]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[93,105]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[118,128]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"013379ee5729a5e6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/013379ee5729a5e6.json","place_type":"city","name":"Tucson","full_name":"Tucson, + AZ","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-111.083219,32.057802],[-110.747928,32.057802],[-110.747928,32.320979],[-111.083219,32.320979]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":28,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 04:07:14 +0000 2019","id":1185044643790106628,"id_str":"1185044643790106628","full_text":"RT + @teacherrogers: I''ve added 2 of 3 slide presentations for @AECT''s conference + next week to my blog post. My #aect19inspired mini-workshop\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[110,125]}],"symbols":[],"user_mentions":[{"screen_name":"teacherrogers","name":"Sandra + Annette Rogers, PhD","id":212784618,"id_str":"212784618","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[61,66]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 17 17:10:42 +0000 2019","id":1184879421016043525,"id_str":"1184879421016043525","full_text":"I''ve + added 2 of 3 slide presentations for @AECT''s conference next week to my blog + post. My #aect19inspired mini-workshop session for culture, technology, & + learning (@aectclt) is ready. Check it out! https:\/\/t.co\/BkjT0QkOpD","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"aect19inspired","indices":[91,106]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[42,47]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[170,178]}],"urls":[{"url":"https:\/\/t.co\/BkjT0QkOpD","expanded_url":"https:\/\/teacherrogers.wordpress.com\/2019\/09\/07\/join-me-at-aect-2019-in-las-vegas\/","display_url":"teacherrogers.wordpress.com\/2019\/09\/07\/joi\u2026","indices":[204,227]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 20:31:41 +0000 2019","id":1185292389549690880,"id_str":"1185292389549690880","full_text":"AECT + Conventioneers! Join me with national leaders from China talking about the + latest trends In China\u2019s vast Education technology transformation CAET + Special Session in Las Vegas: Wed. Oct. 23 at 1:00 PM in Convention Centre + Pavilion 9. Don\u2019t miss it! @AECT #aect19 @edtechchat https:\/\/t.co\/pK7btfip4l","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"aect19","indices":[259,266]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[253,258]},{"screen_name":"edtechchat","name":"Chris + Borg","id":550773912,"id_str":"550773912","indices":[267,278]}],"urls":[],"media":[{"id":1185292370071306240,"id_str":"1185292370071306240","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","url":"https:\/\/t.co\/pK7btfip4l","display_url":"pic.twitter.com\/pK7btfip4l","expanded_url":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185292370071306240,"id_str":"1185292370071306240","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","url":"https:\/\/t.co\/pK7btfip4l","display_url":"pic.twitter.com\/pK7btfip4l","expanded_url":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28518944,"id_str":"28518944","name":"Dr. + Eugene Kowch","screen_name":"ekowch","location":"Calgary Alberta Canada","description":"Scholar, + Principal, Teacher, Engineer, Past President, AECT, & AERA SIG 17 | Helping + leaders create more adaptable education systems #highered #leadership","url":"https:\/\/t.co\/oDa3vYShbl","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oDa3vYShbl","expanded_url":"https:\/\/ekowch.wixsite.com\/systemsthinkingbook","display_url":"ekowch.wixsite.com\/systemsthinkin\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":936,"friends_count":887,"listed_count":0,"created_at":"Fri + Apr 03 06:44:28 +0000 2009","favourites_count":2393,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1315,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/705885195950370816\/i4XMnRs__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/705885195950370816\/i4XMnRs__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28518944\/1561768634","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 18 00:44:44 +0000 2019","id":1184993683118014465,"id_str":"1184993683118014465","full_text":"How + many days until @michaelmgrant and I see you at #aect19inspired? Ask Alex + Pettyfer what his biggest movie role was . . .\n\n@AECT https:\/\/t.co\/teRncCJXwB","truncated":false,"display_text_range":[0,131],"entities":{"hashtags":[{"text":"aect19inspired","indices":[52,67]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[20,34]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[126,131]}],"urls":[],"media":[{"id":1184993679263653889,"id_str":"1184993679263653889","indices":[132,155],"media_url":"http:\/\/pbs.twimg.com\/media\/EHHxeRGX4AEqHfR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHHxeRGX4AEqHfR.jpg","url":"https:\/\/t.co\/teRncCJXwB","display_url":"pic.twitter.com\/teRncCJXwB","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1184993683118014465\/photo\/1","type":"photo","sizes":{"small":{"w":460,"h":348,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":460,"h":348,"resize":"fit"},"medium":{"w":460,"h":348,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184993679263653889,"id_str":"1184993679263653889","indices":[132,155],"media_url":"http:\/\/pbs.twimg.com\/media\/EHHxeRGX4AEqHfR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHHxeRGX4AEqHfR.jpg","url":"https:\/\/t.co\/teRncCJXwB","display_url":"pic.twitter.com\/teRncCJXwB","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1184993683118014465\/photo\/1","type":"photo","sizes":{"small":{"w":460,"h":348,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":460,"h":348,"resize":"fit"},"medium":{"w":460,"h":348,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 17 20:12:02 +0000 2019","id":1184925053575716866,"id_str":"1184925053575716866","full_text":"RT + @tutaleni: #SneakPeek - doing a run through of our #AECT19 workshop in @EdTechOkstate + class. #AECT19inspired https:\/\/t.co\/Tm0zW0wm96","truncated":false,"display_text_range":[0,135],"entities":{"hashtags":[{"text":"SneakPeek","indices":[14,24]},{"text":"AECT19","indices":[54,61]},{"text":"AECT19inspired","indices":[96,111]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]},{"screen_name":"EdTechOkstate","name":"Okstate + Ed Tech","id":4141659852,"id_str":"4141659852","indices":[74,88]}],"urls":[],"media":[{"id":1184913528593043457,"id_str":"1184913528593043457","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","url":"https:\/\/t.co\/Tm0zW0wm96","display_url":"pic.twitter.com\/Tm0zW0wm96","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1184913532300808193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1135,"h":1145,"resize":"fit"},"small":{"w":674,"h":680,"resize":"fit"},"large":{"w":1135,"h":1145,"resize":"fit"}},"source_status_id":1184913532300808193,"source_status_id_str":"1184913532300808193","source_user_id":48223678,"source_user_id_str":"48223678"}]},"extended_entities":{"media":[{"id":1184913528593043457,"id_str":"1184913528593043457","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","url":"https:\/\/t.co\/Tm0zW0wm96","display_url":"pic.twitter.com\/Tm0zW0wm96","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1184913532300808193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1135,"h":1145,"resize":"fit"},"small":{"w":674,"h":680,"resize":"fit"},"large":{"w":1135,"h":1145,"resize":"fit"}},"source_status_id":1184913532300808193,"source_status_id_str":"1184913532300808193","source_user_id":48223678,"source_user_id_str":"48223678","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2950104673,"id_str":"2950104673","name":"Ayodeji + Ibukun","screen_name":"lbukunAA","location":"Oklahoma, USA","description":"B.Engrg + MS MNSE","url":"https:\/\/t.co\/kVfuPQQfYs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kVfuPQQfYs","expanded_url":"http:\/\/www.ayoibukun.com","display_url":"ayoibukun.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":489,"listed_count":0,"created_at":"Mon + Dec 29 12:06:33 +0000 2014","favourites_count":665,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":154,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2950104673\/1574622610","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 17 19:26:15 +0000 2019","id":1184913532300808193,"id_str":"1184913532300808193","full_text":"#SneakPeek + - doing a run through of our #AECT19 workshop in @EdTechOkstate class. #AECT19inspired + https:\/\/t.co\/Tm0zW0wm96","truncated":false,"display_text_range":[0,97],"entities":{"hashtags":[{"text":"SneakPeek","indices":[0,10]},{"text":"AECT19","indices":[40,47]},{"text":"AECT19inspired","indices":[82,97]}],"symbols":[],"user_mentions":[{"screen_name":"EdTechOkstate","name":"Okstate + Ed Tech","id":4141659852,"id_str":"4141659852","indices":[60,74]}],"urls":[],"media":[{"id":1184913528593043457,"id_str":"1184913528593043457","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","url":"https:\/\/t.co\/Tm0zW0wm96","display_url":"pic.twitter.com\/Tm0zW0wm96","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1184913532300808193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1135,"h":1145,"resize":"fit"},"small":{"w":674,"h":680,"resize":"fit"},"large":{"w":1135,"h":1145,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184913528593043457,"id_str":"1184913528593043457","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","url":"https:\/\/t.co\/Tm0zW0wm96","display_url":"pic.twitter.com\/Tm0zW0wm96","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1184913532300808193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1135,"h":1145,"resize":"fit"},"small":{"w":674,"h":680,"resize":"fit"},"large":{"w":1135,"h":1145,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 18 19:16:07 +0000 2019","id":1185273369761067009,"id_str":"1185273369761067009","full_text":"RT + @AnnaRoseLeach: To those of you that hire instructional designers, what are + you looking for in a candidate? @caranorth11 @dr_tracy_s @c\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[3,17]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[112,124]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":24551605,"id_str":"24551605","name":"Mike + Kunkle","screen_name":"Mike_Kunkle","location":"New Hampshire, USA","description":"VP + #SalesEffectiveness Services @SPARXiQ | Author: The #BuildingBlocks of #SalesEnablement + | #SalesTraining & #SalesCoaching: https:\/\/t.co\/qKYcoXIWRh","url":"https:\/\/t.co\/3eNCBdI9LD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/3eNCBdI9LD","expanded_url":"https:\/\/bit.ly\/BBofSE","display_url":"bit.ly\/BBofSE","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/qKYcoXIWRh","expanded_url":"https:\/\/sparxiq.com\/sales-training","display_url":"sparxiq.com\/sales-training","indices":[126,149]}]}},"protected":false,"followers_count":27337,"friends_count":24414,"listed_count":1574,"created_at":"Sun + Mar 15 17:12:47 +0000 2009","favourites_count":9198,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":131230,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0875D4","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1328842274839678977\/RT8MXmOV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1328842274839678977\/RT8MXmOV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24551605\/1590856060","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0D47A1","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"B8AD91","profile_text_color":"2A2C38","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 13:25:29 +0000 2019","id":1185185132522524672,"id_str":"1185185132522524672","full_text":"To + those of you that hire instructional designers, what are you looking for in + a candidate? @caranorth11 @dr_tracy_s @correia65 and I are presenting at + #aect19inspired (an academic conference) about what we think ID graduates + need to be ready for the real world.","truncated":false,"display_text_range":[0,263],"entities":{"hashtags":[{"text":"aect19inspired","indices":[153,168]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[93,105]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[118,128]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"013379ee5729a5e6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/013379ee5729a5e6.json","place_type":"city","name":"Tucson","full_name":"Tucson, + AZ","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-111.083219,32.057802],[-110.747928,32.057802],[-110.747928,32.320979],[-111.083219,32.320979]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":28,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 20:10:59 +0000 2019","id":1185287179637055488,"id_str":"1185287179637055488","full_text":"RT + @koubenec: A little teaser for my @AECT #AECT19inspired session on Thursday + 10\/24 from 9-9:50 am - \"Git Into It: Harnessing the World\u2019s\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[43,58]}],"symbols":[],"user_mentions":[{"screen_name":"koubenec","name":"Noah + Koubenec","id":153965652,"id_str":"153965652","indices":[3,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[37,42]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 18:02:11 +0000 2019","id":1185254766198304768,"id_str":"1185254766198304768","full_text":"A + little teaser for my @AECT #AECT19inspired session on Thursday 10\/24 from + 9-9:50 am - \"Git Into It: Harnessing the World\u2019s Most Popular Open-Source + Software Platform for Education\", made possible by @GitHubDesktop...we just + might use @github to merge constitutional amendments! https:\/\/t.co\/WUlcFFMcdX","truncated":false,"display_text_range":[0,279],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[29,44]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[23,28]},{"screen_name":"GitHubDesktop","name":"GitHub + Desktop","id":872108011719983106,"id_str":"872108011719983106","indices":[201,215]},{"screen_name":"github","name":"GitHub","id":13334762,"id_str":"13334762","indices":[236,243]}],"urls":[],"media":[{"id":1185254757335732224,"id_str":"1185254757335732224","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHLe7AtWkAAQ0XD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHLe7AtWkAAQ0XD.jpg","url":"https:\/\/t.co\/WUlcFFMcdX","display_url":"pic.twitter.com\/WUlcFFMcdX","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1185254766198304768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":944,"h":638,"resize":"fit"},"large":{"w":944,"h":638,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185254757335732224,"id_str":"1185254757335732224","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHLe7AtWkAAQ0XD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHLe7AtWkAAQ0XD.jpg","url":"https:\/\/t.co\/WUlcFFMcdX","display_url":"pic.twitter.com\/WUlcFFMcdX","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1185254766198304768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":944,"h":638,"resize":"fit"},"large":{"w":944,"h":638,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}},"ext_alt_text":"Photoshopped + image of John Trumbull''s Declaration of Independence painting with Jefferson + holding a laptop displaying the GitHub logo"}]},"source":"\u003ca href=\"https:\/\/mobile.twitter.com\" + rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 19:48:59 +0000 2019","id":1185281643654930432,"id_str":"1185281643654930432","full_text":"RT + @hodgesc: You are thinking about turning your #aect19inspired presentations + into manuscripts for @AECTTechTrends, right? @AECT","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[{"text":"aect19inspired","indices":[49,64]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[100,115]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[124,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17467478,"id_str":"17467478","name":"Marshall + G. Jones","screen_name":"marshallgjones","location":"Rock Hill, SC USA","description":"Professor + of Learning Design & Technology. Musician. Photographer. Tweeting about learning, + technology & whatever else strikes me. Tweets are my own.","url":"https:\/\/t.co\/HGRry3tHo4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HGRry3tHo4","expanded_url":"http:\/\/marshallgjones.com","display_url":"marshallgjones.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1022,"friends_count":889,"listed_count":71,"created_at":"Tue + Nov 18 18:26:51 +0000 2008","favourites_count":7553,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8342,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17467478\/1570054414","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 18:20:27 +0000 2019","id":1185259363088375809,"id_str":"1185259363088375809","full_text":"You + are thinking about turning your #aect19inspired presentations into manuscripts + for @AECTTechTrends, right? @AECT","truncated":false,"display_text_range":[0,116],"entities":{"hashtags":[{"text":"aect19inspired","indices":[36,51]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[87,102]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[111,116]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":21,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 01:17:31 +0000 2019","id":1185364318780579846,"id_str":"1185364318780579846","full_text":"RT + @hodgesc: You are thinking about turning your #aect19inspired presentations + into manuscripts for @AECTTechTrends, right? @AECT","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[{"text":"aect19inspired","indices":[49,64]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[100,115]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[124,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 18:20:27 +0000 2019","id":1185259363088375809,"id_str":"1185259363088375809","full_text":"You + are thinking about turning your #aect19inspired presentations into manuscripts + for @AECTTechTrends, right? @AECT","truncated":false,"display_text_range":[0,116],"entities":{"hashtags":[{"text":"aect19inspired","indices":[36,51]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[87,102]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[111,116]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":21,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 01:20:19 +0000 2019","id":1185365023461466112,"id_str":"1185365023461466112","full_text":"RT + @ekowch: AECT Conventioneers! Join me with national leaders from China talking + about the latest trends In China\u2019s vast Education technol\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ekowch","name":"Dr. + Eugene Kowch","id":28518944,"id_str":"28518944","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 20:31:41 +0000 2019","id":1185292389549690880,"id_str":"1185292389549690880","full_text":"AECT + Conventioneers! Join me with national leaders from China talking about the + latest trends In China\u2019s vast Education technology transformation CAET + Special Session in Las Vegas: Wed. Oct. 23 at 1:00 PM in Convention Centre + Pavilion 9. Don\u2019t miss it! @AECT #aect19 @edtechchat https:\/\/t.co\/pK7btfip4l","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"aect19","indices":[259,266]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[253,258]},{"screen_name":"edtechchat","name":"Chris + Borg","id":550773912,"id_str":"550773912","indices":[267,278]}],"urls":[],"media":[{"id":1185292370071306240,"id_str":"1185292370071306240","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","url":"https:\/\/t.co\/pK7btfip4l","display_url":"pic.twitter.com\/pK7btfip4l","expanded_url":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185292370071306240,"id_str":"1185292370071306240","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","url":"https:\/\/t.co\/pK7btfip4l","display_url":"pic.twitter.com\/pK7btfip4l","expanded_url":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28518944,"id_str":"28518944","name":"Dr. + Eugene Kowch","screen_name":"ekowch","location":"Calgary Alberta Canada","description":"Scholar, + Principal, Teacher, Engineer, Past President, AECT, & AERA SIG 17 | Helping + leaders create more adaptable education systems #highered #leadership","url":"https:\/\/t.co\/oDa3vYShbl","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oDa3vYShbl","expanded_url":"https:\/\/ekowch.wixsite.com\/systemsthinkingbook","display_url":"ekowch.wixsite.com\/systemsthinkin\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":936,"friends_count":887,"listed_count":0,"created_at":"Fri + Apr 03 06:44:28 +0000 2009","favourites_count":2393,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1315,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/705885195950370816\/i4XMnRs__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/705885195950370816\/i4XMnRs__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28518944\/1561768634","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 17 19:43:39 +0000 2019","id":1184917911510536192,"id_str":"1184917911510536192","full_text":"RT + @teacherrogers: I''ve added 2 of 3 slide presentations for @AECT''s conference + next week to my blog post. My #aect19inspired mini-workshop\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[110,125]}],"symbols":[],"user_mentions":[{"screen_name":"teacherrogers","name":"Sandra + Annette Rogers, PhD","id":212784618,"id_str":"212784618","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[61,66]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28836047,"id_str":"28836047","name":"Sylvia + Rogers","screen_name":"srogidd","location":"Auburn, AL","description":"PhD + in Instructional Design, I work as an Instructional Designer and Consultant + for Scholarship of Teaching and Learning at the Harrison School of Pharmacy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":550,"friends_count":1089,"listed_count":18,"created_at":"Sat + Apr 04 17:47:27 +0000 2009","favourites_count":12191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2400,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28836047\/1439418186","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 17 17:10:42 +0000 2019","id":1184879421016043525,"id_str":"1184879421016043525","full_text":"I''ve + added 2 of 3 slide presentations for @AECT''s conference next week to my blog + post. My #aect19inspired mini-workshop session for culture, technology, & + learning (@aectclt) is ready. Check it out! https:\/\/t.co\/BkjT0QkOpD","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"aect19inspired","indices":[91,106]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[42,47]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[170,178]}],"urls":[{"url":"https:\/\/t.co\/BkjT0QkOpD","expanded_url":"https:\/\/teacherrogers.wordpress.com\/2019\/09\/07\/join-me-at-aect-2019-in-las-vegas\/","display_url":"teacherrogers.wordpress.com\/2019\/09\/07\/joi\u2026","indices":[204,227]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 20:39:34 +0000 2019","id":1185294371698151424,"id_str":"1185294371698151424","full_text":"RT + @hodgesc: You are thinking about turning your #aect19inspired presentations + into manuscripts for @AECTTechTrends, right? @AECT","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[{"text":"aect19inspired","indices":[49,64]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[100,115]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[124,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 18:20:27 +0000 2019","id":1185259363088375809,"id_str":"1185259363088375809","full_text":"You + are thinking about turning your #aect19inspired presentations into manuscripts + for @AECTTechTrends, right? @AECT","truncated":false,"display_text_range":[0,116],"entities":{"hashtags":[{"text":"aect19inspired","indices":[36,51]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[87,102]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[111,116]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":21,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 12:24:12 +0000 2019","id":1185532096279916544,"id_str":"1185532096279916544","full_text":"Ready + and headed to #aect19 in Las Vegas today! Can''t wait to spend time with my + professional family this week! #inspired","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"aect19","indices":[20,27]},{"text":"inspired","indices":[112,121]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":335613192,"id_str":"335613192","name":"Megan + C. Murtaugh, Ed.D.","screen_name":"MeganCMurtaugh","location":"","description":"Instructional + Design | Curriculum Development | Technology Integration | Online Learning","url":"http:\/\/t.co\/o8Fu5KipP8","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/o8Fu5KipP8","expanded_url":"http:\/\/www.megancmurtaugh.com","display_url":"megancmurtaugh.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":435,"friends_count":446,"listed_count":11,"created_at":"Thu + Jul 14 23:37:30 +0000 2011","favourites_count":767,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":433,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1239713824913186816\/ufuVavfV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1239713824913186816\/ufuVavfV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/335613192\/1584405785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"4ec01c9dbc693497","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4ec01c9dbc693497.json","place_type":"admin","name":"Florida","full_name":"Florida, + USA","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-87.634643,24.396308],[-79.974307,24.396308],[-79.974307,31.001056],[-87.634643,31.001056]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":22,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 01:18:58 +0000 2019","id":1185364685782245377,"id_str":"1185364685782245377","full_text":"RT + @valarywithawhy: Want a sneak peek of one of my #aect19 sessions? Here you + go! #aect19inspired https:\/\/t.co\/jgE3g6cyyo","truncated":false,"display_text_range":[0,121],"entities":{"hashtags":[{"text":"aect19","indices":[51,58]},{"text":"aect19inspired","indices":[82,97]}],"symbols":[],"user_mentions":[{"screen_name":"valarywithawhy","name":"Valary + Oleinik","id":111391715,"id_str":"111391715","indices":[3,18]}],"urls":[],"media":[{"id":1184911673074880514,"id_str":"1184911673074880514","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184911673074880514\/pu\/img\/XJs86Szp6ujDz8IL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184911673074880514\/pu\/img\/XJs86Szp6ujDz8IL.jpg","url":"https:\/\/t.co\/jgE3g6cyyo","display_url":"pic.twitter.com\/jgE3g6cyyo","expanded_url":"https:\/\/twitter.com\/valarywithawhy\/status\/1184911765139873794\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1184911765139873794,"source_status_id_str":"1184911765139873794","source_user_id":111391715,"source_user_id_str":"111391715"}]},"extended_entities":{"media":[{"id":1184911673074880514,"id_str":"1184911673074880514","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184911673074880514\/pu\/img\/XJs86Szp6ujDz8IL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184911673074880514\/pu\/img\/XJs86Szp6ujDz8IL.jpg","url":"https:\/\/t.co\/jgE3g6cyyo","display_url":"pic.twitter.com\/jgE3g6cyyo","expanded_url":"https:\/\/twitter.com\/valarywithawhy\/status\/1184911765139873794\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"source_status_id":1184911765139873794,"source_status_id_str":"1184911765139873794","source_user_id":111391715,"source_user_id_str":"111391715","video_info":{"aspect_ratio":[16,9],"duration_millis":19019,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184911673074880514\/pu\/vid\/480x270\/90J6ZeHJ2Qi_1Q7S.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184911673074880514\/pu\/pl\/0woihr7spl1DnuVM.m3u8?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184911673074880514\/pu\/vid\/1280x720\/9tjwX29_U9i1wTe7.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184911673074880514\/pu\/vid\/640x360\/t_3bluH5NjK7eRY7.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false,"source_user":{"id":111391715,"id_str":"111391715","name":"Valary + Oleinik","screen_name":"valarywithawhy","location":"New York, NY","description":"speaker + | engager of learners | gamifier of things | unleasher of creativity | geek + | writer | queriest","url":"https:\/\/t.co\/5XjhvhYTqb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5XjhvhYTqb","expanded_url":"http:\/\/www.valarywithawhy.com","display_url":"valarywithawhy.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1251,"friends_count":1550,"listed_count":60,"created_at":"Thu + Feb 04 19:24:07 +0000 2010","favourites_count":9041,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4317,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111391715\/1454624226","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]}}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 17 19:19:14 +0000 2019","id":1184911765139873794,"id_str":"1184911765139873794","full_text":"Want + a sneak peek of one of my #aect19 sessions? Here you go! #aect19inspired https:\/\/t.co\/jgE3g6cyyo","truncated":false,"display_text_range":[0,77],"entities":{"hashtags":[{"text":"aect19","indices":[31,38]},{"text":"aect19inspired","indices":[62,77]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1184911673074880514,"id_str":"1184911673074880514","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184911673074880514\/pu\/img\/XJs86Szp6ujDz8IL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184911673074880514\/pu\/img\/XJs86Szp6ujDz8IL.jpg","url":"https:\/\/t.co\/jgE3g6cyyo","display_url":"pic.twitter.com\/jgE3g6cyyo","expanded_url":"https:\/\/twitter.com\/valarywithawhy\/status\/1184911765139873794\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184911673074880514,"id_str":"1184911673074880514","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184911673074880514\/pu\/img\/XJs86Szp6ujDz8IL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184911673074880514\/pu\/img\/XJs86Szp6ujDz8IL.jpg","url":"https:\/\/t.co\/jgE3g6cyyo","display_url":"pic.twitter.com\/jgE3g6cyyo","expanded_url":"https:\/\/twitter.com\/valarywithawhy\/status\/1184911765139873794\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":19019,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184911673074880514\/pu\/vid\/480x270\/90J6ZeHJ2Qi_1Q7S.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184911673074880514\/pu\/pl\/0woihr7spl1DnuVM.m3u8?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184911673074880514\/pu\/vid\/1280x720\/9tjwX29_U9i1wTe7.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184911673074880514\/pu\/vid\/640x360\/t_3bluH5NjK7eRY7.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":111391715,"id_str":"111391715","name":"Valary + Oleinik","screen_name":"valarywithawhy","location":"New York, NY","description":"speaker + | engager of learners | gamifier of things | unleasher of creativity | geek + | writer | queriest","url":"https:\/\/t.co\/5XjhvhYTqb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5XjhvhYTqb","expanded_url":"http:\/\/www.valarywithawhy.com","display_url":"valarywithawhy.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1251,"friends_count":1550,"listed_count":60,"created_at":"Thu + Feb 04 19:24:07 +0000 2010","favourites_count":9041,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4317,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111391715\/1454624226","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 18 20:48:34 +0000 2019","id":1185296636278214656,"id_str":"1185296636278214656","full_text":"You + know, @RobBranch #inspiredme today. He provoked me to interrogate my own thinking + about student centeredness & how I invite students into our course and + content with expectations. #aect19inspired https:\/\/t.co\/xlPh87Kphq","truncated":false,"display_text_range":[0,203],"entities":{"hashtags":[{"text":"inspiredme","indices":[21,32]},{"text":"aect19inspired","indices":[188,203]}],"symbols":[],"user_mentions":[{"screen_name":"RobBranch","name":"Rob + Branch","id":114768863,"id_str":"114768863","indices":[10,20]}],"urls":[],"media":[{"id":1185296617001209856,"id_str":"1185296617001209856","indices":[204,227],"media_url":"http:\/\/pbs.twimg.com\/media\/EHME_kHUUAA9GXL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHME_kHUUAA9GXL.jpg","url":"https:\/\/t.co\/xlPh87Kphq","display_url":"pic.twitter.com\/xlPh87Kphq","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1185296636278214656\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185296617001209856,"id_str":"1185296617001209856","indices":[204,227],"media_url":"http:\/\/pbs.twimg.com\/media\/EHME_kHUUAA9GXL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHME_kHUUAA9GXL.jpg","url":"https:\/\/t.co\/xlPh87Kphq","display_url":"pic.twitter.com\/xlPh87Kphq","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1185296636278214656\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"6057f1e35bcc6c20","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/6057f1e35bcc6c20.json","place_type":"admin","name":"South + Carolina","full_name":"South Carolina, USA","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-83.353955,32.04683],[-78.499301,32.04683],[-78.499301,35.215449],[-83.353955,35.215449]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 19 01:17:05 +0000 2019","id":1185364210592768000,"id_str":"1185364210592768000","full_text":"RT + @michaelmgrant: You know, @RobBranch #inspiredme today. He provoked me to + interrogate my own thinking about student centeredness & how I\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"inspiredme","indices":[40,51]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[3,17]},{"screen_name":"RobBranch","name":"Rob + Branch","id":114768863,"id_str":"114768863","indices":[29,39]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 20:48:34 +0000 2019","id":1185296636278214656,"id_str":"1185296636278214656","full_text":"You + know, @RobBranch #inspiredme today. He provoked me to interrogate my own thinking + about student centeredness & how I invite students into our course and + content with expectations. #aect19inspired https:\/\/t.co\/xlPh87Kphq","truncated":false,"display_text_range":[0,203],"entities":{"hashtags":[{"text":"inspiredme","indices":[21,32]},{"text":"aect19inspired","indices":[188,203]}],"symbols":[],"user_mentions":[{"screen_name":"RobBranch","name":"Rob + Branch","id":114768863,"id_str":"114768863","indices":[10,20]}],"urls":[],"media":[{"id":1185296617001209856,"id_str":"1185296617001209856","indices":[204,227],"media_url":"http:\/\/pbs.twimg.com\/media\/EHME_kHUUAA9GXL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHME_kHUUAA9GXL.jpg","url":"https:\/\/t.co\/xlPh87Kphq","display_url":"pic.twitter.com\/xlPh87Kphq","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1185296636278214656\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185296617001209856,"id_str":"1185296617001209856","indices":[204,227],"media_url":"http:\/\/pbs.twimg.com\/media\/EHME_kHUUAA9GXL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHME_kHUUAA9GXL.jpg","url":"https:\/\/t.co\/xlPh87Kphq","display_url":"pic.twitter.com\/xlPh87Kphq","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1185296636278214656\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"6057f1e35bcc6c20","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/6057f1e35bcc6c20.json","place_type":"admin","name":"South + Carolina","full_name":"South Carolina, USA","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-83.353955,32.04683],[-78.499301,32.04683],[-78.499301,35.215449],[-83.353955,35.215449]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 14:34:20 +0000 2019","id":1185202455400738817,"id_str":"1185202455400738817","full_text":"Since + I''m waiting for my wife to give birth to our first child, I will not be at + @AECT this year. But as the rest of you are packing, be sure to include your + favorite game(s) for the @tedaect game night! sign up now: https:\/\/t.co\/PXJbVJKWJZ + #AECT19","truncated":false,"display_text_range":[0,248],"entities":{"hashtags":[{"text":"AECT19","indices":[241,248]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[81,86]},{"screen_name":"tedaect","name":"TED + AECT","id":2165058337,"id_str":"2165058337","indices":[183,191]}],"urls":[{"url":"https:\/\/t.co\/PXJbVJKWJZ","expanded_url":"http:\/\/bit.ly\/TEDgames","display_url":"bit.ly\/TEDgames","indices":[217,240]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":219411364,"id_str":"219411364","name":"Cecil + R. Short","screen_name":"CecilRShort","location":"Emporia, KS","description":"Championing + accessibility \ud83d\udddd\ufe0f, agency \u270a\ud83c\udffd, and teacher-student + partnerships \ud83d\udc65 through Personalized Learning, Open Education, and + Blended Learning.","url":"https:\/\/t.co\/nOyAi640pV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nOyAi640pV","expanded_url":"https:\/\/cecilrshort.com\/","display_url":"cecilrshort.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":380,"friends_count":792,"listed_count":3,"created_at":"Wed + Nov 24 19:59:25 +0000 2010","favourites_count":2107,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":688,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1389994794450001921\/7HTxepve_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1389994794450001921\/7HTxepve_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/219411364\/1547221422","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"002E5D","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 19 01:54:21 +0000 2019","id":1185373590818037761,"id_str":"1185373590818037761","full_text":"RT + @AnnaRoseLeach: To those of you that hire instructional designers, what are + you looking for in a candidate? @caranorth11 @dr_tracy_s @c\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[3,17]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[112,124]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":42710349,"id_str":"42710349","name":"Christy + Tucker","screen_name":"ChristyATucker","location":"North Carolina","description":"I + use storytelling and technology create learning experiences that engage learners. + she\/her","url":"https:\/\/t.co\/h9aLa0lXec","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/h9aLa0lXec","expanded_url":"https:\/\/www.christytuckerlearning.com\/","display_url":"christytuckerlearning.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4240,"friends_count":2153,"listed_count":177,"created_at":"Tue + May 26 20:23:07 +0000 2009","favourites_count":5460,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3793,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1472490523\/profile_square_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1472490523\/profile_square_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/42710349\/1527688840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"2C2C16","profile_sidebar_fill_color":"2C4A41","profile_text_color":"66906E","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 13:25:29 +0000 2019","id":1185185132522524672,"id_str":"1185185132522524672","full_text":"To + those of you that hire instructional designers, what are you looking for in + a candidate? @caranorth11 @dr_tracy_s @correia65 and I are presenting at + #aect19inspired (an academic conference) about what we think ID graduates + need to be ready for the real world.","truncated":false,"display_text_range":[0,263],"entities":{"hashtags":[{"text":"aect19inspired","indices":[153,168]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[93,105]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[118,128]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"013379ee5729a5e6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/013379ee5729a5e6.json","place_type":"city","name":"Tucson","full_name":"Tucson, + AZ","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-111.083219,32.057802],[-110.747928,32.057802],[-110.747928,32.320979],[-111.083219,32.320979]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":28,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 01:19:12 +0000 2019","id":1185364742405283841,"id_str":"1185364742405283841","full_text":"RT + @tutaleni: #SneakPeek - doing a run through of our #AECT19 workshop in @EdTechOkstate + class. #AECT19inspired https:\/\/t.co\/Tm0zW0wm96","truncated":false,"display_text_range":[0,135],"entities":{"hashtags":[{"text":"SneakPeek","indices":[14,24]},{"text":"AECT19","indices":[54,61]},{"text":"AECT19inspired","indices":[96,111]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]},{"screen_name":"EdTechOkstate","name":"Okstate + Ed Tech","id":4141659852,"id_str":"4141659852","indices":[74,88]}],"urls":[],"media":[{"id":1184913528593043457,"id_str":"1184913528593043457","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","url":"https:\/\/t.co\/Tm0zW0wm96","display_url":"pic.twitter.com\/Tm0zW0wm96","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1184913532300808193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1135,"h":1145,"resize":"fit"},"small":{"w":674,"h":680,"resize":"fit"},"large":{"w":1135,"h":1145,"resize":"fit"}},"source_status_id":1184913532300808193,"source_status_id_str":"1184913532300808193","source_user_id":48223678,"source_user_id_str":"48223678"}]},"extended_entities":{"media":[{"id":1184913528593043457,"id_str":"1184913528593043457","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","url":"https:\/\/t.co\/Tm0zW0wm96","display_url":"pic.twitter.com\/Tm0zW0wm96","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1184913532300808193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1135,"h":1145,"resize":"fit"},"small":{"w":674,"h":680,"resize":"fit"},"large":{"w":1135,"h":1145,"resize":"fit"}},"source_status_id":1184913532300808193,"source_status_id_str":"1184913532300808193","source_user_id":48223678,"source_user_id_str":"48223678","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 17 19:26:15 +0000 2019","id":1184913532300808193,"id_str":"1184913532300808193","full_text":"#SneakPeek + - doing a run through of our #AECT19 workshop in @EdTechOkstate class. #AECT19inspired + https:\/\/t.co\/Tm0zW0wm96","truncated":false,"display_text_range":[0,97],"entities":{"hashtags":[{"text":"SneakPeek","indices":[0,10]},{"text":"AECT19","indices":[40,47]},{"text":"AECT19inspired","indices":[82,97]}],"symbols":[],"user_mentions":[{"screen_name":"EdTechOkstate","name":"Okstate + Ed Tech","id":4141659852,"id_str":"4141659852","indices":[60,74]}],"urls":[],"media":[{"id":1184913528593043457,"id_str":"1184913528593043457","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","url":"https:\/\/t.co\/Tm0zW0wm96","display_url":"pic.twitter.com\/Tm0zW0wm96","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1184913532300808193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1135,"h":1145,"resize":"fit"},"small":{"w":674,"h":680,"resize":"fit"},"large":{"w":1135,"h":1145,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184913528593043457,"id_str":"1184913528593043457","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","url":"https:\/\/t.co\/Tm0zW0wm96","display_url":"pic.twitter.com\/Tm0zW0wm96","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1184913532300808193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1135,"h":1145,"resize":"fit"},"small":{"w":674,"h":680,"resize":"fit"},"large":{"w":1135,"h":1145,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 18 18:55:29 +0000 2019","id":1185268178898903045,"id_str":"1185268178898903045","full_text":"Your + change to get 10 unofficial embroidery patches for #aect19inspired. This way: + (1) Like this tweet and (2) come and get them early at this session: Tue, + Oct 22, 4:00 to 5:30pm, Walkthru-Events. Bring your sewing kit. @tecfa #aect19 + #machineembroidery @FacLabUnige https:\/\/t.co\/S6xn62ungn","truncated":false,"display_text_range":[0,267],"entities":{"hashtags":[{"text":"aect19inspired","indices":[56,71]},{"text":"aect19","indices":[228,235]},{"text":"machineembroidery","indices":[236,254]}],"symbols":[],"user_mentions":[{"screen_name":"tecfa","name":"TECFA","id":24355006,"id_str":"24355006","indices":[221,227]},{"screen_name":"FacLabUnige","name":"FacLabUnige","id":781887225088933888,"id_str":"781887225088933888","indices":[255,267]}],"urls":[],"media":[{"id":1185268171151958016,"id_str":"1185268171151958016","indices":[268,291],"media_url":"http:\/\/pbs.twimg.com\/media\/EHLrHzEW4AAT8Ec.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHLrHzEW4AAT8Ec.jpg","url":"https:\/\/t.co\/S6xn62ungn","display_url":"pic.twitter.com\/S6xn62ungn","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1185268178898903045\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":747,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1275,"resize":"fit"},"small":{"w":680,"h":423,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185268171151958016,"id_str":"1185268171151958016","indices":[268,291],"media_url":"http:\/\/pbs.twimg.com\/media\/EHLrHzEW4AAT8Ec.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHLrHzEW4AAT8Ec.jpg","url":"https:\/\/t.co\/S6xn62ungn","display_url":"pic.twitter.com\/S6xn62ungn","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1185268178898903045\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":747,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1275,"resize":"fit"},"small":{"w":680,"h":423,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 19 01:17:42 +0000 2019","id":1185364367380045824,"id_str":"1185364367380045824","full_text":"RT + @koubenec: A little teaser for my @AECT #AECT19inspired session on Thursday + 10\/24 from 9-9:50 am - \"Git Into It: Harnessing the World\u2019s\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[43,58]}],"symbols":[],"user_mentions":[{"screen_name":"koubenec","name":"Noah + Koubenec","id":153965652,"id_str":"153965652","indices":[3,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[37,42]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 18:02:11 +0000 2019","id":1185254766198304768,"id_str":"1185254766198304768","full_text":"A + little teaser for my @AECT #AECT19inspired session on Thursday 10\/24 from + 9-9:50 am - \"Git Into It: Harnessing the World\u2019s Most Popular Open-Source + Software Platform for Education\", made possible by @GitHubDesktop...we just + might use @github to merge constitutional amendments! https:\/\/t.co\/WUlcFFMcdX","truncated":false,"display_text_range":[0,279],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[29,44]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[23,28]},{"screen_name":"GitHubDesktop","name":"GitHub + Desktop","id":872108011719983106,"id_str":"872108011719983106","indices":[201,215]},{"screen_name":"github","name":"GitHub","id":13334762,"id_str":"13334762","indices":[236,243]}],"urls":[],"media":[{"id":1185254757335732224,"id_str":"1185254757335732224","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHLe7AtWkAAQ0XD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHLe7AtWkAAQ0XD.jpg","url":"https:\/\/t.co\/WUlcFFMcdX","display_url":"pic.twitter.com\/WUlcFFMcdX","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1185254766198304768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":944,"h":638,"resize":"fit"},"large":{"w":944,"h":638,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185254757335732224,"id_str":"1185254757335732224","indices":[280,303],"media_url":"http:\/\/pbs.twimg.com\/media\/EHLe7AtWkAAQ0XD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHLe7AtWkAAQ0XD.jpg","url":"https:\/\/t.co\/WUlcFFMcdX","display_url":"pic.twitter.com\/WUlcFFMcdX","expanded_url":"https:\/\/twitter.com\/koubenec\/status\/1185254766198304768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":944,"h":638,"resize":"fit"},"large":{"w":944,"h":638,"resize":"fit"},"small":{"w":680,"h":460,"resize":"fit"}},"ext_alt_text":"Photoshopped + image of John Trumbull''s Declaration of Independence painting with Jefferson + holding a laptop displaying the GitHub logo"}]},"source":"\u003ca href=\"https:\/\/mobile.twitter.com\" + rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 11:35:11 +0000 2019","id":1185519759967821824,"id_str":"1185519759967821824","full_text":"Come + see our #aect19 session Tuesday at 9 am! https:\/\/t.co\/W97VdgjjOz","truncated":false,"display_text_range":[0,45],"entities":{"hashtags":[{"text":"aect19","indices":[13,20]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/W97VdgjjOz","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477","display_url":"twitter.com\/robmoore3\/stat\u2026","indices":[46,69]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1122991739692777477,"quoted_status_id_str":"1122991739692777477","quoted_status_permalink":{"url":"https:\/\/t.co\/W97VdgjjOz","expanded":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477","display":"twitter.com\/robmoore3\/stat\u2026"},"quoted_status":{"created_at":"Mon + Apr 29 22:31:09 +0000 2019","id":1122991739692777477,"id_str":"1122991739692777477","full_text":"Chuang + Wang (@uncc_coed) and I will be presenting @AECT the results of our latent + profile analysis of a HarvardX course to identify the motivational factors + that influence #MOOC completion #aect19 #aect19inspired https:\/\/t.co\/ax3rdGkoiz","truncated":false,"display_text_range":[0,212],"entities":{"hashtags":[{"text":"MOOC","indices":[172,177]},{"text":"aect19","indices":[189,196]},{"text":"aect19inspired","indices":[197,212]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[50,55]}],"urls":[],"media":[{"id":1122990385578557443,"id_str":"1122990385578557443","indices":[213,236],"media_url":"http:\/\/pbs.twimg.com\/media\/D5WpzkqWwAMQ1Iw.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/D5WpzkqWwAMQ1Iw.png","url":"https:\/\/t.co\/ax3rdGkoiz","display_url":"pic.twitter.com\/ax3rdGkoiz","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1122990385578557443,"id_str":"1122990385578557443","indices":[213,236],"media_url":"http:\/\/pbs.twimg.com\/media\/D5WpzkqWwAMQ1Iw.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/D5WpzkqWwAMQ1Iw.png","url":"https:\/\/t.co\/ax3rdGkoiz","display_url":"pic.twitter.com\/ax3rdGkoiz","expanded_url":"https:\/\/twitter.com\/robmoore3\/status\/1122991739692777477\/photo\/1","type":"photo","sizes":{"large":{"w":646,"h":580,"resize":"fit"},"medium":{"w":646,"h":580,"resize":"fit"},"small":{"w":646,"h":580,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 17 17:55:42 +0000 2019","id":1184890746521997312,"id_str":"1184890746521997312","full_text":"#aect19 + Rhino.inside class was really cool! So many possibilities!!","truncated":false,"display_text_range":[0,67],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":207885914,"id_str":"207885914","name":"Pablo + Derendinger","screen_name":"pderen","location":"California, USA","description":"Comandante + Krishnamerk - BIM enthusiast - Python noob and all that stuff...","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":256,"friends_count":487,"listed_count":6,"created_at":"Tue + Oct 26 06:56:02 +0000 2010","favourites_count":1194,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":498,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/835266268567638022\/RoQN5Q19_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/835266268567638022\/RoQN5Q19_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 17 14:50:49 +0000 2019","id":1184844217916493824,"id_str":"1184844217916493824","full_text":"RT + @AECT: Have you downloaded\/updated the #AECT19 app yet? Get it today!\n\n\ud83c\udf4e- + https:\/\/t.co\/wGmQg29rRb \n\u25b6\ufe0f- https:\/\/t.co\/DBp8L89r9E https:\/\/t\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[42,49]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[{"url":"https:\/\/t.co\/wGmQg29rRb","expanded_url":"http:\/\/bit.ly\/AECTapple","display_url":"bit.ly\/AECTapple","indices":[77,100]},{"url":"https:\/\/t.co\/DBp8L89r9E","expanded_url":"http:\/\/bit.ly\/AECTandroid","display_url":"bit.ly\/AECTandroid","indices":[106,129]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17467478,"id_str":"17467478","name":"Marshall + G. Jones","screen_name":"marshallgjones","location":"Rock Hill, SC USA","description":"Professor + of Learning Design & Technology. Musician. Photographer. Tweeting about learning, + technology & whatever else strikes me. Tweets are my own.","url":"https:\/\/t.co\/HGRry3tHo4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HGRry3tHo4","expanded_url":"http:\/\/marshallgjones.com","display_url":"marshallgjones.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1022,"friends_count":889,"listed_count":71,"created_at":"Tue + Nov 18 18:26:51 +0000 2008","favourites_count":7553,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8342,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17467478\/1570054414","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 17 01:47:09 +0000 2019","id":1184647001411149825,"id_str":"1184647001411149825","full_text":"Have + you downloaded\/updated the #AECT19 app yet? Get it today!\n\n\ud83c\udf4e- + https:\/\/t.co\/wGmQg29rRb \n\u25b6\ufe0f- https:\/\/t.co\/DBp8L89r9E https:\/\/t.co\/gm8suqlrdV","truncated":false,"display_text_range":[0,119],"entities":{"hashtags":[{"text":"AECT19","indices":[32,39]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wGmQg29rRb","expanded_url":"http:\/\/bit.ly\/AECTapple","display_url":"bit.ly\/AECTapple","indices":[67,90]},{"url":"https:\/\/t.co\/DBp8L89r9E","expanded_url":"http:\/\/bit.ly\/AECTandroid","display_url":"bit.ly\/AECTandroid","indices":[96,119]}],"media":[{"id":1184646996939956226,"id_str":"1184646996939956226","indices":[120,143],"media_url":"http:\/\/pbs.twimg.com\/media\/EHC2KszW4AIjtx2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHC2KszW4AIjtx2.jpg","url":"https:\/\/t.co\/gm8suqlrdV","display_url":"pic.twitter.com\/gm8suqlrdV","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1184647001411149825\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":403,"resize":"fit"},"large":{"w":640,"h":403,"resize":"fit"},"medium":{"w":640,"h":403,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184646996939956226,"id_str":"1184646996939956226","indices":[120,143],"media_url":"http:\/\/pbs.twimg.com\/media\/EHC2KszW4AIjtx2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHC2KszW4AIjtx2.jpg","url":"https:\/\/t.co\/gm8suqlrdV","display_url":"pic.twitter.com\/gm8suqlrdV","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1184647001411149825\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":403,"resize":"fit"},"large":{"w":640,"h":403,"resize":"fit"},"medium":{"w":640,"h":403,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 19 13:47:39 +0000 2019","id":1185553098300907520,"id_str":"1185553098300907520","full_text":"RT + @FredWBaker: AECT''s Systems Thinking & Change Division released a Call + for Proposals for our special issue of @AECTTechTrends!! Please c\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[117,132]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 02 13:32:27 +0000 2019","id":1179388678793306112,"id_str":"1179388678793306112","full_text":"AECT''s + Systems Thinking & Change Division released a Call for Proposals for our + special issue of @AECTTechTrends!! Please consider submitting a proposal, + and please share with your colleagues! #aectstc #aect19 https:\/\/t.co\/ygldlqUE5o","truncated":false,"display_text_range":[0,237],"entities":{"hashtags":[{"text":"aectstc","indices":[197,205]},{"text":"aect19","indices":[206,213]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[101,116]}],"urls":[{"url":"https:\/\/t.co\/ygldlqUE5o","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view?usp=sharing","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[214,237]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 15:09:15 +0000 2019","id":1185573633391022080,"id_str":"1185573633391022080","full_text":"RT + @DrVirtuality: Looking for @AECT sessions to attend? Come explore #virtualityculturetheory. + @gsa_aect @aectclt #AECT19 #AECT19inspired h\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"virtualityculturetheory","indices":[69,93]},{"text":"AECT19","indices":[114,121]},{"text":"AECT19inspired","indices":[122,137]}],"symbols":[],"user_mentions":[{"screen_name":"DrVirtuality","name":"Camille + Dempsey","id":15667548,"id_str":"15667548","indices":[3,16]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[30,35]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[95,104]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[105,113]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 19 06:59:13 +0000 2019","id":1185450309503479809,"id_str":"1185450309503479809","full_text":"Looking + for @AECT sessions to attend? Come explore #virtualityculturetheory. @gsa_aect + @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/f4HD9B9rCa","truncated":false,"display_text_range":[0,119],"entities":{"hashtags":[{"text":"virtualityculturetheory","indices":[51,75]},{"text":"AECT19","indices":[96,103]},{"text":"AECT19inspired","indices":[104,119]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[12,17]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[77,86]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[87,95]}],"urls":[],"media":[{"id":1185450304646471680,"id_str":"1185450304646471680","indices":[120,143],"media_url":"http:\/\/pbs.twimg.com\/media\/EHOQxXNU4AAxUUE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHOQxXNU4AAxUUE.jpg","url":"https:\/\/t.co\/f4HD9B9rCa","display_url":"pic.twitter.com\/f4HD9B9rCa","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185450309503479809\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185450304646471680,"id_str":"1185450304646471680","indices":[120,143],"media_url":"http:\/\/pbs.twimg.com\/media\/EHOQxXNU4AAxUUE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHOQxXNU4AAxUUE.jpg","url":"https:\/\/t.co\/f4HD9B9rCa","display_url":"pic.twitter.com\/f4HD9B9rCa","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185450309503479809\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 17 20:44:10 +0000 2019","id":1184933143205371904,"id_str":"1184933143205371904","full_text":"Proud + to get \"Reviewer Excellence Award 2019\" by ETR&D to be presented at + #AECT19. Feel motivated to review more \ud83d\udc4d\nAppreciate #ETRD editors + for recognizing all my efforts as a reviewer. See you in Las Vegas\n@AECT + @Publons #Review @PeerRevWeek","truncated":false,"display_text_range":[0,246],"entities":{"hashtags":[{"text":"AECT19","indices":[78,85]},{"text":"ETRD","indices":[130,135]},{"text":"Review","indices":[226,233]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[211,216]},{"screen_name":"Publons","name":"Publons","id":376019079,"id_str":"376019079","indices":[217,225]},{"screen_name":"PeerRevWeek","name":"PeerReviewWeek","id":856865889869869057,"id_str":"856865889869869057","indices":[234,246]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":26,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 17 19:26:15 +0000 2019","id":1184913532300808193,"id_str":"1184913532300808193","full_text":"#SneakPeek + - doing a run through of our #AECT19 workshop in @EdTechOkstate class. #AECT19inspired + https:\/\/t.co\/Tm0zW0wm96","truncated":false,"display_text_range":[0,97],"entities":{"hashtags":[{"text":"SneakPeek","indices":[0,10]},{"text":"AECT19","indices":[40,47]},{"text":"AECT19inspired","indices":[82,97]}],"symbols":[],"user_mentions":[{"screen_name":"EdTechOkstate","name":"Okstate + Ed Tech","id":4141659852,"id_str":"4141659852","indices":[60,74]}],"urls":[],"media":[{"id":1184913528593043457,"id_str":"1184913528593043457","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","url":"https:\/\/t.co\/Tm0zW0wm96","display_url":"pic.twitter.com\/Tm0zW0wm96","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1184913532300808193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1135,"h":1145,"resize":"fit"},"small":{"w":674,"h":680,"resize":"fit"},"large":{"w":1135,"h":1145,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184913528593043457,"id_str":"1184913528593043457","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","url":"https:\/\/t.co\/Tm0zW0wm96","display_url":"pic.twitter.com\/Tm0zW0wm96","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1184913532300808193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1135,"h":1145,"resize":"fit"},"small":{"w":674,"h":680,"resize":"fit"},"large":{"w":1135,"h":1145,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 18 17:53:55 +0000 2019","id":1185252686180048898,"id_str":"1185252686180048898","full_text":"RT + @AnnaRoseLeach: To those of you that hire instructional designers, what are + you looking for in a candidate? @caranorth11 @dr_tracy_s @c\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[3,17]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[112,124]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":104969348,"id_str":"104969348","name":"Joseph + Suarez","screen_name":"Joseph_Suarez","location":"Columbus, Ohio","description":"Lifelong + learner, first time caller.","url":"https:\/\/t.co\/rqLd2apSDO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rqLd2apSDO","expanded_url":"https:\/\/josephsuarez.com","display_url":"josephsuarez.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1790,"friends_count":366,"listed_count":72,"created_at":"Thu + Jan 14 23:31:12 +0000 2010","favourites_count":2576,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4000,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1400899991917543434\/BqSjF-HU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1400899991917543434\/BqSjF-HU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104969348\/1555963542","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"09A7AA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"regular","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 13:25:29 +0000 2019","id":1185185132522524672,"id_str":"1185185132522524672","full_text":"To + those of you that hire instructional designers, what are you looking for in + a candidate? @caranorth11 @dr_tracy_s @correia65 and I are presenting at + #aect19inspired (an academic conference) about what we think ID graduates + need to be ready for the real world.","truncated":false,"display_text_range":[0,263],"entities":{"hashtags":[{"text":"aect19inspired","indices":[153,168]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[93,105]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[118,128]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"013379ee5729a5e6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/013379ee5729a5e6.json","place_type":"city","name":"Tucson","full_name":"Tucson, + AZ","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-111.083219,32.057802],[-110.747928,32.057802],[-110.747928,32.320979],[-111.083219,32.320979]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":28,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 10:37:57 +0000 2019","id":1185142971546656768,"id_str":"1185142971546656768","full_text":"Ever + since I heard this song in Far Cry 3, it has been on rotation in my hype music. + I can\u2019t believe it\u2019s finally Friday and I\u2019m Vegas bound next + week for #DevLearn and #aect19! What is a song in your hype\/excited music? + https:\/\/t.co\/HCWsX64af1","truncated":false,"display_text_range":[0,244],"entities":{"hashtags":[{"text":"DevLearn","indices":[155,164]},{"text":"aect19","indices":[169,176]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HCWsX64af1","expanded_url":"https:\/\/youtu.be\/PR_u9rvFKzE","display_url":"youtu.be\/PR_u9rvFKzE","indices":[221,244]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 19 01:39:44 +0000 2019","id":1185369910001721344,"id_str":"1185369910001721344","full_text":"RT + @tutaleni: #SneakPeek - doing a run through of our #AECT19 workshop in @EdTechOkstate + class. #AECT19inspired https:\/\/t.co\/Tm0zW0wm96","truncated":false,"display_text_range":[0,135],"entities":{"hashtags":[{"text":"SneakPeek","indices":[14,24]},{"text":"AECT19","indices":[54,61]},{"text":"AECT19inspired","indices":[96,111]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]},{"screen_name":"EdTechOkstate","name":"Okstate + Ed Tech","id":4141659852,"id_str":"4141659852","indices":[74,88]}],"urls":[],"media":[{"id":1184913528593043457,"id_str":"1184913528593043457","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","url":"https:\/\/t.co\/Tm0zW0wm96","display_url":"pic.twitter.com\/Tm0zW0wm96","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1184913532300808193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1135,"h":1145,"resize":"fit"},"small":{"w":674,"h":680,"resize":"fit"},"large":{"w":1135,"h":1145,"resize":"fit"}},"source_status_id":1184913532300808193,"source_status_id_str":"1184913532300808193","source_user_id":48223678,"source_user_id_str":"48223678"}]},"extended_entities":{"media":[{"id":1184913528593043457,"id_str":"1184913528593043457","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","url":"https:\/\/t.co\/Tm0zW0wm96","display_url":"pic.twitter.com\/Tm0zW0wm96","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1184913532300808193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1135,"h":1145,"resize":"fit"},"small":{"w":674,"h":680,"resize":"fit"},"large":{"w":1135,"h":1145,"resize":"fit"}},"source_status_id":1184913532300808193,"source_status_id_str":"1184913532300808193","source_user_id":48223678,"source_user_id_str":"48223678","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 17 19:26:15 +0000 2019","id":1184913532300808193,"id_str":"1184913532300808193","full_text":"#SneakPeek + - doing a run through of our #AECT19 workshop in @EdTechOkstate class. #AECT19inspired + https:\/\/t.co\/Tm0zW0wm96","truncated":false,"display_text_range":[0,97],"entities":{"hashtags":[{"text":"SneakPeek","indices":[0,10]},{"text":"AECT19","indices":[40,47]},{"text":"AECT19inspired","indices":[82,97]}],"symbols":[],"user_mentions":[{"screen_name":"EdTechOkstate","name":"Okstate + Ed Tech","id":4141659852,"id_str":"4141659852","indices":[60,74]}],"urls":[],"media":[{"id":1184913528593043457,"id_str":"1184913528593043457","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","url":"https:\/\/t.co\/Tm0zW0wm96","display_url":"pic.twitter.com\/Tm0zW0wm96","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1184913532300808193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1135,"h":1145,"resize":"fit"},"small":{"w":674,"h":680,"resize":"fit"},"large":{"w":1135,"h":1145,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184913528593043457,"id_str":"1184913528593043457","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHGok4lX0AEyeku.jpg","url":"https:\/\/t.co\/Tm0zW0wm96","display_url":"pic.twitter.com\/Tm0zW0wm96","expanded_url":"https:\/\/twitter.com\/tutaleni\/status\/1184913532300808193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1135,"h":1145,"resize":"fit"},"small":{"w":674,"h":680,"resize":"fit"},"large":{"w":1135,"h":1145,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 18 14:04:43 +0000 2019","id":1185195005171949569,"id_str":"1185195005171949569","full_text":"Preparing + propaganda materials for my poster at #aect19 #aect19inspired @michaelmgrant + (see the one at the bottom) https:\/\/t.co\/WeoKreKjpQ","truncated":false,"display_text_range":[0,114],"entities":{"hashtags":[{"text":"aect19","indices":[48,55]},{"text":"aect19inspired","indices":[56,71]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[72,86]}],"urls":[],"media":[{"id":1185194997085364226,"id_str":"1185194997085364226","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/EHKokgbX4AI0joo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHKokgbX4AI0joo.jpg","url":"https:\/\/t.co\/WeoKreKjpQ","display_url":"pic.twitter.com\/WeoKreKjpQ","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1185195005171949569\/photo\/1","type":"photo","sizes":{"small":{"w":535,"h":680,"resize":"fit"},"large":{"w":1611,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":944,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185194997085364226,"id_str":"1185194997085364226","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/EHKokgbX4AI0joo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHKokgbX4AI0joo.jpg","url":"https:\/\/t.co\/WeoKreKjpQ","display_url":"pic.twitter.com\/WeoKreKjpQ","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1185195005171949569\/photo\/1","type":"photo","sizes":{"small":{"w":535,"h":680,"resize":"fit"},"large":{"w":1611,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":944,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 18 23:23:29 +0000 2019","id":1185335623814647810,"id_str":"1185335623814647810","full_text":"RT + @DKSch: Preparing propaganda materials for my poster at #aect19 #aect19inspired + @michaelmgrant (see the one at the bottom) https:\/\/t.co\/\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[59,66]},{"text":"aect19inspired","indices":[67,82]}],"symbols":[],"user_mentions":[{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[3,9]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[83,97]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":188651317,"id_str":"188651317","name":"Marie-Marthe + Joly","screen_name":"MMJoly","location":"Gen\u00e8ve, Switzerland","description":"#Entrepreneur + #FutureOfWork #DistributedLearning | #LifeLongLearning #phygital #digital + #StudentExperience #FacLab in #PalazzoloAcreide #Geneve","url":"https:\/\/t.co\/4ZsA1eDods","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4ZsA1eDods","expanded_url":"http:\/\/tungxten.com","display_url":"tungxten.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":503,"friends_count":469,"listed_count":121,"created_at":"Thu + Sep 09 07:20:56 +0000 2010","favourites_count":184,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5457,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"A9E5E5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1090989378242007040\/ZBXwb5j6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1090989378242007040\/ZBXwb5j6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/188651317\/1548948647","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2EB4B4","profile_sidebar_border_color":"E83402","profile_sidebar_fill_color":"D9646F","profile_text_color":"C98FB3","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 14:04:43 +0000 2019","id":1185195005171949569,"id_str":"1185195005171949569","full_text":"Preparing + propaganda materials for my poster at #aect19 #aect19inspired @michaelmgrant + (see the one at the bottom) https:\/\/t.co\/WeoKreKjpQ","truncated":false,"display_text_range":[0,114],"entities":{"hashtags":[{"text":"aect19","indices":[48,55]},{"text":"aect19inspired","indices":[56,71]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[72,86]}],"urls":[],"media":[{"id":1185194997085364226,"id_str":"1185194997085364226","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/EHKokgbX4AI0joo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHKokgbX4AI0joo.jpg","url":"https:\/\/t.co\/WeoKreKjpQ","display_url":"pic.twitter.com\/WeoKreKjpQ","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1185195005171949569\/photo\/1","type":"photo","sizes":{"small":{"w":535,"h":680,"resize":"fit"},"large":{"w":1611,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":944,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185194997085364226,"id_str":"1185194997085364226","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/EHKokgbX4AI0joo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHKokgbX4AI0joo.jpg","url":"https:\/\/t.co\/WeoKreKjpQ","display_url":"pic.twitter.com\/WeoKreKjpQ","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1185195005171949569\/photo\/1","type":"photo","sizes":{"small":{"w":535,"h":680,"resize":"fit"},"large":{"w":1611,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":944,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 09:38:46 +0000 2019","id":1185128075580887040,"id_str":"1185128075580887040","full_text":"RT + @teacherrogers: I''ve added 2 of 3 slide presentations for @AECT''s conference + next week to my blog post. My #aect19inspired mini-workshop\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[110,125]}],"symbols":[],"user_mentions":[{"screen_name":"teacherrogers","name":"Sandra + Annette Rogers, PhD","id":212784618,"id_str":"212784618","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[61,66]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":70400517,"id_str":"70400517","name":"Dr. + Aysun G\u00fcne\u015f","screen_name":"AYSUN_GUNES","location":"Anadolu University, + T\u00fcrkiye","description":"MA & PhD on Distance Education, Teacher Trainer + & Lecturer @AnadoluUniversity @Pearson & #TESOL Master Trainer, #edtech #elearning + #microcredentials #eslp","url":"https:\/\/t.co\/XnQ2I2hIKA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XnQ2I2hIKA","expanded_url":"https:\/\/www.instagram.com\/teknolojik_ebeveynler\/","display_url":"instagram.com\/teknolojik_ebe\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2533,"friends_count":4879,"listed_count":76,"created_at":"Mon + Aug 31 14:07:45 +0000 2009","favourites_count":13578,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8667,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1543636965328830464\/uUAVXy1I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1543636965328830464\/uUAVXy1I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/70400517\/1657384630","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"E81C4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 17 17:10:42 +0000 2019","id":1184879421016043525,"id_str":"1184879421016043525","full_text":"I''ve + added 2 of 3 slide presentations for @AECT''s conference next week to my blog + post. My #aect19inspired mini-workshop session for culture, technology, & + learning (@aectclt) is ready. Check it out! https:\/\/t.co\/BkjT0QkOpD","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"aect19inspired","indices":[91,106]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[42,47]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[170,178]}],"urls":[{"url":"https:\/\/t.co\/BkjT0QkOpD","expanded_url":"https:\/\/teacherrogers.wordpress.com\/2019\/09\/07\/join-me-at-aect-2019-in-las-vegas\/","display_url":"teacherrogers.wordpress.com\/2019\/09\/07\/joi\u2026","indices":[204,227]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 13:15:50 +0000 2019","id":1185182701294362624,"id_str":"1185182701294362624","full_text":"Just + added a \"Name that Scholar!\" forum to my foundations class. Finding ways + to have fun with my new iPhone 11 camera. Let me take your picture so my students + can identify you and your work for some extra credit! #AECT19","truncated":false,"display_text_range":[0,222],"entities":{"hashtags":[{"text":"AECT19","indices":[215,222]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19023356,"id_str":"19023356","name":"Beth + Oyarzun","screen_name":"profoyarzun","location":"Charlotte, NC","description":"Clinical + Associate Professor and director of the Learning, Design and Technology program + at UNCC, wife, mom, and scuba diver.","url":"https:\/\/t.co\/GKjzX92eV9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GKjzX92eV9","expanded_url":"https:\/\/sites.google.com\/uncc.edu\/bethoyarzun\/home?authuser=2","display_url":"sites.google.com\/uncc.edu\/betho\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":295,"friends_count":523,"listed_count":15,"created_at":"Thu + Jan 15 14:35:36 +0000 2009","favourites_count":1232,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1082,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650037082346422272\/X3Iy9bMz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650037082346422272\/X3Iy9bMz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19023356\/1566681139","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 01:38:58 +0000 2019","id":1185369718431113216,"id_str":"1185369718431113216","full_text":"RT + @ekowch: AECT Conventioneers! Join me with national leaders from China talking + about the latest trends In China\u2019s vast Education technol\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ekowch","name":"Dr. + Eugene Kowch","id":28518944,"id_str":"28518944","indices":[3,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 20:31:41 +0000 2019","id":1185292389549690880,"id_str":"1185292389549690880","full_text":"AECT + Conventioneers! Join me with national leaders from China talking about the + latest trends In China\u2019s vast Education technology transformation CAET + Special Session in Las Vegas: Wed. Oct. 23 at 1:00 PM in Convention Centre + Pavilion 9. Don\u2019t miss it! @AECT #aect19 @edtechchat https:\/\/t.co\/pK7btfip4l","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"aect19","indices":[259,266]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[253,258]},{"screen_name":"edtechchat","name":"Chris + Borg","id":550773912,"id_str":"550773912","indices":[267,278]}],"urls":[],"media":[{"id":1185292370071306240,"id_str":"1185292370071306240","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","url":"https:\/\/t.co\/pK7btfip4l","display_url":"pic.twitter.com\/pK7btfip4l","expanded_url":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185292370071306240,"id_str":"1185292370071306240","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMBIXEUwAAydis.jpg","url":"https:\/\/t.co\/pK7btfip4l","display_url":"pic.twitter.com\/pK7btfip4l","expanded_url":"https:\/\/twitter.com\/ekowch\/status\/1185292389549690880\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28518944,"id_str":"28518944","name":"Dr. + Eugene Kowch","screen_name":"ekowch","location":"Calgary Alberta Canada","description":"Scholar, + Principal, Teacher, Engineer, Past President, AECT, & AERA SIG 17 | Helping + leaders create more adaptable education systems #highered #leadership","url":"https:\/\/t.co\/oDa3vYShbl","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oDa3vYShbl","expanded_url":"https:\/\/ekowch.wixsite.com\/systemsthinkingbook","display_url":"ekowch.wixsite.com\/systemsthinkin\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":936,"friends_count":887,"listed_count":0,"created_at":"Fri + Apr 03 06:44:28 +0000 2009","favourites_count":2393,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1315,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/705885195950370816\/i4XMnRs__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/705885195950370816\/i4XMnRs__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28518944\/1561768634","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 06:59:13 +0000 2019","id":1185450309503479809,"id_str":"1185450309503479809","full_text":"Looking + for @AECT sessions to attend? Come explore #virtualityculturetheory. @gsa_aect + @aectclt #AECT19 #AECT19inspired https:\/\/t.co\/f4HD9B9rCa","truncated":false,"display_text_range":[0,119],"entities":{"hashtags":[{"text":"virtualityculturetheory","indices":[51,75]},{"text":"AECT19","indices":[96,103]},{"text":"AECT19inspired","indices":[104,119]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[12,17]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[77,86]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[87,95]}],"urls":[],"media":[{"id":1185450304646471680,"id_str":"1185450304646471680","indices":[120,143],"media_url":"http:\/\/pbs.twimg.com\/media\/EHOQxXNU4AAxUUE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHOQxXNU4AAxUUE.jpg","url":"https:\/\/t.co\/f4HD9B9rCa","display_url":"pic.twitter.com\/f4HD9B9rCa","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185450309503479809\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185450304646471680,"id_str":"1185450304646471680","indices":[120,143],"media_url":"http:\/\/pbs.twimg.com\/media\/EHOQxXNU4AAxUUE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHOQxXNU4AAxUUE.jpg","url":"https:\/\/t.co\/f4HD9B9rCa","display_url":"pic.twitter.com\/f4HD9B9rCa","expanded_url":"https:\/\/twitter.com\/DrVirtuality\/status\/1185450309503479809\/photo\/1","type":"photo","sizes":{"large":{"w":940,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":570,"resize":"fit"},"medium":{"w":940,"h":788,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15667548,"id_str":"15667548","name":"Camille + Dempsey","screen_name":"DrVirtuality","location":"Erie, Pennsylvania","description":"\u2735EdTech + Professor \u2735 ISTE 20 to Watch \u2735Virtuality Culture Theorist \u2735ISTE + Community Leader\/AI Faculty \u2735US Dept of Ed Grant & PADeptOfEd Higher + Ed Program Reviewer","url":"https:\/\/t.co\/8dX9J8tMEH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8dX9J8tMEH","expanded_url":"http:\/\/www.linkedin.com\/in\/camilledempsey\/","display_url":"linkedin.com\/in\/camilledemp\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3916,"friends_count":382,"listed_count":0,"created_at":"Wed + Jul 30 22:58:17 +0000 2008","favourites_count":24587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11169,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0A0705","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1131966046670348288\/a3TFTiir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15667548\/1552765627","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"19CF86","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"E66F47","profile_text_color":"1A1106","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 18 20:10:22 +0000 2019","id":1185287023701188608,"id_str":"1185287023701188608","full_text":"RT + @hodgesc: You are thinking about turning your #aect19inspired presentations + into manuscripts for @AECTTechTrends, right? @AECT","truncated":false,"display_text_range":[0,129],"entities":{"hashtags":[{"text":"aect19inspired","indices":[49,64]}],"symbols":[],"user_mentions":[{"screen_name":"hodgesc","name":"Chuck + Hodges","id":14813636,"id_str":"14813636","indices":[3,11]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[100,115]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[124,129]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 18:20:27 +0000 2019","id":1185259363088375809,"id_str":"1185259363088375809","full_text":"You + are thinking about turning your #aect19inspired presentations into manuscripts + for @AECTTechTrends, right? @AECT","truncated":false,"display_text_range":[0,116],"entities":{"hashtags":[{"text":"aect19inspired","indices":[36,51]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[87,102]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[111,116]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":21,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 02:11:00 +0000 2019","id":1185377777979142144,"id_str":"1185377777979142144","full_text":"RT + @AnnaRoseLeach: To those of you that hire instructional designers, what are + you looking for in a candidate? @caranorth11 @dr_tracy_s @c\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[3,17]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[112,124]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":171693619,"id_str":"171693619","name":"\ud83c\udfa4David + Gilbert Voice Over \ud83c\udfa4 #Easy24HourVoiceOver","screen_name":"DavidGilbertVO","location":"Global","description":"\"Giving + YOUR business a voice.\"\n#voiceover #corporate #elearning #commercial #explainer + #IVR\n\nGet a quote: david@davidgilbertvoiceover.com\n\n#Easy24HourVoiceOver","url":"https:\/\/t.co\/uBL3Hgo2Vg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uBL3Hgo2Vg","expanded_url":"https:\/\/sleek.bio\/davidgilbertvo","display_url":"sleek.bio\/davidgilbertvo","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3290,"friends_count":4967,"listed_count":62,"created_at":"Tue + Jul 27 23:21:56 +0000 2010","favourites_count":168945,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":76802,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1453064381051416577\/V4EuhqhN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1453064381051416577\/V4EuhqhN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/171693619\/1634848574","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 13:25:29 +0000 2019","id":1185185132522524672,"id_str":"1185185132522524672","full_text":"To + those of you that hire instructional designers, what are you looking for in + a candidate? @caranorth11 @dr_tracy_s @correia65 and I are presenting at + #aect19inspired (an academic conference) about what we think ID graduates + need to be ready for the real world.","truncated":false,"display_text_range":[0,263],"entities":{"hashtags":[{"text":"aect19inspired","indices":[153,168]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[93,105]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[118,128]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"013379ee5729a5e6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/013379ee5729a5e6.json","place_type":"city","name":"Tucson","full_name":"Tucson, + AZ","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-111.083219,32.057802],[-110.747928,32.057802],[-110.747928,32.320979],[-111.083219,32.320979]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":28,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 17 22:33:16 +0000 2019","id":1184960595663163397,"id_str":"1184960595663163397","full_text":"RT + @teacherrogers: I''ve added 2 of 3 slide presentations for @AECT''s conference + next week to my blog post. My #aect19inspired mini-workshop\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[110,125]}],"symbols":[],"user_mentions":[{"screen_name":"teacherrogers","name":"Sandra + Annette Rogers, PhD","id":212784618,"id_str":"212784618","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[61,66]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 17 17:10:42 +0000 2019","id":1184879421016043525,"id_str":"1184879421016043525","full_text":"I''ve + added 2 of 3 slide presentations for @AECT''s conference next week to my blog + post. My #aect19inspired mini-workshop session for culture, technology, & + learning (@aectclt) is ready. Check it out! https:\/\/t.co\/BkjT0QkOpD","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"aect19inspired","indices":[91,106]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[42,47]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[170,178]}],"urls":[{"url":"https:\/\/t.co\/BkjT0QkOpD","expanded_url":"https:\/\/teacherrogers.wordpress.com\/2019\/09\/07\/join-me-at-aect-2019-in-las-vegas\/","display_url":"teacherrogers.wordpress.com\/2019\/09\/07\/joi\u2026","indices":[204,227]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 19:02:09 +0000 2019","id":1185269857237065735,"id_str":"1185269857237065735","full_text":"RT + @DKSch: Your change to get 10 unofficial embroidery patches for #aect19inspired. + This way: (1) Like this tweet and (2) come and get them\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[67,82]}],"symbols":[],"user_mentions":[{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[3,9]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":781887225088933888,"id_str":"781887225088933888","name":"FacLabUnige","screen_name":"FacLabUnige","location":"Geneva, + Switzerland","description":"Bienvenue au FacLab de Battelle. FabLab acad\u00e9mique + d\u00e9velopp\u00e9 dans le cadre de l''Universit\u00e9 de Gen\u00e8ve. Fabrique + du tangible et de l\u2019intangible.","url":"https:\/\/t.co\/8tl0VGRI44","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8tl0VGRI44","expanded_url":"http:\/\/www.faclab.ch","display_url":"faclab.ch","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":285,"friends_count":48,"listed_count":14,"created_at":"Fri + Sep 30 16:03:36 +0000 2016","favourites_count":137,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":186,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1143942061143613440\/sGNw6z5k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1143942061143613440\/sGNw6z5k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/781887225088933888\/1561571797","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 18:55:29 +0000 2019","id":1185268178898903045,"id_str":"1185268178898903045","full_text":"Your + change to get 10 unofficial embroidery patches for #aect19inspired. This way: + (1) Like this tweet and (2) come and get them early at this session: Tue, + Oct 22, 4:00 to 5:30pm, Walkthru-Events. Bring your sewing kit. @tecfa #aect19 + #machineembroidery @FacLabUnige https:\/\/t.co\/S6xn62ungn","truncated":false,"display_text_range":[0,267],"entities":{"hashtags":[{"text":"aect19inspired","indices":[56,71]},{"text":"aect19","indices":[228,235]},{"text":"machineembroidery","indices":[236,254]}],"symbols":[],"user_mentions":[{"screen_name":"tecfa","name":"TECFA","id":24355006,"id_str":"24355006","indices":[221,227]},{"screen_name":"FacLabUnige","name":"FacLabUnige","id":781887225088933888,"id_str":"781887225088933888","indices":[255,267]}],"urls":[],"media":[{"id":1185268171151958016,"id_str":"1185268171151958016","indices":[268,291],"media_url":"http:\/\/pbs.twimg.com\/media\/EHLrHzEW4AAT8Ec.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHLrHzEW4AAT8Ec.jpg","url":"https:\/\/t.co\/S6xn62ungn","display_url":"pic.twitter.com\/S6xn62ungn","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1185268178898903045\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":747,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1275,"resize":"fit"},"small":{"w":680,"h":423,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185268171151958016,"id_str":"1185268171151958016","indices":[268,291],"media_url":"http:\/\/pbs.twimg.com\/media\/EHLrHzEW4AAT8Ec.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHLrHzEW4AAT8Ec.jpg","url":"https:\/\/t.co\/S6xn62ungn","display_url":"pic.twitter.com\/S6xn62ungn","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1185268178898903045\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":747,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1275,"resize":"fit"},"small":{"w":680,"h":423,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 15:00:43 +0000 2019","id":1185209095151742976,"id_str":"1185209095151742976","full_text":"Leaving + tomorrow for a full week of professional learning @AECT annual conference. + #aect19inspired https:\/\/t.co\/epEwUfqwwR","truncated":false,"display_text_range":[0,98],"entities":{"hashtags":[{"text":"aect19inspired","indices":[83,98]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[58,63]}],"urls":[],"media":[{"id":1185209090818969605,"id_str":"1185209090818969605","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/EHK1Y3rUEAUgS3X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHK1Y3rUEAUgS3X.jpg","url":"https:\/\/t.co\/epEwUfqwwR","display_url":"pic.twitter.com\/epEwUfqwwR","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1185209095151742976\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"},"small":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185209090818969605,"id_str":"1185209090818969605","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/EHK1Y3rUEAUgS3X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHK1Y3rUEAUgS3X.jpg","url":"https:\/\/t.co\/epEwUfqwwR","display_url":"pic.twitter.com\/epEwUfqwwR","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1185209095151742976\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"},"small":{"w":600,"h":600,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":8005732,"id_str":"8005732","name":"rmreese","screen_name":"rmreese1","location":"Denver, + CO","description":"ID, edtech, all around gerd (geek+nerd). Opinions are my + own and RTs are not endorsements. Pronouns: she\/they","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":564,"friends_count":293,"listed_count":271,"created_at":"Mon + Aug 06 23:59:29 +0000 2007","favourites_count":960,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9941,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2A2828","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8005732\/1573836551","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"091378","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 18 17:19:22 +0000 2019","id":1185243991207374848,"id_str":"1185243991207374848","full_text":"So + many great #LearnerEngagement Division sessions at #AECT19! Which ones are + on your list to attend? @LearnEngage @AECT [infographic credit: the amazing + @yaukable] https:\/\/t.co\/5yayd09FDg","truncated":false,"display_text_range":[0,164],"entities":{"hashtags":[{"text":"LearnerEngagement","indices":[14,32]},{"text":"AECT19","indices":[54,61]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[102,114]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[115,120]},{"screen_name":"yaukable","name":"Matt + Yauk","id":107501101,"id_str":"107501101","indices":[154,163]}],"urls":[],"media":[{"id":1185243981027799043,"id_str":"1185243981027799043","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHLVHv1U8AMtm4A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHLVHv1U8AMtm4A.jpg","url":"https:\/\/t.co\/5yayd09FDg","display_url":"pic.twitter.com\/5yayd09FDg","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1185243991207374848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":927,"h":1200,"resize":"fit"},"small":{"w":525,"h":680,"resize":"fit"},"large":{"w":1275,"h":1650,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185243981027799043,"id_str":"1185243981027799043","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHLVHv1U8AMtm4A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHLVHv1U8AMtm4A.jpg","url":"https:\/\/t.co\/5yayd09FDg","display_url":"pic.twitter.com\/5yayd09FDg","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1185243991207374848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":927,"h":1200,"resize":"fit"},"small":{"w":525,"h":680,"resize":"fit"},"large":{"w":1275,"h":1650,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 18 16:59:56 +0000 2019","id":1185239098023239687,"id_str":"1185239098023239687","full_text":"RT + @gsa_aect: Join the GSA session about researching competencies for online + teaching facilitated by Kiran Budhrani on October 24th from 3:\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14994538,"id_str":"14994538","name":"Kzenovka","screen_name":"kzenovka","location":"Metaverse","description":"educator, + coolhunter, and sometimes puppetmaster. Metagame Book Club, Games & Sim Network + and Inevitable Instructors","url":"https:\/\/t.co\/SN1thrlVqD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/SN1thrlVqD","expanded_url":"https:\/\/sites.google.com\/site\/metagamebookclub\/","display_url":"sites.google.com\/site\/metagameb\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1338,"friends_count":3152,"listed_count":228,"created_at":"Tue + Jun 03 16:35:29 +0000 2008","favourites_count":57,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15007,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000094651856\/e884a89522ac37fe6e93e3363673a10c_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14994538\/1436550079","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 11 22:56:12 +0000 2019","id":1182792042654646273,"id_str":"1182792042654646273","full_text":"Join + the GSA session about researching competencies for online teaching facilitated + by Kiran Budhrani on October 24th from 3:00 pm to 3:50 pm in the conference + room 4. The presenters are Florence Martin, Swapna Kumar, and Albert Ritzhaupt. + #aect19 #aect19inspired #aectgsa https:\/\/t.co\/MTIOaf1PoY","truncated":false,"display_text_range":[0,272],"entities":{"hashtags":[{"text":"aect19","indices":[240,247]},{"text":"aect19inspired","indices":[248,263]},{"text":"aectgsa","indices":[264,272]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1182792040020615170,"id_str":"1182792040020615170","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EGofF_yWoAILB74.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGofF_yWoAILB74.jpg","url":"https:\/\/t.co\/MTIOaf1PoY","display_url":"pic.twitter.com\/MTIOaf1PoY","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182792042654646273\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1065,"h":599,"resize":"fit"},"large":{"w":1065,"h":599,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182792040020615170,"id_str":"1182792040020615170","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EGofF_yWoAILB74.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGofF_yWoAILB74.jpg","url":"https:\/\/t.co\/MTIOaf1PoY","display_url":"pic.twitter.com\/MTIOaf1PoY","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182792042654646273\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1065,"h":599,"resize":"fit"},"large":{"w":1065,"h":599,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 17 17:10:42 +0000 2019","id":1184879421016043525,"id_str":"1184879421016043525","full_text":"I''ve + added 2 of 3 slide presentations for @AECT''s conference next week to my blog + post. My #aect19inspired mini-workshop session for culture, technology, & + learning (@aectclt) is ready. Check it out! https:\/\/t.co\/BkjT0QkOpD","truncated":false,"display_text_range":[0,227],"entities":{"hashtags":[{"text":"aect19inspired","indices":[91,106]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[42,47]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[170,178]}],"urls":[{"url":"https:\/\/t.co\/BkjT0QkOpD","expanded_url":"https:\/\/teacherrogers.wordpress.com\/2019\/09\/07\/join-me-at-aect-2019-in-las-vegas\/","display_url":"teacherrogers.wordpress.com\/2019\/09\/07\/joi\u2026","indices":[204,227]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 18 18:20:27 +0000 2019","id":1185259363088375809,"id_str":"1185259363088375809","full_text":"You + are thinking about turning your #aect19inspired presentations into manuscripts + for @AECTTechTrends, right? @AECT","truncated":false,"display_text_range":[0,116],"entities":{"hashtags":[{"text":"aect19inspired","indices":[36,51]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[87,102]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[111,116]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":21,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 01:18:37 +0000 2019","id":1185364594530885632,"id_str":"1185364594530885632","full_text":"RT + @AnnaRoseLeach: To those of you that hire instructional designers, what are + you looking for in a candidate? @caranorth11 @dr_tracy_s @c\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[3,17]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[112,124]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 13:25:29 +0000 2019","id":1185185132522524672,"id_str":"1185185132522524672","full_text":"To + those of you that hire instructional designers, what are you looking for in + a candidate? @caranorth11 @dr_tracy_s @correia65 and I are presenting at + #aect19inspired (an academic conference) about what we think ID graduates + need to be ready for the real world.","truncated":false,"display_text_range":[0,263],"entities":{"hashtags":[{"text":"aect19inspired","indices":[153,168]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[93,105]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[118,128]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"013379ee5729a5e6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/013379ee5729a5e6.json","place_type":"city","name":"Tucson","full_name":"Tucson, + AZ","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-111.083219,32.057802],[-110.747928,32.057802],[-110.747928,32.320979],[-111.083219,32.320979]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":28,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 17 15:36:23 +0000 2019","id":1184855685038825472,"id_str":"1184855685038825472","full_text":"It\u2019s + not too late to get inspired in Vegas. #AECT19 is going to be epic! Register + here (https:\/\/t.co\/nZ8EUxpwMx) or at the registration desk. You really + don\u2019t want to miss this one. https:\/\/t.co\/HZnYI1kK9B","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"AECT19","indices":[44,51]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[88,111]}],"media":[{"id":1184855680819367943,"id_str":"1184855680819367943","indices":[182,205],"media_url":"http:\/\/pbs.twimg.com\/media\/EHFz9s1XkAc9x0q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHFz9s1XkAc9x0q.jpg","url":"https:\/\/t.co\/HZnYI1kK9B","display_url":"pic.twitter.com\/HZnYI1kK9B","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1184855685038825472\/photo\/1","type":"photo","sizes":{"medium":{"w":960,"h":502,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":502,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184855680819367943,"id_str":"1184855680819367943","indices":[182,205],"media_url":"http:\/\/pbs.twimg.com\/media\/EHFz9s1XkAc9x0q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHFz9s1XkAc9x0q.jpg","url":"https:\/\/t.co\/HZnYI1kK9B","display_url":"pic.twitter.com\/HZnYI1kK9B","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1184855685038825472\/photo\/1","type":"photo","sizes":{"medium":{"w":960,"h":502,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":502,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 18 23:49:26 +0000 2019","id":1185342151401623552,"id_str":"1185342151401623552","full_text":"RT + @caranorth11: Great minds think alike @KristenLearning, I got some new personal + cards made for #Devlearn and #aect19. I hope you will co\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"Devlearn","indices":[98,107]},{"text":"aect19","indices":[112,119]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]},{"screen_name":"KristenLearning","name":"Kristen + Hayden Safdie","id":827198845020876801,"id_str":"827198845020876801","indices":[41,57]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/www.samruston.co.uk\" rel=\"nofollow\"\u003eFlamingo for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":10887482,"id_str":"10887482","name":"Tracie + Cantu (she\/her)","screen_name":"TheTracieCantu","location":"Austin, TX","description":"Avid + flip-flop wearer. Owner of an Expired Punk Rock Card. Plus, I do cool shit + in the digital talent transformation!\n\nAll opinions are proudly my own.","url":"https:\/\/t.co\/2eaVCd6PXD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2eaVCd6PXD","expanded_url":"https:\/\/linktr.ee\/tmcantu","display_url":"linktr.ee\/tmcantu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1028,"friends_count":492,"listed_count":73,"created_at":"Wed + Dec 05 23:24:13 +0000 2007","favourites_count":11752,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5692,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1529559684918743041\/bB6kKyVf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1529559684918743041\/bB6kKyVf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/10887482\/1658503198","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"404040","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"8BC175","profile_text_color":"D1D866","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 21:49:31 +0000 2019","id":1185311975414358017,"id_str":"1185311975414358017","full_text":"Great + minds think alike @KristenLearning, I got some new personal cards made for + #Devlearn and #aect19. I hope you will consider signing up to be a participant + in my future research if you are an instructional designer :) Please! I\u2019d + like to graduate one day \u2764\ufe0f\u2764\ufe0f https:\/\/t.co\/UlJjAVHtBT","truncated":false,"display_text_range":[0,263],"entities":{"hashtags":[{"text":"Devlearn","indices":[81,90]},{"text":"aect19","indices":[95,102]}],"symbols":[],"user_mentions":[{"screen_name":"KristenLearning","name":"Kristen + Hayden Safdie","id":827198845020876801,"id_str":"827198845020876801","indices":[24,40]}],"urls":[],"media":[{"id":1185311965951995904,"id_str":"1185311965951995904","indices":[264,287],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMS8_aWsAAT71A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMS8_aWsAAT71A.jpg","url":"https:\/\/t.co\/UlJjAVHtBT","display_url":"pic.twitter.com\/UlJjAVHtBT","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1185311975414358017\/photo\/1","type":"photo","sizes":{"small":{"w":610,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1076,"h":1200,"resize":"fit"},"large":{"w":1836,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185311965951995904,"id_str":"1185311965951995904","indices":[264,287],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMS8_aWsAAT71A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMS8_aWsAAT71A.jpg","url":"https:\/\/t.co\/UlJjAVHtBT","display_url":"pic.twitter.com\/UlJjAVHtBT","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1185311975414358017\/photo\/1","type":"photo","sizes":{"small":{"w":610,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1076,"h":1200,"resize":"fit"},"large":{"w":1836,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1185311965952053248,"id_str":"1185311965952053248","indices":[264,287],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMS8_aXkAAXT0j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMS8_aXkAAXT0j.jpg","url":"https:\/\/t.co\/UlJjAVHtBT","display_url":"pic.twitter.com\/UlJjAVHtBT","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1185311975414358017\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":2002,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":665,"resize":"fit"},"medium":{"w":1200,"h":1173,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 17 19:19:14 +0000 2019","id":1184911765139873794,"id_str":"1184911765139873794","full_text":"Want + a sneak peek of one of my #aect19 sessions? Here you go! #aect19inspired https:\/\/t.co\/jgE3g6cyyo","truncated":false,"display_text_range":[0,77],"entities":{"hashtags":[{"text":"aect19","indices":[31,38]},{"text":"aect19inspired","indices":[62,77]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1184911673074880514,"id_str":"1184911673074880514","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184911673074880514\/pu\/img\/XJs86Szp6ujDz8IL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184911673074880514\/pu\/img\/XJs86Szp6ujDz8IL.jpg","url":"https:\/\/t.co\/jgE3g6cyyo","display_url":"pic.twitter.com\/jgE3g6cyyo","expanded_url":"https:\/\/twitter.com\/valarywithawhy\/status\/1184911765139873794\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184911673074880514,"id_str":"1184911673074880514","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184911673074880514\/pu\/img\/XJs86Szp6ujDz8IL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184911673074880514\/pu\/img\/XJs86Szp6ujDz8IL.jpg","url":"https:\/\/t.co\/jgE3g6cyyo","display_url":"pic.twitter.com\/jgE3g6cyyo","expanded_url":"https:\/\/twitter.com\/valarywithawhy\/status\/1184911765139873794\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":19019,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184911673074880514\/pu\/vid\/480x270\/90J6ZeHJ2Qi_1Q7S.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184911673074880514\/pu\/pl\/0woihr7spl1DnuVM.m3u8?tag=10"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184911673074880514\/pu\/vid\/1280x720\/9tjwX29_U9i1wTe7.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184911673074880514\/pu\/vid\/640x360\/t_3bluH5NjK7eRY7.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":111391715,"id_str":"111391715","name":"Valary + Oleinik","screen_name":"valarywithawhy","location":"New York, NY","description":"speaker + | engager of learners | gamifier of things | unleasher of creativity | geek + | writer | queriest","url":"https:\/\/t.co\/5XjhvhYTqb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5XjhvhYTqb","expanded_url":"http:\/\/www.valarywithawhy.com","display_url":"valarywithawhy.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1251,"friends_count":1550,"listed_count":60,"created_at":"Thu + Feb 04 19:24:07 +0000 2010","favourites_count":9041,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4317,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111391715\/1454624226","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 17 17:47:58 +0000 2019","id":1184888799190573060,"id_str":"1184888799190573060","full_text":"RT + @srogidd: Come see our AECT presentation Tuesday morning @ 8:00! #aect19inspired + https:\/\/t.co\/J8UmjWvbkd","truncated":false,"display_text_range":[0,108],"entities":{"hashtags":[{"text":"aect19inspired","indices":[69,84]}],"symbols":[],"user_mentions":[{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[3,11]}],"urls":[],"media":[{"id":1184841061996171264,"id_str":"1184841061996171264","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHFmqxeUEAAjDa2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHFmqxeUEAAjDa2.png","url":"https:\/\/t.co\/J8UmjWvbkd","display_url":"pic.twitter.com\/J8UmjWvbkd","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184841067478208512\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":259,"resize":"fit"},"large":{"w":820,"h":312,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1184841067478208512,"source_status_id_str":"1184841067478208512","source_user_id":28836047,"source_user_id_str":"28836047"}]},"extended_entities":{"media":[{"id":1184841061996171264,"id_str":"1184841061996171264","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHFmqxeUEAAjDa2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHFmqxeUEAAjDa2.png","url":"https:\/\/t.co\/J8UmjWvbkd","display_url":"pic.twitter.com\/J8UmjWvbkd","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184841067478208512\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":259,"resize":"fit"},"large":{"w":820,"h":312,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1184841067478208512,"source_status_id_str":"1184841067478208512","source_user_id":28836047,"source_user_id_str":"28836047","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 17 14:38:18 +0000 2019","id":1184841067478208512,"id_str":"1184841067478208512","full_text":"Come + see our AECT presentation Tuesday morning @ 8:00! #aect19inspired https:\/\/t.co\/J8UmjWvbkd","truncated":false,"display_text_range":[0,71],"entities":{"hashtags":[{"text":"aect19inspired","indices":[56,71]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1184841061996171264,"id_str":"1184841061996171264","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/EHFmqxeUEAAjDa2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHFmqxeUEAAjDa2.png","url":"https:\/\/t.co\/J8UmjWvbkd","display_url":"pic.twitter.com\/J8UmjWvbkd","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184841067478208512\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":259,"resize":"fit"},"large":{"w":820,"h":312,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1184841061996171264,"id_str":"1184841061996171264","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/EHFmqxeUEAAjDa2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHFmqxeUEAAjDa2.png","url":"https:\/\/t.co\/J8UmjWvbkd","display_url":"pic.twitter.com\/J8UmjWvbkd","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184841067478208512\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":259,"resize":"fit"},"large":{"w":820,"h":312,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28836047,"id_str":"28836047","name":"Sylvia + Rogers","screen_name":"srogidd","location":"Auburn, AL","description":"PhD + in Instructional Design, I work as an Instructional Designer and Consultant + for Scholarship of Teaching and Learning at the Harrison School of Pharmacy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":550,"friends_count":1089,"listed_count":18,"created_at":"Sat + Apr 04 17:47:27 +0000 2009","favourites_count":12191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2400,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28836047\/1439418186","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 18 20:49:22 +0000 2019","id":1185296836422074368,"id_str":"1185296836422074368","full_text":"@robmoore3 + I\u2019m not the poster police \ud83d\udc6e\u200d\u2640\ufe0f. #aect19","truncated":false,"display_text_range":[11,50],"entities":{"hashtags":[{"text":"aect19","indices":[43,50]}],"symbols":[],"user_mentions":[{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[0,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1185289312545325056,"in_reply_to_status_id_str":"1185289312545325056","in_reply_to_user_id":45256556,"in_reply_to_user_id_str":"45256556","in_reply_to_screen_name":"robmoore3","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"6057f1e35bcc6c20","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/6057f1e35bcc6c20.json","place_type":"admin","name":"South + Carolina","full_name":"South Carolina, USA","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-83.353955,32.04683],[-78.499301,32.04683],[-78.499301,35.215449],[-83.353955,35.215449]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 13:38:37 +0000 2019","id":1185188434203140098,"id_str":"1185188434203140098","full_text":"RT + @AnnaRoseLeach: To those of you that hire instructional designers, what are + you looking for in a candidate? @caranorth11 @dr_tracy_s @c\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[3,17]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[112,124]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 13:25:29 +0000 2019","id":1185185132522524672,"id_str":"1185185132522524672","full_text":"To + those of you that hire instructional designers, what are you looking for in + a candidate? @caranorth11 @dr_tracy_s @correia65 and I are presenting at + #aect19inspired (an academic conference) about what we think ID graduates + need to be ready for the real world.","truncated":false,"display_text_range":[0,263],"entities":{"hashtags":[{"text":"aect19inspired","indices":[153,168]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[93,105]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[118,128]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"013379ee5729a5e6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/013379ee5729a5e6.json","place_type":"city","name":"Tucson","full_name":"Tucson, + AZ","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-111.083219,32.057802],[-110.747928,32.057802],[-110.747928,32.320979],[-111.083219,32.320979]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":28,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 01:20:04 +0000 2019","id":1185364960152637441,"id_str":"1185364960152637441","full_text":"RT + @caranorth11: Great minds think alike @KristenLearning, I got some new personal + cards made for #Devlearn and #aect19. I hope you will co\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"Devlearn","indices":[98,107]},{"text":"aect19","indices":[112,119]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[3,15]},{"screen_name":"KristenLearning","name":"Kristen + Hayden Safdie","id":827198845020876801,"id_str":"827198845020876801","indices":[41,57]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 21:49:31 +0000 2019","id":1185311975414358017,"id_str":"1185311975414358017","full_text":"Great + minds think alike @KristenLearning, I got some new personal cards made for + #Devlearn and #aect19. I hope you will consider signing up to be a participant + in my future research if you are an instructional designer :) Please! I\u2019d + like to graduate one day \u2764\ufe0f\u2764\ufe0f https:\/\/t.co\/UlJjAVHtBT","truncated":false,"display_text_range":[0,263],"entities":{"hashtags":[{"text":"Devlearn","indices":[81,90]},{"text":"aect19","indices":[95,102]}],"symbols":[],"user_mentions":[{"screen_name":"KristenLearning","name":"Kristen + Hayden Safdie","id":827198845020876801,"id_str":"827198845020876801","indices":[24,40]}],"urls":[],"media":[{"id":1185311965951995904,"id_str":"1185311965951995904","indices":[264,287],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMS8_aWsAAT71A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMS8_aWsAAT71A.jpg","url":"https:\/\/t.co\/UlJjAVHtBT","display_url":"pic.twitter.com\/UlJjAVHtBT","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1185311975414358017\/photo\/1","type":"photo","sizes":{"small":{"w":610,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1076,"h":1200,"resize":"fit"},"large":{"w":1836,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185311965951995904,"id_str":"1185311965951995904","indices":[264,287],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMS8_aWsAAT71A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMS8_aWsAAT71A.jpg","url":"https:\/\/t.co\/UlJjAVHtBT","display_url":"pic.twitter.com\/UlJjAVHtBT","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1185311975414358017\/photo\/1","type":"photo","sizes":{"small":{"w":610,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1076,"h":1200,"resize":"fit"},"large":{"w":1836,"h":2048,"resize":"fit"}},"ext_alt_text":null},{"id":1185311965952053248,"id_str":"1185311965952053248","indices":[264,287],"media_url":"http:\/\/pbs.twimg.com\/media\/EHMS8_aXkAAXT0j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHMS8_aXkAAXT0j.jpg","url":"https:\/\/t.co\/UlJjAVHtBT","display_url":"pic.twitter.com\/UlJjAVHtBT","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1185311975414358017\/photo\/1","type":"photo","sizes":{"large":{"w":2048,"h":2002,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":665,"resize":"fit"},"medium":{"w":1200,"h":1173,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 16:50:08 +0000 2019","id":1185236632946925568,"id_str":"1185236632946925568","full_text":"This + is the droid you\u2019re looking for!\n#aect19inspired https:\/\/t.co\/OH7TvktlO1","truncated":false,"display_text_range":[0,53],"entities":{"hashtags":[{"text":"aect19inspired","indices":[38,53]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OH7TvktlO1","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1185205869031477248","display_url":"twitter.com\/dctrcurry\/stat\u2026","indices":[54,77]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"6057f1e35bcc6c20","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/6057f1e35bcc6c20.json","place_type":"admin","name":"South + Carolina","full_name":"South Carolina, USA","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-83.353955,32.04683],[-78.499301,32.04683],[-78.499301,35.215449],[-83.353955,35.215449]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1185205869031477248,"quoted_status_id_str":"1185205869031477248","quoted_status_permalink":{"url":"https:\/\/t.co\/OH7TvktlO1","expanded":"https:\/\/twitter.com\/dctrcurry\/status\/1185205869031477248","display":"twitter.com\/dctrcurry\/stat\u2026"},"quoted_status":{"created_at":"Fri + Oct 18 14:47:53 +0000 2019","id":1185205869031477248,"id_str":"1185205869031477248","full_text":"It''s + not C-four-PO, folks. It''s C3PO. And @michaelmgrant wants you to remember + it''s THREE days until #aect19inspired! See y''all soon!\n\n@AECT https:\/\/t.co\/UBS7b1PV9m","truncated":false,"display_text_range":[0,143],"entities":{"hashtags":[{"text":"aect19inspired","indices":[103,118]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[44,58]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[138,143]}],"urls":[],"media":[{"id":1185205862802939907,"id_str":"1185205862802939907","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/media\/EHKyc-YUYAMVye1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHKyc-YUYAMVye1.jpg","url":"https:\/\/t.co\/UBS7b1PV9m","display_url":"pic.twitter.com\/UBS7b1PV9m","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1185205869031477248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":800,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185205862802939907,"id_str":"1185205862802939907","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/media\/EHKyc-YUYAMVye1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHKyc-YUYAMVye1.jpg","url":"https:\/\/t.co\/UBS7b1PV9m","display_url":"pic.twitter.com\/UBS7b1PV9m","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1185205869031477248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":800,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 18 15:04:20 +0000 2019","id":1185210006821453825,"id_str":"1185210006821453825","full_text":"Preview + of the workshop that @MeganCMurtaugh and I are hosting - Starting from Scratch: + Building a Successful Mentoring Program, Fri, Oct 25, 9:30 to 11:50am, Convention + Center, Pavilion 9 #aect19inspired\n\nhttps:\/\/t.co\/ior7EcpIUJ","truncated":false,"display_text_range":[0,229],"entities":{"hashtags":[{"text":"aect19inspired","indices":[189,204]}],"symbols":[],"user_mentions":[{"screen_name":"MeganCMurtaugh","name":"Megan + C. Murtaugh, Ed.D.","id":335613192,"id_str":"335613192","indices":[29,44]}],"urls":[{"url":"https:\/\/t.co\/ior7EcpIUJ","expanded_url":"https:\/\/docs.google.com\/document\/d\/1cBoV1G39SV9IV2uMRNoqq7-4UBBOuhVX19h9aPHAK1w\/edit?usp=sharing","display_url":"docs.google.com\/document\/d\/1cB\u2026","indices":[206,229]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":8005732,"id_str":"8005732","name":"rmreese","screen_name":"rmreese1","location":"Denver, + CO","description":"ID, edtech, all around gerd (geek+nerd). Opinions are my + own and RTs are not endorsements. Pronouns: she\/they","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":564,"friends_count":293,"listed_count":271,"created_at":"Mon + Aug 06 23:59:29 +0000 2007","favourites_count":960,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9941,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2A2828","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8005732\/1573836551","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"091378","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 18 00:24:31 +0000 2019","id":1184988595804917761,"id_str":"1184988595804917761","full_text":"@eyer + @1a I think non-removal of untruthful information is a bad idea #aect19","truncated":false,"display_text_range":[10,77],"entities":{"hashtags":[{"text":"aect19","indices":[70,77]}],"symbols":[],"user_mentions":[{"screen_name":"eyer","name":"Chad + Michael Eyer","id":15052470,"id_str":"15052470","indices":[0,5]},{"screen_name":"1a","name":"1A","id":793442243734544384,"id_str":"793442243734544384","indices":[6,9]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1184837872509214720,"in_reply_to_status_id_str":"1184837872509214720","in_reply_to_user_id":15052470,"in_reply_to_user_id_str":"15052470","in_reply_to_screen_name":"eyer","user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 14:07:42 +0000 2019","id":1185195752890490881,"id_str":"1185195752890490881","full_text":"RT + @AnnaRoseLeach: To those of you that hire instructional designers, what are + you looking for in a candidate? @caranorth11 @dr_tracy_s @c\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[3,17]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[112,124]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":465477843,"id_str":"465477843","name":"Jo + Cook","screen_name":"LightbulbJo","location":"Surrey, UK (GMT)","description":"Virtual + classroom & webinar train the trainer at Lightbulb Moment. \nFree live online + learning community - https:\/\/t.co\/qDFmYsUyax","url":"https:\/\/t.co\/hefeXz7Bun","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/hefeXz7Bun","expanded_url":"http:\/\/www.lightbulbmoment.online","display_url":"lightbulbmoment.online","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/qDFmYsUyax","expanded_url":"https:\/\/lightbulbmoment.community","display_url":"lightbulbmoment.community","indices":[106,129]}]}},"protected":false,"followers_count":7642,"friends_count":6852,"listed_count":380,"created_at":"Mon + Jan 16 11:48:09 +0000 2012","favourites_count":18271,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":40440,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1323313124338999296\/w94DNchX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1323313124338999296\/w94DNchX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/465477843\/1576761983","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 13:25:29 +0000 2019","id":1185185132522524672,"id_str":"1185185132522524672","full_text":"To + those of you that hire instructional designers, what are you looking for in + a candidate? @caranorth11 @dr_tracy_s @correia65 and I are presenting at + #aect19inspired (an academic conference) about what we think ID graduates + need to be ready for the real world.","truncated":false,"display_text_range":[0,263],"entities":{"hashtags":[{"text":"aect19inspired","indices":[153,168]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[93,105]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[118,128]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"013379ee5729a5e6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/013379ee5729a5e6.json","place_type":"city","name":"Tucson","full_name":"Tucson, + AZ","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-111.083219,32.057802],[-110.747928,32.057802],[-110.747928,32.320979],[-111.083219,32.320979]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":28,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":12,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 18 14:47:53 +0000 2019","id":1185205869031477248,"id_str":"1185205869031477248","full_text":"It''s + not C-four-PO, folks. It''s C3PO. And @michaelmgrant wants you to remember + it''s THREE days until #aect19inspired! See y''all soon!\n\n@AECT https:\/\/t.co\/UBS7b1PV9m","truncated":false,"display_text_range":[0,143],"entities":{"hashtags":[{"text":"aect19inspired","indices":[103,118]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[44,58]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[138,143]}],"urls":[],"media":[{"id":1185205862802939907,"id_str":"1185205862802939907","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/media\/EHKyc-YUYAMVye1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHKyc-YUYAMVye1.jpg","url":"https:\/\/t.co\/UBS7b1PV9m","display_url":"pic.twitter.com\/UBS7b1PV9m","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1185205869031477248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":800,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185205862802939907,"id_str":"1185205862802939907","indices":[144,167],"media_url":"http:\/\/pbs.twimg.com\/media\/EHKyc-YUYAMVye1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHKyc-YUYAMVye1.jpg","url":"https:\/\/t.co\/UBS7b1PV9m","display_url":"pic.twitter.com\/UBS7b1PV9m","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1185205869031477248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":800,"resize":"fit"},"small":{"w":680,"h":453,"resize":"fit"},"medium":{"w":1200,"h":800,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 19 01:18:02 +0000 2019","id":1185364447889637382,"id_str":"1185364447889637382","full_text":"RT + @rmreese1: Preview of the workshop that @MeganCMurtaugh and I are hosting + - Starting from Scratch: Building a Successful Mentoring Progr\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rmreese1","name":"rmreese","id":8005732,"id_str":"8005732","indices":[3,12]},{"screen_name":"MeganCMurtaugh","name":"Megan + C. Murtaugh, Ed.D.","id":335613192,"id_str":"335613192","indices":[43,58]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 15:04:20 +0000 2019","id":1185210006821453825,"id_str":"1185210006821453825","full_text":"Preview + of the workshop that @MeganCMurtaugh and I are hosting - Starting from Scratch: + Building a Successful Mentoring Program, Fri, Oct 25, 9:30 to 11:50am, Convention + Center, Pavilion 9 #aect19inspired\n\nhttps:\/\/t.co\/ior7EcpIUJ","truncated":false,"display_text_range":[0,229],"entities":{"hashtags":[{"text":"aect19inspired","indices":[189,204]}],"symbols":[],"user_mentions":[{"screen_name":"MeganCMurtaugh","name":"Megan + C. Murtaugh, Ed.D.","id":335613192,"id_str":"335613192","indices":[29,44]}],"urls":[{"url":"https:\/\/t.co\/ior7EcpIUJ","expanded_url":"https:\/\/docs.google.com\/document\/d\/1cBoV1G39SV9IV2uMRNoqq7-4UBBOuhVX19h9aPHAK1w\/edit?usp=sharing","display_url":"docs.google.com\/document\/d\/1cB\u2026","indices":[206,229]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":8005732,"id_str":"8005732","name":"rmreese","screen_name":"rmreese1","location":"Denver, + CO","description":"ID, edtech, all around gerd (geek+nerd). Opinions are my + own and RTs are not endorsements. Pronouns: she\/they","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":564,"friends_count":293,"listed_count":271,"created_at":"Mon + Aug 06 23:59:29 +0000 2007","favourites_count":960,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9941,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2A2828","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8005732\/1573836551","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"091378","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 19 01:20:51 +0000 2019","id":1185365158190813184,"id_str":"1185365158190813184","full_text":"RT + @pazureka: So many great #LearnerEngagement Division sessions at #AECT19! + Which ones are on your list to attend? @LearnEngage @AECT [inf\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"LearnerEngagement","indices":[28,46]},{"text":"AECT19","indices":[68,75]}],"symbols":[],"user_mentions":[{"screen_name":"pazureka","name":"dr. + angelica pazurek","id":22419218,"id_str":"22419218","indices":[3,12]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[116,128]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[129,134]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 18 17:19:22 +0000 2019","id":1185243991207374848,"id_str":"1185243991207374848","full_text":"So + many great #LearnerEngagement Division sessions at #AECT19! Which ones are + on your list to attend? @LearnEngage @AECT [infographic credit: the amazing + @yaukable] https:\/\/t.co\/5yayd09FDg","truncated":false,"display_text_range":[0,164],"entities":{"hashtags":[{"text":"LearnerEngagement","indices":[14,32]},{"text":"AECT19","indices":[54,61]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[102,114]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[115,120]},{"screen_name":"yaukable","name":"Matt + Yauk","id":107501101,"id_str":"107501101","indices":[154,163]}],"urls":[],"media":[{"id":1185243981027799043,"id_str":"1185243981027799043","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHLVHv1U8AMtm4A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHLVHv1U8AMtm4A.jpg","url":"https:\/\/t.co\/5yayd09FDg","display_url":"pic.twitter.com\/5yayd09FDg","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1185243991207374848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":927,"h":1200,"resize":"fit"},"small":{"w":525,"h":680,"resize":"fit"},"large":{"w":1275,"h":1650,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1185243981027799043,"id_str":"1185243981027799043","indices":[165,188],"media_url":"http:\/\/pbs.twimg.com\/media\/EHLVHv1U8AMtm4A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHLVHv1U8AMtm4A.jpg","url":"https:\/\/t.co\/5yayd09FDg","display_url":"pic.twitter.com\/5yayd09FDg","expanded_url":"https:\/\/twitter.com\/pazureka\/status\/1185243991207374848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":927,"h":1200,"resize":"fit"},"small":{"w":525,"h":680,"resize":"fit"},"large":{"w":1275,"h":1650,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22419218,"id_str":"22419218","name":"dr. + angelica pazurek","screen_name":"pazureka","location":"St. Paul, MN","description":"educator+researcher + @UMNews. interested in how technology shapes the way we live and learn. dedicated + to making the world a kinder, more compassionate place.","url":"https:\/\/t.co\/p7ftcRdMjQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p7ftcRdMjQ","expanded_url":"https:\/\/www.cehd.umn.edu\/ci\/people\/pazur003\/","display_url":"cehd.umn.edu\/ci\/people\/pazu\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1068,"friends_count":461,"listed_count":44,"created_at":"Sun + Mar 01 23:02:02 +0000 2009","favourites_count":15783,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4228,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C43D37","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1484610826518634500\/Co_N9r1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22419218\/1403284840","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"AC1F21","profile_sidebar_border_color":"BF9D2D","profile_sidebar_fill_color":"E4B55E","profile_text_color":"CA6622","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1184842599632461825%2C1184841871715110913%2C1184841067478208512%2C1184841067478208512%2C1184829702235545600%2C1184805930891972608%2C1184666715059294208%2C1184659102284300289%2C1184647001411149825%2C1184635552601137152%2C1184635552601137152%2C1184615702898053120%2C1184600529600692224%2C1184567979427561472%2C1184561981673693184%2C1184561534439186433%2C1184559315572658177%2C1184559315572658177%2C1184554451505274880%2C1184549231534788609%2C1184547497110364160%2C1184547497110364160%2C1184541079523205125%2C1184525272651042822%2C1184521765633978368%2C1184521765633978368%2C1184508224667414528%2C1184503008685711362%2C1184502914297061381%2C1184501624774881280%2C1184499790949879813%2C1184499566038487040%2C1184499095047528448%2C1184499095047528448%2C1184484474366709760%2C1184446884133384192%2C1184412708487254016%2C1184399221941833728%2C1184391636157190144%2C1184391437225463809%2C1184391437225463809%2C1184371164187115520%2C1184280651819900929%2C1184279925186015233%2C1184274377434492928%2C1184272690548559872%2C1184272388185382912%2C1184272320803868673%2C1184272320803868673%2C1184270109147189248%2C1184253712866447360%2C1184186639146459137%2C1184177204944658432%2C1184161415407423488%2C1184151231670951936%2C1184151214209953792%2C1184151214209953792%2C1184136233179648008%2C1183827636738547718%2C1183788899124109312%2C1183788723525357568%2C1183788686854557696%2C1183788606676180992%2C1183788455320526848%2C1183788455320526848%2C1183787145489612800%2C1183786918980419585%2C1183786475705384965%2C1183785294287396864%2C1183775395956645893%2C1183775395956645893%2C1183766216831201280%2C1183766094089080832%2C1183765179441582080%2C1183765179441582080%2C1183737042515177472%2C1183517841221394432%2C1183443611557322753%2C1183422513361096705%2C1183399480449736704%2C1183381265065697280%2C1183358820023709701%2C1183358727740628993%2C1183358450828546048%2C1183358438908354560%2C1183357314599923712%2C1183357314599923712%2C1183214042569035777%2C1183175434311065600%2C1183110197184815104%2C1183095127885205504%2C1183091863307333633%2C1183056490648588295%2C1183048527297032192%2C1183048527297032192%2C1183044477365211136%2C1183023241096585216%2C1183011156878876672%2C1182808186484596736%2C1182800571230818306&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:58 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:58 GMT + x-transaction: a8511a944f58ed80 + content-length: '42952' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '271' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '300' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Thu Oct 17 13:53:08 +0000 2019","id":1184829702235545600,"id_str":"1184829702235545600","full_text":"@AECT + friends, a little job aid to share to help get you ready.\n#aect19inspired + https:\/\/t.co\/YIYDZbqUsM","truncated":false,"display_text_range":[0,79],"entities":{"hashtags":[{"text":"aect19inspired","indices":[64,79]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]}],"urls":[],"media":[{"id":1184829621272866816,"id_str":"1184829621272866816","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/EHFcQ1dUcAA9rQ0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHFcQ1dUcAA9rQ0.jpg","url":"https:\/\/t.co\/YIYDZbqUsM","display_url":"pic.twitter.com\/YIYDZbqUsM","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1184829702235545600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184829621272866816,"id_str":"1184829621272866816","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/EHFcQ1dUcAA9rQ0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHFcQ1dUcAA9rQ0.jpg","url":"https:\/\/t.co\/YIYDZbqUsM","display_url":"pic.twitter.com\/YIYDZbqUsM","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1184829702235545600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 14 16:56:40 +0000 2019","id":1183788723525357568,"id_str":"1183788723525357568","full_text":"RT + @michaelmgrant: #AECT19inspired \n#inspiredme https:\/\/t.co\/clMl9uzONh","truncated":false,"display_text_range":[0,71],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[19,34]},{"text":"inspiredme","indices":[36,47]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[3,17]}],"urls":[],"media":[{"id":1183787044645961732,"id_str":"1183787044645961732","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2oC43VAAQvbOS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2oC43VAAQvbOS.jpg","url":"https:\/\/t.co\/clMl9uzONh","display_url":"pic.twitter.com\/clMl9uzONh","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1183787145489612800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1183787145489612800,"source_status_id_str":"1183787145489612800","source_user_id":132653457,"source_user_id_str":"132653457"}]},"extended_entities":{"media":[{"id":1183787044645961732,"id_str":"1183787044645961732","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2oC43VAAQvbOS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2oC43VAAQvbOS.jpg","url":"https:\/\/t.co\/clMl9uzONh","display_url":"pic.twitter.com\/clMl9uzONh","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1183787145489612800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}},"source_status_id":1183787145489612800,"source_status_id_str":"1183787145489612800","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 14 16:50:23 +0000 2019","id":1183787145489612800,"id_str":"1183787145489612800","full_text":"#AECT19inspired + \n#inspiredme https:\/\/t.co\/clMl9uzONh","truncated":false,"display_text_range":[0,28],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[0,15]},{"text":"inspiredme","indices":[17,28]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1183787044645961732,"id_str":"1183787044645961732","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2oC43VAAQvbOS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2oC43VAAQvbOS.jpg","url":"https:\/\/t.co\/clMl9uzONh","display_url":"pic.twitter.com\/clMl9uzONh","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1183787145489612800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183787044645961732,"id_str":"1183787044645961732","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2oC43VAAQvbOS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2oC43VAAQvbOS.jpg","url":"https:\/\/t.co\/clMl9uzONh","display_url":"pic.twitter.com\/clMl9uzONh","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1183787145489612800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Sat + Oct 12 15:55:23 +0000 2019","id":1183048527297032192,"id_str":"1183048527297032192","full_text":"RT + @AECT: Are you ready? The #AECT19 convention is in 9 days! \n\nIt\u2019s not + too late to register!\nhttps:\/\/t.co\/nZ8EUxpwMx https:\/\/t.co\/TsWdRUy\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[29,36]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[95,118]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4921781685,"id_str":"4921781685","name":"AECT + TIL","screen_name":"AECTTIL","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":11,"listed_count":1,"created_at":"Wed + Feb 17 01:21:42 +0000 2016","favourites_count":54,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":83,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1176928861319258114\/oGHSP4gc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1176928861319258114\/oGHSP4gc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4921781685\/1569436683","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 12 13:26:53 +0000 2019","id":1183011156878876672,"id_str":"1183011156878876672","full_text":"Are + you ready? The #AECT19 convention is in 9 days! \n\nIt\u2019s not too late + to register!\nhttps:\/\/t.co\/nZ8EUxpwMx https:\/\/t.co\/TsWdRUyFbQ","truncated":false,"display_text_range":[0,108],"entities":{"hashtags":[{"text":"AECT19","indices":[19,26]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[85,108]}],"media":[{"id":1183011110959620096,"id_str":"1183011110959620096","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","url":"https:\/\/t.co\/TsWdRUyFbQ","display_url":"pic.twitter.com\/TsWdRUyFbQ","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1183011156878876672\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183011110959620096,"id_str":"1183011110959620096","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","url":"https:\/\/t.co\/TsWdRUyFbQ","display_url":"pic.twitter.com\/TsWdRUyFbQ","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1183011156878876672\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}},"video_info":{"aspect_ratio":[320,179],"duration_millis":4533,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183011110959620096\/pu\/pl\/a1M8PWHESYF45Ey2.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183011110959620096\/pu\/vid\/482x270\/GWOU-CbpBWhtq9P3.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183011110959620096\/pu\/vid\/640x358\/fAqzJ_Y5lWfoisML.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 12 19:00:33 +0000 2019","id":1183095127885205504,"id_str":"1183095127885205504","full_text":"Murat + Turk and Sharon Flynn Stidham will facilitate the GSA session \"GSA: A Conversation + with Dr. Xun Ge AECT President-Elect.\" This session will be held on Oct 22nd + from 8:00 to 8:50 pm in the conference room 4. #aect19 #aect19inspired #aectgsa + https:\/\/t.co\/6xw7wIHPN6","truncated":false,"display_text_range":[0,245],"entities":{"hashtags":[{"text":"aect19","indices":[213,220]},{"text":"aect19inspired","indices":[221,236]},{"text":"aectgsa","indices":[237,245]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1183095125427326976,"id_str":"1183095125427326976","indices":[246,269],"media_url":"http:\/\/pbs.twimg.com\/media\/EGsyv46XkAASTSm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGsyv46XkAASTSm.jpg","url":"https:\/\/t.co\/6xw7wIHPN6","display_url":"pic.twitter.com\/6xw7wIHPN6","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1183095127885205504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183095125427326976,"id_str":"1183095125427326976","indices":[246,269],"media_url":"http:\/\/pbs.twimg.com\/media\/EGsyv46XkAASTSm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGsyv46XkAASTSm.jpg","url":"https:\/\/t.co\/6xw7wIHPN6","display_url":"pic.twitter.com\/6xw7wIHPN6","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1183095127885205504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 14 16:50:23 +0000 2019","id":1183787145489612800,"id_str":"1183787145489612800","full_text":"#AECT19inspired + \n#inspiredme https:\/\/t.co\/clMl9uzONh","truncated":false,"display_text_range":[0,28],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[0,15]},{"text":"inspiredme","indices":[17,28]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1183787044645961732,"id_str":"1183787044645961732","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2oC43VAAQvbOS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2oC43VAAQvbOS.jpg","url":"https:\/\/t.co\/clMl9uzONh","display_url":"pic.twitter.com\/clMl9uzONh","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1183787145489612800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183787044645961732,"id_str":"1183787044645961732","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2oC43VAAQvbOS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2oC43VAAQvbOS.jpg","url":"https:\/\/t.co\/clMl9uzONh","display_url":"pic.twitter.com\/clMl9uzONh","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1183787145489612800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"},{"created_at":"Sun + Oct 13 23:00:16 +0000 2019","id":1183517841221394432,"id_str":"1183517841221394432","full_text":"#FSU + #FSUCOE #ISLT will be well represented at #AECT19 in Las Vegas October 21-25. + Check out this lineup of faculty, students, and alumni: https:\/\/t.co\/ROIphcZuLY","truncated":false,"display_text_range":[0,162],"entities":{"hashtags":[{"text":"FSU","indices":[0,4]},{"text":"FSUCOE","indices":[5,12]},{"text":"ISLT","indices":[13,18]},{"text":"AECT19","indices":[47,54]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ROIphcZuLY","expanded_url":"https:\/\/isfsu.blogspot.com\/2019\/10\/2019-aect-islt-presenters-instructional.html","display_url":"isfsu.blogspot.com\/2019\/10\/2019-a\u2026","indices":[139,162]}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 16 15:01:20 +0000 2019","id":1184484474366709760,"id_str":"1184484474366709760","full_text":"RT + @AECT: Get ready to BE INSPIRED! Just 5 more days people!\n\n#AECT19 #AECT19inspired\nhttps:\/\/t.co\/HLbut9liTM\nhttps:\/\/t.co\/nZ8EUxpwMx + https\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[62,69]},{"text":"AECT19inspired","indices":[70,85]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[{"url":"https:\/\/t.co\/HLbut9liTM","expanded_url":"http:\/\/bit.ly\/AECT19program","display_url":"bit.ly\/AECT19program","indices":[86,109]},{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[110,133]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4921781685,"id_str":"4921781685","name":"AECT + TIL","screen_name":"AECTTIL","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":11,"listed_count":1,"created_at":"Wed + Feb 17 01:21:42 +0000 2016","favourites_count":54,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":83,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1176928861319258114\/oGHSP4gc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1176928861319258114\/oGHSP4gc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4921781685\/1569436683","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 16 10:16:09 +0000 2019","id":1184412708487254016,"id_str":"1184412708487254016","full_text":"Get + ready to BE INSPIRED! Just 5 more days people!\n\n#AECT19 #AECT19inspired\nhttps:\/\/t.co\/HLbut9liTM\nhttps:\/\/t.co\/nZ8EUxpwMx + https:\/\/t.co\/7xrgdvLLEv","truncated":false,"display_text_range":[0,123],"entities":{"hashtags":[{"text":"AECT19","indices":[52,59]},{"text":"AECT19inspired","indices":[60,75]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HLbut9liTM","expanded_url":"http:\/\/bit.ly\/AECT19program","display_url":"bit.ly\/AECT19program","indices":[76,99]},{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[100,123]}],"media":[{"id":1184412644507373568,"id_str":"1184412644507373568","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184412644507373568\/pu\/img\/MAHFOrDWo4sRD0f7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184412644507373568\/pu\/img\/MAHFOrDWo4sRD0f7.jpg","url":"https:\/\/t.co\/7xrgdvLLEv","display_url":"pic.twitter.com\/7xrgdvLLEv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1184412708487254016\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184412644507373568,"id_str":"1184412644507373568","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184412644507373568\/pu\/img\/MAHFOrDWo4sRD0f7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184412644507373568\/pu\/img\/MAHFOrDWo4sRD0f7.jpg","url":"https:\/\/t.co\/7xrgdvLLEv","display_url":"pic.twitter.com\/7xrgdvLLEv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1184412708487254016\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}},"video_info":{"aspect_ratio":[320,179],"duration_millis":3533,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184412644507373568\/pu\/vid\/482x270\/BoO8Wq5l3IBUAzv_.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184412644507373568\/pu\/pl\/3kJj0Ok4hVBorJkU.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184412644507373568\/pu\/vid\/640x358\/PHicrs_Qa8ttoEL8.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 16 00:58:18 +0000 2019","id":1184272320803868673,"id_str":"1184272320803868673","full_text":"RT + @dctrcurry: Hey everyone in @AECT, how long until @michaelmgrant and I get + to see you at #aect19inspired? https:\/\/t.co\/mycgI1E3xu","truncated":false,"display_text_range":[0,132],"entities":{"hashtags":[{"text":"aect19inspired","indices":[92,107]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[3,13]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[31,36]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[53,67]}],"urls":[],"media":[{"id":1184151210074312704,"id_str":"1184151210074312704","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/EG7zQGzUEAA4kwG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG7zQGzUEAA4kwG.jpg","url":"https:\/\/t.co\/mycgI1E3xu","display_url":"pic.twitter.com\/mycgI1E3xu","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1184151214209953792\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":298,"h":298,"resize":"fit"},"small":{"w":298,"h":298,"resize":"fit"},"medium":{"w":298,"h":298,"resize":"fit"}},"source_status_id":1184151214209953792,"source_status_id_str":"1184151214209953792","source_user_id":14116271,"source_user_id_str":"14116271"}]},"extended_entities":{"media":[{"id":1184151210074312704,"id_str":"1184151210074312704","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/EG7zQGzUEAA4kwG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG7zQGzUEAA4kwG.jpg","url":"https:\/\/t.co\/mycgI1E3xu","display_url":"pic.twitter.com\/mycgI1E3xu","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1184151214209953792\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":298,"h":298,"resize":"fit"},"small":{"w":298,"h":298,"resize":"fit"},"medium":{"w":298,"h":298,"resize":"fit"}},"source_status_id":1184151214209953792,"source_status_id_str":"1184151214209953792","source_user_id":14116271,"source_user_id_str":"14116271","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 15 16:57:04 +0000 2019","id":1184151214209953792,"id_str":"1184151214209953792","full_text":"Hey + everyone in @AECT, how long until @michaelmgrant and I get to see you at #aect19inspired? + https:\/\/t.co\/mycgI1E3xu","truncated":false,"display_text_range":[0,93],"entities":{"hashtags":[{"text":"aect19inspired","indices":[77,92]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[16,21]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[38,52]}],"urls":[],"media":[{"id":1184151210074312704,"id_str":"1184151210074312704","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/EG7zQGzUEAA4kwG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG7zQGzUEAA4kwG.jpg","url":"https:\/\/t.co\/mycgI1E3xu","display_url":"pic.twitter.com\/mycgI1E3xu","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1184151214209953792\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":298,"h":298,"resize":"fit"},"small":{"w":298,"h":298,"resize":"fit"},"medium":{"w":298,"h":298,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184151210074312704,"id_str":"1184151210074312704","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/EG7zQGzUEAA4kwG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG7zQGzUEAA4kwG.jpg","url":"https:\/\/t.co\/mycgI1E3xu","display_url":"pic.twitter.com\/mycgI1E3xu","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1184151214209953792\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":298,"h":298,"resize":"fit"},"small":{"w":298,"h":298,"resize":"fit"},"medium":{"w":298,"h":298,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 16 19:11:45 +0000 2019","id":1184547497110364160,"id_str":"1184547497110364160","full_text":"This + sort of decision making is UNinspired. #aect19inspired","truncated":false,"display_text_range":[0,59],"entities":{"hashtags":[{"text":"aect19inspired","indices":[44,59]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1184543286150737920,"in_reply_to_status_id_str":"1184543286150737920","in_reply_to_user_id":15636128,"in_reply_to_user_id_str":"15636128","in_reply_to_screen_name":"steph_moore","user":{"id":15636128,"id_str":"15636128","name":"stephanie + moore","screen_name":"steph_moore","location":"New Mexico Baby!","description":"Online + learning. Ethics & design. Tea. Bourbon. Chocolate. Leaning into metamodern. + Editor in Chief of @JCHEResearch she\/her, Author: SEL at a Distance","url":"https:\/\/t.co\/zwm2yMkODU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zwm2yMkODU","expanded_url":"https:\/\/wwnorton.com\/books\/9781324016571","display_url":"wwnorton.com\/books\/97813240\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3098,"friends_count":1316,"listed_count":54,"created_at":"Mon + Jul 28 19:10:00 +0000 2008","favourites_count":18809,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13765,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15636128\/1656742799","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 17 14:38:18 +0000 2019","id":1184841067478208512,"id_str":"1184841067478208512","full_text":"Come + see our AECT presentation Tuesday morning @ 8:00! #aect19inspired https:\/\/t.co\/J8UmjWvbkd","truncated":false,"display_text_range":[0,71],"entities":{"hashtags":[{"text":"aect19inspired","indices":[56,71]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1184841061996171264,"id_str":"1184841061996171264","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/EHFmqxeUEAAjDa2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHFmqxeUEAAjDa2.png","url":"https:\/\/t.co\/J8UmjWvbkd","display_url":"pic.twitter.com\/J8UmjWvbkd","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184841067478208512\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":259,"resize":"fit"},"large":{"w":820,"h":312,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1184841061996171264,"id_str":"1184841061996171264","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/EHFmqxeUEAAjDa2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHFmqxeUEAAjDa2.png","url":"https:\/\/t.co\/J8UmjWvbkd","display_url":"pic.twitter.com\/J8UmjWvbkd","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184841067478208512\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":259,"resize":"fit"},"large":{"w":820,"h":312,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28836047,"id_str":"28836047","name":"Sylvia + Rogers","screen_name":"srogidd","location":"Auburn, AL","description":"PhD + in Instructional Design, I work as an Instructional Designer and Consultant + for Scholarship of Teaching and Learning at the Harrison School of Pharmacy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":550,"friends_count":1089,"listed_count":18,"created_at":"Sat + Apr 04 17:47:27 +0000 2009","favourites_count":12191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2400,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28836047\/1439418186","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 12 13:26:53 +0000 2019","id":1183011156878876672,"id_str":"1183011156878876672","full_text":"Are + you ready? The #AECT19 convention is in 9 days! \n\nIt\u2019s not too late + to register!\nhttps:\/\/t.co\/nZ8EUxpwMx https:\/\/t.co\/TsWdRUyFbQ","truncated":false,"display_text_range":[0,108],"entities":{"hashtags":[{"text":"AECT19","indices":[19,26]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[85,108]}],"media":[{"id":1183011110959620096,"id_str":"1183011110959620096","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","url":"https:\/\/t.co\/TsWdRUyFbQ","display_url":"pic.twitter.com\/TsWdRUyFbQ","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1183011156878876672\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183011110959620096,"id_str":"1183011110959620096","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","url":"https:\/\/t.co\/TsWdRUyFbQ","display_url":"pic.twitter.com\/TsWdRUyFbQ","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1183011156878876672\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}},"video_info":{"aspect_ratio":[320,179],"duration_millis":4533,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183011110959620096\/pu\/pl\/a1M8PWHESYF45Ey2.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183011110959620096\/pu\/vid\/482x270\/GWOU-CbpBWhtq9P3.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183011110959620096\/pu\/vid\/640x358\/fAqzJ_Y5lWfoisML.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 16 18:46:15 +0000 2019","id":1184541079523205125,"id_str":"1184541079523205125","full_text":"@AECT: + Which workshops are you attending at #AECT19? https:\/\/t.co\/7TVGhesXFP","truncated":false,"display_text_range":[0,52],"entities":{"hashtags":[{"text":"AECT19","indices":[44,51]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]}],"urls":[],"media":[{"id":1184540970559262720,"id_str":"1184540970559262720","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHBVvJwU0AAeBUt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHBVvJwU0AAeBUt.jpg","url":"https:\/\/t.co\/7TVGhesXFP","display_url":"pic.twitter.com\/7TVGhesXFP","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1184541079523205125\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1000,"h":523,"resize":"fit"},"medium":{"w":1000,"h":523,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184540970559262720,"id_str":"1184540970559262720","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHBVvJwU0AAeBUt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHBVvJwU0AAeBUt.jpg","url":"https:\/\/t.co\/7TVGhesXFP","display_url":"pic.twitter.com\/7TVGhesXFP","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1184541079523205125\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1000,"h":523,"resize":"fit"},"medium":{"w":1000,"h":523,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 16 10:16:09 +0000 2019","id":1184412708487254016,"id_str":"1184412708487254016","full_text":"Get + ready to BE INSPIRED! Just 5 more days people!\n\n#AECT19 #AECT19inspired\nhttps:\/\/t.co\/HLbut9liTM\nhttps:\/\/t.co\/nZ8EUxpwMx + https:\/\/t.co\/7xrgdvLLEv","truncated":false,"display_text_range":[0,123],"entities":{"hashtags":[{"text":"AECT19","indices":[52,59]},{"text":"AECT19inspired","indices":[60,75]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HLbut9liTM","expanded_url":"http:\/\/bit.ly\/AECT19program","display_url":"bit.ly\/AECT19program","indices":[76,99]},{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[100,123]}],"media":[{"id":1184412644507373568,"id_str":"1184412644507373568","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184412644507373568\/pu\/img\/MAHFOrDWo4sRD0f7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184412644507373568\/pu\/img\/MAHFOrDWo4sRD0f7.jpg","url":"https:\/\/t.co\/7xrgdvLLEv","display_url":"pic.twitter.com\/7xrgdvLLEv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1184412708487254016\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184412644507373568,"id_str":"1184412644507373568","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184412644507373568\/pu\/img\/MAHFOrDWo4sRD0f7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184412644507373568\/pu\/img\/MAHFOrDWo4sRD0f7.jpg","url":"https:\/\/t.co\/7xrgdvLLEv","display_url":"pic.twitter.com\/7xrgdvLLEv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1184412708487254016\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}},"video_info":{"aspect_ratio":[320,179],"duration_millis":3533,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184412644507373568\/pu\/vid\/482x270\/BoO8Wq5l3IBUAzv_.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184412644507373568\/pu\/pl\/3kJj0Ok4hVBorJkU.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184412644507373568\/pu\/vid\/640x358\/PHicrs_Qa8ttoEL8.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 13 00:19:40 +0000 2019","id":1183175434311065600,"id_str":"1183175434311065600","full_text":"Glad + to see our CLT president-elect-designate @LiuJuhong and our CLT Initiatives + #IRCEES are inspiring @AECT folks! #aect19inspired #inspiredme https:\/\/t.co\/YngzHJsJIH","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"IRCEES","indices":[82,89]},{"text":"aect19inspired","indices":[117,132]},{"text":"inspiredme","indices":[133,144]}],"symbols":[],"user_mentions":[{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[46,56]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[104,109]}],"urls":[{"url":"https:\/\/t.co\/YngzHJsJIH","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1181418289890766849","display_url":"twitter.com\/nicolapallitt\/\u2026","indices":[145,168]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905212118127042560,"id_str":"905212118127042560","name":"AECT_CLT","screen_name":"aectclt","location":"","description":"AECT + Division Exploring culture, learning, and technology with particular emphases + on championing inclusiveness and equity. Conversation at #aectclt","url":"https:\/\/t.co\/yc2CmqxA5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yc2CmqxA5M","expanded_url":"https:\/\/sites.google.com\/view\/clt-home","display_url":"sites.google.com\/view\/clt-home","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":26,"listed_count":4,"created_at":"Tue + Sep 05 23:32:41 +0000 2017","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":486,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905212118127042560\/1506184813","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1181418289890766849,"quoted_status_id_str":"1181418289890766849","quoted_status_permalink":{"url":"https:\/\/t.co\/YngzHJsJIH","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1181418289890766849","display":"twitter.com\/nicolapallitt\/\u2026"},"quoted_status":{"created_at":"Tue + Oct 08 03:57:24 +0000 2019","id":1181418289890766849,"id_str":"1181418289890766849","full_text":"@aectclt + @akesha @tutaleni @amy_c_bradshaw @LiuJuhong @srogidd @michaelmgrant @eAngelaBenson + @tadousay @jweeble @AECT Tough choice, most of them have inspired me in some + way:) Most recently, @LiuJuhong who is one of my IRCEES mentors @emergeAfrica + & @aect She''s really helped us to navigate some murky challenges when + it comes to doing international research #aect19inspired #inspiredme","truncated":false,"display_text_range":[118,390],"entities":{"hashtags":[{"text":"aect19inspired","indices":[363,378]},{"text":"inspiredme","indices":[379,390]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[0,8]},{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[9,16]},{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[17,26]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[27,42]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[43,53]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[54,62]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[63,77]},{"screen_name":"eAngelaBenson","name":"Angela + Benson","id":15969744,"id_str":"15969744","indices":[78,92]},{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[93,102]},{"screen_name":"jweeble","name":"Jennifer + Weible","id":28419864,"id_str":"28419864","indices":[103,111]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[112,117]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[191,201]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[234,247]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[254,259]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1181390526777626624,"in_reply_to_status_id_str":"1181390526777626624","in_reply_to_user_id":905212118127042560,"in_reply_to_user_id_str":"905212118127042560","in_reply_to_screen_name":"aectclt","user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"59efa64f5c8f5340","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/59efa64f5c8f5340.json","place_type":"city","name":"Grahamstown","full_name":"Grahamstown, + South Africa","country_code":"ZA","country":"South Africa","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[26.4794772,-33.326355],[26.5600028,-33.326355],[26.5600028,-33.270332],[26.4794772,-33.270332]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 16 16:01:18 +0000 2019","id":1184499566038487040,"id_str":"1184499566038487040","full_text":"Come + join us for an CLT Inspire! Session at AECT #aect19inspired @aectclt https:\/\/t.co\/Um1rEZzKGY","truncated":false,"display_text_range":[0,73],"entities":{"hashtags":[{"text":"aect19inspired","indices":[49,64]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[65,73]}],"urls":[],"media":[{"id":1184499561051521024,"id_str":"1184499561051521024","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAwEzUVAAAJlHN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAwEzUVAAAJlHN.png","url":"https:\/\/t.co\/Um1rEZzKGY","display_url":"pic.twitter.com\/Um1rEZzKGY","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184499566038487040\/photo\/1","type":"photo","sizes":{"medium":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":820,"h":312,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184499561051521024,"id_str":"1184499561051521024","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAwEzUVAAAJlHN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAwEzUVAAAJlHN.png","url":"https:\/\/t.co\/Um1rEZzKGY","display_url":"pic.twitter.com\/Um1rEZzKGY","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184499566038487040\/photo\/1","type":"photo","sizes":{"medium":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":820,"h":312,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28836047,"id_str":"28836047","name":"Sylvia + Rogers","screen_name":"srogidd","location":"Auburn, AL","description":"PhD + in Instructional Design, I work as an Instructional Designer and Consultant + for Scholarship of Teaching and Learning at the Harrison School of Pharmacy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":550,"friends_count":1089,"listed_count":18,"created_at":"Sat + Apr 04 17:47:27 +0000 2009","favourites_count":12191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2400,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28836047\/1439418186","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 15 18:40:21 +0000 2019","id":1184177204944658432,"id_str":"1184177204944658432","full_text":"RT + @AECT: 900 colleagues from across the country and around the world will converge + in Las Vegas next week to be inspired at our annual con\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1011445838873153536,"id_str":"1011445838873153536","name":"AsianJDE","screen_name":"AsianJde","location":"","description":"AsianJDE + disseminates scholarly works to researchers and practitioners in the growing + field of distance education.\nEds: @arasbozkurt @rc4u2nv","url":"https:\/\/t.co\/brw6oqkOrL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/brw6oqkOrL","expanded_url":"http:\/\/www.asianjde.com\/ojs\/index.php\/AsianJDE","display_url":"asianjde.com\/ojs\/index.php\/\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1140,"friends_count":1788,"listed_count":7,"created_at":"Tue + Jun 26 03:07:34 +0000 2018","favourites_count":1203,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":819,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1258095006675423235\/tyYOmcgO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1258095006675423235\/tyYOmcgO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1011445838873153536\/1564914654","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 14 15:23:06 +0000 2019","id":1183765179441582080,"id_str":"1183765179441582080","full_text":"900 + colleagues from across the country and around the world will converge in Las + Vegas next week to be inspired at our annual convention. Can\u2019t wait! + \n#AECT19 #AECT19inspired\n\nhttps:\/\/t.co\/HLbut9liTM\nhttps:\/\/t.co\/nZ8EUxpwMx + https:\/\/t.co\/Vo5jdlz5WY","truncated":false,"display_text_range":[0,223],"entities":{"hashtags":[{"text":"AECT19","indices":[151,158]},{"text":"AECT19inspired","indices":[159,174]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HLbut9liTM","expanded_url":"http:\/\/bit.ly\/AECT19program","display_url":"bit.ly\/AECT19program","indices":[176,199]},{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[200,223]}],"media":[{"id":1183765163574468608,"id_str":"1183765163574468608","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183765163574468608\/pu\/img\/TTA-irg9kGuRmked.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183765163574468608\/pu\/img\/TTA-irg9kGuRmked.jpg","url":"https:\/\/t.co\/Vo5jdlz5WY","display_url":"pic.twitter.com\/Vo5jdlz5WY","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1183765179441582080\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":268,"resize":"fit"},"small":{"w":480,"h":268,"resize":"fit"},"medium":{"w":480,"h":268,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183765163574468608,"id_str":"1183765163574468608","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183765163574468608\/pu\/img\/TTA-irg9kGuRmked.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183765163574468608\/pu\/img\/TTA-irg9kGuRmked.jpg","url":"https:\/\/t.co\/Vo5jdlz5WY","display_url":"pic.twitter.com\/Vo5jdlz5WY","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1183765179441582080\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":268,"resize":"fit"},"small":{"w":480,"h":268,"resize":"fit"},"medium":{"w":480,"h":268,"resize":"fit"}},"video_info":{"aspect_ratio":[120,67],"duration_millis":3700,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183765163574468608\/pu\/pl\/FvuPvarmUiY8VOB6.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183765163574468608\/pu\/vid\/480x268\/SJJkTYfPWkSK94t0.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 17 14:41:30 +0000 2019","id":1184841871715110913,"id_str":"1184841871715110913","full_text":"RT + @srogidd: Come see our AECT presentation Tuesday morning @ 8:00! #aect19inspired + https:\/\/t.co\/J8UmjWvbkd","truncated":false,"display_text_range":[0,108],"entities":{"hashtags":[{"text":"aect19inspired","indices":[69,84]}],"symbols":[],"user_mentions":[{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[3,11]}],"urls":[],"media":[{"id":1184841061996171264,"id_str":"1184841061996171264","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHFmqxeUEAAjDa2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHFmqxeUEAAjDa2.png","url":"https:\/\/t.co\/J8UmjWvbkd","display_url":"pic.twitter.com\/J8UmjWvbkd","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184841067478208512\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":259,"resize":"fit"},"large":{"w":820,"h":312,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1184841067478208512,"source_status_id_str":"1184841067478208512","source_user_id":28836047,"source_user_id_str":"28836047"}]},"extended_entities":{"media":[{"id":1184841061996171264,"id_str":"1184841061996171264","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/EHFmqxeUEAAjDa2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHFmqxeUEAAjDa2.png","url":"https:\/\/t.co\/J8UmjWvbkd","display_url":"pic.twitter.com\/J8UmjWvbkd","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184841067478208512\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":259,"resize":"fit"},"large":{"w":820,"h":312,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1184841067478208512,"source_status_id_str":"1184841067478208512","source_user_id":28836047,"source_user_id_str":"28836047","ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 17 14:38:18 +0000 2019","id":1184841067478208512,"id_str":"1184841067478208512","full_text":"Come + see our AECT presentation Tuesday morning @ 8:00! #aect19inspired https:\/\/t.co\/J8UmjWvbkd","truncated":false,"display_text_range":[0,71],"entities":{"hashtags":[{"text":"aect19inspired","indices":[56,71]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1184841061996171264,"id_str":"1184841061996171264","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/EHFmqxeUEAAjDa2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHFmqxeUEAAjDa2.png","url":"https:\/\/t.co\/J8UmjWvbkd","display_url":"pic.twitter.com\/J8UmjWvbkd","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184841067478208512\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":259,"resize":"fit"},"large":{"w":820,"h":312,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1184841061996171264,"id_str":"1184841061996171264","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/EHFmqxeUEAAjDa2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHFmqxeUEAAjDa2.png","url":"https:\/\/t.co\/J8UmjWvbkd","display_url":"pic.twitter.com\/J8UmjWvbkd","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184841067478208512\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":259,"resize":"fit"},"large":{"w":820,"h":312,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28836047,"id_str":"28836047","name":"Sylvia + Rogers","screen_name":"srogidd","location":"Auburn, AL","description":"PhD + in Instructional Design, I work as an Instructional Designer and Consultant + for Scholarship of Teaching and Learning at the Harrison School of Pharmacy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":550,"friends_count":1089,"listed_count":18,"created_at":"Sat + Apr 04 17:47:27 +0000 2009","favourites_count":12191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2400,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28836047\/1439418186","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 16 20:09:19 +0000 2019","id":1184561981673693184,"id_str":"1184561981673693184","full_text":"RT + @michaelmgrant: @AECT: Which workshops are you attending at #AECT19? https:\/\/t.co\/7TVGhesXFP","truncated":false,"display_text_range":[0,95],"entities":{"hashtags":[{"text":"AECT19","indices":[63,70]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[19,24]}],"urls":[],"media":[{"id":1184540970559262720,"id_str":"1184540970559262720","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/EHBVvJwU0AAeBUt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHBVvJwU0AAeBUt.jpg","url":"https:\/\/t.co\/7TVGhesXFP","display_url":"pic.twitter.com\/7TVGhesXFP","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1184541079523205125\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1000,"h":523,"resize":"fit"},"medium":{"w":1000,"h":523,"resize":"fit"}},"source_status_id":1184541079523205125,"source_status_id_str":"1184541079523205125","source_user_id":132653457,"source_user_id_str":"132653457"}]},"extended_entities":{"media":[{"id":1184540970559262720,"id_str":"1184540970559262720","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/EHBVvJwU0AAeBUt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHBVvJwU0AAeBUt.jpg","url":"https:\/\/t.co\/7TVGhesXFP","display_url":"pic.twitter.com\/7TVGhesXFP","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1184541079523205125\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1000,"h":523,"resize":"fit"},"medium":{"w":1000,"h":523,"resize":"fit"}},"source_status_id":1184541079523205125,"source_status_id_str":"1184541079523205125","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 16 18:46:15 +0000 2019","id":1184541079523205125,"id_str":"1184541079523205125","full_text":"@AECT: + Which workshops are you attending at #AECT19? https:\/\/t.co\/7TVGhesXFP","truncated":false,"display_text_range":[0,52],"entities":{"hashtags":[{"text":"AECT19","indices":[44,51]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]}],"urls":[],"media":[{"id":1184540970559262720,"id_str":"1184540970559262720","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHBVvJwU0AAeBUt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHBVvJwU0AAeBUt.jpg","url":"https:\/\/t.co\/7TVGhesXFP","display_url":"pic.twitter.com\/7TVGhesXFP","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1184541079523205125\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1000,"h":523,"resize":"fit"},"medium":{"w":1000,"h":523,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184540970559262720,"id_str":"1184540970559262720","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/EHBVvJwU0AAeBUt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHBVvJwU0AAeBUt.jpg","url":"https:\/\/t.co\/7TVGhesXFP","display_url":"pic.twitter.com\/7TVGhesXFP","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1184541079523205125\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1000,"h":523,"resize":"fit"},"medium":{"w":1000,"h":523,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 16 08:52:25 +0000 2019","id":1184391636157190144,"id_str":"1184391636157190144","full_text":"RT + @tadousay: Y''all! \ud83d\ude0d I''ve been prepping to print the fantastic + playing card deck designed by Tugce Aldemir for the #AECTPokerRun, and I''m\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECTPokerRun","indices":[117,130]}],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":91361410,"id_str":"91361410","name":"Frances + Alvarado","screen_name":"francesmarg","location":"Earth","description":"Learning, + Design, & Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":146,"listed_count":1,"created_at":"Fri + Nov 20 15:25:28 +0000 2009","favourites_count":3639,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":567,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1333933432435568645\/WGnKKjwS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1333933432435568645\/WGnKKjwS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/91361410\/1533572819","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 15 23:44:22 +0000 2019","id":1184253712866447360,"id_str":"1184253712866447360","full_text":"Y''all! + \ud83d\ude0d I''ve been prepping to print the fantastic playing card deck + designed by Tugce Aldemir for the #AECTPokerRun, and I''m getting excited + for next week! #AECT19 https:\/\/t.co\/jVOK35hkvM https:\/\/t.co\/cNHj0ZRpQZ","truncated":false,"display_text_range":[0,188],"entities":{"hashtags":[{"text":"AECTPokerRun","indices":[103,116]},{"text":"AECT19","indices":[157,164]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jVOK35hkvM","expanded_url":"http:\/\/bit.ly\/2MIzKIN","display_url":"bit.ly\/2MIzKIN","indices":[165,188]}],"media":[{"id":1184253711834583040,"id_str":"1184253711834583040","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EG9QefnWkAAHIfF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG9QefnWkAAHIfF.jpg","url":"https:\/\/t.co\/cNHj0ZRpQZ","display_url":"pic.twitter.com\/cNHj0ZRpQZ","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1184253712866447360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184253711834583040,"id_str":"1184253711834583040","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EG9QefnWkAAHIfF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG9QefnWkAAHIfF.jpg","url":"https:\/\/t.co\/cNHj0ZRpQZ","display_url":"pic.twitter.com\/cNHj0ZRpQZ","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1184253712866447360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 16 20:07:32 +0000 2019","id":1184561534439186433,"id_str":"1184561534439186433","full_text":"RT + @srogidd: Come join us for an CLT Inspire! Session at AECT #aect19inspired + @aectclt https:\/\/t.co\/Um1rEZzKGY","truncated":false,"display_text_range":[0,110],"entities":{"hashtags":[{"text":"aect19inspired","indices":[62,77]}],"symbols":[],"user_mentions":[{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[3,11]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[78,86]}],"urls":[],"media":[{"id":1184499561051521024,"id_str":"1184499561051521024","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAwEzUVAAAJlHN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAwEzUVAAAJlHN.png","url":"https:\/\/t.co\/Um1rEZzKGY","display_url":"pic.twitter.com\/Um1rEZzKGY","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184499566038487040\/photo\/1","type":"photo","sizes":{"medium":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":820,"h":312,"resize":"fit"}},"source_status_id":1184499566038487040,"source_status_id_str":"1184499566038487040","source_user_id":28836047,"source_user_id_str":"28836047"}]},"extended_entities":{"media":[{"id":1184499561051521024,"id_str":"1184499561051521024","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAwEzUVAAAJlHN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAwEzUVAAAJlHN.png","url":"https:\/\/t.co\/Um1rEZzKGY","display_url":"pic.twitter.com\/Um1rEZzKGY","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184499566038487040\/photo\/1","type":"photo","sizes":{"medium":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":820,"h":312,"resize":"fit"}},"source_status_id":1184499566038487040,"source_status_id_str":"1184499566038487040","source_user_id":28836047,"source_user_id_str":"28836047","ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 16 16:01:18 +0000 2019","id":1184499566038487040,"id_str":"1184499566038487040","full_text":"Come + join us for an CLT Inspire! Session at AECT #aect19inspired @aectclt https:\/\/t.co\/Um1rEZzKGY","truncated":false,"display_text_range":[0,73],"entities":{"hashtags":[{"text":"aect19inspired","indices":[49,64]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[65,73]}],"urls":[],"media":[{"id":1184499561051521024,"id_str":"1184499561051521024","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAwEzUVAAAJlHN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAwEzUVAAAJlHN.png","url":"https:\/\/t.co\/Um1rEZzKGY","display_url":"pic.twitter.com\/Um1rEZzKGY","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184499566038487040\/photo\/1","type":"photo","sizes":{"medium":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":820,"h":312,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184499561051521024,"id_str":"1184499561051521024","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAwEzUVAAAJlHN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAwEzUVAAAJlHN.png","url":"https:\/\/t.co\/Um1rEZzKGY","display_url":"pic.twitter.com\/Um1rEZzKGY","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184499566038487040\/photo\/1","type":"photo","sizes":{"medium":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":820,"h":312,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28836047,"id_str":"28836047","name":"Sylvia + Rogers","screen_name":"srogidd","location":"Auburn, AL","description":"PhD + in Instructional Design, I work as an Instructional Designer and Consultant + for Scholarship of Teaching and Learning at the Harrison School of Pharmacy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":550,"friends_count":1089,"listed_count":18,"created_at":"Sat + Apr 04 17:47:27 +0000 2009","favourites_count":12191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2400,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28836047\/1439418186","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 15 16:57:08 +0000 2019","id":1184151231670951936,"id_str":"1184151231670951936","full_text":"RT + @ISLT_FSU: #FSU #FSUCOE #ISLT will be well represented at #AECT19 in Las Vegas + October 21-25. Check out this lineup of faculty, students\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"FSU","indices":[14,18]},{"text":"FSUCOE","indices":[19,26]},{"text":"ISLT","indices":[27,32]},{"text":"AECT19","indices":[61,68]}],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1551131372,"id_str":"1551131372","name":"Moni + IDD","screen_name":"MoniIDD","location":"","description":"Sr. Instructional + Designer, FSU Grad - M.S. ISLT, PhD in Learning Technologies from @ UNT | + QM course certified | \u2764\ufe0f hiking, waterfalls, & living in the PNW","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":485,"friends_count":1614,"listed_count":70,"created_at":"Thu + Jun 27 17:35:30 +0000 2013","favourites_count":6961,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4853,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1471619480014888966\/UtL-Oh9p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1471619480014888966\/UtL-Oh9p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1551131372\/1623973489","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 13 23:00:16 +0000 2019","id":1183517841221394432,"id_str":"1183517841221394432","full_text":"#FSU + #FSUCOE #ISLT will be well represented at #AECT19 in Las Vegas October 21-25. + Check out this lineup of faculty, students, and alumni: https:\/\/t.co\/ROIphcZuLY","truncated":false,"display_text_range":[0,162],"entities":{"hashtags":[{"text":"FSU","indices":[0,4]},{"text":"FSUCOE","indices":[5,12]},{"text":"ISLT","indices":[13,18]},{"text":"AECT19","indices":[47,54]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ROIphcZuLY","expanded_url":"https:\/\/isfsu.blogspot.com\/2019\/10\/2019-aect-islt-presenters-instructional.html","display_url":"isfsu.blogspot.com\/2019\/10\/2019-a\u2026","indices":[139,162]}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 14 15:27:14 +0000 2019","id":1183766216831201280,"id_str":"1183766216831201280","full_text":"RT + @AECT: 900 colleagues from across the country and around the world will converge + in Las Vegas next week to be inspired at our annual con\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 14 15:23:06 +0000 2019","id":1183765179441582080,"id_str":"1183765179441582080","full_text":"900 + colleagues from across the country and around the world will converge in Las + Vegas next week to be inspired at our annual convention. Can\u2019t wait! + \n#AECT19 #AECT19inspired\n\nhttps:\/\/t.co\/HLbut9liTM\nhttps:\/\/t.co\/nZ8EUxpwMx + https:\/\/t.co\/Vo5jdlz5WY","truncated":false,"display_text_range":[0,223],"entities":{"hashtags":[{"text":"AECT19","indices":[151,158]},{"text":"AECT19inspired","indices":[159,174]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HLbut9liTM","expanded_url":"http:\/\/bit.ly\/AECT19program","display_url":"bit.ly\/AECT19program","indices":[176,199]},{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[200,223]}],"media":[{"id":1183765163574468608,"id_str":"1183765163574468608","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183765163574468608\/pu\/img\/TTA-irg9kGuRmked.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183765163574468608\/pu\/img\/TTA-irg9kGuRmked.jpg","url":"https:\/\/t.co\/Vo5jdlz5WY","display_url":"pic.twitter.com\/Vo5jdlz5WY","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1183765179441582080\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":268,"resize":"fit"},"small":{"w":480,"h":268,"resize":"fit"},"medium":{"w":480,"h":268,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183765163574468608,"id_str":"1183765163574468608","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183765163574468608\/pu\/img\/TTA-irg9kGuRmked.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183765163574468608\/pu\/img\/TTA-irg9kGuRmked.jpg","url":"https:\/\/t.co\/Vo5jdlz5WY","display_url":"pic.twitter.com\/Vo5jdlz5WY","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1183765179441582080\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":268,"resize":"fit"},"small":{"w":480,"h":268,"resize":"fit"},"medium":{"w":480,"h":268,"resize":"fit"}},"video_info":{"aspect_ratio":[120,67],"duration_millis":3700,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183765163574468608\/pu\/pl\/FvuPvarmUiY8VOB6.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183765163574468608\/pu\/vid\/480x268\/SJJkTYfPWkSK94t0.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 16 20:33:09 +0000 2019","id":1184567979427561472,"id_str":"1184567979427561472","full_text":"#aect19inspired + Papers are in the mail... taking a time today to enjoy the sense of completion! Next, + I\u2019ll be working on presentation preparations with @caranorth11 @dr_tracy_s + @correia65 @socmopodcast @KINOGLAZAZ https:\/\/t.co\/dxZKOK6JRW","truncated":false,"display_text_range":[0,214],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[153,165]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[178,188]},{"screen_name":"socmopodcast","name":"Social + Media and Ourselves","id":1148980298459295746,"id_str":"1148980298459295746","indices":[189,202]},{"screen_name":"KINOGLAZAZ","name":"Luis + Carrion","id":48152782,"id_str":"48152782","indices":[203,214]}],"urls":[],"media":[{"id":1184567972863467520,"id_str":"1184567972863467520","indices":[215,238],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHBuS5LU4AAVfZU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHBuS5LU4AAVfZU.jpg","url":"https:\/\/t.co\/dxZKOK6JRW","display_url":"pic.twitter.com\/dxZKOK6JRW","expanded_url":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1184567979427561472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":448,"h":336,"resize":"fit"},"medium":{"w":448,"h":336,"resize":"fit"},"large":{"w":448,"h":336,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184567972863467520,"id_str":"1184567972863467520","indices":[215,238],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHBuS5LU4AAVfZU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHBuS5LU4AAVfZU.jpg","url":"https:\/\/t.co\/dxZKOK6JRW","display_url":"pic.twitter.com\/dxZKOK6JRW","expanded_url":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1184567979427561472\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":448,"h":336,"resize":"fit"},"medium":{"w":448,"h":336,"resize":"fit"},"large":{"w":448,"h":336,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHBuS5LU4AAVfZU.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"013379ee5729a5e6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/013379ee5729a5e6.json","place_type":"city","name":"Tucson","full_name":"Tucson, + AZ","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-111.083219,32.057802],[-110.747928,32.057802],[-110.747928,32.320979],[-111.083219,32.320979]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 16 19:18:39 +0000 2019","id":1184549231534788609,"id_str":"1184549231534788609","full_text":"RT + @srogidd: We''ve got some great stuff going on Wednesday at AECT!! Come join + CLT! #aect19inspired https:\/\/t.co\/FyjiiEZr4M","truncated":false,"display_text_range":[0,123],"entities":{"hashtags":[{"text":"aect19inspired","indices":[84,99]}],"symbols":[],"user_mentions":[{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[3,11]}],"urls":[],"media":[{"id":1184525266703413250,"id_str":"1184525266703413250","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHBHdEVU8AIqDP4.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHBHdEVU8AIqDP4.png","url":"https:\/\/t.co\/FyjiiEZr4M","display_url":"pic.twitter.com\/FyjiiEZr4M","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184525272651042822\/photo\/1","type":"photo","sizes":{"large":{"w":820,"h":312,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1184525272651042822,"source_status_id_str":"1184525272651042822","source_user_id":28836047,"source_user_id_str":"28836047"}]},"extended_entities":{"media":[{"id":1184525266703413250,"id_str":"1184525266703413250","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/EHBHdEVU8AIqDP4.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHBHdEVU8AIqDP4.png","url":"https:\/\/t.co\/FyjiiEZr4M","display_url":"pic.twitter.com\/FyjiiEZr4M","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184525272651042822\/photo\/1","type":"photo","sizes":{"large":{"w":820,"h":312,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1184525272651042822,"source_status_id_str":"1184525272651042822","source_user_id":28836047,"source_user_id_str":"28836047","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 16 17:43:27 +0000 2019","id":1184525272651042822,"id_str":"1184525272651042822","full_text":"We''ve + got some great stuff going on Wednesday at AECT!! Come join CLT! #aect19inspired + https:\/\/t.co\/FyjiiEZr4M","truncated":false,"display_text_range":[0,86],"entities":{"hashtags":[{"text":"aect19inspired","indices":[71,86]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1184525266703413250,"id_str":"1184525266703413250","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/EHBHdEVU8AIqDP4.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHBHdEVU8AIqDP4.png","url":"https:\/\/t.co\/FyjiiEZr4M","display_url":"pic.twitter.com\/FyjiiEZr4M","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184525272651042822\/photo\/1","type":"photo","sizes":{"large":{"w":820,"h":312,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1184525266703413250,"id_str":"1184525266703413250","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/EHBHdEVU8AIqDP4.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHBHdEVU8AIqDP4.png","url":"https:\/\/t.co\/FyjiiEZr4M","display_url":"pic.twitter.com\/FyjiiEZr4M","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184525272651042822\/photo\/1","type":"photo","sizes":{"large":{"w":820,"h":312,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28836047,"id_str":"28836047","name":"Sylvia + Rogers","screen_name":"srogidd","location":"Auburn, AL","description":"PhD + in Instructional Design, I work as an Instructional Designer and Consultant + for Scholarship of Teaching and Learning at the Harrison School of Pharmacy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":550,"friends_count":1089,"listed_count":18,"created_at":"Sat + Apr 04 17:47:27 +0000 2009","favourites_count":12191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2400,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28836047\/1439418186","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 13 12:22:24 +0000 2019","id":1183357314599923712,"id_str":"1183357314599923712","full_text":"RT + @aectclt: Glad to see our CLT president-elect-designate @LiuJuhong and our + CLT Initiatives #IRCEES are inspiring @AECT folks! #aect19in\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"IRCEES","indices":[95,102]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[3,11]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[59,69]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[117,122]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 13 00:19:40 +0000 2019","id":1183175434311065600,"id_str":"1183175434311065600","full_text":"Glad + to see our CLT president-elect-designate @LiuJuhong and our CLT Initiatives + #IRCEES are inspiring @AECT folks! #aect19inspired #inspiredme https:\/\/t.co\/YngzHJsJIH","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"IRCEES","indices":[82,89]},{"text":"aect19inspired","indices":[117,132]},{"text":"inspiredme","indices":[133,144]}],"symbols":[],"user_mentions":[{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[46,56]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[104,109]}],"urls":[{"url":"https:\/\/t.co\/YngzHJsJIH","expanded_url":"https:\/\/twitter.com\/nicolapallitt\/status\/1181418289890766849","display_url":"twitter.com\/nicolapallitt\/\u2026","indices":[145,168]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905212118127042560,"id_str":"905212118127042560","name":"AECT_CLT","screen_name":"aectclt","location":"","description":"AECT + Division Exploring culture, learning, and technology with particular emphases + on championing inclusiveness and equity. Conversation at #aectclt","url":"https:\/\/t.co\/yc2CmqxA5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yc2CmqxA5M","expanded_url":"https:\/\/sites.google.com\/view\/clt-home","display_url":"sites.google.com\/view\/clt-home","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":26,"listed_count":4,"created_at":"Tue + Sep 05 23:32:41 +0000 2017","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":486,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905212118127042560\/1506184813","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1181418289890766849,"quoted_status_id_str":"1181418289890766849","quoted_status_permalink":{"url":"https:\/\/t.co\/YngzHJsJIH","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1181418289890766849","display":"twitter.com\/nicolapallitt\/\u2026"},"quoted_status":{"created_at":"Tue + Oct 08 03:57:24 +0000 2019","id":1181418289890766849,"id_str":"1181418289890766849","full_text":"@aectclt + @akesha @tutaleni @amy_c_bradshaw @LiuJuhong @srogidd @michaelmgrant @eAngelaBenson + @tadousay @jweeble @AECT Tough choice, most of them have inspired me in some + way:) Most recently, @LiuJuhong who is one of my IRCEES mentors @emergeAfrica + & @aect She''s really helped us to navigate some murky challenges when + it comes to doing international research #aect19inspired #inspiredme","truncated":false,"display_text_range":[118,390],"entities":{"hashtags":[{"text":"aect19inspired","indices":[363,378]},{"text":"inspiredme","indices":[379,390]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[0,8]},{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[9,16]},{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[17,26]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[27,42]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[43,53]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[54,62]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[63,77]},{"screen_name":"eAngelaBenson","name":"Angela + Benson","id":15969744,"id_str":"15969744","indices":[78,92]},{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[93,102]},{"screen_name":"jweeble","name":"Jennifer + Weible","id":28419864,"id_str":"28419864","indices":[103,111]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[112,117]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[191,201]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[234,247]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[254,259]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1181390526777626624,"in_reply_to_status_id_str":"1181390526777626624","in_reply_to_user_id":905212118127042560,"in_reply_to_user_id_str":"905212118127042560","in_reply_to_screen_name":"aectclt","user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"59efa64f5c8f5340","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/59efa64f5c8f5340.json","place_type":"city","name":"Grahamstown","full_name":"Grahamstown, + South Africa","country_code":"ZA","country":"South Africa","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[26.4794772,-33.326355],[26.5600028,-33.326355],[26.5600028,-33.270332],[26.4794772,-33.270332]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1181418289890766849,"quoted_status_id_str":"1181418289890766849","quoted_status_permalink":{"url":"https:\/\/t.co\/YngzHJsJIH","expanded":"https:\/\/twitter.com\/nicolapallitt\/status\/1181418289890766849","display":"twitter.com\/nicolapallitt\/\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 14 16:47:44 +0000 2019","id":1183786475705384965,"id_str":"1183786475705384965","full_text":"RT + @dctrcurry: Thirteen is excited for #aect19inspired. Are you?\n\n@michaelmgrant + and I will see you with everyone else in @AECT a week fro\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[39,54]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[3,13]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[67,81]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[123,128]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 14 16:43:02 +0000 2019","id":1183785294287396864,"id_str":"1183785294287396864","full_text":"Thirteen + is excited for #aect19inspired. Are you?\n\n@michaelmgrant and I will see + you with everyone else in @AECT a week from today! https:\/\/t.co\/MXYbE3Ze00","truncated":false,"display_text_range":[0,132],"entities":{"hashtags":[{"text":"aect19inspired","indices":[24,39]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[52,66]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[108,113]}],"urls":[],"media":[{"id":1183785283050864641,"id_str":"1183785283050864641","indices":[133,156],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EG2mcWaVAAEvWD8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EG2mcWaVAAEvWD8.jpg","url":"https:\/\/t.co\/MXYbE3Ze00","display_url":"pic.twitter.com\/MXYbE3Ze00","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1183785294287396864\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":270,"resize":"fit"},"large":{"w":480,"h":270,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183785283050864641,"id_str":"1183785283050864641","indices":[133,156],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EG2mcWaVAAEvWD8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EG2mcWaVAAEvWD8.jpg","url":"https:\/\/t.co\/MXYbE3Ze00","display_url":"pic.twitter.com\/MXYbE3Ze00","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1183785294287396864\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":480,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":270,"resize":"fit"},"large":{"w":480,"h":270,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EG2mcWaVAAEvWD8.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 16 12:31:57 +0000 2019","id":1184446884133384192,"id_str":"1184446884133384192","full_text":"@FakeBobGagne + Truly inspired, Bob. \n#aect19inspired","truncated":false,"display_text_range":[14,51],"entities":{"hashtags":[{"text":"aect19inspired","indices":[36,51]}],"symbols":[],"user_mentions":[{"screen_name":"FakeBobGagne","name":"FakeBobGagne","id":4130346912,"id_str":"4130346912","indices":[0,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1184279925186015233,"in_reply_to_status_id_str":"1184279925186015233","in_reply_to_user_id":4130346912,"in_reply_to_user_id_str":"4130346912","in_reply_to_screen_name":"FakeBobGagne","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"189ef793a6dbbfc8","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/189ef793a6dbbfc8.json","place_type":"city","name":"Irmo","full_name":"Irmo, + SC","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-81.257113,34.04725],[-81.132587,34.04725],[-81.132587,34.170797],[-81.257113,34.170797]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 13 12:26:52 +0000 2019","id":1183358438908354560,"id_str":"1183358438908354560","full_text":"RT + @gsa_aect: Murat Turk and Sharon Flynn Stidham will facilitate the GSA session + \"GSA: A Conversation with Dr. Xun Ge AECT President-Elect\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 12 19:00:33 +0000 2019","id":1183095127885205504,"id_str":"1183095127885205504","full_text":"Murat + Turk and Sharon Flynn Stidham will facilitate the GSA session \"GSA: A Conversation + with Dr. Xun Ge AECT President-Elect.\" This session will be held on Oct 22nd + from 8:00 to 8:50 pm in the conference room 4. #aect19 #aect19inspired #aectgsa + https:\/\/t.co\/6xw7wIHPN6","truncated":false,"display_text_range":[0,245],"entities":{"hashtags":[{"text":"aect19","indices":[213,220]},{"text":"aect19inspired","indices":[221,236]},{"text":"aectgsa","indices":[237,245]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1183095125427326976,"id_str":"1183095125427326976","indices":[246,269],"media_url":"http:\/\/pbs.twimg.com\/media\/EGsyv46XkAASTSm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGsyv46XkAASTSm.jpg","url":"https:\/\/t.co\/6xw7wIHPN6","display_url":"pic.twitter.com\/6xw7wIHPN6","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1183095127885205504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183095125427326976,"id_str":"1183095125427326976","indices":[246,269],"media_url":"http:\/\/pbs.twimg.com\/media\/EGsyv46XkAASTSm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGsyv46XkAASTSm.jpg","url":"https:\/\/t.co\/6xw7wIHPN6","display_url":"pic.twitter.com\/6xw7wIHPN6","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1183095127885205504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 13 12:28:01 +0000 2019","id":1183358727740628993,"id_str":"1183358727740628993","full_text":"RT + @PaulineMuljana: Get inspired by ideas on how to design with accessibility + in mind through the discussion with our panelists: @AmyLomell\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 23:46:32 +0000 2019","id":1181717546048688129,"id_str":"1181717546048688129","full_text":"Get + inspired by ideas on how to design with accessibility in mind through the + discussion with our panelists: @AmyLomellini_ID , @UmbrellaMichela , and Dr. + @JenM . @tugcealdemirpsu and I will be moderating. #aect19inspired #aect19 + https:\/\/t.co\/IYUgckRnwL","truncated":false,"display_text_range":[0,230],"entities":{"hashtags":[{"text":"aect19inspired","indices":[206,221]},{"text":"aect19","indices":[223,230]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[109,125]},{"screen_name":"UmbrellaMichela","name":"Esther + Michela","id":940824276307009536,"id_str":"940824276307009536","indices":[128,144]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[155,160]},{"screen_name":"tugcealdemirpsu","name":"Tugce + Aldemir","id":702658623621586944,"id_str":"702658623621586944","indices":[163,179]}],"urls":[{"url":"https:\/\/t.co\/IYUgckRnwL","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875","display_url":"twitter.com\/gsa_aect\/statu\u2026","indices":[231,254]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1181705975230799875,"quoted_status_id_str":"1181705975230799875","quoted_status_permalink":{"url":"https:\/\/t.co\/IYUgckRnwL","expanded":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875","display":"twitter.com\/gsa_aect\/statu\u2026"},"quoted_status":{"created_at":"Tue + Oct 08 23:00:34 +0000 2019","id":1181705975230799875,"id_str":"1181705975230799875","full_text":"Come + and join this panel discussion, moderated by Pauline Muljana and Tugce Aldemir, + on Oct 23 from 3:00 to 3:50 pm, at Convention Center, Conference Rm 4. The + panelists will discuss why and how we embrace accessibility in order to meet + diverse learning needs. #aect19inspired https:\/\/t.co\/qyHaN7KLbO","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"aect19inspired","indices":[262,277]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181705973720858625,"id_str":"1181705973720858625","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","url":"https:\/\/t.co\/qyHaN7KLbO","display_url":"pic.twitter.com\/qyHaN7KLbO","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181705973720858625,"id_str":"1181705973720858625","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","url":"https:\/\/t.co\/qyHaN7KLbO","display_url":"pic.twitter.com\/qyHaN7KLbO","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1181705975230799875,"quoted_status_id_str":"1181705975230799875","quoted_status_permalink":{"url":"https:\/\/t.co\/IYUgckRnwL","expanded":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875","display":"twitter.com\/gsa_aect\/statu\u2026"},"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 16 19:58:43 +0000 2019","id":1184559315572658177,"id_str":"1184559315572658177","full_text":"Looking + forward to #AECT19 because I like connecting with long time friends, meeting + up with students, and learning new things. But I miss my fam and our routines + while I\u2019m away. This season of my life is happily domestic and in truth + I prefer not to travel.","truncated":false,"display_text_range":[0,258],"entities":{"hashtags":[{"text":"AECT19","indices":[19,26]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2905458781,"id_str":"2905458781","name":"Ross + Perkins, PhD","screen_name":"DrRossPerkins","location":"Apex, NC","description":"Asc + Prof @ Boise State. EdS\/EdD ProgCoord. https:\/\/t.co\/8jp7WXqbV1 | Huge + listserv influencer, 1998-2006.","url":"https:\/\/t.co\/8jp7WXqbV1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/8jp7WXqbV1","expanded_url":"http:\/\/edtech.boisestate.edu","display_url":"edtech.boisestate.edu","indices":[43,66]}]}},"protected":false,"followers_count":773,"friends_count":485,"listed_count":21,"created_at":"Thu + Nov 20 19:52:09 +0000 2014","favourites_count":3672,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2751,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542497926328602627\/EyIj0HuN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2905458781\/1618315302","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":25,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 16 16:14:58 +0000 2019","id":1184503008685711362,"id_str":"1184503008685711362","full_text":"RT + @srogidd: Come join us at this CLT Inspire! Session #AECT19inspired @aectclt + @aectddl https:\/\/t.co\/Sg5k8C8n6w","truncated":false,"display_text_range":[0,112],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[55,70]}],"symbols":[],"user_mentions":[{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[3,11]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[71,79]},{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[80,88]}],"urls":[],"media":[{"id":1184499089414602752,"id_str":"1184499089414602752","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAvpWVUwAAuB1L.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAvpWVUwAAuB1L.png","url":"https:\/\/t.co\/Sg5k8C8n6w","display_url":"pic.twitter.com\/Sg5k8C8n6w","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184499095047528448\/photo\/1","type":"photo","sizes":{"large":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1184499095047528448,"source_status_id_str":"1184499095047528448","source_user_id":28836047,"source_user_id_str":"28836047"}]},"extended_entities":{"media":[{"id":1184499089414602752,"id_str":"1184499089414602752","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAvpWVUwAAuB1L.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAvpWVUwAAuB1L.png","url":"https:\/\/t.co\/Sg5k8C8n6w","display_url":"pic.twitter.com\/Sg5k8C8n6w","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184499095047528448\/photo\/1","type":"photo","sizes":{"large":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":1184499095047528448,"source_status_id_str":"1184499095047528448","source_user_id":28836047,"source_user_id_str":"28836047","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 16 15:59:25 +0000 2019","id":1184499095047528448,"id_str":"1184499095047528448","full_text":"Come + join us at this CLT Inspire! Session #AECT19inspired @aectclt @aectddl https:\/\/t.co\/Sg5k8C8n6w","truncated":false,"display_text_range":[0,75],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[42,57]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[58,66]},{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[67,75]}],"urls":[],"media":[{"id":1184499089414602752,"id_str":"1184499089414602752","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAvpWVUwAAuB1L.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAvpWVUwAAuB1L.png","url":"https:\/\/t.co\/Sg5k8C8n6w","display_url":"pic.twitter.com\/Sg5k8C8n6w","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184499095047528448\/photo\/1","type":"photo","sizes":{"large":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1184499089414602752,"id_str":"1184499089414602752","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAvpWVUwAAuB1L.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAvpWVUwAAuB1L.png","url":"https:\/\/t.co\/Sg5k8C8n6w","display_url":"pic.twitter.com\/Sg5k8C8n6w","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184499095047528448\/photo\/1","type":"photo","sizes":{"large":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28836047,"id_str":"28836047","name":"Sylvia + Rogers","screen_name":"srogidd","location":"Auburn, AL","description":"PhD + in Instructional Design, I work as an Instructional Designer and Consultant + for Scholarship of Teaching and Learning at the Harrison School of Pharmacy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":550,"friends_count":1089,"listed_count":18,"created_at":"Sat + Apr 04 17:47:27 +0000 2009","favourites_count":12191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2400,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28836047\/1439418186","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 16 17:43:27 +0000 2019","id":1184525272651042822,"id_str":"1184525272651042822","full_text":"We''ve + got some great stuff going on Wednesday at AECT!! Come join CLT! #aect19inspired + https:\/\/t.co\/FyjiiEZr4M","truncated":false,"display_text_range":[0,86],"entities":{"hashtags":[{"text":"aect19inspired","indices":[71,86]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1184525266703413250,"id_str":"1184525266703413250","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/EHBHdEVU8AIqDP4.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHBHdEVU8AIqDP4.png","url":"https:\/\/t.co\/FyjiiEZr4M","display_url":"pic.twitter.com\/FyjiiEZr4M","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184525272651042822\/photo\/1","type":"photo","sizes":{"large":{"w":820,"h":312,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1184525266703413250,"id_str":"1184525266703413250","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/EHBHdEVU8AIqDP4.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHBHdEVU8AIqDP4.png","url":"https:\/\/t.co\/FyjiiEZr4M","display_url":"pic.twitter.com\/FyjiiEZr4M","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184525272651042822\/photo\/1","type":"photo","sizes":{"large":{"w":820,"h":312,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28836047,"id_str":"28836047","name":"Sylvia + Rogers","screen_name":"srogidd","location":"Auburn, AL","description":"PhD + in Instructional Design, I work as an Instructional Designer and Consultant + for Scholarship of Teaching and Learning at the Harrison School of Pharmacy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":550,"friends_count":1089,"listed_count":18,"created_at":"Sat + Apr 04 17:47:27 +0000 2009","favourites_count":12191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2400,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28836047\/1439418186","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 12 20:00:26 +0000 2019","id":1183110197184815104,"id_str":"1183110197184815104","full_text":"Join + the GSA session \"Knowing Your Options: Finding and Applying to Jobs in Our + Field\" on Oct 25th from 10:00 to 10:50 am in the conference room 2. This + session will be facilitated by Shams Duha. @spcmao #aect19 #aect19inspired + #aectgsa https:\/\/t.co\/VGzkKCU6v1","truncated":false,"display_text_range":[0,236],"entities":{"hashtags":[{"text":"aect19","indices":[204,211]},{"text":"aect19inspired","indices":[212,227]},{"text":"aectgsa","indices":[228,236]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1183110194236186631,"id_str":"1183110194236186631","indices":[237,260],"media_url":"http:\/\/pbs.twimg.com\/media\/EGtAdAmXYAcJb9y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGtAdAmXYAcJb9y.jpg","url":"https:\/\/t.co\/VGzkKCU6v1","display_url":"pic.twitter.com\/VGzkKCU6v1","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1183110197184815104\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1500,"h":844,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183110194236186631,"id_str":"1183110194236186631","indices":[237,260],"media_url":"http:\/\/pbs.twimg.com\/media\/EGtAdAmXYAcJb9y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGtAdAmXYAcJb9y.jpg","url":"https:\/\/t.co\/VGzkKCU6v1","display_url":"pic.twitter.com\/VGzkKCU6v1","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1183110197184815104\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1500,"h":844,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 14 16:56:31 +0000 2019","id":1183788686854557696,"id_str":"1183788686854557696","full_text":"RT + @michaelmgrant: Omg! @AECT is in 7 days!\n#AECT19inspired https:\/\/t.co\/mTNq2HJ2EV","truncated":false,"display_text_range":[0,83],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[44,59]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[24,29]}],"urls":[],"media":[{"id":1183786798717140996,"id_str":"1183786798717140996","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2n0ktVAAQB263.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2n0ktVAAQB263.jpg","url":"https:\/\/t.co\/mTNq2HJ2EV","display_url":"pic.twitter.com\/mTNq2HJ2EV","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1183786918980419585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":405,"resize":"fit"},"small":{"w":540,"h":405,"resize":"fit"},"large":{"w":540,"h":405,"resize":"fit"}},"source_status_id":1183786918980419585,"source_status_id_str":"1183786918980419585","source_user_id":132653457,"source_user_id_str":"132653457"}]},"extended_entities":{"media":[{"id":1183786798717140996,"id_str":"1183786798717140996","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2n0ktVAAQB263.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2n0ktVAAQB263.jpg","url":"https:\/\/t.co\/mTNq2HJ2EV","display_url":"pic.twitter.com\/mTNq2HJ2EV","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1183786918980419585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":405,"resize":"fit"},"small":{"w":540,"h":405,"resize":"fit"},"large":{"w":540,"h":405,"resize":"fit"}},"source_status_id":1183786918980419585,"source_status_id_str":"1183786918980419585","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 14 16:49:29 +0000 2019","id":1183786918980419585,"id_str":"1183786918980419585","full_text":"Omg! + @AECT is in 7 days!\n#AECT19inspired https:\/\/t.co\/mTNq2HJ2EV","truncated":false,"display_text_range":[0,40],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[25,40]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[5,10]}],"urls":[],"media":[{"id":1183786798717140996,"id_str":"1183786798717140996","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2n0ktVAAQB263.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2n0ktVAAQB263.jpg","url":"https:\/\/t.co\/mTNq2HJ2EV","display_url":"pic.twitter.com\/mTNq2HJ2EV","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1183786918980419585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":405,"resize":"fit"},"small":{"w":540,"h":405,"resize":"fit"},"large":{"w":540,"h":405,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183786798717140996,"id_str":"1183786798717140996","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2n0ktVAAQB263.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2n0ktVAAQB263.jpg","url":"https:\/\/t.co\/mTNq2HJ2EV","display_url":"pic.twitter.com\/mTNq2HJ2EV","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1183786918980419585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":405,"resize":"fit"},"small":{"w":540,"h":405,"resize":"fit"},"large":{"w":540,"h":405,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 13 02:53:05 +0000 2019","id":1183214042569035777,"id_str":"1183214042569035777","full_text":"RT + @AECT: Are you ready? The #AECT19 convention is in 9 days! \n\nIt\u2019s not + too late to register!\nhttps:\/\/t.co\/nZ8EUxpwMx https:\/\/t.co\/TsWdRUy\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[29,36]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[95,118]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 12 13:26:53 +0000 2019","id":1183011156878876672,"id_str":"1183011156878876672","full_text":"Are + you ready? The #AECT19 convention is in 9 days! \n\nIt\u2019s not too late + to register!\nhttps:\/\/t.co\/nZ8EUxpwMx https:\/\/t.co\/TsWdRUyFbQ","truncated":false,"display_text_range":[0,108],"entities":{"hashtags":[{"text":"AECT19","indices":[19,26]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[85,108]}],"media":[{"id":1183011110959620096,"id_str":"1183011110959620096","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","url":"https:\/\/t.co\/TsWdRUyFbQ","display_url":"pic.twitter.com\/TsWdRUyFbQ","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1183011156878876672\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183011110959620096,"id_str":"1183011110959620096","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","url":"https:\/\/t.co\/TsWdRUyFbQ","display_url":"pic.twitter.com\/TsWdRUyFbQ","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1183011156878876672\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}},"video_info":{"aspect_ratio":[320,179],"duration_millis":4533,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183011110959620096\/pu\/pl\/a1M8PWHESYF45Ey2.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183011110959620096\/pu\/vid\/482x270\/GWOU-CbpBWhtq9P3.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183011110959620096\/pu\/vid\/640x358\/fAqzJ_Y5lWfoisML.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 16 17:29:30 +0000 2019","id":1184521765633978368,"id_str":"1184521765633978368","full_text":"RT + @AECT: Get ready to BE INSPIRED! Just 5 more days people!\n\n#AECT19 #AECT19inspired\nhttps:\/\/t.co\/HLbut9liTM\nhttps:\/\/t.co\/nZ8EUxpwMx + https\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[62,69]},{"text":"AECT19inspired","indices":[70,85]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[{"url":"https:\/\/t.co\/HLbut9liTM","expanded_url":"http:\/\/bit.ly\/AECT19program","display_url":"bit.ly\/AECT19program","indices":[86,109]},{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[110,133]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936686250,"id_str":"936686250","name":"John + Hampton, PhD","screen_name":"hampthephd","location":"Newnan, GA","description":"Assistant + Professor at @UnivWestGa \ud83d\udc3a | PhD in Curriculum & Instruction, Educational + Technology from @UF \ud83d\udc0a | https:\/\/t.co\/SbvOs6f7q6 \ud83d\udcf8 + | tennis lover \ud83c\udfbe","url":"https:\/\/t.co\/ypFU4hr5h3","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ypFU4hr5h3","expanded_url":"http:\/\/www.hampthephd.com","display_url":"hampthephd.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/SbvOs6f7q6","expanded_url":"http:\/\/hamp.photo","display_url":"hamp.photo","indices":[108,131]}]}},"protected":false,"followers_count":363,"friends_count":481,"listed_count":5,"created_at":"Fri + Nov 09 11:38:42 +0000 2012","favourites_count":3956,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3002,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1444723145580154883\/gqncRagy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936686250\/1657077646","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 16 10:16:09 +0000 2019","id":1184412708487254016,"id_str":"1184412708487254016","full_text":"Get + ready to BE INSPIRED! Just 5 more days people!\n\n#AECT19 #AECT19inspired\nhttps:\/\/t.co\/HLbut9liTM\nhttps:\/\/t.co\/nZ8EUxpwMx + https:\/\/t.co\/7xrgdvLLEv","truncated":false,"display_text_range":[0,123],"entities":{"hashtags":[{"text":"AECT19","indices":[52,59]},{"text":"AECT19inspired","indices":[60,75]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HLbut9liTM","expanded_url":"http:\/\/bit.ly\/AECT19program","display_url":"bit.ly\/AECT19program","indices":[76,99]},{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[100,123]}],"media":[{"id":1184412644507373568,"id_str":"1184412644507373568","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184412644507373568\/pu\/img\/MAHFOrDWo4sRD0f7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184412644507373568\/pu\/img\/MAHFOrDWo4sRD0f7.jpg","url":"https:\/\/t.co\/7xrgdvLLEv","display_url":"pic.twitter.com\/7xrgdvLLEv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1184412708487254016\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184412644507373568,"id_str":"1184412644507373568","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184412644507373568\/pu\/img\/MAHFOrDWo4sRD0f7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184412644507373568\/pu\/img\/MAHFOrDWo4sRD0f7.jpg","url":"https:\/\/t.co\/7xrgdvLLEv","display_url":"pic.twitter.com\/7xrgdvLLEv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1184412708487254016\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}},"video_info":{"aspect_ratio":[320,179],"duration_millis":3533,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184412644507373568\/pu\/vid\/482x270\/BoO8Wq5l3IBUAzv_.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184412644507373568\/pu\/pl\/3kJj0Ok4hVBorJkU.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184412644507373568\/pu\/vid\/640x358\/PHicrs_Qa8ttoEL8.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 16 16:35:42 +0000 2019","id":1184508224667414528,"id_str":"1184508224667414528","full_text":"Do + you know what happens in five short days?\n\n#aect19inspired! @michaelmgrant + and I will see you all soon! https:\/\/t.co\/HHPYyljso6","truncated":false,"display_text_range":[0,107],"entities":{"hashtags":[{"text":"aect19inspired","indices":[46,61]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[64,78]}],"urls":[],"media":[{"id":1184508212944371713,"id_str":"1184508212944371713","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHA38aIVAAEbu4y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHA38aIVAAEbu4y.jpg","url":"https:\/\/t.co\/HHPYyljso6","display_url":"pic.twitter.com\/HHPYyljso6","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1184508224667414528\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":224,"resize":"fit"},"medium":{"w":400,"h":224,"resize":"fit"},"large":{"w":400,"h":224,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184508212944371713,"id_str":"1184508212944371713","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHA38aIVAAEbu4y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHA38aIVAAEbu4y.jpg","url":"https:\/\/t.co\/HHPYyljso6","display_url":"pic.twitter.com\/HHPYyljso6","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1184508224667414528\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":400,"h":224,"resize":"fit"},"medium":{"w":400,"h":224,"resize":"fit"},"large":{"w":400,"h":224,"resize":"fit"}},"video_info":{"aspect_ratio":[25,14],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHA38aIVAAEbu4y.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 13 16:41:28 +0000 2019","id":1183422513361096705,"id_str":"1183422513361096705","full_text":"RT + @gsa_aect: Come and join this panel discussion, moderated by Pauline Muljana + and Tugce Aldemir, on Oct 23 from 3:00 to 3:50 pm, at Conve\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":13515,"id_str":"13515","name":"Jennifer + Maddrell","screen_name":"JenM","location":"Chicago, IL","description":"Teach, + study & design learning experiences","url":"https:\/\/t.co\/725I4m2QWv","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/725I4m2QWv","expanded_url":"https:\/\/jennifermaddrell.com","display_url":"jennifermaddrell.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2420,"friends_count":4448,"listed_count":80,"created_at":"Tue + Nov 21 13:57:14 +0000 2006","favourites_count":7779,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3455,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1349925823118254082\/auOq8U_0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13515\/1604669803","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 23:00:34 +0000 2019","id":1181705975230799875,"id_str":"1181705975230799875","full_text":"Come + and join this panel discussion, moderated by Pauline Muljana and Tugce Aldemir, + on Oct 23 from 3:00 to 3:50 pm, at Convention Center, Conference Rm 4. The + panelists will discuss why and how we embrace accessibility in order to meet + diverse learning needs. #aect19inspired https:\/\/t.co\/qyHaN7KLbO","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"aect19inspired","indices":[262,277]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181705973720858625,"id_str":"1181705973720858625","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","url":"https:\/\/t.co\/qyHaN7KLbO","display_url":"pic.twitter.com\/qyHaN7KLbO","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181705973720858625,"id_str":"1181705973720858625","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","url":"https:\/\/t.co\/qyHaN7KLbO","display_url":"pic.twitter.com\/qyHaN7KLbO","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 17 03:05:29 +0000 2019","id":1184666715059294208,"id_str":"1184666715059294208","full_text":"RT + @AnnaRoseLeach: #aect19inspired Papers are in the mail... taking a time today + to enjoy the sense of completion! Next, I\u2019ll be working o\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[19,34]}],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[3,17]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153141293,"id_str":"153141293","name":"Ana-Paula + Correia \u2600\ufe0f","screen_name":"correia65","location":"","description":"Professor + of Learning Technologies @OhioState @OSUehe. Director of @OSUcete. Learning + Designer. Researcher. Leader. @LEDresearch \ud83c\uddfa\ud83c\uddf8\ud83c\uddf5\ud83c\uddf9","url":"https:\/\/t.co\/mgeGAbT0AP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mgeGAbT0AP","expanded_url":"https:\/\/www.ana-paulacorreia.com\/","display_url":"ana-paulacorreia.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3494,"friends_count":3241,"listed_count":29,"created_at":"Mon + Jun 07 20:00:45 +0000 2010","favourites_count":10293,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":654,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1149684446838345728\/1XaCxgEx_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1149684446838345728\/1XaCxgEx_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153141293\/1562941057","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 16 20:33:09 +0000 2019","id":1184567979427561472,"id_str":"1184567979427561472","full_text":"#aect19inspired + Papers are in the mail... taking a time today to enjoy the sense of completion! Next, + I\u2019ll be working on presentation preparations with @caranorth11 @dr_tracy_s + @correia65 @socmopodcast @KINOGLAZAZ https:\/\/t.co\/dxZKOK6JRW","truncated":false,"display_text_range":[0,214],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[153,165]},{"screen_name":"correia65","name":"Ana-Paula + Correia \u2600\ufe0f","id":153141293,"id_str":"153141293","indices":[178,188]},{"screen_name":"socmopodcast","name":"Social + Media and Ourselves","id":1148980298459295746,"id_str":"1148980298459295746","indices":[189,202]},{"screen_name":"KINOGLAZAZ","name":"Luis + Carrion","id":48152782,"id_str":"48152782","indices":[203,214]}],"urls":[],"media":[{"id":1184567972863467520,"id_str":"1184567972863467520","indices":[215,238],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHBuS5LU4AAVfZU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHBuS5LU4AAVfZU.jpg","url":"https:\/\/t.co\/dxZKOK6JRW","display_url":"pic.twitter.com\/dxZKOK6JRW","expanded_url":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1184567979427561472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":448,"h":336,"resize":"fit"},"medium":{"w":448,"h":336,"resize":"fit"},"large":{"w":448,"h":336,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184567972863467520,"id_str":"1184567972863467520","indices":[215,238],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EHBuS5LU4AAVfZU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EHBuS5LU4AAVfZU.jpg","url":"https:\/\/t.co\/dxZKOK6JRW","display_url":"pic.twitter.com\/dxZKOK6JRW","expanded_url":"https:\/\/twitter.com\/AnnaRoseLeach\/status\/1184567979427561472\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":448,"h":336,"resize":"fit"},"medium":{"w":448,"h":336,"resize":"fit"},"large":{"w":448,"h":336,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EHBuS5LU4AAVfZU.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"013379ee5729a5e6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/013379ee5729a5e6.json","place_type":"city","name":"Tucson","full_name":"Tucson, + AZ","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-111.083219,32.057802],[-110.747928,32.057802],[-110.747928,32.320979],[-111.083219,32.320979]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 12 16:27:02 +0000 2019","id":1183056490648588295,"id_str":"1183056490648588295","full_text":"RT + @tadousay: Will #AECT19 be your first @AECT convention? Be sure to join us + for the First Timer''s Orientation on Monday, 10\/21 @ 4PM in P\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[19,26]}],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[41,46]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3181969286,"id_str":"3181969286","name":"Terry + Callaghan","screen_name":"tcallaghan55","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":172,"listed_count":35,"created_at":"Fri + May 01 16:49:56 +0000 2015","favourites_count":1837,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1231,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594185316967190529\/x1Ql3Lio_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594185316967190529\/x1Ql3Lio_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 04 20:44:49 +0000 2019","id":1180222260553994240,"id_str":"1180222260553994240","full_text":"Will + #AECT19 be your first @AECT convention? Be sure to join us for the First Timer''s + Orientation on Monday, 10\/21 @ 4PM in Pavilion 11. Meet new friends with + #AECTBingo & learn about the #AECTPokerRun for your chance at books & + swag. #aect19inspired #inspiredme https:\/\/t.co\/8MigSV9QHF","truncated":false,"display_text_range":[0,270],"entities":{"hashtags":[{"text":"AECT19","indices":[5,12]},{"text":"AECTBingo","indices":[159,169]},{"text":"AECTPokerRun","indices":[192,205]},{"text":"aect19inspired","indices":[243,258]},{"text":"inspiredme","indices":[259,270]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]}],"urls":[],"media":[{"id":1180222096309252096,"id_str":"1180222096309252096","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","url":"https:\/\/t.co\/8MigSV9QHF","display_url":"pic.twitter.com\/8MigSV9QHF","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1180222260553994240\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":604,"h":680,"resize":"fit"},"large":{"w":1252,"h":1410,"resize":"fit"},"medium":{"w":1066,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1180222096309252096,"id_str":"1180222096309252096","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","url":"https:\/\/t.co\/8MigSV9QHF","display_url":"pic.twitter.com\/8MigSV9QHF","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1180222260553994240\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":604,"h":680,"resize":"fit"},"large":{"w":1252,"h":1410,"resize":"fit"},"medium":{"w":1066,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 14 19:31:17 +0000 2019","id":1183827636738547718,"id_str":"1183827636738547718","full_text":"@FredWBaker + @mlsswltr @FakeDavidWiley @FakeJimKlein I precede my reputation #aect19","truncated":false,"display_text_range":[52,83],"entities":{"hashtags":[{"text":"aect19","indices":[76,83]}],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[0,11]},{"screen_name":"mlsswltr","name":"Melissa + W.","id":21062335,"id_str":"21062335","indices":[12,21]},{"screen_name":"FakeDavidWiley","name":"Fake + David Wiley","id":2891617537,"id_str":"2891617537","indices":[22,37]},{"screen_name":"FakeJimKlein","name":"Fake + Jim Klein","id":917228419,"id_str":"917228419","indices":[38,51]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1173800511369297920,"in_reply_to_status_id_str":"1173800511369297920","in_reply_to_user_id":28471923,"in_reply_to_user_id_str":"28471923","in_reply_to_screen_name":"FredWBaker","user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 14 15:23:06 +0000 2019","id":1183765179441582080,"id_str":"1183765179441582080","full_text":"900 + colleagues from across the country and around the world will converge in Las + Vegas next week to be inspired at our annual convention. Can\u2019t wait! + \n#AECT19 #AECT19inspired\n\nhttps:\/\/t.co\/HLbut9liTM\nhttps:\/\/t.co\/nZ8EUxpwMx + https:\/\/t.co\/Vo5jdlz5WY","truncated":false,"display_text_range":[0,223],"entities":{"hashtags":[{"text":"AECT19","indices":[151,158]},{"text":"AECT19inspired","indices":[159,174]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HLbut9liTM","expanded_url":"http:\/\/bit.ly\/AECT19program","display_url":"bit.ly\/AECT19program","indices":[176,199]},{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[200,223]}],"media":[{"id":1183765163574468608,"id_str":"1183765163574468608","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183765163574468608\/pu\/img\/TTA-irg9kGuRmked.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183765163574468608\/pu\/img\/TTA-irg9kGuRmked.jpg","url":"https:\/\/t.co\/Vo5jdlz5WY","display_url":"pic.twitter.com\/Vo5jdlz5WY","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1183765179441582080\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":268,"resize":"fit"},"small":{"w":480,"h":268,"resize":"fit"},"medium":{"w":480,"h":268,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183765163574468608,"id_str":"1183765163574468608","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183765163574468608\/pu\/img\/TTA-irg9kGuRmked.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183765163574468608\/pu\/img\/TTA-irg9kGuRmked.jpg","url":"https:\/\/t.co\/Vo5jdlz5WY","display_url":"pic.twitter.com\/Vo5jdlz5WY","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1183765179441582080\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":268,"resize":"fit"},"small":{"w":480,"h":268,"resize":"fit"},"medium":{"w":480,"h":268,"resize":"fit"}},"video_info":{"aspect_ratio":[120,67],"duration_millis":3700,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183765163574468608\/pu\/pl\/FvuPvarmUiY8VOB6.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183765163574468608\/pu\/vid\/480x268\/SJJkTYfPWkSK94t0.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 16 01:28:31 +0000 2019","id":1184279925186015233,"id_str":"1184279925186015233","full_text":"#aect19 + starts in one week, time to get ready to network, learn from one another, + but mostly just sit there on your laptop keeping up on other work.","truncated":false,"display_text_range":[0,148],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130346912,"id_str":"4130346912","name":"FakeBobGagne","screen_name":"FakeBobGagne","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":115,"listed_count":2,"created_at":"Thu + Nov 05 02:42:33 +0000 2015","favourites_count":127,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":249,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099403218415616\/Ytao3b5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130346912\/1446692457","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 16 01:06:28 +0000 2019","id":1184274377434492928,"id_str":"1184274377434492928","full_text":"Ugh. + Just don\u2019t. #aect19 #notinspired https:\/\/t.co\/jFuNahvZ7H","truncated":false,"display_text_range":[0,37],"entities":{"hashtags":[{"text":"aect19","indices":[17,24]},{"text":"notinspired","indices":[25,37]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1184274371021426688,"id_str":"1184274371021426688","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/EG9jRBFU0AAS3DQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG9jRBFU0AAS3DQ.jpg","url":"https:\/\/t.co\/jFuNahvZ7H","display_url":"pic.twitter.com\/jFuNahvZ7H","expanded_url":"https:\/\/twitter.com\/veletsianos\/status\/1184274377434492928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":397,"h":680,"resize":"fit"},"medium":{"w":701,"h":1200,"resize":"fit"},"large":{"w":750,"h":1284,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184274371021426688,"id_str":"1184274371021426688","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/EG9jRBFU0AAS3DQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG9jRBFU0AAS3DQ.jpg","url":"https:\/\/t.co\/jFuNahvZ7H","display_url":"pic.twitter.com\/jFuNahvZ7H","expanded_url":"https:\/\/twitter.com\/veletsianos\/status\/1184274377434492928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":397,"h":680,"resize":"fit"},"medium":{"w":701,"h":1200,"resize":"fit"},"large":{"w":750,"h":1284,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 17 02:35:14 +0000 2019","id":1184659102284300289,"id_str":"1184659102284300289","full_text":"@Happy_Tao + Definitely, love to meet and talk about collaboration next week at #aect19","truncated":false,"display_text_range":[11,85],"entities":{"hashtags":[{"text":"aect19","indices":[78,85]}],"symbols":[],"user_mentions":[{"screen_name":"Happy_Tao","name":"Hengtao + Tang","id":482227724,"id_str":"482227724","indices":[0,10]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1184648214714163200,"in_reply_to_status_id_str":"1184648214714163200","in_reply_to_user_id":482227724,"in_reply_to_user_id_str":"482227724","in_reply_to_screen_name":"Happy_Tao","user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 13 13:57:34 +0000 2019","id":1183381265065697280,"id_str":"1183381265065697280","full_text":"RT + @AECT: Are you ready? The #AECT19 convention is in 9 days! \n\nIt\u2019s not + too late to register!\nhttps:\/\/t.co\/nZ8EUxpwMx https:\/\/t.co\/TsWdRUy\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[29,36]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[95,118]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 12 13:26:53 +0000 2019","id":1183011156878876672,"id_str":"1183011156878876672","full_text":"Are + you ready? The #AECT19 convention is in 9 days! \n\nIt\u2019s not too late + to register!\nhttps:\/\/t.co\/nZ8EUxpwMx https:\/\/t.co\/TsWdRUyFbQ","truncated":false,"display_text_range":[0,108],"entities":{"hashtags":[{"text":"AECT19","indices":[19,26]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[85,108]}],"media":[{"id":1183011110959620096,"id_str":"1183011110959620096","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","url":"https:\/\/t.co\/TsWdRUyFbQ","display_url":"pic.twitter.com\/TsWdRUyFbQ","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1183011156878876672\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183011110959620096,"id_str":"1183011110959620096","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","url":"https:\/\/t.co\/TsWdRUyFbQ","display_url":"pic.twitter.com\/TsWdRUyFbQ","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1183011156878876672\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}},"video_info":{"aspect_ratio":[320,179],"duration_millis":4533,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183011110959620096\/pu\/pl\/a1M8PWHESYF45Ey2.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183011110959620096\/pu\/vid\/482x270\/GWOU-CbpBWhtq9P3.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183011110959620096\/pu\/vid\/640x358\/fAqzJ_Y5lWfoisML.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 12 15:39:17 +0000 2019","id":1183044477365211136,"id_str":"1183044477365211136","full_text":"RT + @AECT: Are you ready? The #AECT19 convention is in 9 days! \n\nIt\u2019s not + too late to register!\nhttps:\/\/t.co\/nZ8EUxpwMx https:\/\/t.co\/TsWdRUy\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[29,36]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[95,118]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 12 13:26:53 +0000 2019","id":1183011156878876672,"id_str":"1183011156878876672","full_text":"Are + you ready? The #AECT19 convention is in 9 days! \n\nIt\u2019s not too late + to register!\nhttps:\/\/t.co\/nZ8EUxpwMx https:\/\/t.co\/TsWdRUyFbQ","truncated":false,"display_text_range":[0,108],"entities":{"hashtags":[{"text":"AECT19","indices":[19,26]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[85,108]}],"media":[{"id":1183011110959620096,"id_str":"1183011110959620096","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","url":"https:\/\/t.co\/TsWdRUyFbQ","display_url":"pic.twitter.com\/TsWdRUyFbQ","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1183011156878876672\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183011110959620096,"id_str":"1183011110959620096","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","url":"https:\/\/t.co\/TsWdRUyFbQ","display_url":"pic.twitter.com\/TsWdRUyFbQ","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1183011156878876672\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}},"video_info":{"aspect_ratio":[320,179],"duration_millis":4533,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183011110959620096\/pu\/pl\/a1M8PWHESYF45Ey2.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183011110959620096\/pu\/vid\/482x270\/GWOU-CbpBWhtq9P3.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183011110959620096\/pu\/vid\/640x358\/fAqzJ_Y5lWfoisML.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 15 23:44:22 +0000 2019","id":1184253712866447360,"id_str":"1184253712866447360","full_text":"Y''all! + \ud83d\ude0d I''ve been prepping to print the fantastic playing card deck + designed by Tugce Aldemir for the #AECTPokerRun, and I''m getting excited + for next week! #AECT19 https:\/\/t.co\/jVOK35hkvM https:\/\/t.co\/cNHj0ZRpQZ","truncated":false,"display_text_range":[0,188],"entities":{"hashtags":[{"text":"AECTPokerRun","indices":[103,116]},{"text":"AECT19","indices":[157,164]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jVOK35hkvM","expanded_url":"http:\/\/bit.ly\/2MIzKIN","display_url":"bit.ly\/2MIzKIN","indices":[165,188]}],"media":[{"id":1184253711834583040,"id_str":"1184253711834583040","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EG9QefnWkAAHIfF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG9QefnWkAAHIfF.jpg","url":"https:\/\/t.co\/cNHj0ZRpQZ","display_url":"pic.twitter.com\/cNHj0ZRpQZ","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1184253712866447360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184253711834583040,"id_str":"1184253711834583040","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EG9QefnWkAAHIfF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG9QefnWkAAHIfF.jpg","url":"https:\/\/t.co\/cNHj0ZRpQZ","display_url":"pic.twitter.com\/cNHj0ZRpQZ","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1184253712866447360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 16 16:02:11 +0000 2019","id":1184499790949879813,"id_str":"1184499790949879813","full_text":"#aect19inspired #aect19 + Finished my poster on using computerized (digital) embroidery to teach ICT + skills. Hopefully without typos. https:\/\/t.co\/qjxL25QD2q https:\/\/t.co\/IzW3c8ZdxA","truncated":false,"display_text_range":[0,180],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]},{"text":"aect19","indices":[17,24]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qjxL25QD2q","expanded_url":"http:\/\/tecfa.unige.ch\/tecfa\/talks\/schneide\/aect19\/","display_url":"tecfa.unige.ch\/tecfa\/talks\/sc\u2026","indices":[133,156]},{"url":"https:\/\/t.co\/IzW3c8ZdxA","expanded_url":"http:\/\/tecfa.unige.ch\/tecfa\/talks\/schneide\/aect19\/AECT-2019-embroidery-schneider.pdf","display_url":"tecfa.unige.ch\/tecfa\/talks\/sc\u2026","indices":[157,180]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 16 09:22:34 +0000 2019","id":1184399221941833728,"id_str":"1184399221941833728","full_text":"#AECT19 + Hi does anyone know how to register (and sometimes pay) for various events + like workshops or division dinners. I am a bit lost and cannot find any link + in https:\/\/t.co\/yBQeOrP4J9 E.g. this: https:\/\/t.co\/VzxmCW0RT0","truncated":false,"display_text_range":[0,221],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/yBQeOrP4J9","expanded_url":"https:\/\/convention2.allacademic.com\/one\/aect\/aect19","display_url":"convention2.allacademic.com\/one\/aect\/aect19","indices":[163,186]},{"url":"https:\/\/t.co\/VzxmCW0RT0","expanded_url":"https:\/\/convention2.allacademic.com\/one\/aect\/aect19\/index.php?cmd=Online+Program+View+Session&selected_session_id=1589180","display_url":"convention2.allacademic.com\/one\/aect\/aect1\u2026","indices":[198,221]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sun + Oct 13 12:26:55 +0000 2019","id":1183358450828546048,"id_str":"1183358450828546048","full_text":"RT + @gsa_aect: Join the GSA session \"Knowing Your Options: Finding and Applying + to Jobs in Our Field\" on Oct 25th from 10:00 to 10:50 am in\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 12 20:00:26 +0000 2019","id":1183110197184815104,"id_str":"1183110197184815104","full_text":"Join + the GSA session \"Knowing Your Options: Finding and Applying to Jobs in Our + Field\" on Oct 25th from 10:00 to 10:50 am in the conference room 2. This + session will be facilitated by Shams Duha. @spcmao #aect19 #aect19inspired + #aectgsa https:\/\/t.co\/VGzkKCU6v1","truncated":false,"display_text_range":[0,236],"entities":{"hashtags":[{"text":"aect19","indices":[204,211]},{"text":"aect19inspired","indices":[212,227]},{"text":"aectgsa","indices":[228,236]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1183110194236186631,"id_str":"1183110194236186631","indices":[237,260],"media_url":"http:\/\/pbs.twimg.com\/media\/EGtAdAmXYAcJb9y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGtAdAmXYAcJb9y.jpg","url":"https:\/\/t.co\/VGzkKCU6v1","display_url":"pic.twitter.com\/VGzkKCU6v1","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1183110197184815104\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1500,"h":844,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183110194236186631,"id_str":"1183110194236186631","indices":[237,260],"media_url":"http:\/\/pbs.twimg.com\/media\/EGtAdAmXYAcJb9y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGtAdAmXYAcJb9y.jpg","url":"https:\/\/t.co\/VGzkKCU6v1","display_url":"pic.twitter.com\/VGzkKCU6v1","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1183110197184815104\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1500,"h":844,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 12 00:00:21 +0000 2019","id":1182808186484596736,"id_str":"1182808186484596736","full_text":"Are + you soon to be on the job market? Not sure how to navigate the world of finding + a job in academia? This session is dedicated to going over the most common + interview questions in academia and how to answer them articulately. #aect19 + #aect19inspired #aectgsa https:\/\/t.co\/5tuMVFse4R","truncated":false,"display_text_range":[0,260],"entities":{"hashtags":[{"text":"aect19","indices":[228,235]},{"text":"aect19inspired","indices":[236,251]},{"text":"aectgsa","indices":[252,260]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1182808183456391168,"id_str":"1182808183456391168","indices":[261,284],"media_url":"http:\/\/pbs.twimg.com\/media\/EGotxqxX4AAJjJf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGotxqxX4AAJjJf.jpg","url":"https:\/\/t.co\/5tuMVFse4R","display_url":"pic.twitter.com\/5tuMVFse4R","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182808186484596736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1500,"h":844,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182808183456391168,"id_str":"1182808183456391168","indices":[261,284],"media_url":"http:\/\/pbs.twimg.com\/media\/EGotxqxX4AAJjJf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGotxqxX4AAJjJf.jpg","url":"https:\/\/t.co\/5tuMVFse4R","display_url":"pic.twitter.com\/5tuMVFse4R","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182808186484596736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1500,"h":844,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 16 22:42:29 +0000 2019","id":1184600529600692224,"id_str":"1184600529600692224","full_text":"RT + @AECT: Get ready to BE INSPIRED! Just 5 more days people!\n\n#AECT19 #AECT19inspired\nhttps:\/\/t.co\/HLbut9liTM\nhttps:\/\/t.co\/nZ8EUxpwMx + https\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[62,69]},{"text":"AECT19inspired","indices":[70,85]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[{"url":"https:\/\/t.co\/HLbut9liTM","expanded_url":"http:\/\/bit.ly\/AECT19program","display_url":"bit.ly\/AECT19program","indices":[86,109]},{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[110,133]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19023356,"id_str":"19023356","name":"Beth + Oyarzun","screen_name":"profoyarzun","location":"Charlotte, NC","description":"Clinical + Associate Professor and director of the Learning, Design and Technology program + at UNCC, wife, mom, and scuba diver.","url":"https:\/\/t.co\/GKjzX92eV9","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/GKjzX92eV9","expanded_url":"https:\/\/sites.google.com\/uncc.edu\/bethoyarzun\/home?authuser=2","display_url":"sites.google.com\/uncc.edu\/betho\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":295,"friends_count":523,"listed_count":15,"created_at":"Thu + Jan 15 14:35:36 +0000 2009","favourites_count":1232,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1082,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650037082346422272\/X3Iy9bMz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650037082346422272\/X3Iy9bMz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19023356\/1566681139","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 16 10:16:09 +0000 2019","id":1184412708487254016,"id_str":"1184412708487254016","full_text":"Get + ready to BE INSPIRED! Just 5 more days people!\n\n#AECT19 #AECT19inspired\nhttps:\/\/t.co\/HLbut9liTM\nhttps:\/\/t.co\/nZ8EUxpwMx + https:\/\/t.co\/7xrgdvLLEv","truncated":false,"display_text_range":[0,123],"entities":{"hashtags":[{"text":"AECT19","indices":[52,59]},{"text":"AECT19inspired","indices":[60,75]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HLbut9liTM","expanded_url":"http:\/\/bit.ly\/AECT19program","display_url":"bit.ly\/AECT19program","indices":[76,99]},{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[100,123]}],"media":[{"id":1184412644507373568,"id_str":"1184412644507373568","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184412644507373568\/pu\/img\/MAHFOrDWo4sRD0f7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184412644507373568\/pu\/img\/MAHFOrDWo4sRD0f7.jpg","url":"https:\/\/t.co\/7xrgdvLLEv","display_url":"pic.twitter.com\/7xrgdvLLEv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1184412708487254016\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184412644507373568,"id_str":"1184412644507373568","indices":[124,147],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184412644507373568\/pu\/img\/MAHFOrDWo4sRD0f7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1184412644507373568\/pu\/img\/MAHFOrDWo4sRD0f7.jpg","url":"https:\/\/t.co\/7xrgdvLLEv","display_url":"pic.twitter.com\/7xrgdvLLEv","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1184412708487254016\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}},"video_info":{"aspect_ratio":[320,179],"duration_millis":3533,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184412644507373568\/pu\/vid\/482x270\/BoO8Wq5l3IBUAzv_.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184412644507373568\/pu\/pl\/3kJj0Ok4hVBorJkU.m3u8?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1184412644507373568\/pu\/vid\/640x358\/PHicrs_Qa8ttoEL8.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"en"},{"created_at":"Thu + Oct 17 14:44:23 +0000 2019","id":1184842599632461825,"id_str":"1184842599632461825","full_text":"Have + you downloaded\/updated the #AECT19 app yet? Get it today! See tips below.\n\n\ud83c\udf4e- + https:\/\/t.co\/wGmQg29rRb \n\u25b6\ufe0f- https:\/\/t.co\/DBp8L89r9E https:\/\/t.co\/wajTROJsld","truncated":false,"display_text_range":[0,135],"entities":{"hashtags":[{"text":"AECT19","indices":[32,39]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wGmQg29rRb","expanded_url":"http:\/\/bit.ly\/AECTapple","display_url":"bit.ly\/AECTapple","indices":[83,106]},{"url":"https:\/\/t.co\/DBp8L89r9E","expanded_url":"http:\/\/bit.ly\/AECTandroid","display_url":"bit.ly\/AECTandroid","indices":[112,135]},{"url":"https:\/\/t.co\/wajTROJsld","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1184829702235545600","display_url":"twitter.com\/michaelmgrant\/\u2026","indices":[136,159]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1184829702235545600,"quoted_status_id_str":"1184829702235545600","quoted_status_permalink":{"url":"https:\/\/t.co\/wajTROJsld","expanded":"https:\/\/twitter.com\/michaelmgrant\/status\/1184829702235545600","display":"twitter.com\/michaelmgrant\/\u2026"},"quoted_status":{"created_at":"Thu + Oct 17 13:53:08 +0000 2019","id":1184829702235545600,"id_str":"1184829702235545600","full_text":"@AECT + friends, a little job aid to share to help get you ready.\n#aect19inspired + https:\/\/t.co\/YIYDZbqUsM","truncated":false,"display_text_range":[0,79],"entities":{"hashtags":[{"text":"aect19inspired","indices":[64,79]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]}],"urls":[],"media":[{"id":1184829621272866816,"id_str":"1184829621272866816","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/EHFcQ1dUcAA9rQ0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHFcQ1dUcAA9rQ0.jpg","url":"https:\/\/t.co\/YIYDZbqUsM","display_url":"pic.twitter.com\/YIYDZbqUsM","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1184829702235545600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184829621272866816,"id_str":"1184829621272866816","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/EHFcQ1dUcAA9rQ0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHFcQ1dUcAA9rQ0.jpg","url":"https:\/\/t.co\/YIYDZbqUsM","display_url":"pic.twitter.com\/YIYDZbqUsM","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1184829702235545600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 16 16:14:36 +0000 2019","id":1184502914297061381,"id_str":"1184502914297061381","full_text":"RT + @srogidd: Come join us for an CLT Inspire! Session at AECT #aect19inspired + @aectclt https:\/\/t.co\/Um1rEZzKGY","truncated":false,"display_text_range":[0,110],"entities":{"hashtags":[{"text":"aect19inspired","indices":[62,77]}],"symbols":[],"user_mentions":[{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[3,11]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[78,86]}],"urls":[],"media":[{"id":1184499561051521024,"id_str":"1184499561051521024","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAwEzUVAAAJlHN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAwEzUVAAAJlHN.png","url":"https:\/\/t.co\/Um1rEZzKGY","display_url":"pic.twitter.com\/Um1rEZzKGY","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184499566038487040\/photo\/1","type":"photo","sizes":{"medium":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":820,"h":312,"resize":"fit"}},"source_status_id":1184499566038487040,"source_status_id_str":"1184499566038487040","source_user_id":28836047,"source_user_id_str":"28836047"}]},"extended_entities":{"media":[{"id":1184499561051521024,"id_str":"1184499561051521024","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAwEzUVAAAJlHN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAwEzUVAAAJlHN.png","url":"https:\/\/t.co\/Um1rEZzKGY","display_url":"pic.twitter.com\/Um1rEZzKGY","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184499566038487040\/photo\/1","type":"photo","sizes":{"medium":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":820,"h":312,"resize":"fit"}},"source_status_id":1184499566038487040,"source_status_id_str":"1184499566038487040","source_user_id":28836047,"source_user_id_str":"28836047","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 16 16:01:18 +0000 2019","id":1184499566038487040,"id_str":"1184499566038487040","full_text":"Come + join us for an CLT Inspire! Session at AECT #aect19inspired @aectclt https:\/\/t.co\/Um1rEZzKGY","truncated":false,"display_text_range":[0,73],"entities":{"hashtags":[{"text":"aect19inspired","indices":[49,64]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[65,73]}],"urls":[],"media":[{"id":1184499561051521024,"id_str":"1184499561051521024","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAwEzUVAAAJlHN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAwEzUVAAAJlHN.png","url":"https:\/\/t.co\/Um1rEZzKGY","display_url":"pic.twitter.com\/Um1rEZzKGY","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184499566038487040\/photo\/1","type":"photo","sizes":{"medium":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":820,"h":312,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184499561051521024,"id_str":"1184499561051521024","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAwEzUVAAAJlHN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAwEzUVAAAJlHN.png","url":"https:\/\/t.co\/Um1rEZzKGY","display_url":"pic.twitter.com\/Um1rEZzKGY","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184499566038487040\/photo\/1","type":"photo","sizes":{"medium":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":820,"h":312,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28836047,"id_str":"28836047","name":"Sylvia + Rogers","screen_name":"srogidd","location":"Auburn, AL","description":"PhD + in Instructional Design, I work as an Instructional Designer and Consultant + for Scholarship of Teaching and Learning at the Harrison School of Pharmacy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":550,"friends_count":1089,"listed_count":18,"created_at":"Sat + Apr 04 17:47:27 +0000 2009","favourites_count":12191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2400,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28836047\/1439418186","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 14 16:57:21 +0000 2019","id":1183788899124109312,"id_str":"1183788899124109312","full_text":"RT + @ISLT_FSU: #FSU #FSUCOE #ISLT will be well represented at #AECT19 in Las Vegas + October 21-25. Check out this lineup of faculty, students\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"FSU","indices":[14,18]},{"text":"FSUCOE","indices":[19,26]},{"text":"ISLT","indices":[27,32]},{"text":"AECT19","indices":[61,68]}],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun + Oct 13 23:00:16 +0000 2019","id":1183517841221394432,"id_str":"1183517841221394432","full_text":"#FSU + #FSUCOE #ISLT will be well represented at #AECT19 in Las Vegas October 21-25. + Check out this lineup of faculty, students, and alumni: https:\/\/t.co\/ROIphcZuLY","truncated":false,"display_text_range":[0,162],"entities":{"hashtags":[{"text":"FSU","indices":[0,4]},{"text":"FSUCOE","indices":[5,12]},{"text":"ISLT","indices":[13,18]},{"text":"AECT19","indices":[47,54]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/ROIphcZuLY","expanded_url":"https:\/\/isfsu.blogspot.com\/2019\/10\/2019-aect-islt-presenters-instructional.html","display_url":"isfsu.blogspot.com\/2019\/10\/2019-a\u2026","indices":[139,162]}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 15 17:37:36 +0000 2019","id":1184161415407423488,"id_str":"1184161415407423488","full_text":"Dreamt + last night that I invited @hederjon to randomly present with me on stage at + #aect19. He was timid but agreed. Probably means I need to incorporate some + sweet dance moves. https:\/\/t.co\/oZ5lNCD10i","truncated":false,"display_text_range":[0,177],"entities":{"hashtags":[{"text":"aect19","indices":[83,90]}],"symbols":[],"user_mentions":[{"screen_name":"hederjon","name":"Jon + Heder","id":280866591,"id_str":"280866591","indices":[33,42]}],"urls":[],"media":[{"id":1184161409535397889,"id_str":"1184161409535397889","indices":[178,201],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EG78hywVUAETbeN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EG78hywVUAETbeN.jpg","url":"https:\/\/t.co\/oZ5lNCD10i","display_url":"pic.twitter.com\/oZ5lNCD10i","expanded_url":"https:\/\/twitter.com\/roycekimmons\/status\/1184161415407423488\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":228,"resize":"fit"},"medium":{"w":480,"h":228,"resize":"fit"},"small":{"w":480,"h":228,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184161409535397889,"id_str":"1184161409535397889","indices":[178,201],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EG78hywVUAETbeN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EG78hywVUAETbeN.jpg","url":"https:\/\/t.co\/oZ5lNCD10i","display_url":"pic.twitter.com\/oZ5lNCD10i","expanded_url":"https:\/\/twitter.com\/roycekimmons\/status\/1184161415407423488\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":228,"resize":"fit"},"medium":{"w":480,"h":228,"resize":"fit"},"small":{"w":480,"h":228,"resize":"fit"}},"video_info":{"aspect_ratio":[40,19],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EG78hywVUAETbeN.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":104967963,"id_str":"104967963","name":"Royce + Kimmons","screen_name":"roycekimmons","location":"Provo, UT","description":"Associate + professor, BYU-IPT: openness, OER, tech in education, social media. https:\/\/t.co\/iktkhjAzCw + https:\/\/t.co\/vhHYSEYZSN https:\/\/t.co\/9E4HWYRF9R","url":"https:\/\/t.co\/KsbltQYZa0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KsbltQYZa0","expanded_url":"http:\/\/roycekimmons.com","display_url":"roycekimmons.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/iktkhjAzCw","expanded_url":"http:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[78,101]},{"url":"https:\/\/t.co\/vhHYSEYZSN","expanded_url":"http:\/\/equitypress.org","display_url":"equitypress.org","indices":[102,125]},{"url":"https:\/\/t.co\/9E4HWYRF9R","expanded_url":"http:\/\/edtechnica.org","display_url":"edtechnica.org","indices":[126,149]}]}},"protected":false,"followers_count":1430,"friends_count":2250,"listed_count":57,"created_at":"Thu + Jan 14 23:25:41 +0000 2010","favourites_count":930,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1841,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104967963\/1585782658","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"354770","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EDF0FF","profile_text_color":"1A1A1A","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 15 16:57:04 +0000 2019","id":1184151214209953792,"id_str":"1184151214209953792","full_text":"Hey + everyone in @AECT, how long until @michaelmgrant and I get to see you at #aect19inspired? + https:\/\/t.co\/mycgI1E3xu","truncated":false,"display_text_range":[0,93],"entities":{"hashtags":[{"text":"aect19inspired","indices":[77,92]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[16,21]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[38,52]}],"urls":[],"media":[{"id":1184151210074312704,"id_str":"1184151210074312704","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/EG7zQGzUEAA4kwG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG7zQGzUEAA4kwG.jpg","url":"https:\/\/t.co\/mycgI1E3xu","display_url":"pic.twitter.com\/mycgI1E3xu","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1184151214209953792\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":298,"h":298,"resize":"fit"},"small":{"w":298,"h":298,"resize":"fit"},"medium":{"w":298,"h":298,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184151210074312704,"id_str":"1184151210074312704","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/EG7zQGzUEAA4kwG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG7zQGzUEAA4kwG.jpg","url":"https:\/\/t.co\/mycgI1E3xu","display_url":"pic.twitter.com\/mycgI1E3xu","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1184151214209953792\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":298,"h":298,"resize":"fit"},"small":{"w":298,"h":298,"resize":"fit"},"medium":{"w":298,"h":298,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 16 19:39:23 +0000 2019","id":1184554451505274880,"id_str":"1184554451505274880","full_text":"RT + @DKSch: #aect19inspired #aect19 Finished my poster on using computerized + (digital) embroidery to teach ICT skills. Hopefully without ty\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]},{"text":"aect19","indices":[28,35]}],"symbols":[],"user_mentions":[{"screen_name":"DKSch","name":"Daniel + K. Schneider","id":38657815,"id_str":"38657815","indices":[3,9]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 16 16:02:11 +0000 2019","id":1184499790949879813,"id_str":"1184499790949879813","full_text":"#aect19inspired #aect19 + Finished my poster on using computerized (digital) embroidery to teach ICT + skills. Hopefully without typos. https:\/\/t.co\/qjxL25QD2q https:\/\/t.co\/IzW3c8ZdxA","truncated":false,"display_text_range":[0,180],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]},{"text":"aect19","indices":[17,24]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/qjxL25QD2q","expanded_url":"http:\/\/tecfa.unige.ch\/tecfa\/talks\/schneide\/aect19\/","display_url":"tecfa.unige.ch\/tecfa\/talks\/sc\u2026","indices":[133,156]},{"url":"https:\/\/t.co\/IzW3c8ZdxA","expanded_url":"http:\/\/tecfa.unige.ch\/tecfa\/talks\/schneide\/aect19\/AECT-2019-embroidery-schneider.pdf","display_url":"tecfa.unige.ch\/tecfa\/talks\/sc\u2026","indices":[157,180]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 14 16:43:02 +0000 2019","id":1183785294287396864,"id_str":"1183785294287396864","full_text":"Thirteen + is excited for #aect19inspired. Are you?\n\n@michaelmgrant and I will see + you with everyone else in @AECT a week from today! https:\/\/t.co\/MXYbE3Ze00","truncated":false,"display_text_range":[0,132],"entities":{"hashtags":[{"text":"aect19inspired","indices":[24,39]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[52,66]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[108,113]}],"urls":[],"media":[{"id":1183785283050864641,"id_str":"1183785283050864641","indices":[133,156],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EG2mcWaVAAEvWD8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EG2mcWaVAAEvWD8.jpg","url":"https:\/\/t.co\/MXYbE3Ze00","display_url":"pic.twitter.com\/MXYbE3Ze00","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1183785294287396864\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":270,"resize":"fit"},"large":{"w":480,"h":270,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183785283050864641,"id_str":"1183785283050864641","indices":[133,156],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EG2mcWaVAAEvWD8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EG2mcWaVAAEvWD8.jpg","url":"https:\/\/t.co\/MXYbE3Ze00","display_url":"pic.twitter.com\/MXYbE3Ze00","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1183785294287396864\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":480,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":270,"resize":"fit"},"large":{"w":480,"h":270,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EG2mcWaVAAEvWD8.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 14 16:49:29 +0000 2019","id":1183786918980419585,"id_str":"1183786918980419585","full_text":"Omg! + @AECT is in 7 days!\n#AECT19inspired https:\/\/t.co\/mTNq2HJ2EV","truncated":false,"display_text_range":[0,40],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[25,40]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[5,10]}],"urls":[],"media":[{"id":1183786798717140996,"id_str":"1183786798717140996","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2n0ktVAAQB263.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2n0ktVAAQB263.jpg","url":"https:\/\/t.co\/mTNq2HJ2EV","display_url":"pic.twitter.com\/mTNq2HJ2EV","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1183786918980419585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":405,"resize":"fit"},"small":{"w":540,"h":405,"resize":"fit"},"large":{"w":540,"h":405,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183786798717140996,"id_str":"1183786798717140996","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2n0ktVAAQB263.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2n0ktVAAQB263.jpg","url":"https:\/\/t.co\/mTNq2HJ2EV","display_url":"pic.twitter.com\/mTNq2HJ2EV","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1183786918980419585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":405,"resize":"fit"},"small":{"w":540,"h":405,"resize":"fit"},"large":{"w":540,"h":405,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 14 16:55:36 +0000 2019","id":1183788455320526848,"id_str":"1183788455320526848","full_text":"RT + @michaelmgrant: Omg! @AECT is in 7 days!\n#AECT19inspired https:\/\/t.co\/mTNq2HJ2EV","truncated":false,"display_text_range":[0,83],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[44,59]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[24,29]}],"urls":[],"media":[{"id":1183786798717140996,"id_str":"1183786798717140996","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2n0ktVAAQB263.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2n0ktVAAQB263.jpg","url":"https:\/\/t.co\/mTNq2HJ2EV","display_url":"pic.twitter.com\/mTNq2HJ2EV","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1183786918980419585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":405,"resize":"fit"},"small":{"w":540,"h":405,"resize":"fit"},"large":{"w":540,"h":405,"resize":"fit"}},"source_status_id":1183786918980419585,"source_status_id_str":"1183786918980419585","source_user_id":132653457,"source_user_id_str":"132653457"}]},"extended_entities":{"media":[{"id":1183786798717140996,"id_str":"1183786798717140996","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2n0ktVAAQB263.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2n0ktVAAQB263.jpg","url":"https:\/\/t.co\/mTNq2HJ2EV","display_url":"pic.twitter.com\/mTNq2HJ2EV","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1183786918980419585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":405,"resize":"fit"},"small":{"w":540,"h":405,"resize":"fit"},"large":{"w":540,"h":405,"resize":"fit"}},"source_status_id":1183786918980419585,"source_status_id_str":"1183786918980419585","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 14 16:49:29 +0000 2019","id":1183786918980419585,"id_str":"1183786918980419585","full_text":"Omg! + @AECT is in 7 days!\n#AECT19inspired https:\/\/t.co\/mTNq2HJ2EV","truncated":false,"display_text_range":[0,40],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[25,40]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[5,10]}],"urls":[],"media":[{"id":1183786798717140996,"id_str":"1183786798717140996","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2n0ktVAAQB263.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2n0ktVAAQB263.jpg","url":"https:\/\/t.co\/mTNq2HJ2EV","display_url":"pic.twitter.com\/mTNq2HJ2EV","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1183786918980419585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":405,"resize":"fit"},"small":{"w":540,"h":405,"resize":"fit"},"large":{"w":540,"h":405,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183786798717140996,"id_str":"1183786798717140996","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2n0ktVAAQB263.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2n0ktVAAQB263.jpg","url":"https:\/\/t.co\/mTNq2HJ2EV","display_url":"pic.twitter.com\/mTNq2HJ2EV","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1183786918980419585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":405,"resize":"fit"},"small":{"w":540,"h":405,"resize":"fit"},"large":{"w":540,"h":405,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 14 16:03:42 +0000 2019","id":1183775395956645893,"id_str":"1183775395956645893","full_text":"DDL + Inspire! - Teaching to D2\nTUE, OCT 22, 8:00 TO 8:50AM, CONVENTION CENTER, + PAVILION 9. \nDuring this session, participants will actively engage with + the presenters in a meaningful discussion about online design and delivery. + #aect19inspired https:\/\/t.co\/duhTFIDbFf","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"aect19inspired","indices":[227,242]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1183775390394978305,"id_str":"1183775390394978305","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2dchZXkAEl_HE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2dchZXkAEl_HE.jpg","url":"https:\/\/t.co\/duhTFIDbFf","display_url":"pic.twitter.com\/duhTFIDbFf","expanded_url":"https:\/\/twitter.com\/aectddl\/status\/1183775395956645893\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183775390394978305,"id_str":"1183775390394978305","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2dchZXkAEl_HE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2dchZXkAEl_HE.jpg","url":"https:\/\/t.co\/duhTFIDbFf","display_url":"pic.twitter.com\/duhTFIDbFf","expanded_url":"https:\/\/twitter.com\/aectddl\/status\/1183775395956645893\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1088189033266798598,"id_str":"1088189033266798598","name":"AECT + Division of Distance Learning","screen_name":"aectddl","location":"","description":"The + Division of Distance Learning is a special interest group of the Association + for Educational Communications and Technology (AECT).","url":"https:\/\/t.co\/Rg9uXQTkSM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Rg9uXQTkSM","expanded_url":"https:\/\/aect.org\/ddl.php","display_url":"aect.org\/ddl.php","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":861,"friends_count":482,"listed_count":6,"created_at":"Wed + Jan 23 21:37:37 +0000 2019","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088189033266798598\/1548280679","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 14 16:56:12 +0000 2019","id":1183788606676180992,"id_str":"1183788606676180992","full_text":"RT + @aectddl: DDL Inspire! - Teaching to D2\nTUE, OCT 22, 8:00 TO 8:50AM, CONVENTION + CENTER, PAVILION 9. \nDuring this session, participants w\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[3,11]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 14 16:03:42 +0000 2019","id":1183775395956645893,"id_str":"1183775395956645893","full_text":"DDL + Inspire! - Teaching to D2\nTUE, OCT 22, 8:00 TO 8:50AM, CONVENTION CENTER, + PAVILION 9. \nDuring this session, participants will actively engage with + the presenters in a meaningful discussion about online design and delivery. + #aect19inspired https:\/\/t.co\/duhTFIDbFf","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"aect19inspired","indices":[227,242]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1183775390394978305,"id_str":"1183775390394978305","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2dchZXkAEl_HE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2dchZXkAEl_HE.jpg","url":"https:\/\/t.co\/duhTFIDbFf","display_url":"pic.twitter.com\/duhTFIDbFf","expanded_url":"https:\/\/twitter.com\/aectddl\/status\/1183775395956645893\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183775390394978305,"id_str":"1183775390394978305","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EG2dchZXkAEl_HE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG2dchZXkAEl_HE.jpg","url":"https:\/\/t.co\/duhTFIDbFf","display_url":"pic.twitter.com\/duhTFIDbFf","expanded_url":"https:\/\/twitter.com\/aectddl\/status\/1183775395956645893\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1088189033266798598,"id_str":"1088189033266798598","name":"AECT + Division of Distance Learning","screen_name":"aectddl","location":"","description":"The + Division of Distance Learning is a special interest group of the Association + for Educational Communications and Technology (AECT).","url":"https:\/\/t.co\/Rg9uXQTkSM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Rg9uXQTkSM","expanded_url":"https:\/\/aect.org\/ddl.php","display_url":"aect.org\/ddl.php","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":861,"friends_count":482,"listed_count":6,"created_at":"Wed + Jan 23 21:37:37 +0000 2019","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088189033266798598\/1548280679","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 11 23:30:06 +0000 2019","id":1182800571230818306,"id_str":"1182800571230818306","full_text":"Join + the fireside advice chat on how to make the most of your graduate student + experience on Oct 25th from 9:00 am to 9:50 am. The presenters will be Dr. + Jill Stefaniak and Dr. Tonia Dousay. This GSA session is facilitated by Kelly + Ross. #aect19 #aect19inspired #aectgsa https:\/\/t.co\/G1qRH7T4cx","truncated":false,"display_text_range":[0,270],"entities":{"hashtags":[{"text":"aect19","indices":[238,245]},{"text":"aect19inspired","indices":[246,261]},{"text":"aectgsa","indices":[262,270]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1182800568944939008,"id_str":"1182800568944939008","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EGom2cgX0AAGpGx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGom2cgX0AAGpGx.jpg","url":"https:\/\/t.co\/G1qRH7T4cx","display_url":"pic.twitter.com\/G1qRH7T4cx","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182800571230818306\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182800568944939008,"id_str":"1182800568944939008","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EGom2cgX0AAGpGx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGom2cgX0AAGpGx.jpg","url":"https:\/\/t.co\/G1qRH7T4cx","display_url":"pic.twitter.com\/G1qRH7T4cx","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182800571230818306\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 17 01:47:09 +0000 2019","id":1184647001411149825,"id_str":"1184647001411149825","full_text":"Have + you downloaded\/updated the #AECT19 app yet? Get it today!\n\n\ud83c\udf4e- + https:\/\/t.co\/wGmQg29rRb \n\u25b6\ufe0f- https:\/\/t.co\/DBp8L89r9E https:\/\/t.co\/gm8suqlrdV","truncated":false,"display_text_range":[0,119],"entities":{"hashtags":[{"text":"AECT19","indices":[32,39]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wGmQg29rRb","expanded_url":"http:\/\/bit.ly\/AECTapple","display_url":"bit.ly\/AECTapple","indices":[67,90]},{"url":"https:\/\/t.co\/DBp8L89r9E","expanded_url":"http:\/\/bit.ly\/AECTandroid","display_url":"bit.ly\/AECTandroid","indices":[96,119]}],"media":[{"id":1184646996939956226,"id_str":"1184646996939956226","indices":[120,143],"media_url":"http:\/\/pbs.twimg.com\/media\/EHC2KszW4AIjtx2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHC2KszW4AIjtx2.jpg","url":"https:\/\/t.co\/gm8suqlrdV","display_url":"pic.twitter.com\/gm8suqlrdV","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1184647001411149825\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":403,"resize":"fit"},"large":{"w":640,"h":403,"resize":"fit"},"medium":{"w":640,"h":403,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184646996939956226,"id_str":"1184646996939956226","indices":[120,143],"media_url":"http:\/\/pbs.twimg.com\/media\/EHC2KszW4AIjtx2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHC2KszW4AIjtx2.jpg","url":"https:\/\/t.co\/gm8suqlrdV","display_url":"pic.twitter.com\/gm8suqlrdV","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1184647001411149825\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":403,"resize":"fit"},"large":{"w":640,"h":403,"resize":"fit"},"medium":{"w":640,"h":403,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 14 15:26:44 +0000 2019","id":1183766094089080832,"id_str":"1183766094089080832","full_text":"RT + @AECT: 900 colleagues from across the country and around the world will converge + in Las Vegas next week to be inspired at our annual con\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 14 15:23:06 +0000 2019","id":1183765179441582080,"id_str":"1183765179441582080","full_text":"900 + colleagues from across the country and around the world will converge in Las + Vegas next week to be inspired at our annual convention. Can\u2019t wait! + \n#AECT19 #AECT19inspired\n\nhttps:\/\/t.co\/HLbut9liTM\nhttps:\/\/t.co\/nZ8EUxpwMx + https:\/\/t.co\/Vo5jdlz5WY","truncated":false,"display_text_range":[0,223],"entities":{"hashtags":[{"text":"AECT19","indices":[151,158]},{"text":"AECT19inspired","indices":[159,174]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HLbut9liTM","expanded_url":"http:\/\/bit.ly\/AECT19program","display_url":"bit.ly\/AECT19program","indices":[176,199]},{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[200,223]}],"media":[{"id":1183765163574468608,"id_str":"1183765163574468608","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183765163574468608\/pu\/img\/TTA-irg9kGuRmked.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183765163574468608\/pu\/img\/TTA-irg9kGuRmked.jpg","url":"https:\/\/t.co\/Vo5jdlz5WY","display_url":"pic.twitter.com\/Vo5jdlz5WY","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1183765179441582080\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":268,"resize":"fit"},"small":{"w":480,"h":268,"resize":"fit"},"medium":{"w":480,"h":268,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183765163574468608,"id_str":"1183765163574468608","indices":[224,247],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183765163574468608\/pu\/img\/TTA-irg9kGuRmked.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183765163574468608\/pu\/img\/TTA-irg9kGuRmked.jpg","url":"https:\/\/t.co\/Vo5jdlz5WY","display_url":"pic.twitter.com\/Vo5jdlz5WY","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1183765179441582080\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":268,"resize":"fit"},"small":{"w":480,"h":268,"resize":"fit"},"medium":{"w":480,"h":268,"resize":"fit"}},"video_info":{"aspect_ratio":[120,67],"duration_millis":3700,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183765163574468608\/pu\/pl\/FvuPvarmUiY8VOB6.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183765163574468608\/pu\/vid\/480x268\/SJJkTYfPWkSK94t0.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":13,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sat + Oct 12 14:14:54 +0000 2019","id":1183023241096585216,"id_str":"1183023241096585216","full_text":"RT + @AECT: Are you ready? The #AECT19 convention is in 9 days! \n\nIt\u2019s not + too late to register!\nhttps:\/\/t.co\/nZ8EUxpwMx https:\/\/t.co\/TsWdRUy\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[29,36]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[95,118]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Oct 12 13:26:53 +0000 2019","id":1183011156878876672,"id_str":"1183011156878876672","full_text":"Are + you ready? The #AECT19 convention is in 9 days! \n\nIt\u2019s not too late + to register!\nhttps:\/\/t.co\/nZ8EUxpwMx https:\/\/t.co\/TsWdRUyFbQ","truncated":false,"display_text_range":[0,108],"entities":{"hashtags":[{"text":"AECT19","indices":[19,26]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[85,108]}],"media":[{"id":1183011110959620096,"id_str":"1183011110959620096","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","url":"https:\/\/t.co\/TsWdRUyFbQ","display_url":"pic.twitter.com\/TsWdRUyFbQ","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1183011156878876672\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1183011110959620096,"id_str":"1183011110959620096","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1183011110959620096\/pu\/img\/fVipCC4OrhU-AoII.jpg","url":"https:\/\/t.co\/TsWdRUyFbQ","display_url":"pic.twitter.com\/TsWdRUyFbQ","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1183011156878876672\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}},"video_info":{"aspect_ratio":[320,179],"duration_millis":4533,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183011110959620096\/pu\/pl\/a1M8PWHESYF45Ey2.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183011110959620096\/pu\/vid\/482x270\/GWOU-CbpBWhtq9P3.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1183011110959620096\/pu\/vid\/640x358\/fAqzJ_Y5lWfoisML.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 16 00:59:46 +0000 2019","id":1184272690548559872,"id_str":"1184272690548559872","full_text":"RT + @tadousay: Y''all! \ud83d\ude0d I''ve been prepping to print the fantastic + playing card deck designed by Tugce Aldemir for the #AECTPokerRun, and I''m\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECTPokerRun","indices":[117,130]}],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 15 23:44:22 +0000 2019","id":1184253712866447360,"id_str":"1184253712866447360","full_text":"Y''all! + \ud83d\ude0d I''ve been prepping to print the fantastic playing card deck + designed by Tugce Aldemir for the #AECTPokerRun, and I''m getting excited + for next week! #AECT19 https:\/\/t.co\/jVOK35hkvM https:\/\/t.co\/cNHj0ZRpQZ","truncated":false,"display_text_range":[0,188],"entities":{"hashtags":[{"text":"AECTPokerRun","indices":[103,116]},{"text":"AECT19","indices":[157,164]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jVOK35hkvM","expanded_url":"http:\/\/bit.ly\/2MIzKIN","display_url":"bit.ly\/2MIzKIN","indices":[165,188]}],"media":[{"id":1184253711834583040,"id_str":"1184253711834583040","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EG9QefnWkAAHIfF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG9QefnWkAAHIfF.jpg","url":"https:\/\/t.co\/cNHj0ZRpQZ","display_url":"pic.twitter.com\/cNHj0ZRpQZ","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1184253712866447360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1184253711834583040,"id_str":"1184253711834583040","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EG9QefnWkAAHIfF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EG9QefnWkAAHIfF.jpg","url":"https:\/\/t.co\/cNHj0ZRpQZ","display_url":"pic.twitter.com\/cNHj0ZRpQZ","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1184253712866447360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":640,"h":640,"resize":"fit"},"medium":{"w":640,"h":640,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 16 15:59:25 +0000 2019","id":1184499095047528448,"id_str":"1184499095047528448","full_text":"Come + join us at this CLT Inspire! Session #AECT19inspired @aectclt @aectddl https:\/\/t.co\/Sg5k8C8n6w","truncated":false,"display_text_range":[0,75],"entities":{"hashtags":[{"text":"AECT19inspired","indices":[42,57]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[58,66]},{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[67,75]}],"urls":[],"media":[{"id":1184499089414602752,"id_str":"1184499089414602752","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAvpWVUwAAuB1L.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAvpWVUwAAuB1L.png","url":"https:\/\/t.co\/Sg5k8C8n6w","display_url":"pic.twitter.com\/Sg5k8C8n6w","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184499095047528448\/photo\/1","type":"photo","sizes":{"large":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":1184499089414602752,"id_str":"1184499089414602752","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHAvpWVUwAAuB1L.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHAvpWVUwAAuB1L.png","url":"https:\/\/t.co\/Sg5k8C8n6w","display_url":"pic.twitter.com\/Sg5k8C8n6w","expanded_url":"https:\/\/twitter.com\/srogidd\/status\/1184499095047528448\/photo\/1","type":"photo","sizes":{"large":{"w":820,"h":312,"resize":"fit"},"small":{"w":680,"h":259,"resize":"fit"},"medium":{"w":820,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28836047,"id_str":"28836047","name":"Sylvia + Rogers","screen_name":"srogidd","location":"Auburn, AL","description":"PhD + in Instructional Design, I work as an Instructional Designer and Consultant + for Scholarship of Teaching and Learning at the Harrison School of Pharmacy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":550,"friends_count":1089,"listed_count":18,"created_at":"Sat + Apr 04 17:47:27 +0000 2009","favourites_count":12191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2400,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28836047\/1439418186","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1182798155760492545%2C1182798132683399168%2C1182792042654646273%2C1182792042654646273%2C1182738007025020928%2C1182629259170287620%2C1182619290706595840%2C1182618881019527169%2C1182618881019527169%2C1182609284863086592%2C1182484140626710528%2C1182448255097069568%2C1182447526957502464%2C1182429235257970694%2C1182317950755364864%2C1182306172763885572%2C1182305588249645057%2C1182305588249645057%2C1182260945080524800%2C1182148161361473536%2C1182119362523627520%2C1182112906999144448%2C1182090892930408456%2C1182086774811705344%2C1182075810934611973%2C1182035045948776449%2C1182016456579416064%2C1182010468212379648%2C1182009173787045888%2C1181997301855854592%2C1181979755840712716%2C1181976947464622080%2C1181958999651934208%2C1181955403963346944%2C1181953436998348801%2C1181953256785944576%2C1181947532659830784%2C1181938317014831104%2C1181904877062107138%2C1181897629271236608%2C1181894947982761985%2C1181894376361996288%2C1181894109080031234%2C1181754057867829248%2C1181721034959048704%2C1181717546048688129%2C1181705975230799875%2C1181703415799246848%2C1181698313978036224%2C1181684184735191040%2C1181682887449464832%2C1181681944762830848%2C1181679209489416192%2C1181672622830051330%2C1181651084491788290%2C1181645703216427010%2C1181637470951108608%2C1181628553798004736%2C1181614596412575747%2C1181614153397460992%2C1181534700386574336%2C1181533991662424070%2C1181532199927058432%2C1181532175184941057%2C1181522908306378752%2C1181522496400613377%2C1181522329517674497%2C1181522168838004736%2C1181488844341952512%2C1181421872132640768%2C1181418289890766849%2C1181415782129000448%2C1181412427944079360%2C1181401717642088450%2C1181391781415591936%2C1181390556674609152%2C1181390526777626624%2C1181339485528657920%2C1181338222011568129%2C1181337895979888642%2C1181330176044482560%2C1181287034738155520%2C1181284797940977665%2C1181261413081214976%2C1181261352184221701%2C1181245698739539968%2C1181234150780497921%2C1181208026746953728%2C1181207459752378368%2C1181206357900451840%2C1181205621141463040%2C1181193325975465984%2C1181171699070521344%2C1180883304339259393%2C1180689867732213760%2C1180480618515304448%2C1180297169988927488%2C1180258270642147328%2C1180257003857436672%2C1180244610473443328&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:58 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:58 GMT + x-transaction: e26d698ac954c32f + content-length: '57509' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '270' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '384' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Tue Oct 08 23:00:34 +0000 2019","id":1181705975230799875,"id_str":"1181705975230799875","full_text":"Come + and join this panel discussion, moderated by Pauline Muljana and Tugce Aldemir, + on Oct 23 from 3:00 to 3:50 pm, at Convention Center, Conference Rm 4. The + panelists will discuss why and how we embrace accessibility in order to meet + diverse learning needs. #aect19inspired https:\/\/t.co\/qyHaN7KLbO","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"aect19inspired","indices":[262,277]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181705973720858625,"id_str":"1181705973720858625","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","url":"https:\/\/t.co\/qyHaN7KLbO","display_url":"pic.twitter.com\/qyHaN7KLbO","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181705973720858625,"id_str":"1181705973720858625","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","url":"https:\/\/t.co\/qyHaN7KLbO","display_url":"pic.twitter.com\/qyHaN7KLbO","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 10 14:45:32 +0000 2019","id":1182306172763885572,"id_str":"1182306172763885572","full_text":"RT + @PaulineMuljana: #aect19 attendees, come and join us. Drs. @ifenthaler and + @andrewatawfik will be amongst the panelists discussing the i\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[20,27]}],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]},{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[62,73]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[78,92]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":146938117,"id_str":"146938117","name":"Ela + Castellanos-Reyes","screen_name":"ElaTheGrad","location":"Lafayette, IN","description":"\ud83c\udde8\ud83c\uddf4 + #OnlineLearning #NetworkAnalysis #Latina #PotterHead","url":"https:\/\/t.co\/5SMOrW0p1I","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5SMOrW0p1I","expanded_url":"https:\/\/www.elacastellanosreyes.com","display_url":"elacastellanosreyes.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":455,"friends_count":1188,"listed_count":2,"created_at":"Sat + May 22 19:07:17 +0000 2010","favourites_count":3862,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1995,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183161043293560834\/vtLxUlIX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183161043293560834\/vtLxUlIX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/146938117\/1420603624","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 10 04:17:39 +0000 2019","id":1182148161361473536,"id_str":"1182148161361473536","full_text":"#aect19 + attendees, come and join us. Drs. @ifenthaler and @andrewatawfik will be amongst + the panelists discussing the intersection where LA and ID meet. #aect19inspired + https:\/\/t.co\/i21G3RTJl1","truncated":false,"display_text_range":[0,168],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]},{"text":"aect19inspired","indices":[153,168]}],"symbols":[],"user_mentions":[{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[42,53]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[58,72]}],"urls":[{"url":"https:\/\/t.co\/i21G3RTJl1","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973","display_url":"twitter.com\/gsa_aect\/statu\u2026","indices":[169,192]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"36ac79e68ace76e4","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/36ac79e68ace76e4.json","place_type":"city","name":"Rancho + Cucamonga","full_name":"Rancho Cucamonga, CA","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-117.637862,34.077184],[-117.4864431,34.077184],[-117.4864431,34.166156],[-117.637862,34.166156]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1182075810934611973,"quoted_status_id_str":"1182075810934611973","quoted_status_permalink":{"url":"https:\/\/t.co\/i21G3RTJl1","expanded":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973","display":"twitter.com\/gsa_aect\/statu\u2026"},"quoted_status":{"created_at":"Wed + Oct 09 23:30:09 +0000 2019","id":1182075810934611973,"id_str":"1182075810934611973","full_text":"Come + and join this panel discussion, moderated by Meina Zhu and Pauline Muljana, + on Oct 22 from 10:00 to 10:50 am, at Convention Center, Conference Rm 4. https:\/\/t.co\/SYdxF7JQc1 #aect19 + #aect19inspired #aectgsa https:\/\/t.co\/biptIlEZyT","truncated":false,"display_text_range":[0,211],"entities":{"hashtags":[{"text":"aect19","indices":[179,186]},{"text":"aect19inspired","indices":[187,202]},{"text":"aectgsa","indices":[203,211]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SYdxF7JQc1","expanded_url":"http:\/\/tinyurl.com\/y5qg7kwf","display_url":"tinyurl.com\/y5qg7kwf","indices":[154,177]}],"media":[{"id":1182075809219121152,"id_str":"1182075809219121152","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","url":"https:\/\/t.co\/biptIlEZyT","display_url":"pic.twitter.com\/biptIlEZyT","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182075809219121152,"id_str":"1182075809219121152","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","url":"https:\/\/t.co\/biptIlEZyT","display_url":"pic.twitter.com\/biptIlEZyT","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1182075810934611973,"quoted_status_id_str":"1182075810934611973","quoted_status_permalink":{"url":"https:\/\/t.co\/i21G3RTJl1","expanded":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973","display":"twitter.com\/gsa_aect\/statu\u2026"},"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 10 00:13:43 +0000 2019","id":1182086774811705344,"id_str":"1182086774811705344","full_text":"RT + @gsa_aect: Come and join this panel discussion, moderated by Meina Zhu and + Pauline Muljana, on Oct 22 from 10:00 to 10:50 am, at Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 09 23:30:09 +0000 2019","id":1182075810934611973,"id_str":"1182075810934611973","full_text":"Come + and join this panel discussion, moderated by Meina Zhu and Pauline Muljana, + on Oct 22 from 10:00 to 10:50 am, at Convention Center, Conference Rm 4. https:\/\/t.co\/SYdxF7JQc1 #aect19 + #aect19inspired #aectgsa https:\/\/t.co\/biptIlEZyT","truncated":false,"display_text_range":[0,211],"entities":{"hashtags":[{"text":"aect19","indices":[179,186]},{"text":"aect19inspired","indices":[187,202]},{"text":"aectgsa","indices":[203,211]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SYdxF7JQc1","expanded_url":"http:\/\/tinyurl.com\/y5qg7kwf","display_url":"tinyurl.com\/y5qg7kwf","indices":[154,177]}],"media":[{"id":1182075809219121152,"id_str":"1182075809219121152","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","url":"https:\/\/t.co\/biptIlEZyT","display_url":"pic.twitter.com\/biptIlEZyT","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182075809219121152,"id_str":"1182075809219121152","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","url":"https:\/\/t.co\/biptIlEZyT","display_url":"pic.twitter.com\/biptIlEZyT","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 08 02:12:04 +0000 2019","id":1181391781415591936,"id_str":"1181391781415591936","full_text":"RT + @aectclt: CLT folks! Now it is your turn to tell us about your story! Who + has inspired you? #aect19inspired #inspiredme @akesha @tutalen\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[95,110]},{"text":"inspiredme","indices":[111,122]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[3,11]},{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[123,130]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":482227724,"id_str":"482227724","name":"Hengtao + Tang","screen_name":"Happy_Tao","location":"Columbia, SC","description":"Assistant + Professor @edtech_uofsc. #Gamecock Live love teach! @psuldt alumni. We are....","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":390,"friends_count":870,"listed_count":13,"created_at":"Fri + Feb 03 17:29:31 +0000 2012","favourites_count":2095,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1127,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1804992888\/h_large_CCWB_7b22000080c72f76_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1804992888\/h_large_CCWB_7b22000080c72f76_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/482227724\/1578336887","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 02:07:05 +0000 2019","id":1181390526777626624,"id_str":"1181390526777626624","full_text":"CLT + folks! Now it is your turn to tell us about your story! Who has inspired you? + #aect19inspired #inspiredme @akesha @tutaleni @amy_c_bradshaw @LiuJuhong @srogidd + https:\/\/t.co\/nH4Yt4pSRo","truncated":false,"display_text_range":[0,163],"entities":{"hashtags":[{"text":"aect19inspired","indices":[82,97]},{"text":"inspiredme","indices":[98,109]}],"symbols":[],"user_mentions":[{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[110,117]},{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[118,127]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[128,143]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[144,154]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[155,163]}],"urls":[],"media":[{"id":1181390523279577091,"id_str":"1181390523279577091","indices":[164,187],"media_url":"http:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","url":"https:\/\/t.co\/nH4Yt4pSRo","display_url":"pic.twitter.com\/nH4Yt4pSRo","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1181390526777626624\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181390523279577091,"id_str":"1181390523279577091","indices":[164,187],"media_url":"http:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","url":"https:\/\/t.co\/nH4Yt4pSRo","display_url":"pic.twitter.com\/nH4Yt4pSRo","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1181390526777626624\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905212118127042560,"id_str":"905212118127042560","name":"AECT_CLT","screen_name":"aectclt","location":"","description":"AECT + Division Exploring culture, learning, and technology with particular emphases + on championing inclusiveness and equity. Conversation at #aectclt","url":"https:\/\/t.co\/yc2CmqxA5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yc2CmqxA5M","expanded_url":"https:\/\/sites.google.com\/view\/clt-home","display_url":"sites.google.com\/view\/clt-home","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":26,"listed_count":4,"created_at":"Tue + Sep 05 23:32:41 +0000 2017","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":486,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905212118127042560\/1506184813","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 11 00:10:07 +0000 2019","id":1182448255097069568,"id_str":"1182448255097069568","full_text":"RT + @michaelmgrant: @AECT is inspired to honor our members, colleagues, and partners + with their exceptional practice, scholarship & service.\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[19,24]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 10 14:43:13 +0000 2019","id":1182305588249645057,"id_str":"1182305588249645057","full_text":"@AECT + is inspired to honor our members, colleagues, and partners with their exceptional + practice, scholarship & service.\n#aect19inspired.\nhttps:\/\/t.co\/WyFS68klpc + https:\/\/t.co\/tMgbnQHtbr","truncated":false,"display_text_range":[0,165],"entities":{"hashtags":[{"text":"aect19inspired","indices":[125,140]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]}],"urls":[{"url":"https:\/\/t.co\/WyFS68klpc","expanded_url":"http:\/\/bit.ly\/314YMa8","display_url":"bit.ly\/314YMa8","indices":[142,165]}],"media":[{"id":1182305453331451904,"id_str":"1182305453331451904","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EGhki7HUEAAAjCC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGhki7HUEAAAjCC.jpg","url":"https:\/\/t.co\/tMgbnQHtbr","display_url":"pic.twitter.com\/tMgbnQHtbr","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1182305588249645057\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":384,"resize":"fit"},"large":{"w":2048,"h":1157,"resize":"fit"},"medium":{"w":1200,"h":678,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182305453331451904,"id_str":"1182305453331451904","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EGhki7HUEAAAjCC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGhki7HUEAAAjCC.jpg","url":"https:\/\/t.co\/tMgbnQHtbr","display_url":"pic.twitter.com\/tMgbnQHtbr","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1182305588249645057\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":384,"resize":"fit"},"large":{"w":2048,"h":1157,"resize":"fit"},"medium":{"w":1200,"h":678,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 11 11:28:07 +0000 2019","id":1182618881019527169,"id_str":"1182618881019527169","full_text":"RT + @gsa_aect: Do you want to become a better designer of instruction? Kiran Budhrani + will facilitate this session on Oct 22 from 2:00 to 2:\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 11 02:32:43 +0000 2019","id":1182484140626710528,"id_str":"1182484140626710528","full_text":"Do + you want to become a better designer of instruction? Kiran Budhrani will facilitate + this session on Oct 22 from 2:00 to 2:50 pm in the conference room 4. The + presenters will be Monica Tracey and John Baaki. #aect19 #aect19inspired #aectgsa + https:\/\/t.co\/tBXva57xQf","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"aect19","indices":[210,217]},{"text":"aect19inspired","indices":[218,233]},{"text":"aectgsa","indices":[234,242]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1182484138252738560,"id_str":"1182484138252738560","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EGkHDwUWoAAMHHo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGkHDwUWoAAMHHo.jpg","url":"https:\/\/t.co\/tBXva57xQf","display_url":"pic.twitter.com\/tBXva57xQf","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182484140626710528\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":382,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1065,"h":598,"resize":"fit"},"large":{"w":1065,"h":598,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182484138252738560,"id_str":"1182484138252738560","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EGkHDwUWoAAMHHo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGkHDwUWoAAMHHo.jpg","url":"https:\/\/t.co\/tBXva57xQf","display_url":"pic.twitter.com\/tBXva57xQf","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182484140626710528\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":382,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1065,"h":598,"resize":"fit"},"large":{"w":1065,"h":598,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 09 15:00:25 +0000 2019","id":1181947532659830784,"id_str":"1181947532659830784","full_text":"RT + @rmreese1: DDL-Membership Meeting during the AECT annual conference will be + held:\nThu, Oct 24, 12:30 to 1:50pm, Convention Center, Pavil\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rmreese1","name":"rmreese","id":8005732,"id_str":"8005732","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 18:28:21 +0000 2019","id":1181637470951108608,"id_str":"1181637470951108608","full_text":"DDL-Membership + Meeting during the AECT annual conference will be held:\nThu, Oct 24, 12:30 + to 1:50pm, Convention Center, Pavilion 10. Come meet your division leaders, + spend time with colleagues, win prizes! #aect19inspired https:\/\/t.co\/kUpmTUF7Pn","truncated":false,"display_text_range":[0,221],"entities":{"hashtags":[{"text":"aect19inspired","indices":[206,221]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181637466635169792,"id_str":"1181637466635169792","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EGYFA-wU8AAh9uj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGYFA-wU8AAh9uj.jpg","url":"https:\/\/t.co\/kUpmTUF7Pn","display_url":"pic.twitter.com\/kUpmTUF7Pn","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1181637470951108608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181637466635169792,"id_str":"1181637466635169792","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EGYFA-wU8AAh9uj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGYFA-wU8AAh9uj.jpg","url":"https:\/\/t.co\/kUpmTUF7Pn","display_url":"pic.twitter.com\/kUpmTUF7Pn","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1181637470951108608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":8005732,"id_str":"8005732","name":"rmreese","screen_name":"rmreese1","location":"Denver, + CO","description":"ID, edtech, all around gerd (geek+nerd). Opinions are my + own and RTs are not endorsements. Pronouns: she\/they","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":564,"friends_count":293,"listed_count":271,"created_at":"Mon + Aug 06 23:59:29 +0000 2007","favourites_count":960,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9941,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2A2828","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8005732\/1573836551","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"091378","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 09 19:10:30 +0000 2019","id":1182010468212379648,"id_str":"1182010468212379648","full_text":"RT + @PaulineMuljana: Are you going through the challenging process of narrowing + down your dissertation topic? Get inspired by our panelists:\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":146938117,"id_str":"146938117","name":"Ela + Castellanos-Reyes","screen_name":"ElaTheGrad","location":"Lafayette, IN","description":"\ud83c\udde8\ud83c\uddf4 + #OnlineLearning #NetworkAnalysis #Latina #PotterHead","url":"https:\/\/t.co\/5SMOrW0p1I","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5SMOrW0p1I","expanded_url":"https:\/\/www.elacastellanosreyes.com","display_url":"elacastellanosreyes.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":455,"friends_count":1188,"listed_count":2,"created_at":"Sat + May 22 19:07:17 +0000 2010","favourites_count":3862,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1995,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183161043293560834\/vtLxUlIX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183161043293560834\/vtLxUlIX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/146938117\/1420603624","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 22:50:23 +0000 2019","id":1181703415799246848,"id_str":"1181703415799246848","full_text":"Are + you going through the challenging process of narrowing down your dissertation + topic? Get inspired by our panelists: Drs. @aac3, @eromerohall, @robmoore3, + and @tintinluo. #aect19inspired #aect19 https:\/\/t.co\/AW94npWD9M","truncated":false,"display_text_range":[0,198],"entities":{"hashtags":[{"text":"aect19inspired","indices":[175,190]},{"text":"aect19","indices":[191,198]}],"symbols":[],"user_mentions":[{"screen_name":"aac3","name":"Dr. + ali carr-chellman","id":27413768,"id_str":"27413768","indices":[125,130]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[132,144]},{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[146,156]},{"screen_name":"tintinluo","name":"Tian + Luo","id":29474883,"id_str":"29474883","indices":[162,172]}],"urls":[{"url":"https:\/\/t.co\/AW94npWD9M","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181698313978036224","display_url":"twitter.com\/gsa_aect\/statu\u2026","indices":[199,222]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1181698313978036224,"quoted_status_id_str":"1181698313978036224","quoted_status_permalink":{"url":"https:\/\/t.co\/AW94npWD9M","expanded":"https:\/\/twitter.com\/gsa_aect\/status\/1181698313978036224","display":"twitter.com\/gsa_aect\/statu\u2026"},"quoted_status":{"created_at":"Tue + Oct 08 22:30:07 +0000 2019","id":1181698313978036224,"id_str":"1181698313978036224","full_text":"Come + and join this panel discussion, moderated by Pauline Muljana and Yam Chaivisit, + on Oct 23 from 11:00 to 11:50 am, at Convention Center Conference Rm 4. The + panelists will discuss their experiences and offer advice as how to be a productive + graduate student. #aect19inspired https:\/\/t.co\/Ul5aWDBmia","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"aect19inspired","indices":[263,278]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181698312258428928,"id_str":"1181698312258428928","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EGY8WqXXoAAEsWx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGY8WqXXoAAEsWx.jpg","url":"https:\/\/t.co\/Ul5aWDBmia","display_url":"pic.twitter.com\/Ul5aWDBmia","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181698313978036224\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181698312258428928,"id_str":"1181698312258428928","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EGY8WqXXoAAEsWx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGY8WqXXoAAEsWx.jpg","url":"https:\/\/t.co\/Ul5aWDBmia","display_url":"pic.twitter.com\/Ul5aWDBmia","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181698313978036224\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1181698313978036224,"quoted_status_id_str":"1181698313978036224","quoted_status_permalink":{"url":"https:\/\/t.co\/AW94npWD9M","expanded":"https:\/\/twitter.com\/gsa_aect\/status\/1181698313978036224","display":"twitter.com\/gsa_aect\/statu\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 09 19:34:18 +0000 2019","id":1182016456579416064,"id_str":"1182016456579416064","full_text":"RT + @roycekimmons: Poster ready for #aect19. Now I just need to start on those + presentations... https:\/\/t.co\/vgnlj9qz37","truncated":false,"display_text_range":[0,118],"entities":{"hashtags":[{"text":"aect19","indices":[35,42]}],"symbols":[],"user_mentions":[{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[3,16]}],"urls":[],"media":[{"id":1182009169903112192,"id_str":"1182009169903112192","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","url":"https:\/\/t.co\/vgnlj9qz37","display_url":"pic.twitter.com\/vgnlj9qz37","expanded_url":"https:\/\/twitter.com\/roycekimmons\/status\/1182009173787045888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1800,"h":1277,"resize":"fit"},"small":{"w":680,"h":482,"resize":"fit"},"medium":{"w":1200,"h":851,"resize":"fit"}},"source_status_id":1182009173787045888,"source_status_id_str":"1182009173787045888","source_user_id":104967963,"source_user_id_str":"104967963"}]},"extended_entities":{"media":[{"id":1182009169903112192,"id_str":"1182009169903112192","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","url":"https:\/\/t.co\/vgnlj9qz37","display_url":"pic.twitter.com\/vgnlj9qz37","expanded_url":"https:\/\/twitter.com\/roycekimmons\/status\/1182009173787045888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1800,"h":1277,"resize":"fit"},"small":{"w":680,"h":482,"resize":"fit"},"medium":{"w":1200,"h":851,"resize":"fit"}},"source_status_id":1182009173787045888,"source_status_id_str":"1182009173787045888","source_user_id":104967963,"source_user_id_str":"104967963","ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 09 19:05:22 +0000 2019","id":1182009173787045888,"id_str":"1182009173787045888","full_text":"Poster + ready for #aect19. Now I just need to start on those presentations... https:\/\/t.co\/vgnlj9qz37","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"aect19","indices":[17,24]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1182009169903112192,"id_str":"1182009169903112192","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","url":"https:\/\/t.co\/vgnlj9qz37","display_url":"pic.twitter.com\/vgnlj9qz37","expanded_url":"https:\/\/twitter.com\/roycekimmons\/status\/1182009173787045888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1800,"h":1277,"resize":"fit"},"small":{"w":680,"h":482,"resize":"fit"},"medium":{"w":1200,"h":851,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182009169903112192,"id_str":"1182009169903112192","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","url":"https:\/\/t.co\/vgnlj9qz37","display_url":"pic.twitter.com\/vgnlj9qz37","expanded_url":"https:\/\/twitter.com\/roycekimmons\/status\/1182009173787045888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1800,"h":1277,"resize":"fit"},"small":{"w":680,"h":482,"resize":"fit"},"medium":{"w":1200,"h":851,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":104967963,"id_str":"104967963","name":"Royce + Kimmons","screen_name":"roycekimmons","location":"Provo, UT","description":"Associate + professor, BYU-IPT: openness, OER, tech in education, social media. https:\/\/t.co\/iktkhjAzCw + https:\/\/t.co\/vhHYSEYZSN https:\/\/t.co\/9E4HWYRF9R","url":"https:\/\/t.co\/KsbltQYZa0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KsbltQYZa0","expanded_url":"http:\/\/roycekimmons.com","display_url":"roycekimmons.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/iktkhjAzCw","expanded_url":"http:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[78,101]},{"url":"https:\/\/t.co\/vhHYSEYZSN","expanded_url":"http:\/\/equitypress.org","display_url":"equitypress.org","indices":[102,125]},{"url":"https:\/\/t.co\/9E4HWYRF9R","expanded_url":"http:\/\/edtechnica.org","display_url":"edtechnica.org","indices":[126,149]}]}},"protected":false,"followers_count":1430,"friends_count":2250,"listed_count":57,"created_at":"Thu + Jan 14 23:25:41 +0000 2010","favourites_count":930,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1841,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104967963\/1585782658","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"354770","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EDF0FF","profile_text_color":"1A1A1A","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":25,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 08 23:46:32 +0000 2019","id":1181717546048688129,"id_str":"1181717546048688129","full_text":"Get + inspired by ideas on how to design with accessibility in mind through the + discussion with our panelists: @AmyLomellini_ID , @UmbrellaMichela , and Dr. + @JenM . @tugcealdemirpsu and I will be moderating. #aect19inspired #aect19 + https:\/\/t.co\/IYUgckRnwL","truncated":false,"display_text_range":[0,230],"entities":{"hashtags":[{"text":"aect19inspired","indices":[206,221]},{"text":"aect19","indices":[223,230]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[109,125]},{"screen_name":"UmbrellaMichela","name":"Esther + Michela","id":940824276307009536,"id_str":"940824276307009536","indices":[128,144]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[155,160]},{"screen_name":"tugcealdemirpsu","name":"Tugce + Aldemir","id":702658623621586944,"id_str":"702658623621586944","indices":[163,179]}],"urls":[{"url":"https:\/\/t.co\/IYUgckRnwL","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875","display_url":"twitter.com\/gsa_aect\/statu\u2026","indices":[231,254]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1181705975230799875,"quoted_status_id_str":"1181705975230799875","quoted_status_permalink":{"url":"https:\/\/t.co\/IYUgckRnwL","expanded":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875","display":"twitter.com\/gsa_aect\/statu\u2026"},"quoted_status":{"created_at":"Tue + Oct 08 23:00:34 +0000 2019","id":1181705975230799875,"id_str":"1181705975230799875","full_text":"Come + and join this panel discussion, moderated by Pauline Muljana and Tugce Aldemir, + on Oct 23 from 3:00 to 3:50 pm, at Convention Center, Conference Rm 4. The + panelists will discuss why and how we embrace accessibility in order to meet + diverse learning needs. #aect19inspired https:\/\/t.co\/qyHaN7KLbO","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"aect19inspired","indices":[262,277]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181705973720858625,"id_str":"1181705973720858625","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","url":"https:\/\/t.co\/qyHaN7KLbO","display_url":"pic.twitter.com\/qyHaN7KLbO","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181705973720858625,"id_str":"1181705973720858625","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","url":"https:\/\/t.co\/qyHaN7KLbO","display_url":"pic.twitter.com\/qyHaN7KLbO","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 08 21:33:58 +0000 2019","id":1181684184735191040,"id_str":"1181684184735191040","full_text":"Who, + from my network, will be in #AECT19? @AECT","truncated":false,"display_text_range":[0,47],"entities":{"hashtags":[{"text":"AECT19","indices":[33,40]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[42,47]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83447547,"id_str":"83447547","name":"Aras + Bozkurt","screen_name":"arasbozkurt","location":"Neverland","description":"Assoc. + Prof @ Anadolu University + MA&PhD at DistanceEducation + Leisure Learner, + dreamer + Ed\/AEd: @AsianJde, @HERDJournal, @eLearnMag, #GO_GN #COER #EdTech","url":"https:\/\/t.co\/zsq8qhSNnT","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zsq8qhSNnT","expanded_url":"https:\/\/www.youtube.com\/c\/ArasBozkurt","display_url":"youtube.com\/c\/ArasBozkurt","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":13468,"friends_count":4358,"listed_count":177,"created_at":"Sun + Oct 18 21:11:32 +0000 2009","favourites_count":15388,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1314341376113471488\/uiBl3ICz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83447547\/1605191894","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 07 22:37:57 +0000 2019","id":1181337895979888642,"id_str":"1181337895979888642","full_text":"RT + @dctrcurry: Shout out to @kolorkid (Heather Leary) for being someone who makes + me feel #aect19inspired. Her positive gratitude each day\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[90,105]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[3,13]},{"screen_name":"kolorkid","name":"Dr. + Heather Leary","id":14669702,"id_str":"14669702","indices":[28,37]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 07 22:07:16 +0000 2019","id":1181330176044482560,"id_str":"1181330176044482560","full_text":"Shout + out to @kolorkid (Heather Leary) for being someone who makes me feel #aect19inspired. Her + positive gratitude each day on social media brightens my day and helps me + keep perspective. https:\/\/t.co\/jrnUkWDP5m","truncated":false,"display_text_range":[0,188],"entities":{"hashtags":[{"text":"aect19inspired","indices":[75,90]}],"symbols":[],"user_mentions":[{"screen_name":"kolorkid","name":"Dr. + Heather Leary","id":14669702,"id_str":"14669702","indices":[13,22]}],"urls":[],"media":[{"id":1181330172596776960,"id_str":"1181330172596776960","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EGTtiHQU8AAjVhp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGTtiHQU8AAjVhp.jpg","url":"https:\/\/t.co\/jrnUkWDP5m","display_url":"pic.twitter.com\/jrnUkWDP5m","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181330176044482560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181330172596776960,"id_str":"1181330172596776960","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EGTtiHQU8AAjVhp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGTtiHQU8AAjVhp.jpg","url":"https:\/\/t.co\/jrnUkWDP5m","display_url":"pic.twitter.com\/jrnUkWDP5m","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181330176044482560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 08 10:53:07 +0000 2019","id":1181522908306378752,"id_str":"1181522908306378752","full_text":"RT + @nicolapallitt: @aectclt @akesha @tutaleni @amy_c_bradshaw @LiuJuhong @srogidd + @michaelmgrant @eAngelaBenson @tadousay @jweeble @AECT To\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[19,27]},{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[28,35]},{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[36,45]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[46,61]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[62,72]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[73,81]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[82,96]},{"screen_name":"eAngelaBenson","name":"Angela + Benson","id":15969744,"id_str":"15969744","indices":[97,111]},{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[112,121]},{"screen_name":"jweeble","name":"Jennifer + Weible","id":28419864,"id_str":"28419864","indices":[122,130]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[131,136]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 03:57:24 +0000 2019","id":1181418289890766849,"id_str":"1181418289890766849","full_text":"@aectclt + @akesha @tutaleni @amy_c_bradshaw @LiuJuhong @srogidd @michaelmgrant @eAngelaBenson + @tadousay @jweeble @AECT Tough choice, most of them have inspired me in some + way:) Most recently, @LiuJuhong who is one of my IRCEES mentors @emergeAfrica + & @aect She''s really helped us to navigate some murky challenges when + it comes to doing international research #aect19inspired #inspiredme","truncated":false,"display_text_range":[118,390],"entities":{"hashtags":[{"text":"aect19inspired","indices":[363,378]},{"text":"inspiredme","indices":[379,390]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[0,8]},{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[9,16]},{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[17,26]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[27,42]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[43,53]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[54,62]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[63,77]},{"screen_name":"eAngelaBenson","name":"Angela + Benson","id":15969744,"id_str":"15969744","indices":[78,92]},{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[93,102]},{"screen_name":"jweeble","name":"Jennifer + Weible","id":28419864,"id_str":"28419864","indices":[103,111]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[112,117]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[191,201]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[234,247]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[254,259]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1181390526777626624,"in_reply_to_status_id_str":"1181390526777626624","in_reply_to_user_id":905212118127042560,"in_reply_to_user_id_str":"905212118127042560","in_reply_to_screen_name":"aectclt","user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"59efa64f5c8f5340","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/59efa64f5c8f5340.json","place_type":"city","name":"Grahamstown","full_name":"Grahamstown, + South Africa","country_code":"ZA","country":"South Africa","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[26.4794772,-33.326355],[26.5600028,-33.326355],[26.5600028,-33.270332],[26.4794772,-33.270332]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 10 04:17:39 +0000 2019","id":1182148161361473536,"id_str":"1182148161361473536","full_text":"#aect19 + attendees, come and join us. Drs. @ifenthaler and @andrewatawfik will be amongst + the panelists discussing the intersection where LA and ID meet. #aect19inspired + https:\/\/t.co\/i21G3RTJl1","truncated":false,"display_text_range":[0,168],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]},{"text":"aect19inspired","indices":[153,168]}],"symbols":[],"user_mentions":[{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[42,53]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[58,72]}],"urls":[{"url":"https:\/\/t.co\/i21G3RTJl1","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973","display_url":"twitter.com\/gsa_aect\/statu\u2026","indices":[169,192]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"36ac79e68ace76e4","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/36ac79e68ace76e4.json","place_type":"city","name":"Rancho + Cucamonga","full_name":"Rancho Cucamonga, CA","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-117.637862,34.077184],[-117.4864431,34.077184],[-117.4864431,34.166156],[-117.637862,34.166156]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1182075810934611973,"quoted_status_id_str":"1182075810934611973","quoted_status_permalink":{"url":"https:\/\/t.co\/i21G3RTJl1","expanded":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973","display":"twitter.com\/gsa_aect\/statu\u2026"},"quoted_status":{"created_at":"Wed + Oct 09 23:30:09 +0000 2019","id":1182075810934611973,"id_str":"1182075810934611973","full_text":"Come + and join this panel discussion, moderated by Meina Zhu and Pauline Muljana, + on Oct 22 from 10:00 to 10:50 am, at Convention Center, Conference Rm 4. https:\/\/t.co\/SYdxF7JQc1 #aect19 + #aect19inspired #aectgsa https:\/\/t.co\/biptIlEZyT","truncated":false,"display_text_range":[0,211],"entities":{"hashtags":[{"text":"aect19","indices":[179,186]},{"text":"aect19inspired","indices":[187,202]},{"text":"aectgsa","indices":[203,211]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SYdxF7JQc1","expanded_url":"http:\/\/tinyurl.com\/y5qg7kwf","display_url":"tinyurl.com\/y5qg7kwf","indices":[154,177]}],"media":[{"id":1182075809219121152,"id_str":"1182075809219121152","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","url":"https:\/\/t.co\/biptIlEZyT","display_url":"pic.twitter.com\/biptIlEZyT","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182075809219121152,"id_str":"1182075809219121152","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","url":"https:\/\/t.co\/biptIlEZyT","display_url":"pic.twitter.com\/biptIlEZyT","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 10 14:43:13 +0000 2019","id":1182305588249645057,"id_str":"1182305588249645057","full_text":"@AECT + is inspired to honor our members, colleagues, and partners with their exceptional + practice, scholarship & service.\n#aect19inspired.\nhttps:\/\/t.co\/WyFS68klpc + https:\/\/t.co\/tMgbnQHtbr","truncated":false,"display_text_range":[0,165],"entities":{"hashtags":[{"text":"aect19inspired","indices":[125,140]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]}],"urls":[{"url":"https:\/\/t.co\/WyFS68klpc","expanded_url":"http:\/\/bit.ly\/314YMa8","display_url":"bit.ly\/314YMa8","indices":[142,165]}],"media":[{"id":1182305453331451904,"id_str":"1182305453331451904","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EGhki7HUEAAAjCC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGhki7HUEAAAjCC.jpg","url":"https:\/\/t.co\/tMgbnQHtbr","display_url":"pic.twitter.com\/tMgbnQHtbr","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1182305588249645057\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":384,"resize":"fit"},"large":{"w":2048,"h":1157,"resize":"fit"},"medium":{"w":1200,"h":678,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182305453331451904,"id_str":"1182305453331451904","indices":[166,189],"media_url":"http:\/\/pbs.twimg.com\/media\/EGhki7HUEAAAjCC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGhki7HUEAAAjCC.jpg","url":"https:\/\/t.co\/tMgbnQHtbr","display_url":"pic.twitter.com\/tMgbnQHtbr","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1182305588249645057\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":384,"resize":"fit"},"large":{"w":2048,"h":1157,"resize":"fit"},"medium":{"w":1200,"h":678,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 08 04:11:38 +0000 2019","id":1181421872132640768,"id_str":"1181421872132640768","full_text":"RT + @aectclt: CLT folks! Now it is your turn to tell us about your story! Who + has inspired you? #aect19inspired #inspiredme @akesha @tutalen\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[95,110]},{"text":"inspiredme","indices":[111,122]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[3,11]},{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[123,130]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 02:07:05 +0000 2019","id":1181390526777626624,"id_str":"1181390526777626624","full_text":"CLT + folks! Now it is your turn to tell us about your story! Who has inspired you? + #aect19inspired #inspiredme @akesha @tutaleni @amy_c_bradshaw @LiuJuhong @srogidd + https:\/\/t.co\/nH4Yt4pSRo","truncated":false,"display_text_range":[0,163],"entities":{"hashtags":[{"text":"aect19inspired","indices":[82,97]},{"text":"inspiredme","indices":[98,109]}],"symbols":[],"user_mentions":[{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[110,117]},{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[118,127]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[128,143]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[144,154]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[155,163]}],"urls":[],"media":[{"id":1181390523279577091,"id_str":"1181390523279577091","indices":[164,187],"media_url":"http:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","url":"https:\/\/t.co\/nH4Yt4pSRo","display_url":"pic.twitter.com\/nH4Yt4pSRo","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1181390526777626624\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181390523279577091,"id_str":"1181390523279577091","indices":[164,187],"media_url":"http:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","url":"https:\/\/t.co\/nH4Yt4pSRo","display_url":"pic.twitter.com\/nH4Yt4pSRo","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1181390526777626624\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905212118127042560,"id_str":"905212118127042560","name":"AECT_CLT","screen_name":"aectclt","location":"","description":"AECT + Division Exploring culture, learning, and technology with particular emphases + on championing inclusiveness and equity. Conversation at #aectclt","url":"https:\/\/t.co\/yc2CmqxA5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yc2CmqxA5M","expanded_url":"https:\/\/sites.google.com\/view\/clt-home","display_url":"sites.google.com\/view\/clt-home","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":26,"listed_count":4,"created_at":"Tue + Sep 05 23:32:41 +0000 2017","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":486,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905212118127042560\/1506184813","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 08 10:50:49 +0000 2019","id":1181522329517674497,"id_str":"1181522329517674497","full_text":"RT + @aectclt: CLT folks! Now it is your turn to tell us about your story! Who + has inspired you? #aect19inspired #inspiredme @akesha @tutalen\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[95,110]},{"text":"inspiredme","indices":[111,122]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[3,11]},{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[123,130]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 02:07:05 +0000 2019","id":1181390526777626624,"id_str":"1181390526777626624","full_text":"CLT + folks! Now it is your turn to tell us about your story! Who has inspired you? + #aect19inspired #inspiredme @akesha @tutaleni @amy_c_bradshaw @LiuJuhong @srogidd + https:\/\/t.co\/nH4Yt4pSRo","truncated":false,"display_text_range":[0,163],"entities":{"hashtags":[{"text":"aect19inspired","indices":[82,97]},{"text":"inspiredme","indices":[98,109]}],"symbols":[],"user_mentions":[{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[110,117]},{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[118,127]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[128,143]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[144,154]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[155,163]}],"urls":[],"media":[{"id":1181390523279577091,"id_str":"1181390523279577091","indices":[164,187],"media_url":"http:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","url":"https:\/\/t.co\/nH4Yt4pSRo","display_url":"pic.twitter.com\/nH4Yt4pSRo","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1181390526777626624\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181390523279577091,"id_str":"1181390523279577091","indices":[164,187],"media_url":"http:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","url":"https:\/\/t.co\/nH4Yt4pSRo","display_url":"pic.twitter.com\/nH4Yt4pSRo","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1181390526777626624\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905212118127042560,"id_str":"905212118127042560","name":"AECT_CLT","screen_name":"aectclt","location":"","description":"AECT + Division Exploring culture, learning, and technology with particular emphases + on championing inclusiveness and equity. Conversation at #aectclt","url":"https:\/\/t.co\/yc2CmqxA5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yc2CmqxA5M","expanded_url":"https:\/\/sites.google.com\/view\/clt-home","display_url":"sites.google.com\/view\/clt-home","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":26,"listed_count":4,"created_at":"Tue + Sep 05 23:32:41 +0000 2017","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":486,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905212118127042560\/1506184813","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 11 23:20:30 +0000 2019","id":1182798155760492545,"id_str":"1182798155760492545","full_text":"RT + @gsa_aect: Join the GSA session about researching competencies for online + teaching facilitated by Kiran Budhrani on October 24th from 3:\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 11 22:56:12 +0000 2019","id":1182792042654646273,"id_str":"1182792042654646273","full_text":"Join + the GSA session about researching competencies for online teaching facilitated + by Kiran Budhrani on October 24th from 3:00 pm to 3:50 pm in the conference + room 4. The presenters are Florence Martin, Swapna Kumar, and Albert Ritzhaupt. + #aect19 #aect19inspired #aectgsa https:\/\/t.co\/MTIOaf1PoY","truncated":false,"display_text_range":[0,272],"entities":{"hashtags":[{"text":"aect19","indices":[240,247]},{"text":"aect19inspired","indices":[248,263]},{"text":"aectgsa","indices":[264,272]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1182792040020615170,"id_str":"1182792040020615170","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EGofF_yWoAILB74.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGofF_yWoAILB74.jpg","url":"https:\/\/t.co\/MTIOaf1PoY","display_url":"pic.twitter.com\/MTIOaf1PoY","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182792042654646273\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1065,"h":599,"resize":"fit"},"large":{"w":1065,"h":599,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182792040020615170,"id_str":"1182792040020615170","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EGofF_yWoAILB74.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGofF_yWoAILB74.jpg","url":"https:\/\/t.co\/MTIOaf1PoY","display_url":"pic.twitter.com\/MTIOaf1PoY","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182792042654646273\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1065,"h":599,"resize":"fit"},"large":{"w":1065,"h":599,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 04 22:13:37 +0000 2019","id":1180244610473443328,"id_str":"1180244610473443328","full_text":"RT + @gsa_aect: Dear the GSA''s amazing members, our Fall 2019 newsletter is here! + \ud83e\udd29\u2728 #aect19inspired #aectgsa\nhttps:\/\/t.co\/VcqRGeZhIh https:\/\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[83,98]},{"text":"aectgsa","indices":[99,107]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/VcqRGeZhIh","expanded_url":"http:\/\/ow.ly\/Zw0C50wA4JU","display_url":"ow.ly\/Zw0C50wA4JU","indices":[108,131]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 03 01:25:02 +0000 2019","id":1179568005585485824,"id_str":"1179568005585485824","full_text":"Dear + the GSA''s amazing members, our Fall 2019 newsletter is here! \ud83e\udd29\u2728 + #aect19inspired #aectgsa\nhttps:\/\/t.co\/VcqRGeZhIh https:\/\/t.co\/6HP1GFu0xd","truncated":false,"display_text_range":[0,117],"entities":{"hashtags":[{"text":"aect19inspired","indices":[69,84]},{"text":"aectgsa","indices":[85,93]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VcqRGeZhIh","expanded_url":"http:\/\/ow.ly\/Zw0C50wA4JU","display_url":"ow.ly\/Zw0C50wA4JU","indices":[94,117]}],"media":[{"id":1179568001428930563,"id_str":"1179568001428930563","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EF6q2QGWwAMKFfh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF6q2QGWwAMKFfh.jpg","url":"https:\/\/t.co\/6HP1GFu0xd","display_url":"pic.twitter.com\/6HP1GFu0xd","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1179568005585485824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1280,"resize":"fit"},"small":{"w":680,"h":425,"resize":"fit"},"medium":{"w":1200,"h":750,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1179568001428930563,"id_str":"1179568001428930563","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EF6q2QGWwAMKFfh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF6q2QGWwAMKFfh.jpg","url":"https:\/\/t.co\/6HP1GFu0xd","display_url":"pic.twitter.com\/6HP1GFu0xd","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1179568005585485824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1280,"resize":"fit"},"small":{"w":680,"h":425,"resize":"fit"},"medium":{"w":1200,"h":750,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 07 15:45:42 +0000 2019","id":1181234150780497921,"id_str":"1181234150780497921","full_text":"Who + inspired you to get to where you are now? To change where you''re heading? + Tag #aect19inspired @AECT #aect19 to share your story! https:\/\/t.co\/GOZcSEcesS","truncated":false,"display_text_range":[0,132],"entities":{"hashtags":[{"text":"aect19inspired","indices":[82,97]},{"text":"aect19","indices":[104,111]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[98,103]}],"urls":[{"url":"https:\/\/t.co\/GOZcSEcesS","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368","display_url":"twitter.com\/michaelmgrant\/\u2026","indices":[133,156]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1181207459752378368,"quoted_status_id_str":"1181207459752378368","quoted_status_permalink":{"url":"https:\/\/t.co\/GOZcSEcesS","expanded":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368","display":"twitter.com\/michaelmgrant\/\u2026"},"quoted_status":{"created_at":"Mon + Oct 07 13:59:38 +0000 2019","id":1181207459752378368,"id_str":"1181207459752378368","full_text":"@AECT, + what\u2019s your story to share?\n@LearnEngage \n@gsa_aect \n@aectclt \n@AECTTechTrends + \n#aect19inspired \n#inspiredme https:\/\/t.co\/RSM1fSKI7Q","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect19inspired","indices":[87,102]},{"text":"inspiredme","indices":[104,115]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[35,47]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[49,58]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[60,68]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[70,85]}],"urls":[],"media":[{"id":1181207443059036162,"id_str":"1181207443059036162","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","url":"https:\/\/t.co\/RSM1fSKI7Q","display_url":"pic.twitter.com\/RSM1fSKI7Q","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181207443059036162,"id_str":"1181207443059036162","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","url":"https:\/\/t.co\/RSM1fSKI7Q","display_url":"pic.twitter.com\/RSM1fSKI7Q","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 09 11:28:08 +0000 2019","id":1181894109080031234,"id_str":"1181894109080031234","full_text":"RT + @gsa_aect: Come and join this panel discussion, moderated by Pauline Muljana + and Yam Chaivisit, on Oct 23 from 11:00 to 11:50 am, at Con\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 22:30:07 +0000 2019","id":1181698313978036224,"id_str":"1181698313978036224","full_text":"Come + and join this panel discussion, moderated by Pauline Muljana and Yam Chaivisit, + on Oct 23 from 11:00 to 11:50 am, at Convention Center Conference Rm 4. The + panelists will discuss their experiences and offer advice as how to be a productive + graduate student. #aect19inspired https:\/\/t.co\/Ul5aWDBmia","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"aect19inspired","indices":[263,278]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181698312258428928,"id_str":"1181698312258428928","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EGY8WqXXoAAEsWx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGY8WqXXoAAEsWx.jpg","url":"https:\/\/t.co\/Ul5aWDBmia","display_url":"pic.twitter.com\/Ul5aWDBmia","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181698313978036224\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181698312258428928,"id_str":"1181698312258428928","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EGY8WqXXoAAEsWx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGY8WqXXoAAEsWx.jpg","url":"https:\/\/t.co\/Ul5aWDBmia","display_url":"pic.twitter.com\/Ul5aWDBmia","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181698313978036224\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 09 11:42:08 +0000 2019","id":1181897629271236608,"id_str":"1181897629271236608","full_text":"RT + @gsa_aect: Come and join this panel discussion, moderated by Pauline Muljana + and Tugce Aldemir, on Oct 23 from 3:00 to 3:50 pm, at Conve\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15636128,"id_str":"15636128","name":"stephanie + moore","screen_name":"steph_moore","location":"New Mexico Baby!","description":"Online + learning. Ethics & design. Tea. Bourbon. Chocolate. Leaning into metamodern. + Editor in Chief of @JCHEResearch she\/her, Author: SEL at a Distance","url":"https:\/\/t.co\/zwm2yMkODU","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zwm2yMkODU","expanded_url":"https:\/\/wwnorton.com\/books\/9781324016571","display_url":"wwnorton.com\/books\/97813240\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3098,"friends_count":1316,"listed_count":54,"created_at":"Mon + Jul 28 19:10:00 +0000 2008","favourites_count":18809,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13765,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1542621306578821120\/HgUeVwAS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15636128\/1656742799","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 23:00:34 +0000 2019","id":1181705975230799875,"id_str":"1181705975230799875","full_text":"Come + and join this panel discussion, moderated by Pauline Muljana and Tugce Aldemir, + on Oct 23 from 3:00 to 3:50 pm, at Convention Center, Conference Rm 4. The + panelists will discuss why and how we embrace accessibility in order to meet + diverse learning needs. #aect19inspired https:\/\/t.co\/qyHaN7KLbO","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"aect19inspired","indices":[262,277]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181705973720858625,"id_str":"1181705973720858625","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","url":"https:\/\/t.co\/qyHaN7KLbO","display_url":"pic.twitter.com\/qyHaN7KLbO","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181705973720858625,"id_str":"1181705973720858625","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","url":"https:\/\/t.co\/qyHaN7KLbO","display_url":"pic.twitter.com\/qyHaN7KLbO","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 08 16:57:27 +0000 2019","id":1181614596412575747,"id_str":"1181614596412575747","full_text":"RT + @dctrcurry: How many days until @michaelmgrant and I see you at #aect19inspired? + https:\/\/t.co\/onZ6fVtaxa","truncated":false,"display_text_range":[0,107],"entities":{"hashtags":[{"text":"aect19inspired","indices":[67,82]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[3,13]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[35,49]}],"urls":[],"media":[{"id":1181614149685526528,"id_str":"1181614149685526528","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/EGXvzwWUwAAwJPK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGXvzwWUwAAwJPK.jpg","url":"https:\/\/t.co\/onZ6fVtaxa","display_url":"pic.twitter.com\/onZ6fVtaxa","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181614153397460992\/photo\/1","type":"photo","sizes":{"small":{"w":434,"h":500,"resize":"fit"},"medium":{"w":434,"h":500,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":434,"h":500,"resize":"fit"}},"source_status_id":1181614153397460992,"source_status_id_str":"1181614153397460992","source_user_id":14116271,"source_user_id_str":"14116271"}]},"extended_entities":{"media":[{"id":1181614149685526528,"id_str":"1181614149685526528","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/EGXvzwWUwAAwJPK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGXvzwWUwAAwJPK.jpg","url":"https:\/\/t.co\/onZ6fVtaxa","display_url":"pic.twitter.com\/onZ6fVtaxa","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181614153397460992\/photo\/1","type":"photo","sizes":{"small":{"w":434,"h":500,"resize":"fit"},"medium":{"w":434,"h":500,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":434,"h":500,"resize":"fit"}},"source_status_id":1181614153397460992,"source_status_id_str":"1181614153397460992","source_user_id":14116271,"source_user_id_str":"14116271","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 16:55:42 +0000 2019","id":1181614153397460992,"id_str":"1181614153397460992","full_text":"How + many days until @michaelmgrant and I see you at #aect19inspired? https:\/\/t.co\/onZ6fVtaxa","truncated":false,"display_text_range":[0,68],"entities":{"hashtags":[{"text":"aect19inspired","indices":[52,67]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[20,34]}],"urls":[],"media":[{"id":1181614149685526528,"id_str":"1181614149685526528","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/EGXvzwWUwAAwJPK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGXvzwWUwAAwJPK.jpg","url":"https:\/\/t.co\/onZ6fVtaxa","display_url":"pic.twitter.com\/onZ6fVtaxa","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181614153397460992\/photo\/1","type":"photo","sizes":{"small":{"w":434,"h":500,"resize":"fit"},"medium":{"w":434,"h":500,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":434,"h":500,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181614149685526528,"id_str":"1181614149685526528","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/EGXvzwWUwAAwJPK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGXvzwWUwAAwJPK.jpg","url":"https:\/\/t.co\/onZ6fVtaxa","display_url":"pic.twitter.com\/onZ6fVtaxa","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181614153397460992\/photo\/1","type":"photo","sizes":{"small":{"w":434,"h":500,"resize":"fit"},"medium":{"w":434,"h":500,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":434,"h":500,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 08 03:57:24 +0000 2019","id":1181418289890766849,"id_str":"1181418289890766849","full_text":"@aectclt + @akesha @tutaleni @amy_c_bradshaw @LiuJuhong @srogidd @michaelmgrant @eAngelaBenson + @tadousay @jweeble @AECT Tough choice, most of them have inspired me in some + way:) Most recently, @LiuJuhong who is one of my IRCEES mentors @emergeAfrica + & @aect She''s really helped us to navigate some murky challenges when + it comes to doing international research #aect19inspired #inspiredme","truncated":false,"display_text_range":[118,390],"entities":{"hashtags":[{"text":"aect19inspired","indices":[363,378]},{"text":"inspiredme","indices":[379,390]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[0,8]},{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[9,16]},{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[17,26]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[27,42]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[43,53]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[54,62]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[63,77]},{"screen_name":"eAngelaBenson","name":"Angela + Benson","id":15969744,"id_str":"15969744","indices":[78,92]},{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[93,102]},{"screen_name":"jweeble","name":"Jennifer + Weible","id":28419864,"id_str":"28419864","indices":[103,111]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[112,117]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[191,201]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[234,247]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[254,259]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1181390526777626624,"in_reply_to_status_id_str":"1181390526777626624","in_reply_to_user_id":905212118127042560,"in_reply_to_user_id_str":"905212118127042560","in_reply_to_screen_name":"aectclt","user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"59efa64f5c8f5340","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/59efa64f5c8f5340.json","place_type":"city","name":"Grahamstown","full_name":"Grahamstown, + South Africa","country_code":"ZA","country":"South Africa","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[26.4794772,-33.326355],[26.5600028,-33.326355],[26.5600028,-33.270332],[26.4794772,-33.270332]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 11 12:09:22 +0000 2019","id":1182629259170287620,"id_str":"1182629259170287620","full_text":"We''re + almost there! @michaelmgrant and I are looking forward to seeing everyone + at @AECT #aect19inspired https:\/\/t.co\/BfDCUGWoya","truncated":false,"display_text_range":[0,105],"entities":{"hashtags":[{"text":"aect19inspired","indices":[90,105]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[21,35]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[84,89]}],"urls":[],"media":[{"id":1182629256083300352,"id_str":"1182629256083300352","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EGmLCuXUYAABEQi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGmLCuXUYAABEQi.jpg","url":"https:\/\/t.co\/BfDCUGWoya","display_url":"pic.twitter.com\/BfDCUGWoya","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1182629259170287620\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182629256083300352,"id_str":"1182629256083300352","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EGmLCuXUYAABEQi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGmLCuXUYAABEQi.jpg","url":"https:\/\/t.co\/BfDCUGWoya","display_url":"pic.twitter.com\/BfDCUGWoya","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1182629259170287620\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 08 11:29:57 +0000 2019","id":1181532175184941057,"id_str":"1181532175184941057","full_text":"RT + @nicolapallitt: @aectclt @akesha @tutaleni @amy_c_bradshaw @LiuJuhong @srogidd + @michaelmgrant @eAngelaBenson @tadousay @jweeble @AECT To\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[3,17]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[19,27]},{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[28,35]},{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[36,45]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[46,61]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[62,72]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[73,81]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[82,96]},{"screen_name":"eAngelaBenson","name":"Angela + Benson","id":15969744,"id_str":"15969744","indices":[97,111]},{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[112,121]},{"screen_name":"jweeble","name":"Jennifer + Weible","id":28419864,"id_str":"28419864","indices":[122,130]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[131,136]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 03:57:24 +0000 2019","id":1181418289890766849,"id_str":"1181418289890766849","full_text":"@aectclt + @akesha @tutaleni @amy_c_bradshaw @LiuJuhong @srogidd @michaelmgrant @eAngelaBenson + @tadousay @jweeble @AECT Tough choice, most of them have inspired me in some + way:) Most recently, @LiuJuhong who is one of my IRCEES mentors @emergeAfrica + & @aect She''s really helped us to navigate some murky challenges when + it comes to doing international research #aect19inspired #inspiredme","truncated":false,"display_text_range":[118,390],"entities":{"hashtags":[{"text":"aect19inspired","indices":[363,378]},{"text":"inspiredme","indices":[379,390]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[0,8]},{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[9,16]},{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[17,26]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[27,42]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[43,53]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[54,62]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[63,77]},{"screen_name":"eAngelaBenson","name":"Angela + Benson","id":15969744,"id_str":"15969744","indices":[78,92]},{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[93,102]},{"screen_name":"jweeble","name":"Jennifer + Weible","id":28419864,"id_str":"28419864","indices":[103,111]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[112,117]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[191,201]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[234,247]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[254,259]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1181390526777626624,"in_reply_to_status_id_str":"1181390526777626624","in_reply_to_user_id":905212118127042560,"in_reply_to_user_id_str":"905212118127042560","in_reply_to_screen_name":"aectclt","user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"59efa64f5c8f5340","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/59efa64f5c8f5340.json","place_type":"city","name":"Grahamstown","full_name":"Grahamstown, + South Africa","country_code":"ZA","country":"South Africa","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[26.4794772,-33.326355],[26.5600028,-33.326355],[26.5600028,-33.270332],[26.4794772,-33.270332]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":10,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 11 11:29:45 +0000 2019","id":1182619290706595840,"id_str":"1182619290706595840","full_text":"RT + @gsa_aect: Kelly Ross will facilitate the GSA session \u201cHow to Review + Manuscripts and Proposals.\u201d Dr. John Curry @dctrcurry and Dr. Andre\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]},{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[115,125]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 10 00:30:05 +0000 2019","id":1182090892930408456,"id_str":"1182090892930408456","full_text":"Kelly + Ross will facilitate the GSA session \u201cHow to Review Manuscripts and Proposals.\u201d + Dr. John Curry @dctrcurry and Dr. Andrew Tawfik @andrewatawfik will present. + Please join the session on Tuesday, Oct 22 from 9:00 to 9:50 am in Conference + room 4. #aect19inspired #aectgsa https:\/\/t.co\/DBB2S2pxP6","truncated":false,"display_text_range":[0,273],"entities":{"hashtags":[{"text":"aect19inspired","indices":[249,264]},{"text":"aectgsa","indices":[265,273]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[101,111]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[134,148]}],"urls":[],"media":[{"id":1182090891156230145,"id_str":"1182090891156230145","indices":[274,297],"media_url":"http:\/\/pbs.twimg.com\/media\/EGehZwuXkAEOJky.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGehZwuXkAEOJky.jpg","url":"https:\/\/t.co\/DBB2S2pxP6","display_url":"pic.twitter.com\/DBB2S2pxP6","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182090892930408456\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182090891156230145,"id_str":"1182090891156230145","indices":[274,297],"media_url":"http:\/\/pbs.twimg.com\/media\/EGehZwuXkAEOJky.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGehZwuXkAEOJky.jpg","url":"https:\/\/t.co\/DBB2S2pxP6","display_url":"pic.twitter.com\/DBB2S2pxP6","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182090892930408456\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 08 16:55:42 +0000 2019","id":1181614153397460992,"id_str":"1181614153397460992","full_text":"How + many days until @michaelmgrant and I see you at #aect19inspired? https:\/\/t.co\/onZ6fVtaxa","truncated":false,"display_text_range":[0,68],"entities":{"hashtags":[{"text":"aect19inspired","indices":[52,67]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[20,34]}],"urls":[],"media":[{"id":1181614149685526528,"id_str":"1181614149685526528","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/EGXvzwWUwAAwJPK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGXvzwWUwAAwJPK.jpg","url":"https:\/\/t.co\/onZ6fVtaxa","display_url":"pic.twitter.com\/onZ6fVtaxa","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181614153397460992\/photo\/1","type":"photo","sizes":{"small":{"w":434,"h":500,"resize":"fit"},"medium":{"w":434,"h":500,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":434,"h":500,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181614149685526528,"id_str":"1181614149685526528","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/EGXvzwWUwAAwJPK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGXvzwWUwAAwJPK.jpg","url":"https:\/\/t.co\/onZ6fVtaxa","display_url":"pic.twitter.com\/onZ6fVtaxa","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181614153397460992\/photo\/1","type":"photo","sizes":{"small":{"w":434,"h":500,"resize":"fit"},"medium":{"w":434,"h":500,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":434,"h":500,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 08 03:34:07 +0000 2019","id":1181412427944079360,"id_str":"1181412427944079360","full_text":"We + are REALLY looking forward to seeing you in Las Vegas for #aect19inspired + @AECT #aect19","truncated":false,"display_text_range":[0,90],"entities":{"hashtags":[{"text":"aect19inspired","indices":[61,76]},{"text":"aect19","indices":[83,90]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[77,82]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2647362354,"id_str":"2647362354","name":"Design + & Development","screen_name":"aectdddivision","location":"","description":"The + Division of Design and Development represents the interests of AECT members + concerned with systematic development of instruction.","url":"https:\/\/t.co\/TA4X41BlOt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TA4X41BlOt","expanded_url":"http:\/\/aectdesign.org","display_url":"aectdesign.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":793,"friends_count":112,"listed_count":15,"created_at":"Tue + Jul 15 10:52:23 +0000 2014","favourites_count":166,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":404,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/489341341474643968\/oAA63Du4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/489341341474643968\/oAA63Du4_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2647362354\/1405503058","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 08 08:37:46 +0000 2019","id":1181488844341952512,"id_str":"1181488844341952512","full_text":"RT + @aectclt: CLT folks! Now it is your turn to tell us about your story! Who + has inspired you? #aect19inspired #inspiredme @akesha @tutalen\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[95,110]},{"text":"inspiredme","indices":[111,122]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[3,11]},{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[123,130]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 02:07:05 +0000 2019","id":1181390526777626624,"id_str":"1181390526777626624","full_text":"CLT + folks! Now it is your turn to tell us about your story! Who has inspired you? + #aect19inspired #inspiredme @akesha @tutaleni @amy_c_bradshaw @LiuJuhong @srogidd + https:\/\/t.co\/nH4Yt4pSRo","truncated":false,"display_text_range":[0,163],"entities":{"hashtags":[{"text":"aect19inspired","indices":[82,97]},{"text":"inspiredme","indices":[98,109]}],"symbols":[],"user_mentions":[{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[110,117]},{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[118,127]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[128,143]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[144,154]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[155,163]}],"urls":[],"media":[{"id":1181390523279577091,"id_str":"1181390523279577091","indices":[164,187],"media_url":"http:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","url":"https:\/\/t.co\/nH4Yt4pSRo","display_url":"pic.twitter.com\/nH4Yt4pSRo","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1181390526777626624\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181390523279577091,"id_str":"1181390523279577091","indices":[164,187],"media_url":"http:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","url":"https:\/\/t.co\/nH4Yt4pSRo","display_url":"pic.twitter.com\/nH4Yt4pSRo","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1181390526777626624\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905212118127042560,"id_str":"905212118127042560","name":"AECT_CLT","screen_name":"aectclt","location":"","description":"AECT + Division Exploring culture, learning, and technology with particular emphases + on championing inclusiveness and equity. Conversation at #aectclt","url":"https:\/\/t.co\/yc2CmqxA5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yc2CmqxA5M","expanded_url":"https:\/\/sites.google.com\/view\/clt-home","display_url":"sites.google.com\/view\/clt-home","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":26,"listed_count":4,"created_at":"Tue + Sep 05 23:32:41 +0000 2017","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":486,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905212118127042560\/1506184813","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 08 21:28:49 +0000 2019","id":1181682887449464832,"id_str":"1181682887449464832","full_text":"RT + @aectclt: CLT folks! Now it is your turn to tell us about your story! Who + has inspired you? #aect19inspired #inspiredme @akesha @tutalen\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[95,110]},{"text":"inspiredme","indices":[111,122]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[3,11]},{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[123,130]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 02:07:05 +0000 2019","id":1181390526777626624,"id_str":"1181390526777626624","full_text":"CLT + folks! Now it is your turn to tell us about your story! Who has inspired you? + #aect19inspired #inspiredme @akesha @tutaleni @amy_c_bradshaw @LiuJuhong @srogidd + https:\/\/t.co\/nH4Yt4pSRo","truncated":false,"display_text_range":[0,163],"entities":{"hashtags":[{"text":"aect19inspired","indices":[82,97]},{"text":"inspiredme","indices":[98,109]}],"symbols":[],"user_mentions":[{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[110,117]},{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[118,127]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[128,143]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[144,154]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[155,163]}],"urls":[],"media":[{"id":1181390523279577091,"id_str":"1181390523279577091","indices":[164,187],"media_url":"http:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","url":"https:\/\/t.co\/nH4Yt4pSRo","display_url":"pic.twitter.com\/nH4Yt4pSRo","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1181390526777626624\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181390523279577091,"id_str":"1181390523279577091","indices":[164,187],"media_url":"http:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","url":"https:\/\/t.co\/nH4Yt4pSRo","display_url":"pic.twitter.com\/nH4Yt4pSRo","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1181390526777626624\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905212118127042560,"id_str":"905212118127042560","name":"AECT_CLT","screen_name":"aectclt","location":"","description":"AECT + Division Exploring culture, learning, and technology with particular emphases + on championing inclusiveness and equity. Conversation at #aectclt","url":"https:\/\/t.co\/yc2CmqxA5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yc2CmqxA5M","expanded_url":"https:\/\/sites.google.com\/view\/clt-home","display_url":"sites.google.com\/view\/clt-home","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":26,"listed_count":4,"created_at":"Tue + Sep 05 23:32:41 +0000 2017","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":486,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905212118127042560\/1506184813","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 04 23:02:52 +0000 2019","id":1180257003857436672,"id_str":"1180257003857436672","full_text":"RT + @AnnaRoseLeach: @michaelmgrant @AECT @caranorth11 inspires me to think deeply + about how I approach and present materials for my classes\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[3,17]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[19,33]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[34,39]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[40,52]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 04 22:00:18 +0000 2019","id":1180241259740270592,"id_str":"1180241259740270592","full_text":"@michaelmgrant + @AECT @caranorth11 inspires me to think deeply about how I approach and present + materials for my classes #aect19inspired","truncated":false,"display_text_range":[21,135],"entities":{"hashtags":[{"text":"aect19inspired","indices":[120,135]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[0,14]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[15,20]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[21,33]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1179731379942240256,"in_reply_to_status_id_str":"1179731379942240256","in_reply_to_user_id":132653457,"in_reply_to_user_id_str":"132653457","in_reply_to_screen_name":"michaelmgrant","user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"013379ee5729a5e6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/013379ee5729a5e6.json","place_type":"city","name":"Tucson","full_name":"Tucson, + AZ","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-111.083219,32.057802],[-110.747928,32.057802],[-110.747928,32.320979],[-111.083219,32.320979]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 06 03:42:55 +0000 2019","id":1180689867732213760,"id_str":"1180689867732213760","full_text":"@michaelmgrant + and I will see you soon for #aect19inspired! https:\/\/t.co\/u1GKnMWHyN","truncated":false,"display_text_range":[0,59],"entities":{"hashtags":[{"text":"aect19inspired","indices":[43,58]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[0,14]}],"urls":[],"media":[{"id":1180689864972357633,"id_str":"1180689864972357633","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EGKnLTeU0AEzRAC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGKnLTeU0AEzRAC.jpg","url":"https:\/\/t.co\/u1GKnMWHyN","display_url":"pic.twitter.com\/u1GKnMWHyN","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1180689867732213760\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":401,"resize":"fit"},"large":{"w":400,"h":401,"resize":"fit"},"small":{"w":400,"h":401,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1180689864972357633,"id_str":"1180689864972357633","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/EGKnLTeU0AEzRAC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGKnLTeU0AEzRAC.jpg","url":"https:\/\/t.co\/u1GKnMWHyN","display_url":"pic.twitter.com\/u1GKnMWHyN","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1180689867732213760\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":401,"resize":"fit"},"large":{"w":400,"h":401,"resize":"fit"},"small":{"w":400,"h":401,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":132653457,"in_reply_to_user_id_str":"132653457","in_reply_to_screen_name":"michaelmgrant","user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 08 18:28:21 +0000 2019","id":1181637470951108608,"id_str":"1181637470951108608","full_text":"DDL-Membership + Meeting during the AECT annual conference will be held:\nThu, Oct 24, 12:30 + to 1:50pm, Convention Center, Pavilion 10. Come meet your division leaders, + spend time with colleagues, win prizes! #aect19inspired https:\/\/t.co\/kUpmTUF7Pn","truncated":false,"display_text_range":[0,221],"entities":{"hashtags":[{"text":"aect19inspired","indices":[206,221]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181637466635169792,"id_str":"1181637466635169792","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EGYFA-wU8AAh9uj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGYFA-wU8AAh9uj.jpg","url":"https:\/\/t.co\/kUpmTUF7Pn","display_url":"pic.twitter.com\/kUpmTUF7Pn","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1181637470951108608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181637466635169792,"id_str":"1181637466635169792","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EGYFA-wU8AAh9uj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGYFA-wU8AAh9uj.jpg","url":"https:\/\/t.co\/kUpmTUF7Pn","display_url":"pic.twitter.com\/kUpmTUF7Pn","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1181637470951108608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":8005732,"id_str":"8005732","name":"rmreese","screen_name":"rmreese1","location":"Denver, + CO","description":"ID, edtech, all around gerd (geek+nerd). Opinions are my + own and RTs are not endorsements. Pronouns: she\/they","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":564,"friends_count":293,"listed_count":271,"created_at":"Mon + Aug 06 23:59:29 +0000 2007","favourites_count":960,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9941,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2A2828","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8005732\/1573836551","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"091378","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 05 01:42:28 +0000 2019","id":1180297169988927488,"id_str":"1180297169988927488","full_text":"RT + @tadousay: Will #AECT19 be your first @AECT convention? Be sure to join us + for the First Timer''s Orientation on Monday, 10\/21 @ 4PM in P\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[19,26]}],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[41,46]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":600653284,"id_str":"600653284","name":"Nate + Turcotte","screen_name":"nateturcotte22","location":"Fort Myers, FL","description":"Assistant + Professor at @fgcu_coe | Researching embodied forms of teaching & learning + with data | New England Patriots | Duke Basketball","url":"https:\/\/t.co\/uu8axyn0Bq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uu8axyn0Bq","expanded_url":"http:\/\/nateturcotte.com","display_url":"nateturcotte.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":313,"friends_count":606,"listed_count":4,"created_at":"Wed + Jun 06 03:44:26 +0000 2012","favourites_count":4300,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1349,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/600653284\/1440433455","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 04 20:44:49 +0000 2019","id":1180222260553994240,"id_str":"1180222260553994240","full_text":"Will + #AECT19 be your first @AECT convention? Be sure to join us for the First Timer''s + Orientation on Monday, 10\/21 @ 4PM in Pavilion 11. Meet new friends with + #AECTBingo & learn about the #AECTPokerRun for your chance at books & + swag. #aect19inspired #inspiredme https:\/\/t.co\/8MigSV9QHF","truncated":false,"display_text_range":[0,270],"entities":{"hashtags":[{"text":"AECT19","indices":[5,12]},{"text":"AECTBingo","indices":[159,169]},{"text":"AECTPokerRun","indices":[192,205]},{"text":"aect19inspired","indices":[243,258]},{"text":"inspiredme","indices":[259,270]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]}],"urls":[],"media":[{"id":1180222096309252096,"id_str":"1180222096309252096","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","url":"https:\/\/t.co\/8MigSV9QHF","display_url":"pic.twitter.com\/8MigSV9QHF","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1180222260553994240\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":604,"h":680,"resize":"fit"},"large":{"w":1252,"h":1410,"resize":"fit"},"medium":{"w":1066,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1180222096309252096,"id_str":"1180222096309252096","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","url":"https:\/\/t.co\/8MigSV9QHF","display_url":"pic.twitter.com\/8MigSV9QHF","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1180222260553994240\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":604,"h":680,"resize":"fit"},"large":{"w":1252,"h":1410,"resize":"fit"},"medium":{"w":1066,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 11 02:32:43 +0000 2019","id":1182484140626710528,"id_str":"1182484140626710528","full_text":"Do + you want to become a better designer of instruction? Kiran Budhrani will facilitate + this session on Oct 22 from 2:00 to 2:50 pm in the conference room 4. The + presenters will be Monica Tracey and John Baaki. #aect19 #aect19inspired #aectgsa + https:\/\/t.co\/tBXva57xQf","truncated":false,"display_text_range":[0,242],"entities":{"hashtags":[{"text":"aect19","indices":[210,217]},{"text":"aect19inspired","indices":[218,233]},{"text":"aectgsa","indices":[234,242]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1182484138252738560,"id_str":"1182484138252738560","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EGkHDwUWoAAMHHo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGkHDwUWoAAMHHo.jpg","url":"https:\/\/t.co\/tBXva57xQf","display_url":"pic.twitter.com\/tBXva57xQf","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182484140626710528\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":382,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1065,"h":598,"resize":"fit"},"large":{"w":1065,"h":598,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182484138252738560,"id_str":"1182484138252738560","indices":[243,266],"media_url":"http:\/\/pbs.twimg.com\/media\/EGkHDwUWoAAMHHo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGkHDwUWoAAMHHo.jpg","url":"https:\/\/t.co\/tBXva57xQf","display_url":"pic.twitter.com\/tBXva57xQf","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182484140626710528\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":382,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1065,"h":598,"resize":"fit"},"large":{"w":1065,"h":598,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 09 00:00:24 +0000 2019","id":1181721034959048704,"id_str":"1181721034959048704","full_text":"Excited + to be on this panel in a few weeks with @JenM and Esther. Thank you @tugcealdemirpsu, + @PaulineMuljana, and the @gsa_aect for moderating this important #accessibility + discussion. Come get inspired!!\n#aect19inspired https:\/\/t.co\/8uNu5R5qqz","truncated":false,"display_text_range":[0,221],"entities":{"hashtags":[{"text":"accessibility","indices":[159,173]},{"text":"aect19inspired","indices":[206,221]}],"symbols":[],"user_mentions":[{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[48,53]},{"screen_name":"tugcealdemirpsu","name":"Tugce + Aldemir","id":702658623621586944,"id_str":"702658623621586944","indices":[76,92]},{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[94,109]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[119,128]}],"urls":[{"url":"https:\/\/t.co\/8uNu5R5qqz","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875","display_url":"twitter.com\/gsa_aect\/statu\u2026","indices":[222,245]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910574724748644353,"id_str":"910574724748644353","name":"Amy + Lomellini","screen_name":"AmyLomellini_ID","location":"New York, USA","description":"Associate + Director of Blended & Online Learning and doctoral candidate with a passion + for accessible and inclusive online teaching and learning. #EdTech #A11y","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":644,"friends_count":1061,"listed_count":9,"created_at":"Wed + Sep 20 18:41:46 +0000 2017","favourites_count":7378,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1141,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/910575758103371776\/DDyHWgXt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910574724748644353\/1551624059","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1181705975230799875,"quoted_status_id_str":"1181705975230799875","quoted_status_permalink":{"url":"https:\/\/t.co\/8uNu5R5qqz","expanded":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875","display":"twitter.com\/gsa_aect\/statu\u2026"},"quoted_status":{"created_at":"Tue + Oct 08 23:00:34 +0000 2019","id":1181705975230799875,"id_str":"1181705975230799875","full_text":"Come + and join this panel discussion, moderated by Pauline Muljana and Tugce Aldemir, + on Oct 23 from 3:00 to 3:50 pm, at Convention Center, Conference Rm 4. The + panelists will discuss why and how we embrace accessibility in order to meet + diverse learning needs. #aect19inspired https:\/\/t.co\/qyHaN7KLbO","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"aect19inspired","indices":[262,277]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181705973720858625,"id_str":"1181705973720858625","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","url":"https:\/\/t.co\/qyHaN7KLbO","display_url":"pic.twitter.com\/qyHaN7KLbO","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181705973720858625,"id_str":"1181705973720858625","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","url":"https:\/\/t.co\/qyHaN7KLbO","display_url":"pic.twitter.com\/qyHaN7KLbO","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 09 23:30:09 +0000 2019","id":1182075810934611973,"id_str":"1182075810934611973","full_text":"Come + and join this panel discussion, moderated by Meina Zhu and Pauline Muljana, + on Oct 22 from 10:00 to 10:50 am, at Convention Center, Conference Rm 4. https:\/\/t.co\/SYdxF7JQc1 #aect19 + #aect19inspired #aectgsa https:\/\/t.co\/biptIlEZyT","truncated":false,"display_text_range":[0,211],"entities":{"hashtags":[{"text":"aect19","indices":[179,186]},{"text":"aect19inspired","indices":[187,202]},{"text":"aectgsa","indices":[203,211]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SYdxF7JQc1","expanded_url":"http:\/\/tinyurl.com\/y5qg7kwf","display_url":"tinyurl.com\/y5qg7kwf","indices":[154,177]}],"media":[{"id":1182075809219121152,"id_str":"1182075809219121152","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","url":"https:\/\/t.co\/biptIlEZyT","display_url":"pic.twitter.com\/biptIlEZyT","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182075809219121152,"id_str":"1182075809219121152","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","url":"https:\/\/t.co\/biptIlEZyT","display_url":"pic.twitter.com\/biptIlEZyT","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 08 22:30:07 +0000 2019","id":1181698313978036224,"id_str":"1181698313978036224","full_text":"Come + and join this panel discussion, moderated by Pauline Muljana and Yam Chaivisit, + on Oct 23 from 11:00 to 11:50 am, at Convention Center Conference Rm 4. The + panelists will discuss their experiences and offer advice as how to be a productive + graduate student. #aect19inspired https:\/\/t.co\/Ul5aWDBmia","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"aect19inspired","indices":[263,278]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181698312258428928,"id_str":"1181698312258428928","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EGY8WqXXoAAEsWx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGY8WqXXoAAEsWx.jpg","url":"https:\/\/t.co\/Ul5aWDBmia","display_url":"pic.twitter.com\/Ul5aWDBmia","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181698313978036224\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181698312258428928,"id_str":"1181698312258428928","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EGY8WqXXoAAEsWx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGY8WqXXoAAEsWx.jpg","url":"https:\/\/t.co\/Ul5aWDBmia","display_url":"pic.twitter.com\/Ul5aWDBmia","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181698313978036224\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 07 13:55:16 +0000 2019","id":1181206357900451840,"id_str":"1181206357900451840","full_text":"RT + @AECT: #AECT19 is in two weeks! What advice do you have for first-time attendees? + https:\/\/t.co\/J0qG0EHSZB","truncated":false,"display_text_range":[0,108],"entities":{"hashtags":[{"text":"AECT19","indices":[10,17]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[],"media":[{"id":1181171686013652996,"id_str":"1181171686013652996","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","url":"https:\/\/t.co\/J0qG0EHSZB","display_url":"pic.twitter.com\/J0qG0EHSZB","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1181171699070521344\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}},"source_status_id":1181171699070521344,"source_status_id_str":"1181171699070521344","source_user_id":12030342,"source_user_id_str":"12030342"}]},"extended_entities":{"media":[{"id":1181171686013652996,"id_str":"1181171686013652996","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","url":"https:\/\/t.co\/J0qG0EHSZB","display_url":"pic.twitter.com\/J0qG0EHSZB","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1181171699070521344\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}},"source_status_id":1181171699070521344,"source_status_id_str":"1181171699070521344","source_user_id":12030342,"source_user_id_str":"12030342","video_info":{"aspect_ratio":[320,179],"duration_millis":4533,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1181171686013652996\/pu\/pl\/pzAccHqFW19IL_32.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1181171686013652996\/pu\/vid\/482x270\/PI1f54Nm43VlCNE6.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1181171686013652996\/pu\/vid\/640x358\/52fMn1xMOKbvgKy0.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false,"source_user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]}}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 07 11:37:32 +0000 2019","id":1181171699070521344,"id_str":"1181171699070521344","full_text":"#AECT19 + is in two weeks! What advice do you have for first-time attendees? https:\/\/t.co\/J0qG0EHSZB","truncated":false,"display_text_range":[0,74],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181171686013652996,"id_str":"1181171686013652996","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","url":"https:\/\/t.co\/J0qG0EHSZB","display_url":"pic.twitter.com\/J0qG0EHSZB","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1181171699070521344\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181171686013652996,"id_str":"1181171686013652996","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","url":"https:\/\/t.co\/J0qG0EHSZB","display_url":"pic.twitter.com\/J0qG0EHSZB","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1181171699070521344\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}},"video_info":{"aspect_ratio":[320,179],"duration_millis":4533,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1181171686013652996\/pu\/pl\/pzAccHqFW19IL_32.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1181171686013652996\/pu\/vid\/482x270\/PI1f54Nm43VlCNE6.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1181171686013652996\/pu\/vid\/640x358\/52fMn1xMOKbvgKy0.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 10 15:32:20 +0000 2019","id":1182317950755364864,"id_str":"1182317950755364864","full_text":"RT + @PaulineMuljana: #aect19 attendees, come and join us. Drs. @ifenthaler and + @andrewatawfik will be amongst the panelists discussing the i\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[20,27]}],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]},{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[62,73]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[78,92]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45137054,"id_str":"45137054","name":"Dirk + Ifenthaler","screen_name":"ifenthaler","location":"","description":"#learninganalytics","url":"https:\/\/t.co\/nGyfFQyRvo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/nGyfFQyRvo","expanded_url":"http:\/\/www.ifenthaler.info","display_url":"ifenthaler.info","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":895,"friends_count":246,"listed_count":35,"created_at":"Sat + Jun 06 14:19:07 +0000 2009","favourites_count":615,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":878,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/258487862\/DSC01169_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 10 04:17:39 +0000 2019","id":1182148161361473536,"id_str":"1182148161361473536","full_text":"#aect19 + attendees, come and join us. Drs. @ifenthaler and @andrewatawfik will be amongst + the panelists discussing the intersection where LA and ID meet. #aect19inspired + https:\/\/t.co\/i21G3RTJl1","truncated":false,"display_text_range":[0,168],"entities":{"hashtags":[{"text":"aect19","indices":[0,7]},{"text":"aect19inspired","indices":[153,168]}],"symbols":[],"user_mentions":[{"screen_name":"ifenthaler","name":"Dirk + Ifenthaler","id":45137054,"id_str":"45137054","indices":[42,53]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[58,72]}],"urls":[{"url":"https:\/\/t.co\/i21G3RTJl1","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973","display_url":"twitter.com\/gsa_aect\/statu\u2026","indices":[169,192]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"36ac79e68ace76e4","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/36ac79e68ace76e4.json","place_type":"city","name":"Rancho + Cucamonga","full_name":"Rancho Cucamonga, CA","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-117.637862,34.077184],[-117.4864431,34.077184],[-117.4864431,34.166156],[-117.637862,34.166156]]]},"attributes":{}},"contributors":null,"is_quote_status":true,"quoted_status_id":1182075810934611973,"quoted_status_id_str":"1182075810934611973","quoted_status_permalink":{"url":"https:\/\/t.co\/i21G3RTJl1","expanded":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973","display":"twitter.com\/gsa_aect\/statu\u2026"},"quoted_status":{"created_at":"Wed + Oct 09 23:30:09 +0000 2019","id":1182075810934611973,"id_str":"1182075810934611973","full_text":"Come + and join this panel discussion, moderated by Meina Zhu and Pauline Muljana, + on Oct 22 from 10:00 to 10:50 am, at Convention Center, Conference Rm 4. https:\/\/t.co\/SYdxF7JQc1 #aect19 + #aect19inspired #aectgsa https:\/\/t.co\/biptIlEZyT","truncated":false,"display_text_range":[0,211],"entities":{"hashtags":[{"text":"aect19","indices":[179,186]},{"text":"aect19inspired","indices":[187,202]},{"text":"aectgsa","indices":[203,211]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/SYdxF7JQc1","expanded_url":"http:\/\/tinyurl.com\/y5qg7kwf","display_url":"tinyurl.com\/y5qg7kwf","indices":[154,177]}],"media":[{"id":1182075809219121152,"id_str":"1182075809219121152","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","url":"https:\/\/t.co\/biptIlEZyT","display_url":"pic.twitter.com\/biptIlEZyT","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182075809219121152,"id_str":"1182075809219121152","indices":[212,235],"media_url":"http:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGeTr4IWkAAdC0y.jpg","url":"https:\/\/t.co\/biptIlEZyT","display_url":"pic.twitter.com\/biptIlEZyT","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1182075810934611973,"quoted_status_id_str":"1182075810934611973","quoted_status_permalink":{"url":"https:\/\/t.co\/i21G3RTJl1","expanded":"https:\/\/twitter.com\/gsa_aect\/status\/1182075810934611973","display":"twitter.com\/gsa_aect\/statu\u2026"},"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 07 16:31:35 +0000 2019","id":1181245698739539968,"id_str":"1181245698739539968","full_text":"@michaelmgrant + and NBA legend, Bob Cousy, and I want to see you at #aect19inspired in FOURTEEN + DAYS! https:\/\/t.co\/aY6r9W6bu5 https:\/\/t.co\/g7uVL6Kt75","truncated":false,"display_text_range":[0,124],"entities":{"hashtags":[{"text":"aect19inspired","indices":[67,82]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/aY6r9W6bu5","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181205621141463040","display_url":"twitter.com\/michaelmgrant\/\u2026","indices":[101,124]}],"media":[{"id":1181245694503309312,"id_str":"1181245694503309312","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EGSgs11UUAAzony.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGSgs11UUAAzony.jpg","url":"https:\/\/t.co\/g7uVL6Kt75","display_url":"pic.twitter.com\/g7uVL6Kt75","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181245698739539968\/photo\/1","type":"photo","sizes":{"small":{"w":550,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":744,"h":920,"resize":"fit"},"medium":{"w":744,"h":920,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181245694503309312,"id_str":"1181245694503309312","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EGSgs11UUAAzony.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGSgs11UUAAzony.jpg","url":"https:\/\/t.co\/g7uVL6Kt75","display_url":"pic.twitter.com\/g7uVL6Kt75","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181245698739539968\/photo\/1","type":"photo","sizes":{"small":{"w":550,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":744,"h":920,"resize":"fit"},"medium":{"w":744,"h":920,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":132653457,"in_reply_to_user_id_str":"132653457","in_reply_to_screen_name":"michaelmgrant","user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1181205621141463040,"quoted_status_id_str":"1181205621141463040","quoted_status_permalink":{"url":"https:\/\/t.co\/aY6r9W6bu5","expanded":"https:\/\/twitter.com\/michaelmgrant\/status\/1181205621141463040","display":"twitter.com\/michaelmgrant\/\u2026"},"quoted_status":{"created_at":"Mon + Oct 07 13:52:20 +0000 2019","id":1181205621141463040,"id_str":"1181205621141463040","full_text":"@dctrcurry + How many days till @AECT #aect19inspired ?","truncated":false,"display_text_range":[0,53],"entities":{"hashtags":[{"text":"aect19inspired","indices":[36,51]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[0,10]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[30,35]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":14116271,"in_reply_to_user_id_str":"14116271","in_reply_to_screen_name":"dctrcurry","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 09 11:31:28 +0000 2019","id":1181894947982761985,"id_str":"1181894947982761985","full_text":"RT + @rmreese1: DDL-Membership Meeting during the AECT annual conference will be + held:\nThu, Oct 24, 12:30 to 1:50pm, Convention Center, Pavil\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rmreese1","name":"rmreese","id":8005732,"id_str":"8005732","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 18:28:21 +0000 2019","id":1181637470951108608,"id_str":"1181637470951108608","full_text":"DDL-Membership + Meeting during the AECT annual conference will be held:\nThu, Oct 24, 12:30 + to 1:50pm, Convention Center, Pavilion 10. Come meet your division leaders, + spend time with colleagues, win prizes! #aect19inspired https:\/\/t.co\/kUpmTUF7Pn","truncated":false,"display_text_range":[0,221],"entities":{"hashtags":[{"text":"aect19inspired","indices":[206,221]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181637466635169792,"id_str":"1181637466635169792","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EGYFA-wU8AAh9uj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGYFA-wU8AAh9uj.jpg","url":"https:\/\/t.co\/kUpmTUF7Pn","display_url":"pic.twitter.com\/kUpmTUF7Pn","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1181637470951108608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181637466635169792,"id_str":"1181637466635169792","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EGYFA-wU8AAh9uj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGYFA-wU8AAh9uj.jpg","url":"https:\/\/t.co\/kUpmTUF7Pn","display_url":"pic.twitter.com\/kUpmTUF7Pn","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1181637470951108608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":8005732,"id_str":"8005732","name":"rmreese","screen_name":"rmreese1","location":"Denver, + CO","description":"ID, edtech, all around gerd (geek+nerd). Opinions are my + own and RTs are not endorsements. Pronouns: she\/they","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":564,"friends_count":293,"listed_count":271,"created_at":"Mon + Aug 06 23:59:29 +0000 2007","favourites_count":960,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9941,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2A2828","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8005732\/1573836551","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"091378","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 09 14:23:48 +0000 2019","id":1181938317014831104,"id_str":"1181938317014831104","full_text":"RT + @michaelmgrant: Really enjoying the start of all the @AECT #inspiredme stories + here & on FB. \n\nWhat\u2019s yours?\nTake a minute to share.\u2026","truncated":false,"display_text_range":[0,142],"entities":{"hashtags":[{"text":"inspiredme","indices":[63,74]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[57,62]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 11:37:10 +0000 2019","id":1181533991662424070,"id_str":"1181533991662424070","full_text":"Really + enjoying the start of all the @AECT #inspiredme stories here & on FB. \n\nWhat\u2019s + yours?\nTake a minute to share. \u2665\ufe0f\n#aect19inspired https:\/\/t.co\/hrqqCvC3zL","truncated":false,"display_text_range":[0,141],"entities":{"hashtags":[{"text":"inspiredme","indices":[44,55]},{"text":"aect19inspired","indices":[126,141]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[38,43]}],"urls":[],"media":[{"id":1181533987694694400,"id_str":"1181533987694694400","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/EGWm5tqX0AAMB5R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGWm5tqX0AAMB5R.jpg","url":"https:\/\/t.co\/hrqqCvC3zL","display_url":"pic.twitter.com\/hrqqCvC3zL","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181533991662424070\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181533987694694400,"id_str":"1181533987694694400","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/EGWm5tqX0AAMB5R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGWm5tqX0AAMB5R.jpg","url":"https:\/\/t.co\/hrqqCvC3zL","display_url":"pic.twitter.com\/hrqqCvC3zL","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181533991662424070\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"189ef793a6dbbfc8","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/189ef793a6dbbfc8.json","place_type":"city","name":"Irmo","full_name":"Irmo, + SC","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-81.257113,34.04725],[-81.132587,34.04725],[-81.132587,34.170797],[-81.257113,34.170797]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 07 19:15:50 +0000 2019","id":1181287034738155520,"id_str":"1181287034738155520","full_text":"RT + @LearnEngage: Who inspired you to get to where you are now? To change where + you''re heading? Tag #aect19inspired @AECT #aect19 to share y\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[99,114]},{"text":"aect19","indices":[121,128]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[115,120]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":164478817,"id_str":"164478817","name":"TeddyISD","screen_name":"TeddyISD","location":"","description":"Coach + Teddy is a lifelong learner, public speaker, writer, blogger and vlogger. + He helps people and institutions build systems that lead to lasting improvement.","url":"https:\/\/t.co\/D5PXZvurec","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/D5PXZvurec","expanded_url":"http:\/\/Coachingforbetterlearning.com","display_url":"Coachingforbetterlearning.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":442,"friends_count":1989,"listed_count":9,"created_at":"Fri + Jul 09 00:07:58 +0000 2010","favourites_count":1655,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6055,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614976824947314688\/HlDt0tAJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614976824947314688\/HlDt0tAJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/164478817\/1577029757","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 07 15:45:42 +0000 2019","id":1181234150780497921,"id_str":"1181234150780497921","full_text":"Who + inspired you to get to where you are now? To change where you''re heading? + Tag #aect19inspired @AECT #aect19 to share your story! https:\/\/t.co\/GOZcSEcesS","truncated":false,"display_text_range":[0,132],"entities":{"hashtags":[{"text":"aect19inspired","indices":[82,97]},{"text":"aect19","indices":[104,111]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[98,103]}],"urls":[{"url":"https:\/\/t.co\/GOZcSEcesS","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368","display_url":"twitter.com\/michaelmgrant\/\u2026","indices":[133,156]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1181207459752378368,"quoted_status_id_str":"1181207459752378368","quoted_status_permalink":{"url":"https:\/\/t.co\/GOZcSEcesS","expanded":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368","display":"twitter.com\/michaelmgrant\/\u2026"},"quoted_status":{"created_at":"Mon + Oct 07 13:59:38 +0000 2019","id":1181207459752378368,"id_str":"1181207459752378368","full_text":"@AECT, + what\u2019s your story to share?\n@LearnEngage \n@gsa_aect \n@aectclt \n@AECTTechTrends + \n#aect19inspired \n#inspiredme https:\/\/t.co\/RSM1fSKI7Q","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect19inspired","indices":[87,102]},{"text":"inspiredme","indices":[104,115]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[35,47]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[49,58]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[60,68]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[70,85]}],"urls":[],"media":[{"id":1181207443059036162,"id_str":"1181207443059036162","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","url":"https:\/\/t.co\/RSM1fSKI7Q","display_url":"pic.twitter.com\/RSM1fSKI7Q","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181207443059036162,"id_str":"1181207443059036162","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","url":"https:\/\/t.co\/RSM1fSKI7Q","display_url":"pic.twitter.com\/RSM1fSKI7Q","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1181207459752378368,"quoted_status_id_str":"1181207459752378368","quoted_status_permalink":{"url":"https:\/\/t.co\/GOZcSEcesS","expanded":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368","display":"twitter.com\/michaelmgrant\/\u2026"},"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 08 11:30:02 +0000 2019","id":1181532199927058432,"id_str":"1181532199927058432","full_text":"RT + @aectclt: CLT folks! Now it is your turn to tell us about your story! Who + has inspired you? #aect19inspired #inspiredme @akesha @tutalen\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[95,110]},{"text":"inspiredme","indices":[111,122]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[3,11]},{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[123,130]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 02:07:05 +0000 2019","id":1181390526777626624,"id_str":"1181390526777626624","full_text":"CLT + folks! Now it is your turn to tell us about your story! Who has inspired you? + #aect19inspired #inspiredme @akesha @tutaleni @amy_c_bradshaw @LiuJuhong @srogidd + https:\/\/t.co\/nH4Yt4pSRo","truncated":false,"display_text_range":[0,163],"entities":{"hashtags":[{"text":"aect19inspired","indices":[82,97]},{"text":"inspiredme","indices":[98,109]}],"symbols":[],"user_mentions":[{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[110,117]},{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[118,127]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[128,143]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[144,154]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[155,163]}],"urls":[],"media":[{"id":1181390523279577091,"id_str":"1181390523279577091","indices":[164,187],"media_url":"http:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","url":"https:\/\/t.co\/nH4Yt4pSRo","display_url":"pic.twitter.com\/nH4Yt4pSRo","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1181390526777626624\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181390523279577091,"id_str":"1181390523279577091","indices":[164,187],"media_url":"http:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","url":"https:\/\/t.co\/nH4Yt4pSRo","display_url":"pic.twitter.com\/nH4Yt4pSRo","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1181390526777626624\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905212118127042560,"id_str":"905212118127042560","name":"AECT_CLT","screen_name":"aectclt","location":"","description":"AECT + Division Exploring culture, learning, and technology with particular emphases + on championing inclusiveness and equity. Conversation at #aectclt","url":"https:\/\/t.co\/yc2CmqxA5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yc2CmqxA5M","expanded_url":"https:\/\/sites.google.com\/view\/clt-home","display_url":"sites.google.com\/view\/clt-home","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":26,"listed_count":4,"created_at":"Tue + Sep 05 23:32:41 +0000 2017","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":486,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905212118127042560\/1506184813","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 07 13:03:29 +0000 2019","id":1181193325975465984,"id_str":"1181193325975465984","full_text":"RT + @AECT: #AECT19 is in two weeks! What advice do you have for first-time attendees? + https:\/\/t.co\/J0qG0EHSZB","truncated":false,"display_text_range":[0,108],"entities":{"hashtags":[{"text":"AECT19","indices":[10,17]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[],"media":[{"id":1181171686013652996,"id_str":"1181171686013652996","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","url":"https:\/\/t.co\/J0qG0EHSZB","display_url":"pic.twitter.com\/J0qG0EHSZB","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1181171699070521344\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}},"source_status_id":1181171699070521344,"source_status_id_str":"1181171699070521344","source_user_id":12030342,"source_user_id_str":"12030342"}]},"extended_entities":{"media":[{"id":1181171686013652996,"id_str":"1181171686013652996","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","url":"https:\/\/t.co\/J0qG0EHSZB","display_url":"pic.twitter.com\/J0qG0EHSZB","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1181171699070521344\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}},"source_status_id":1181171699070521344,"source_status_id_str":"1181171699070521344","source_user_id":12030342,"source_user_id_str":"12030342","video_info":{"aspect_ratio":[320,179],"duration_millis":4533,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1181171686013652996\/pu\/pl\/pzAccHqFW19IL_32.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1181171686013652996\/pu\/vid\/482x270\/PI1f54Nm43VlCNE6.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1181171686013652996\/pu\/vid\/640x358\/52fMn1xMOKbvgKy0.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false,"source_user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]}}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":65595602,"id_str":"65595602","name":"Yuki + Watanabe","screen_name":"yuuki5000","location":"Tokyo","description":"\u6e21\u8fba\u96c4\u8cb4\u3002\u6771\u4eac\u90fd\u51fa\u8eab\u3002\u3072\u3063\u305d\u308a\u3068\u6559\u80b2\u5de5\u5b66\u306e\u7814\u7a76\u3092\u3057\u3066\u307e\u3059\u3002\u6771\u4eac\u7406\u79d1\u5927\u5b66\u6559\u6388\u3002\u535a\u58eb\uff08\u5b66\u8853\uff09\u6771\u4eac\u5de5\u696d\u5927\u5b66 + \/ Professor (Educational Technology Lab.) at Tokyo University of Science, + Japan. Ph.D. Tokyo Tech","url":"https:\/\/t.co\/4RXslYSaqZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/4RXslYSaqZ","expanded_url":"https:\/\/www.tus.ac.jp\/fac_grad\/p\/index.php?3bfc","display_url":"tus.ac.jp\/fac_grad\/p\/ind\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1130,"friends_count":314,"listed_count":43,"created_at":"Fri + Aug 14 08:42:14 +0000 2009","favourites_count":2992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12516,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1360616182319992838\/B-lMb0oC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1360616182319992838\/B-lMb0oC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65595602\/1440774032","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 07 11:37:32 +0000 2019","id":1181171699070521344,"id_str":"1181171699070521344","full_text":"#AECT19 + is in two weeks! What advice do you have for first-time attendees? https:\/\/t.co\/J0qG0EHSZB","truncated":false,"display_text_range":[0,74],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181171686013652996,"id_str":"1181171686013652996","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","url":"https:\/\/t.co\/J0qG0EHSZB","display_url":"pic.twitter.com\/J0qG0EHSZB","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1181171699070521344\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181171686013652996,"id_str":"1181171686013652996","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","url":"https:\/\/t.co\/J0qG0EHSZB","display_url":"pic.twitter.com\/J0qG0EHSZB","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1181171699070521344\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}},"video_info":{"aspect_ratio":[320,179],"duration_millis":4533,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1181171686013652996\/pu\/pl\/pzAccHqFW19IL_32.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1181171686013652996\/pu\/vid\/482x270\/PI1f54Nm43VlCNE6.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1181171686013652996\/pu\/vid\/640x358\/52fMn1xMOKbvgKy0.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 04 23:07:54 +0000 2019","id":1180258270642147328,"id_str":"1180258270642147328","full_text":"RT + @tadousay: Will #AECT19 be your first @AECT convention? Be sure to join us + for the First Timer''s Orientation on Monday, 10\/21 @ 4PM in P\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[19,26]}],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[41,46]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 04 20:44:49 +0000 2019","id":1180222260553994240,"id_str":"1180222260553994240","full_text":"Will + #AECT19 be your first @AECT convention? Be sure to join us for the First Timer''s + Orientation on Monday, 10\/21 @ 4PM in Pavilion 11. Meet new friends with + #AECTBingo & learn about the #AECTPokerRun for your chance at books & + swag. #aect19inspired #inspiredme https:\/\/t.co\/8MigSV9QHF","truncated":false,"display_text_range":[0,270],"entities":{"hashtags":[{"text":"AECT19","indices":[5,12]},{"text":"AECTBingo","indices":[159,169]},{"text":"AECTPokerRun","indices":[192,205]},{"text":"aect19inspired","indices":[243,258]},{"text":"inspiredme","indices":[259,270]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]}],"urls":[],"media":[{"id":1180222096309252096,"id_str":"1180222096309252096","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","url":"https:\/\/t.co\/8MigSV9QHF","display_url":"pic.twitter.com\/8MigSV9QHF","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1180222260553994240\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":604,"h":680,"resize":"fit"},"large":{"w":1252,"h":1410,"resize":"fit"},"medium":{"w":1066,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1180222096309252096,"id_str":"1180222096309252096","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","url":"https:\/\/t.co\/8MigSV9QHF","display_url":"pic.twitter.com\/8MigSV9QHF","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1180222260553994240\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":604,"h":680,"resize":"fit"},"large":{"w":1252,"h":1410,"resize":"fit"},"medium":{"w":1066,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 08 10:50:11 +0000 2019","id":1181522168838004736,"id_str":"1181522168838004736","full_text":"RT + @aectdddivision: We are REALLY looking forward to seeing you in Las Vegas + for #aect19inspired @AECT #aect19","truncated":false,"display_text_range":[0,110],"entities":{"hashtags":[{"text":"aect19inspired","indices":[81,96]},{"text":"aect19","indices":[103,110]}],"symbols":[],"user_mentions":[{"screen_name":"aectdddivision","name":"Design + & Development","id":2647362354,"id_str":"2647362354","indices":[3,18]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[97,102]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 03:34:07 +0000 2019","id":1181412427944079360,"id_str":"1181412427944079360","full_text":"We + are REALLY looking forward to seeing you in Las Vegas for #aect19inspired + @AECT #aect19","truncated":false,"display_text_range":[0,90],"entities":{"hashtags":[{"text":"aect19inspired","indices":[61,76]},{"text":"aect19","indices":[83,90]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[77,82]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2647362354,"id_str":"2647362354","name":"Design + & Development","screen_name":"aectdddivision","location":"","description":"The + Division of Design and Development represents the interests of AECT members + concerned with systematic development of instruction.","url":"https:\/\/t.co\/TA4X41BlOt","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/TA4X41BlOt","expanded_url":"http:\/\/aectdesign.org","display_url":"aectdesign.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":793,"friends_count":112,"listed_count":15,"created_at":"Tue + Jul 15 10:52:23 +0000 2014","favourites_count":166,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":404,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/489341341474643968\/oAA63Du4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/489341341474643968\/oAA63Du4_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2647362354\/1405503058","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 08 03:47:26 +0000 2019","id":1181415782129000448,"id_str":"1181415782129000448","full_text":"RT + @aectclt: CLT folks! Now it is your turn to tell us about your story! Who + has inspired you? #aect19inspired #inspiredme @akesha @tutalen\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[95,110]},{"text":"inspiredme","indices":[111,122]}],"symbols":[],"user_mentions":[{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[3,11]},{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[123,130]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118368334,"id_str":"118368334","name":"Dr + Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, South + Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member of + @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 02:07:05 +0000 2019","id":1181390526777626624,"id_str":"1181390526777626624","full_text":"CLT + folks! Now it is your turn to tell us about your story! Who has inspired you? + #aect19inspired #inspiredme @akesha @tutaleni @amy_c_bradshaw @LiuJuhong @srogidd + https:\/\/t.co\/nH4Yt4pSRo","truncated":false,"display_text_range":[0,163],"entities":{"hashtags":[{"text":"aect19inspired","indices":[82,97]},{"text":"inspiredme","indices":[98,109]}],"symbols":[],"user_mentions":[{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[110,117]},{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[118,127]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[128,143]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[144,154]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[155,163]}],"urls":[],"media":[{"id":1181390523279577091,"id_str":"1181390523279577091","indices":[164,187],"media_url":"http:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","url":"https:\/\/t.co\/nH4Yt4pSRo","display_url":"pic.twitter.com\/nH4Yt4pSRo","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1181390526777626624\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181390523279577091,"id_str":"1181390523279577091","indices":[164,187],"media_url":"http:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","url":"https:\/\/t.co\/nH4Yt4pSRo","display_url":"pic.twitter.com\/nH4Yt4pSRo","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1181390526777626624\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905212118127042560,"id_str":"905212118127042560","name":"AECT_CLT","screen_name":"aectclt","location":"","description":"AECT + Division Exploring culture, learning, and technology with particular emphases + on championing inclusiveness and equity. Conversation at #aectclt","url":"https:\/\/t.co\/yc2CmqxA5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yc2CmqxA5M","expanded_url":"https:\/\/sites.google.com\/view\/clt-home","display_url":"sites.google.com\/view\/clt-home","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":26,"listed_count":4,"created_at":"Tue + Sep 05 23:32:41 +0000 2017","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":486,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905212118127042560\/1506184813","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 07 14:01:54 +0000 2019","id":1181208026746953728,"id_str":"1181208026746953728","full_text":"RT + @michaelmgrant: @AECT, what\u2019s your story to share?\n@LearnEngage \n@gsa_aect + \n@aectclt \n@AECTTechTrends \n#aect19inspired \n#inspiredme http\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[106,121]},{"text":"inspiredme","indices":[123,134]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[19,24]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[54,66]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[68,77]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[79,87]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[89,104]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 07 13:59:38 +0000 2019","id":1181207459752378368,"id_str":"1181207459752378368","full_text":"@AECT, + what\u2019s your story to share?\n@LearnEngage \n@gsa_aect \n@aectclt \n@AECTTechTrends + \n#aect19inspired \n#inspiredme https:\/\/t.co\/RSM1fSKI7Q","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect19inspired","indices":[87,102]},{"text":"inspiredme","indices":[104,115]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[35,47]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[49,58]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[60,68]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[70,85]}],"urls":[],"media":[{"id":1181207443059036162,"id_str":"1181207443059036162","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","url":"https:\/\/t.co\/RSM1fSKI7Q","display_url":"pic.twitter.com\/RSM1fSKI7Q","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181207443059036162,"id_str":"1181207443059036162","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","url":"https:\/\/t.co\/RSM1fSKI7Q","display_url":"pic.twitter.com\/RSM1fSKI7Q","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 11 22:56:12 +0000 2019","id":1182792042654646273,"id_str":"1182792042654646273","full_text":"Join + the GSA session about researching competencies for online teaching facilitated + by Kiran Budhrani on October 24th from 3:00 pm to 3:50 pm in the conference + room 4. The presenters are Florence Martin, Swapna Kumar, and Albert Ritzhaupt. + #aect19 #aect19inspired #aectgsa https:\/\/t.co\/MTIOaf1PoY","truncated":false,"display_text_range":[0,272],"entities":{"hashtags":[{"text":"aect19","indices":[240,247]},{"text":"aect19inspired","indices":[248,263]},{"text":"aectgsa","indices":[264,272]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1182792040020615170,"id_str":"1182792040020615170","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EGofF_yWoAILB74.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGofF_yWoAILB74.jpg","url":"https:\/\/t.co\/MTIOaf1PoY","display_url":"pic.twitter.com\/MTIOaf1PoY","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182792042654646273\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1065,"h":599,"resize":"fit"},"large":{"w":1065,"h":599,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182792040020615170,"id_str":"1182792040020615170","indices":[273,296],"media_url":"http:\/\/pbs.twimg.com\/media\/EGofF_yWoAILB74.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGofF_yWoAILB74.jpg","url":"https:\/\/t.co\/MTIOaf1PoY","display_url":"pic.twitter.com\/MTIOaf1PoY","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182792042654646273\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":382,"resize":"fit"},"medium":{"w":1065,"h":599,"resize":"fit"},"large":{"w":1065,"h":599,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 09 12:10:56 +0000 2019","id":1181904877062107138,"id_str":"1181904877062107138","full_text":"@caranorth11 + @AECT @eLearningGuild I will be at #aect19 and would love to meet you! Let''s + coordinate via DM?","truncated":false,"display_text_range":[35,108],"entities":{"hashtags":[{"text":"aect19","indices":[48,55]}],"symbols":[],"user_mentions":[{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[0,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[13,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1181552340706267136,"in_reply_to_status_id_str":"1181552340706267136","in_reply_to_user_id":715304516791451648,"in_reply_to_user_id_str":"715304516791451648","in_reply_to_screen_name":"caranorth11","user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 07 22:07:16 +0000 2019","id":1181330176044482560,"id_str":"1181330176044482560","full_text":"Shout + out to @kolorkid (Heather Leary) for being someone who makes me feel #aect19inspired. Her + positive gratitude each day on social media brightens my day and helps me + keep perspective. https:\/\/t.co\/jrnUkWDP5m","truncated":false,"display_text_range":[0,188],"entities":{"hashtags":[{"text":"aect19inspired","indices":[75,90]}],"symbols":[],"user_mentions":[{"screen_name":"kolorkid","name":"Dr. + Heather Leary","id":14669702,"id_str":"14669702","indices":[13,22]}],"urls":[],"media":[{"id":1181330172596776960,"id_str":"1181330172596776960","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EGTtiHQU8AAjVhp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGTtiHQU8AAjVhp.jpg","url":"https:\/\/t.co\/jrnUkWDP5m","display_url":"pic.twitter.com\/jrnUkWDP5m","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181330176044482560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181330172596776960,"id_str":"1181330172596776960","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EGTtiHQU8AAjVhp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGTtiHQU8AAjVhp.jpg","url":"https:\/\/t.co\/jrnUkWDP5m","display_url":"pic.twitter.com\/jrnUkWDP5m","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181330176044482560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 07 19:06:57 +0000 2019","id":1181284797940977665,"id_str":"1181284797940977665","full_text":"RT + @LearnEngage: Who inspired you to get to where you are now? To change where + you''re heading? Tag #aect19inspired @AECT #aect19 to share y\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[99,114]},{"text":"aect19","indices":[121,128]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[115,120]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 07 15:45:42 +0000 2019","id":1181234150780497921,"id_str":"1181234150780497921","full_text":"Who + inspired you to get to where you are now? To change where you''re heading? + Tag #aect19inspired @AECT #aect19 to share your story! https:\/\/t.co\/GOZcSEcesS","truncated":false,"display_text_range":[0,132],"entities":{"hashtags":[{"text":"aect19inspired","indices":[82,97]},{"text":"aect19","indices":[104,111]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[98,103]}],"urls":[{"url":"https:\/\/t.co\/GOZcSEcesS","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368","display_url":"twitter.com\/michaelmgrant\/\u2026","indices":[133,156]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1181207459752378368,"quoted_status_id_str":"1181207459752378368","quoted_status_permalink":{"url":"https:\/\/t.co\/GOZcSEcesS","expanded":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368","display":"twitter.com\/michaelmgrant\/\u2026"},"quoted_status":{"created_at":"Mon + Oct 07 13:59:38 +0000 2019","id":1181207459752378368,"id_str":"1181207459752378368","full_text":"@AECT, + what\u2019s your story to share?\n@LearnEngage \n@gsa_aect \n@aectclt \n@AECTTechTrends + \n#aect19inspired \n#inspiredme https:\/\/t.co\/RSM1fSKI7Q","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect19inspired","indices":[87,102]},{"text":"inspiredme","indices":[104,115]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[35,47]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[49,58]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[60,68]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[70,85]}],"urls":[],"media":[{"id":1181207443059036162,"id_str":"1181207443059036162","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","url":"https:\/\/t.co\/RSM1fSKI7Q","display_url":"pic.twitter.com\/RSM1fSKI7Q","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181207443059036162,"id_str":"1181207443059036162","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","url":"https:\/\/t.co\/RSM1fSKI7Q","display_url":"pic.twitter.com\/RSM1fSKI7Q","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1181207459752378368,"quoted_status_id_str":"1181207459752378368","quoted_status_permalink":{"url":"https:\/\/t.co\/GOZcSEcesS","expanded":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368","display":"twitter.com\/michaelmgrant\/\u2026"},"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 07 13:59:38 +0000 2019","id":1181207459752378368,"id_str":"1181207459752378368","full_text":"@AECT, + what\u2019s your story to share?\n@LearnEngage \n@gsa_aect \n@aectclt \n@AECTTechTrends + \n#aect19inspired \n#inspiredme https:\/\/t.co\/RSM1fSKI7Q","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect19inspired","indices":[87,102]},{"text":"inspiredme","indices":[104,115]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[35,47]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[49,58]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[60,68]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[70,85]}],"urls":[],"media":[{"id":1181207443059036162,"id_str":"1181207443059036162","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","url":"https:\/\/t.co\/RSM1fSKI7Q","display_url":"pic.twitter.com\/RSM1fSKI7Q","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181207443059036162,"id_str":"1181207443059036162","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","url":"https:\/\/t.co\/RSM1fSKI7Q","display_url":"pic.twitter.com\/RSM1fSKI7Q","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 09 19:05:22 +0000 2019","id":1182009173787045888,"id_str":"1182009173787045888","full_text":"Poster + ready for #aect19. Now I just need to start on those presentations... https:\/\/t.co\/vgnlj9qz37","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"aect19","indices":[17,24]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1182009169903112192,"id_str":"1182009169903112192","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","url":"https:\/\/t.co\/vgnlj9qz37","display_url":"pic.twitter.com\/vgnlj9qz37","expanded_url":"https:\/\/twitter.com\/roycekimmons\/status\/1182009173787045888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1800,"h":1277,"resize":"fit"},"small":{"w":680,"h":482,"resize":"fit"},"medium":{"w":1200,"h":851,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182009169903112192,"id_str":"1182009169903112192","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","url":"https:\/\/t.co\/vgnlj9qz37","display_url":"pic.twitter.com\/vgnlj9qz37","expanded_url":"https:\/\/twitter.com\/roycekimmons\/status\/1182009173787045888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1800,"h":1277,"resize":"fit"},"small":{"w":680,"h":482,"resize":"fit"},"medium":{"w":1200,"h":851,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":104967963,"id_str":"104967963","name":"Royce + Kimmons","screen_name":"roycekimmons","location":"Provo, UT","description":"Associate + professor, BYU-IPT: openness, OER, tech in education, social media. https:\/\/t.co\/iktkhjAzCw + https:\/\/t.co\/vhHYSEYZSN https:\/\/t.co\/9E4HWYRF9R","url":"https:\/\/t.co\/KsbltQYZa0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KsbltQYZa0","expanded_url":"http:\/\/roycekimmons.com","display_url":"roycekimmons.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/iktkhjAzCw","expanded_url":"http:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[78,101]},{"url":"https:\/\/t.co\/vhHYSEYZSN","expanded_url":"http:\/\/equitypress.org","display_url":"equitypress.org","indices":[102,125]},{"url":"https:\/\/t.co\/9E4HWYRF9R","expanded_url":"http:\/\/edtechnica.org","display_url":"edtechnica.org","indices":[126,149]}]}},"protected":false,"followers_count":1430,"friends_count":2250,"listed_count":57,"created_at":"Thu + Jan 14 23:25:41 +0000 2010","favourites_count":930,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1841,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104967963\/1585782658","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"354770","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EDF0FF","profile_text_color":"1A1A1A","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":25,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 07 22:44:16 +0000 2019","id":1181339485528657920,"id_str":"1181339485528657920","full_text":"D&D + and DDL BOAF (birds of a feather) - This session will bring together researchers + and practitioners working in higher education to discuss the challenges with + promoting universal design practices in online learning environments. \nWednesday, + October 23: 5-550pm #aect19inspired https:\/\/t.co\/dGxQxZhvje","truncated":false,"display_text_range":[0,283],"entities":{"hashtags":[{"text":"aect19inspired","indices":[268,283]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181339482022240258,"id_str":"1181339482022240258","indices":[284,307],"media_url":"http:\/\/pbs.twimg.com\/media\/EGT1__kUYAIGymg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGT1__kUYAIGymg.jpg","url":"https:\/\/t.co\/dGxQxZhvje","display_url":"pic.twitter.com\/dGxQxZhvje","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1181339485528657920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"},"small":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181339482022240258,"id_str":"1181339482022240258","indices":[284,307],"media_url":"http:\/\/pbs.twimg.com\/media\/EGT1__kUYAIGymg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGT1__kUYAIGymg.jpg","url":"https:\/\/t.co\/dGxQxZhvje","display_url":"pic.twitter.com\/dGxQxZhvje","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1181339485528657920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"},"small":{"w":600,"h":600,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":8005732,"id_str":"8005732","name":"rmreese","screen_name":"rmreese1","location":"Denver, + CO","description":"ID, edtech, all around gerd (geek+nerd). Opinions are my + own and RTs are not endorsements. Pronouns: she\/they","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":564,"friends_count":293,"listed_count":271,"created_at":"Mon + Aug 06 23:59:29 +0000 2007","favourites_count":960,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9941,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2A2828","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8005732\/1573836551","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"091378","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 08 11:37:10 +0000 2019","id":1181533991662424070,"id_str":"1181533991662424070","full_text":"Really + enjoying the start of all the @AECT #inspiredme stories here & on FB. \n\nWhat\u2019s + yours?\nTake a minute to share. \u2665\ufe0f\n#aect19inspired https:\/\/t.co\/hrqqCvC3zL","truncated":false,"display_text_range":[0,141],"entities":{"hashtags":[{"text":"inspiredme","indices":[44,55]},{"text":"aect19inspired","indices":[126,141]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[38,43]}],"urls":[],"media":[{"id":1181533987694694400,"id_str":"1181533987694694400","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/EGWm5tqX0AAMB5R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGWm5tqX0AAMB5R.jpg","url":"https:\/\/t.co\/hrqqCvC3zL","display_url":"pic.twitter.com\/hrqqCvC3zL","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181533991662424070\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181533987694694400,"id_str":"1181533987694694400","indices":[142,165],"media_url":"http:\/\/pbs.twimg.com\/media\/EGWm5tqX0AAMB5R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGWm5tqX0AAMB5R.jpg","url":"https:\/\/t.co\/hrqqCvC3zL","display_url":"pic.twitter.com\/hrqqCvC3zL","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181533991662424070\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"189ef793a6dbbfc8","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/189ef793a6dbbfc8.json","place_type":"city","name":"Irmo","full_name":"Irmo, + SC","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-81.257113,34.04725],[-81.132587,34.04725],[-81.132587,34.170797],[-81.257113,34.170797]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 11 19:21:29 +0000 2019","id":1182738007025020928,"id_str":"1182738007025020928","full_text":"RT + @gsa_aect: Kelly Ross will facilitate the GSA session \u201cHow to Review + Manuscripts and Proposals.\u201d Dr. John Curry @dctrcurry and Dr. Andre\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]},{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[115,125]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2411486725,"id_str":"2411486725","name":"Andrew + Tawfik","screen_name":"andrewatawfik","location":"Memphis, TN","description":"Husband, + Father, Runner, Believer, Ed Tech Researcher at the University of Memphis, + Matt Murton Fan, Aspiring Hobbit","url":"https:\/\/t.co\/AhT8vHVE0Q","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AhT8vHVE0Q","expanded_url":"https:\/\/www.researchgate.net\/profile\/Andrew_Tawfik","display_url":"researchgate.net\/profile\/Andrew\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":596,"friends_count":898,"listed_count":24,"created_at":"Tue + Mar 25 20:08:19 +0000 2014","favourites_count":899,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1167,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/890710823290720257\/XfJ6f_n-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/890710823290720257\/XfJ6f_n-_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 10 00:30:05 +0000 2019","id":1182090892930408456,"id_str":"1182090892930408456","full_text":"Kelly + Ross will facilitate the GSA session \u201cHow to Review Manuscripts and Proposals.\u201d + Dr. John Curry @dctrcurry and Dr. Andrew Tawfik @andrewatawfik will present. + Please join the session on Tuesday, Oct 22 from 9:00 to 9:50 am in Conference + room 4. #aect19inspired #aectgsa https:\/\/t.co\/DBB2S2pxP6","truncated":false,"display_text_range":[0,273],"entities":{"hashtags":[{"text":"aect19inspired","indices":[249,264]},{"text":"aectgsa","indices":[265,273]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[101,111]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[134,148]}],"urls":[],"media":[{"id":1182090891156230145,"id_str":"1182090891156230145","indices":[274,297],"media_url":"http:\/\/pbs.twimg.com\/media\/EGehZwuXkAEOJky.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGehZwuXkAEOJky.jpg","url":"https:\/\/t.co\/DBB2S2pxP6","display_url":"pic.twitter.com\/DBB2S2pxP6","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182090892930408456\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182090891156230145,"id_str":"1182090891156230145","indices":[274,297],"media_url":"http:\/\/pbs.twimg.com\/media\/EGehZwuXkAEOJky.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGehZwuXkAEOJky.jpg","url":"https:\/\/t.co\/DBB2S2pxP6","display_url":"pic.twitter.com\/DBB2S2pxP6","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182090892930408456\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 09 11:29:12 +0000 2019","id":1181894376361996288,"id_str":"1181894376361996288","full_text":"RT + @gsa_aect: Come and join this panel discussion, moderated by Pauline Muljana + and Tugce Aldemir, on Oct 23 from 3:00 to 3:50 pm, at Conve\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 23:00:34 +0000 2019","id":1181705975230799875,"id_str":"1181705975230799875","full_text":"Come + and join this panel discussion, moderated by Pauline Muljana and Tugce Aldemir, + on Oct 23 from 3:00 to 3:50 pm, at Convention Center, Conference Rm 4. The + panelists will discuss why and how we embrace accessibility in order to meet + diverse learning needs. #aect19inspired https:\/\/t.co\/qyHaN7KLbO","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"aect19inspired","indices":[262,277]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181705973720858625,"id_str":"1181705973720858625","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","url":"https:\/\/t.co\/qyHaN7KLbO","display_url":"pic.twitter.com\/qyHaN7KLbO","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181705973720858625,"id_str":"1181705973720858625","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","url":"https:\/\/t.co\/qyHaN7KLbO","display_url":"pic.twitter.com\/qyHaN7KLbO","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Oct 06 16:31:34 +0000 2019","id":1180883304339259393,"id_str":"1180883304339259393","full_text":"If + you attend AECT convention this year at Las Vegas, check out the birds of + a feather session. This is a great opportunity to have rich, fruitful discussion + about this timely and relevant topic, UDL. #aect19 Click the following link + to learn more:\nhttps:\/\/t.co\/EOcLKnFQth","truncated":false,"display_text_range":[0,273],"entities":{"hashtags":[{"text":"aect19","indices":[201,208]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/EOcLKnFQth","expanded_url":"https:\/\/m.facebook.com\/groups\/100744850679?view=permalink&id=10157823384085680&sfnsn=mo","display_url":"m.facebook.com\/groups\/1007448\u2026","indices":[250,273]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"36ac79e68ace76e4","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/36ac79e68ace76e4.json","place_type":"city","name":"Rancho + Cucamonga","full_name":"Rancho Cucamonga, CA","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-117.637862,34.077184],[-117.4864431,34.077184],[-117.4864431,34.166156],[-117.637862,34.166156]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 09 18:18:11 +0000 2019","id":1181997301855854592,"id_str":"1181997301855854592","full_text":"DDL-MEMBERSHIP + MEETING DURING THE AECT ANNUAL CONFERENCE WILL BE HELD:\nThu, Oct 24, 12:30 + to 1:50pm, Convention Center, Pavilion 10\nCome meet your division leaders, + spend time with colleagues, win prizes! #AECTDDL #aect19inspired","truncated":false,"display_text_range":[0,230],"entities":{"hashtags":[{"text":"AECTDDL","indices":[206,214]},{"text":"aect19inspired","indices":[215,230]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1088189033266798598,"id_str":"1088189033266798598","name":"AECT + Division of Distance Learning","screen_name":"aectddl","location":"","description":"The + Division of Distance Learning is a special interest group of the Association + for Educational Communications and Technology (AECT).","url":"https:\/\/t.co\/Rg9uXQTkSM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Rg9uXQTkSM","expanded_url":"https:\/\/aect.org\/ddl.php","display_url":"aect.org\/ddl.php","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":861,"friends_count":482,"listed_count":6,"created_at":"Wed + Jan 23 21:37:37 +0000 2019","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088189033266798598\/1548280679","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 08 21:25:04 +0000 2019","id":1181681944762830848,"id_str":"1181681944762830848","full_text":"RT + @rmreese1: DDL-Membership Meeting during the AECT annual conference will be + held:\nThu, Oct 24, 12:30 to 1:50pm, Convention Center, Pavil\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rmreese1","name":"rmreese","id":8005732,"id_str":"8005732","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212784618,"id_str":"212784618","name":"Sandra + Annette Rogers, PhD","screen_name":"teacherrogers","location":"Gulf Shores, + AL USA","description":"Instructional Designer, UC Berkeley | Author | Content + Developer | Researcher | Trainer | TPT | Se habla Espa\u00f1ol","url":"https:\/\/t.co\/A754M7ckVH","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/A754M7ckVH","expanded_url":"https:\/\/teacherrogers.wordpress.com\/","display_url":"teacherrogers.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1462,"friends_count":4212,"listed_count":68,"created_at":"Sun + Nov 07 01:47:29 +0000 2010","favourites_count":4701,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10742,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FBEDD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1417209323210555395\/kkV_u2kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212784618\/1564631637","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30403F","profile_text_color":"A3424D","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 18:28:21 +0000 2019","id":1181637470951108608,"id_str":"1181637470951108608","full_text":"DDL-Membership + Meeting during the AECT annual conference will be held:\nThu, Oct 24, 12:30 + to 1:50pm, Convention Center, Pavilion 10. Come meet your division leaders, + spend time with colleagues, win prizes! #aect19inspired https:\/\/t.co\/kUpmTUF7Pn","truncated":false,"display_text_range":[0,221],"entities":{"hashtags":[{"text":"aect19inspired","indices":[206,221]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181637466635169792,"id_str":"1181637466635169792","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EGYFA-wU8AAh9uj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGYFA-wU8AAh9uj.jpg","url":"https:\/\/t.co\/kUpmTUF7Pn","display_url":"pic.twitter.com\/kUpmTUF7Pn","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1181637470951108608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181637466635169792,"id_str":"1181637466635169792","indices":[222,245],"media_url":"http:\/\/pbs.twimg.com\/media\/EGYFA-wU8AAh9uj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGYFA-wU8AAh9uj.jpg","url":"https:\/\/t.co\/kUpmTUF7Pn","display_url":"pic.twitter.com\/kUpmTUF7Pn","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1181637470951108608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1152,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":8005732,"id_str":"8005732","name":"rmreese","screen_name":"rmreese1","location":"Denver, + CO","description":"ID, edtech, all around gerd (geek+nerd). Opinions are my + own and RTs are not endorsements. Pronouns: she\/they","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":564,"friends_count":293,"listed_count":271,"created_at":"Mon + Aug 06 23:59:29 +0000 2007","favourites_count":960,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9941,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2A2828","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8005732\/1573836551","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"091378","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 07 22:39:14 +0000 2019","id":1181338222011568129,"id_str":"1181338222011568129","full_text":"RT + @dctrcurry: Shout out to @kolorkid (Heather Leary) for being someone who makes + me feel #aect19inspired. Her positive gratitude each day\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[90,105]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[3,13]},{"screen_name":"kolorkid","name":"Dr. + Heather Leary","id":14669702,"id_str":"14669702","indices":[28,37]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 07 22:07:16 +0000 2019","id":1181330176044482560,"id_str":"1181330176044482560","full_text":"Shout + out to @kolorkid (Heather Leary) for being someone who makes me feel #aect19inspired. Her + positive gratitude each day on social media brightens my day and helps me + keep perspective. https:\/\/t.co\/jrnUkWDP5m","truncated":false,"display_text_range":[0,188],"entities":{"hashtags":[{"text":"aect19inspired","indices":[75,90]}],"symbols":[],"user_mentions":[{"screen_name":"kolorkid","name":"Dr. + Heather Leary","id":14669702,"id_str":"14669702","indices":[13,22]}],"urls":[],"media":[{"id":1181330172596776960,"id_str":"1181330172596776960","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EGTtiHQU8AAjVhp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGTtiHQU8AAjVhp.jpg","url":"https:\/\/t.co\/jrnUkWDP5m","display_url":"pic.twitter.com\/jrnUkWDP5m","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181330176044482560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181330172596776960,"id_str":"1181330172596776960","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EGTtiHQU8AAjVhp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGTtiHQU8AAjVhp.jpg","url":"https:\/\/t.co\/jrnUkWDP5m","display_url":"pic.twitter.com\/jrnUkWDP5m","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181330176044482560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 11 23:20:24 +0000 2019","id":1182798132683399168,"id_str":"1182798132683399168","full_text":"RT + @dctrcurry: We''re almost there! @michaelmgrant and I are looking forward + to seeing everyone at @AECT #aect19inspired https:\/\/t.co\/BfDCU\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[105,120]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[3,13]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[36,50]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[99,104]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 11 12:09:22 +0000 2019","id":1182629259170287620,"id_str":"1182629259170287620","full_text":"We''re + almost there! @michaelmgrant and I are looking forward to seeing everyone + at @AECT #aect19inspired https:\/\/t.co\/BfDCUGWoya","truncated":false,"display_text_range":[0,105],"entities":{"hashtags":[{"text":"aect19inspired","indices":[90,105]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[21,35]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[84,89]}],"urls":[],"media":[{"id":1182629256083300352,"id_str":"1182629256083300352","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EGmLCuXUYAABEQi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGmLCuXUYAABEQi.jpg","url":"https:\/\/t.co\/BfDCUGWoya","display_url":"pic.twitter.com\/BfDCUGWoya","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1182629259170287620\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182629256083300352,"id_str":"1182629256083300352","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/EGmLCuXUYAABEQi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGmLCuXUYAABEQi.jpg","url":"https:\/\/t.co\/BfDCUGWoya","display_url":"pic.twitter.com\/BfDCUGWoya","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1182629259170287620\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 08 19:01:04 +0000 2019","id":1181645703216427010,"id_str":"1181645703216427010","full_text":"Thanks + Beth Simunich @bsimunich and Amy Grincewicz for a super interesting webinar + \"Best Practices for Exploring Culturally Responsive Teaching and Design + in the Online Environment\" ! #aect19inspired","truncated":false,"display_text_range":[0,200],"entities":{"hashtags":[{"text":"aect19inspired","indices":[185,200]}],"symbols":[],"user_mentions":[{"screen_name":"bsimunich","name":"Bethany + Simunich, PhD","id":18631554,"id_str":"18631554","indices":[21,31]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28836047,"id_str":"28836047","name":"Sylvia + Rogers","screen_name":"srogidd","location":"Auburn, AL","description":"PhD + in Instructional Design, I work as an Instructional Designer and Consultant + for Scholarship of Teaching and Learning at the Harrison School of Pharmacy.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":550,"friends_count":1089,"listed_count":18,"created_at":"Sat + Apr 04 17:47:27 +0000 2009","favourites_count":12191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2400,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631591547310592000\/xhxXlhMg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28836047\/1439418186","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 08 11:39:59 +0000 2019","id":1181534700386574336,"id_str":"1181534700386574336","full_text":"@nicolapallitt + @aectclt @akesha @tutaleni @amy_c_bradshaw @LiuJuhong @srogidd @eAngelaBenson + @tadousay @jweeble @AECT @emergeAfrica Just lovely \ud83d\udc95. Thanks for + sharing! \n#aect19inspired","truncated":false,"display_text_range":[132,183],"entities":{"hashtags":[{"text":"aect19inspired","indices":[168,183]}],"symbols":[],"user_mentions":[{"screen_name":"nicolapallitt","name":"Dr + Nicola Pallitt","id":118368334,"id_str":"118368334","indices":[0,14]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[15,23]},{"screen_name":"akesha","name":"Dr. + Akesha Horton","id":18974152,"id_str":"18974152","indices":[24,31]},{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[32,41]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[42,57]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[58,68]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[69,77]},{"screen_name":"eAngelaBenson","name":"Angela + Benson","id":15969744,"id_str":"15969744","indices":[78,92]},{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[93,102]},{"screen_name":"jweeble","name":"Jennifer + Weible","id":28419864,"id_str":"28419864","indices":[103,111]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[112,117]},{"screen_name":"emergeAfrica","name":"e\/merge + Africa","id":582713322,"id_str":"582713322","indices":[118,131]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1181418289890766849,"in_reply_to_status_id_str":"1181418289890766849","in_reply_to_user_id":118368334,"in_reply_to_user_id_str":"118368334","in_reply_to_screen_name":"nicolapallitt","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"189ef793a6dbbfc8","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/189ef793a6dbbfc8.json","place_type":"city","name":"Irmo","full_name":"Irmo, + SC","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-81.257113,34.04725],[-81.132587,34.04725],[-81.132587,34.170797],[-81.257113,34.170797]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 08 10:51:29 +0000 2019","id":1181522496400613377,"id_str":"1181522496400613377","full_text":"RT + @rmreese1: D&D and DDL BOAF (birds of a feather) - This session will bring + together researchers and practitioners working in higher educ\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rmreese1","name":"rmreese","id":8005732,"id_str":"8005732","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 07 22:44:16 +0000 2019","id":1181339485528657920,"id_str":"1181339485528657920","full_text":"D&D + and DDL BOAF (birds of a feather) - This session will bring together researchers + and practitioners working in higher education to discuss the challenges with + promoting universal design practices in online learning environments. \nWednesday, + October 23: 5-550pm #aect19inspired https:\/\/t.co\/dGxQxZhvje","truncated":false,"display_text_range":[0,283],"entities":{"hashtags":[{"text":"aect19inspired","indices":[268,283]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181339482022240258,"id_str":"1181339482022240258","indices":[284,307],"media_url":"http:\/\/pbs.twimg.com\/media\/EGT1__kUYAIGymg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGT1__kUYAIGymg.jpg","url":"https:\/\/t.co\/dGxQxZhvje","display_url":"pic.twitter.com\/dGxQxZhvje","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1181339485528657920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"},"small":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181339482022240258,"id_str":"1181339482022240258","indices":[284,307],"media_url":"http:\/\/pbs.twimg.com\/media\/EGT1__kUYAIGymg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGT1__kUYAIGymg.jpg","url":"https:\/\/t.co\/dGxQxZhvje","display_url":"pic.twitter.com\/dGxQxZhvje","expanded_url":"https:\/\/twitter.com\/rmreese1\/status\/1181339485528657920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"},"small":{"w":600,"h":600,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":8005732,"id_str":"8005732","name":"rmreese","screen_name":"rmreese1","location":"Denver, + CO","description":"ID, edtech, all around gerd (geek+nerd). Opinions are my + own and RTs are not endorsements. Pronouns: she\/they","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":564,"friends_count":293,"listed_count":271,"created_at":"Mon + Aug 06 23:59:29 +0000 2007","favourites_count":960,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":9941,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2A2828","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1195383250262249472\/Qa4BR8J8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8005732\/1573836551","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"091378","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 09 16:57:19 +0000 2019","id":1181976947464622080,"id_str":"1181976947464622080","full_text":"The + Doctor knows how many days until #aect19inspired. @michaelmgrant and I are + wondering what workshops you signed up for.\n\nSee you soon! https:\/\/t.co\/oiWuKPIGnZ","truncated":false,"display_text_range":[0,138],"entities":{"hashtags":[{"text":"aect19inspired","indices":[37,52]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[55,69]}],"urls":[],"media":[{"id":1181976931408859136,"id_str":"1181976931408859136","indices":[139,162],"media_url":"http:\/\/pbs.twimg.com\/media\/EGc5wblU0AACyF4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGc5wblU0AACyF4.jpg","url":"https:\/\/t.co\/oiWuKPIGnZ","display_url":"pic.twitter.com\/oiWuKPIGnZ","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181976947464622080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":630,"h":630,"resize":"fit"},"medium":{"w":630,"h":630,"resize":"fit"},"large":{"w":630,"h":630,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181976931408859136,"id_str":"1181976931408859136","indices":[139,162],"media_url":"http:\/\/pbs.twimg.com\/media\/EGc5wblU0AACyF4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGc5wblU0AACyF4.jpg","url":"https:\/\/t.co\/oiWuKPIGnZ","display_url":"pic.twitter.com\/oiWuKPIGnZ","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181976947464622080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":630,"h":630,"resize":"fit"},"medium":{"w":630,"h":630,"resize":"fit"},"large":{"w":630,"h":630,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 09 17:08:28 +0000 2019","id":1181979755840712716,"id_str":"1181979755840712716","full_text":"RT + @dctrcurry: The Doctor knows how many days until #aect19inspired. @michaelmgrant + and I are wondering what workshops you signed up for.\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"aect19inspired","indices":[52,67]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[3,13]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[70,84]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 09 16:57:19 +0000 2019","id":1181976947464622080,"id_str":"1181976947464622080","full_text":"The + Doctor knows how many days until #aect19inspired. @michaelmgrant and I are + wondering what workshops you signed up for.\n\nSee you soon! https:\/\/t.co\/oiWuKPIGnZ","truncated":false,"display_text_range":[0,138],"entities":{"hashtags":[{"text":"aect19inspired","indices":[37,52]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[55,69]}],"urls":[],"media":[{"id":1181976931408859136,"id_str":"1181976931408859136","indices":[139,162],"media_url":"http:\/\/pbs.twimg.com\/media\/EGc5wblU0AACyF4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGc5wblU0AACyF4.jpg","url":"https:\/\/t.co\/oiWuKPIGnZ","display_url":"pic.twitter.com\/oiWuKPIGnZ","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181976947464622080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":630,"h":630,"resize":"fit"},"medium":{"w":630,"h":630,"resize":"fit"},"large":{"w":630,"h":630,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181976931408859136,"id_str":"1181976931408859136","indices":[139,162],"media_url":"http:\/\/pbs.twimg.com\/media\/EGc5wblU0AACyF4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGc5wblU0AACyF4.jpg","url":"https:\/\/t.co\/oiWuKPIGnZ","display_url":"pic.twitter.com\/oiWuKPIGnZ","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181976947464622080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":630,"h":630,"resize":"fit"},"medium":{"w":630,"h":630,"resize":"fit"},"large":{"w":630,"h":630,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 08 02:07:05 +0000 2019","id":1181390526777626624,"id_str":"1181390526777626624","full_text":"CLT + folks! Now it is your turn to tell us about your story! Who has inspired you? + #aect19inspired #inspiredme @akesha @tutaleni @amy_c_bradshaw @LiuJuhong @srogidd + https:\/\/t.co\/nH4Yt4pSRo","truncated":false,"display_text_range":[0,163],"entities":{"hashtags":[{"text":"aect19inspired","indices":[82,97]},{"text":"inspiredme","indices":[98,109]}],"symbols":[],"user_mentions":[{"screen_name":"akesha","name":"Dr. + Akesha Horton \ud83d\udc18\ud83d\udd3a\u26aa\ufe0f\ud83d\udd34","id":18974152,"id_str":"18974152","indices":[110,117]},{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[118,127]},{"screen_name":"amy_c_bradshaw","name":"Amy + C Bradshaw","id":214249174,"id_str":"214249174","indices":[128,143]},{"screen_name":"liujuhong","name":"junhong + liujuhong","id":1464957645517819908,"id_str":"1464957645517819908","indices":[144,154]},{"screen_name":"srogidd","name":"Sylvia + Rogers","id":28836047,"id_str":"28836047","indices":[155,163]}],"urls":[],"media":[{"id":1181390523279577091,"id_str":"1181390523279577091","indices":[164,187],"media_url":"http:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","url":"https:\/\/t.co\/nH4Yt4pSRo","display_url":"pic.twitter.com\/nH4Yt4pSRo","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1181390526777626624\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181390523279577091,"id_str":"1181390523279577091","indices":[164,187],"media_url":"http:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGUka_EXkAMEUzK.jpg","url":"https:\/\/t.co\/nH4Yt4pSRo","display_url":"pic.twitter.com\/nH4Yt4pSRo","expanded_url":"https:\/\/twitter.com\/aectclt\/status\/1181390526777626624\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905212118127042560,"id_str":"905212118127042560","name":"AECT_CLT","screen_name":"aectclt","location":"","description":"AECT + Division Exploring culture, learning, and technology with particular emphases + on championing inclusiveness and equity. Conversation at #aectclt","url":"https:\/\/t.co\/yc2CmqxA5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yc2CmqxA5M","expanded_url":"https:\/\/sites.google.com\/view\/clt-home","display_url":"sites.google.com\/view\/clt-home","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":26,"listed_count":4,"created_at":"Tue + Sep 05 23:32:41 +0000 2017","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":486,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905212118127042560\/1506184813","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 08 02:51:33 +0000 2019","id":1181401717642088450,"id_str":"1181401717642088450","full_text":"RT + @AECT: #AECT19 is in two weeks! What advice do you have for first-time attendees? + https:\/\/t.co\/J0qG0EHSZB","truncated":false,"display_text_range":[0,108],"entities":{"hashtags":[{"text":"AECT19","indices":[10,17]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[],"media":[{"id":1181171686013652996,"id_str":"1181171686013652996","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","url":"https:\/\/t.co\/J0qG0EHSZB","display_url":"pic.twitter.com\/J0qG0EHSZB","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1181171699070521344\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}},"source_status_id":1181171699070521344,"source_status_id_str":"1181171699070521344","source_user_id":12030342,"source_user_id_str":"12030342"}]},"extended_entities":{"media":[{"id":1181171686013652996,"id_str":"1181171686013652996","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","url":"https:\/\/t.co\/J0qG0EHSZB","display_url":"pic.twitter.com\/J0qG0EHSZB","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1181171699070521344\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}},"source_status_id":1181171699070521344,"source_status_id_str":"1181171699070521344","source_user_id":12030342,"source_user_id_str":"12030342","video_info":{"aspect_ratio":[320,179],"duration_millis":4533,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1181171686013652996\/pu\/pl\/pzAccHqFW19IL_32.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1181171686013652996\/pu\/vid\/482x270\/PI1f54Nm43VlCNE6.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1181171686013652996\/pu\/vid\/640x358\/52fMn1xMOKbvgKy0.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false,"source_user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]}}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 07 11:37:32 +0000 2019","id":1181171699070521344,"id_str":"1181171699070521344","full_text":"#AECT19 + is in two weeks! What advice do you have for first-time attendees? https:\/\/t.co\/J0qG0EHSZB","truncated":false,"display_text_range":[0,74],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181171686013652996,"id_str":"1181171686013652996","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","url":"https:\/\/t.co\/J0qG0EHSZB","display_url":"pic.twitter.com\/J0qG0EHSZB","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1181171699070521344\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181171686013652996,"id_str":"1181171686013652996","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","url":"https:\/\/t.co\/J0qG0EHSZB","display_url":"pic.twitter.com\/J0qG0EHSZB","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1181171699070521344\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}},"video_info":{"aspect_ratio":[320,179],"duration_millis":4533,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1181171686013652996\/pu\/pl\/pzAccHqFW19IL_32.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1181171686013652996\/pu\/vid\/482x270\/PI1f54Nm43VlCNE6.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1181171686013652996\/pu\/vid\/640x358\/52fMn1xMOKbvgKy0.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 11 00:07:13 +0000 2019","id":1182447526957502464,"id_str":"1182447526957502464","full_text":"RT + @aectddl: DDL INSPIRE! FORD THE RIVER -Thu, Oct 24, 2:00 to 2:50pm, Convention + Center, Pavilion 10\nParticipants (with devices) will leav\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[3,11]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 10 22:54:32 +0000 2019","id":1182429235257970694,"id_str":"1182429235257970694","full_text":"DDL + INSPIRE! FORD THE RIVER -Thu, Oct 24, 2:00 to 2:50pm, Convention Center, Pavilion + 10\nParticipants (with devices) will leave comfortable Proprietary Textville + to set off on a bumpy, cross-content journey toward the lush, fertile soil + of the OER valley. #aect19inspired https:\/\/t.co\/Oepaeyygw6","truncated":false,"display_text_range":[0,271],"entities":{"hashtags":[{"text":"aect19inspired","indices":[256,271]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1182429229503438848,"id_str":"1182429229503438848","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EGjVHpSXYAAa4yW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGjVHpSXYAAa4yW.jpg","url":"https:\/\/t.co\/Oepaeyygw6","display_url":"pic.twitter.com\/Oepaeyygw6","expanded_url":"https:\/\/twitter.com\/aectddl\/status\/1182429235257970694\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182429229503438848,"id_str":"1182429229503438848","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EGjVHpSXYAAa4yW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGjVHpSXYAAa4yW.jpg","url":"https:\/\/t.co\/Oepaeyygw6","display_url":"pic.twitter.com\/Oepaeyygw6","expanded_url":"https:\/\/twitter.com\/aectddl\/status\/1182429235257970694\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1088189033266798598,"id_str":"1088189033266798598","name":"AECT + Division of Distance Learning","screen_name":"aectddl","location":"","description":"The + Division of Distance Learning is a special interest group of the Association + for Educational Communications and Technology (AECT).","url":"https:\/\/t.co\/Rg9uXQTkSM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Rg9uXQTkSM","expanded_url":"https:\/\/aect.org\/ddl.php","display_url":"aect.org\/ddl.php","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":861,"friends_count":482,"listed_count":6,"created_at":"Wed + Jan 23 21:37:37 +0000 2019","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088189033266798598\/1548280679","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 08 22:50:23 +0000 2019","id":1181703415799246848,"id_str":"1181703415799246848","full_text":"Are + you going through the challenging process of narrowing down your dissertation + topic? Get inspired by our panelists: Drs. @aac3, @eromerohall, @robmoore3, + and @tintinluo. #aect19inspired #aect19 https:\/\/t.co\/AW94npWD9M","truncated":false,"display_text_range":[0,198],"entities":{"hashtags":[{"text":"aect19inspired","indices":[175,190]},{"text":"aect19","indices":[191,198]}],"symbols":[],"user_mentions":[{"screen_name":"aac3","name":"Dr. + ali carr-chellman","id":27413768,"id_str":"27413768","indices":[125,130]},{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[132,144]},{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[146,156]},{"screen_name":"tintinluo","name":"Tian + Luo","id":29474883,"id_str":"29474883","indices":[162,172]}],"urls":[{"url":"https:\/\/t.co\/AW94npWD9M","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181698313978036224","display_url":"twitter.com\/gsa_aect\/statu\u2026","indices":[199,222]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1181698313978036224,"quoted_status_id_str":"1181698313978036224","quoted_status_permalink":{"url":"https:\/\/t.co\/AW94npWD9M","expanded":"https:\/\/twitter.com\/gsa_aect\/status\/1181698313978036224","display":"twitter.com\/gsa_aect\/statu\u2026"},"quoted_status":{"created_at":"Tue + Oct 08 22:30:07 +0000 2019","id":1181698313978036224,"id_str":"1181698313978036224","full_text":"Come + and join this panel discussion, moderated by Pauline Muljana and Yam Chaivisit, + on Oct 23 from 11:00 to 11:50 am, at Convention Center Conference Rm 4. The + panelists will discuss their experiences and offer advice as how to be a productive + graduate student. #aect19inspired https:\/\/t.co\/Ul5aWDBmia","truncated":false,"display_text_range":[0,278],"entities":{"hashtags":[{"text":"aect19inspired","indices":[263,278]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181698312258428928,"id_str":"1181698312258428928","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EGY8WqXXoAAEsWx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGY8WqXXoAAEsWx.jpg","url":"https:\/\/t.co\/Ul5aWDBmia","display_url":"pic.twitter.com\/Ul5aWDBmia","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181698313978036224\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181698312258428928,"id_str":"1181698312258428928","indices":[279,302],"media_url":"http:\/\/pbs.twimg.com\/media\/EGY8WqXXoAAEsWx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGY8WqXXoAAEsWx.jpg","url":"https:\/\/t.co\/Ul5aWDBmia","display_url":"pic.twitter.com\/Ul5aWDBmia","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181698313978036224\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":1,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 07 13:52:20 +0000 2019","id":1181205621141463040,"id_str":"1181205621141463040","full_text":"@dctrcurry + How many days till @AECT #aect19inspired ?","truncated":false,"display_text_range":[0,53],"entities":{"hashtags":[{"text":"aect19inspired","indices":[36,51]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[0,10]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[30,35]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":14116271,"in_reply_to_user_id_str":"14116271","in_reply_to_screen_name":"dctrcurry","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 10 00:30:05 +0000 2019","id":1182090892930408456,"id_str":"1182090892930408456","full_text":"Kelly + Ross will facilitate the GSA session \u201cHow to Review Manuscripts and Proposals.\u201d + Dr. John Curry @dctrcurry and Dr. Andrew Tawfik @andrewatawfik will present. + Please join the session on Tuesday, Oct 22 from 9:00 to 9:50 am in Conference + room 4. #aect19inspired #aectgsa https:\/\/t.co\/DBB2S2pxP6","truncated":false,"display_text_range":[0,273],"entities":{"hashtags":[{"text":"aect19inspired","indices":[249,264]},{"text":"aectgsa","indices":[265,273]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[101,111]},{"screen_name":"andrewatawfik","name":"Andrew + Tawfik","id":2411486725,"id_str":"2411486725","indices":[134,148]}],"urls":[],"media":[{"id":1182090891156230145,"id_str":"1182090891156230145","indices":[274,297],"media_url":"http:\/\/pbs.twimg.com\/media\/EGehZwuXkAEOJky.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGehZwuXkAEOJky.jpg","url":"https:\/\/t.co\/DBB2S2pxP6","display_url":"pic.twitter.com\/DBB2S2pxP6","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182090892930408456\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182090891156230145,"id_str":"1182090891156230145","indices":[274,297],"media_url":"http:\/\/pbs.twimg.com\/media\/EGehZwuXkAEOJky.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGehZwuXkAEOJky.jpg","url":"https:\/\/t.co\/DBB2S2pxP6","display_url":"pic.twitter.com\/DBB2S2pxP6","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1182090892930408456\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 09 20:48:10 +0000 2019","id":1182035045948776449,"id_str":"1182035045948776449","full_text":"RT + @dctrcurry: The Doctor knows how many days until #aect19inspired. @michaelmgrant + and I are wondering what workshops you signed up for.\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"aect19inspired","indices":[52,67]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[3,13]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[70,84]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 09 16:57:19 +0000 2019","id":1181976947464622080,"id_str":"1181976947464622080","full_text":"The + Doctor knows how many days until #aect19inspired. @michaelmgrant and I are + wondering what workshops you signed up for.\n\nSee you soon! https:\/\/t.co\/oiWuKPIGnZ","truncated":false,"display_text_range":[0,138],"entities":{"hashtags":[{"text":"aect19inspired","indices":[37,52]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[55,69]}],"urls":[],"media":[{"id":1181976931408859136,"id_str":"1181976931408859136","indices":[139,162],"media_url":"http:\/\/pbs.twimg.com\/media\/EGc5wblU0AACyF4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGc5wblU0AACyF4.jpg","url":"https:\/\/t.co\/oiWuKPIGnZ","display_url":"pic.twitter.com\/oiWuKPIGnZ","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181976947464622080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":630,"h":630,"resize":"fit"},"medium":{"w":630,"h":630,"resize":"fit"},"large":{"w":630,"h":630,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181976931408859136,"id_str":"1181976931408859136","indices":[139,162],"media_url":"http:\/\/pbs.twimg.com\/media\/EGc5wblU0AACyF4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGc5wblU0AACyF4.jpg","url":"https:\/\/t.co\/oiWuKPIGnZ","display_url":"pic.twitter.com\/oiWuKPIGnZ","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181976947464622080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":630,"h":630,"resize":"fit"},"medium":{"w":630,"h":630,"resize":"fit"},"large":{"w":630,"h":630,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 09 15:45:59 +0000 2019","id":1181958999651934208,"id_str":"1181958999651934208","full_text":"@soniastic + Regardless of the outcome, you are inspiring me! #aect19 #aect19inspired","truncated":false,"display_text_range":[11,83],"entities":{"hashtags":[{"text":"aect19","indices":[60,67]},{"text":"aect19inspired","indices":[68,83]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 10 01:57:34 +0000 2019","id":1182112906999144448,"id_str":"1182112906999144448","full_text":"RT + @roycekimmons: Poster ready for #aect19. Now I just need to start on those + presentations... https:\/\/t.co\/vgnlj9qz37","truncated":false,"display_text_range":[0,118],"entities":{"hashtags":[{"text":"aect19","indices":[35,42]}],"symbols":[],"user_mentions":[{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[3,16]}],"urls":[],"media":[{"id":1182009169903112192,"id_str":"1182009169903112192","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","url":"https:\/\/t.co\/vgnlj9qz37","display_url":"pic.twitter.com\/vgnlj9qz37","expanded_url":"https:\/\/twitter.com\/roycekimmons\/status\/1182009173787045888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1800,"h":1277,"resize":"fit"},"small":{"w":680,"h":482,"resize":"fit"},"medium":{"w":1200,"h":851,"resize":"fit"}},"source_status_id":1182009173787045888,"source_status_id_str":"1182009173787045888","source_user_id":104967963,"source_user_id_str":"104967963"}]},"extended_entities":{"media":[{"id":1182009169903112192,"id_str":"1182009169903112192","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","url":"https:\/\/t.co\/vgnlj9qz37","display_url":"pic.twitter.com\/vgnlj9qz37","expanded_url":"https:\/\/twitter.com\/roycekimmons\/status\/1182009173787045888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1800,"h":1277,"resize":"fit"},"small":{"w":680,"h":482,"resize":"fit"},"medium":{"w":1200,"h":851,"resize":"fit"}},"source_status_id":1182009173787045888,"source_status_id_str":"1182009173787045888","source_user_id":104967963,"source_user_id_str":"104967963","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":9806452,"id_str":"9806452","name":"Matthew + Schmidt","screen_name":"matt_m_schmidt","location":"Gainesville, FL","description":"Editor-in-Chief + of Learner & User Experience Research. Read & share here: https:\/\/t.co\/nMBaOeqjpy","url":"https:\/\/t.co\/MQBbLAksSX","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/MQBbLAksSX","expanded_url":"http:\/\/matthewschmidt.info","display_url":"matthewschmidt.info","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/nMBaOeqjpy","expanded_url":"https:\/\/edtechbooks.org\/ux","display_url":"edtechbooks.org\/ux","indices":[74,97]}]}},"protected":false,"followers_count":668,"friends_count":404,"listed_count":17,"created_at":"Tue + Oct 30 21:35:53 +0000 2007","favourites_count":698,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":564,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1318224451142586368\/WnHoI5Xc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9806452\/1603124176","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 09 19:05:22 +0000 2019","id":1182009173787045888,"id_str":"1182009173787045888","full_text":"Poster + ready for #aect19. Now I just need to start on those presentations... https:\/\/t.co\/vgnlj9qz37","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"aect19","indices":[17,24]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1182009169903112192,"id_str":"1182009169903112192","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","url":"https:\/\/t.co\/vgnlj9qz37","display_url":"pic.twitter.com\/vgnlj9qz37","expanded_url":"https:\/\/twitter.com\/roycekimmons\/status\/1182009173787045888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1800,"h":1277,"resize":"fit"},"small":{"w":680,"h":482,"resize":"fit"},"medium":{"w":1200,"h":851,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182009169903112192,"id_str":"1182009169903112192","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","url":"https:\/\/t.co\/vgnlj9qz37","display_url":"pic.twitter.com\/vgnlj9qz37","expanded_url":"https:\/\/twitter.com\/roycekimmons\/status\/1182009173787045888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1800,"h":1277,"resize":"fit"},"small":{"w":680,"h":482,"resize":"fit"},"medium":{"w":1200,"h":851,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":104967963,"id_str":"104967963","name":"Royce + Kimmons","screen_name":"roycekimmons","location":"Provo, UT","description":"Associate + professor, BYU-IPT: openness, OER, tech in education, social media. https:\/\/t.co\/iktkhjAzCw + https:\/\/t.co\/vhHYSEYZSN https:\/\/t.co\/9E4HWYRF9R","url":"https:\/\/t.co\/KsbltQYZa0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KsbltQYZa0","expanded_url":"http:\/\/roycekimmons.com","display_url":"roycekimmons.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/iktkhjAzCw","expanded_url":"http:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[78,101]},{"url":"https:\/\/t.co\/vhHYSEYZSN","expanded_url":"http:\/\/equitypress.org","display_url":"equitypress.org","indices":[102,125]},{"url":"https:\/\/t.co\/9E4HWYRF9R","expanded_url":"http:\/\/edtechnica.org","display_url":"edtechnica.org","indices":[126,149]}]}},"protected":false,"followers_count":1430,"friends_count":2250,"listed_count":57,"created_at":"Thu + Jan 14 23:25:41 +0000 2010","favourites_count":930,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1841,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104967963\/1585782658","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"354770","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EDF0FF","profile_text_color":"1A1A1A","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":25,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 07 11:37:32 +0000 2019","id":1181171699070521344,"id_str":"1181171699070521344","full_text":"#AECT19 + is in two weeks! What advice do you have for first-time attendees? https:\/\/t.co\/J0qG0EHSZB","truncated":false,"display_text_range":[0,74],"entities":{"hashtags":[{"text":"AECT19","indices":[0,7]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181171686013652996,"id_str":"1181171686013652996","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","url":"https:\/\/t.co\/J0qG0EHSZB","display_url":"pic.twitter.com\/J0qG0EHSZB","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1181171699070521344\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181171686013652996,"id_str":"1181171686013652996","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1181171686013652996\/pu\/img\/ZdD8dTrs07OtXtMM.jpg","url":"https:\/\/t.co\/J0qG0EHSZB","display_url":"pic.twitter.com\/J0qG0EHSZB","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1181171699070521344\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":358,"resize":"fit"},"small":{"w":640,"h":358,"resize":"fit"},"medium":{"w":640,"h":358,"resize":"fit"}},"video_info":{"aspect_ratio":[320,179],"duration_millis":4533,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1181171686013652996\/pu\/pl\/pzAccHqFW19IL_32.m3u8?tag=10"},{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1181171686013652996\/pu\/vid\/482x270\/PI1f54Nm43VlCNE6.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1181171686013652996\/pu\/vid\/640x358\/52fMn1xMOKbvgKy0.mp4?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 10 11:45:49 +0000 2019","id":1182260945080524800,"id_str":"1182260945080524800","full_text":"RT + @aectddl: DDL-MEMBERSHIP MEETING DURING THE AECT ANNUAL CONFERENCE WILL BE + HELD:\nThu, Oct 24, 12:30 to 1:50pm, Convention Center, Pavili\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[3,11]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 09 18:18:11 +0000 2019","id":1181997301855854592,"id_str":"1181997301855854592","full_text":"DDL-MEMBERSHIP + MEETING DURING THE AECT ANNUAL CONFERENCE WILL BE HELD:\nThu, Oct 24, 12:30 + to 1:50pm, Convention Center, Pavilion 10\nCome meet your division leaders, + spend time with colleagues, win prizes! #AECTDDL #aect19inspired","truncated":false,"display_text_range":[0,230],"entities":{"hashtags":[{"text":"AECTDDL","indices":[206,214]},{"text":"aect19inspired","indices":[215,230]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1088189033266798598,"id_str":"1088189033266798598","name":"AECT + Division of Distance Learning","screen_name":"aectddl","location":"","description":"The + Division of Distance Learning is a special interest group of the Association + for Educational Communications and Technology (AECT).","url":"https:\/\/t.co\/Rg9uXQTkSM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Rg9uXQTkSM","expanded_url":"https:\/\/aect.org\/ddl.php","display_url":"aect.org\/ddl.php","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":861,"friends_count":482,"listed_count":6,"created_at":"Wed + Jan 23 21:37:37 +0000 2019","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088189033266798598\/1548280679","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 08 20:48:02 +0000 2019","id":1181672622830051330,"id_str":"1181672622830051330","full_text":"I''m + happy to finally share my #devlearn & #aect19 schedule. I have 5 presentations + across 2 conferences + winning an award :) I want to see you so please say + hello if you see me bouncing between the two conferences :) #elearning #conferences + https:\/\/t.co\/TK59Hj1tqr https:\/\/t.co\/CCKAh8GOae","truncated":false,"display_text_range":[0,269],"entities":{"hashtags":[{"text":"devlearn","indices":[30,39]},{"text":"aect19","indices":[46,53]},{"text":"elearning","indices":[222,232]},{"text":"conferences","indices":[233,245]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/TK59Hj1tqr","expanded_url":"https:\/\/buff.ly\/35hhlex","display_url":"buff.ly\/35hhlex","indices":[246,269]}],"media":[{"id":1181672621252976641,"id_str":"1181672621252976641","indices":[270,293],"media_url":"http:\/\/pbs.twimg.com\/media\/EGYk_P6WoAEvWzO.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGYk_P6WoAEvWzO.png","url":"https:\/\/t.co\/CCKAh8GOae","display_url":"pic.twitter.com\/CCKAh8GOae","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1181672622830051330\/photo\/1","type":"photo","sizes":{"medium":{"w":300,"h":206,"resize":"fit"},"small":{"w":300,"h":206,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":300,"h":206,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181672621252976641,"id_str":"1181672621252976641","indices":[270,293],"media_url":"http:\/\/pbs.twimg.com\/media\/EGYk_P6WoAEvWzO.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGYk_P6WoAEvWzO.png","url":"https:\/\/t.co\/CCKAh8GOae","display_url":"pic.twitter.com\/CCKAh8GOae","expanded_url":"https:\/\/twitter.com\/caranorth11\/status\/1181672622830051330\/photo\/1","type":"photo","sizes":{"medium":{"w":300,"h":206,"resize":"fit"},"small":{"w":300,"h":206,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":300,"h":206,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/buffer.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 10 02:23:13 +0000 2019","id":1182119362523627520,"id_str":"1182119362523627520","full_text":"RT + @roycekimmons: Poster ready for #aect19. Now I just need to start on those + presentations... https:\/\/t.co\/vgnlj9qz37","truncated":false,"display_text_range":[0,118],"entities":{"hashtags":[{"text":"aect19","indices":[35,42]}],"symbols":[],"user_mentions":[{"screen_name":"roycekimmons","name":"Royce + Kimmons","id":104967963,"id_str":"104967963","indices":[3,16]}],"urls":[],"media":[{"id":1182009169903112192,"id_str":"1182009169903112192","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","url":"https:\/\/t.co\/vgnlj9qz37","display_url":"pic.twitter.com\/vgnlj9qz37","expanded_url":"https:\/\/twitter.com\/roycekimmons\/status\/1182009173787045888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1800,"h":1277,"resize":"fit"},"small":{"w":680,"h":482,"resize":"fit"},"medium":{"w":1200,"h":851,"resize":"fit"}},"source_status_id":1182009173787045888,"source_status_id_str":"1182009173787045888","source_user_id":104967963,"source_user_id_str":"104967963"}]},"extended_entities":{"media":[{"id":1182009169903112192,"id_str":"1182009169903112192","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","url":"https:\/\/t.co\/vgnlj9qz37","display_url":"pic.twitter.com\/vgnlj9qz37","expanded_url":"https:\/\/twitter.com\/roycekimmons\/status\/1182009173787045888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1800,"h":1277,"resize":"fit"},"small":{"w":680,"h":482,"resize":"fit"},"medium":{"w":1200,"h":851,"resize":"fit"}},"source_status_id":1182009173787045888,"source_status_id_str":"1182009173787045888","source_user_id":104967963,"source_user_id_str":"104967963","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21066932,"id_str":"21066932","name":"MTroyMartin","screen_name":"MTroyMartin","location":"Orem, + UT","description":"Utah Valley University Associate VP\/CTO","url":"https:\/\/t.co\/XjxFUCo093","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/XjxFUCo093","expanded_url":"https:\/\/uvu.edu","display_url":"uvu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":149,"friends_count":400,"listed_count":16,"created_at":"Tue + Feb 17 05:27:12 +0000 2009","favourites_count":323,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1331,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1295084029662781440\/rxqe5TOc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1295084029662781440\/rxqe5TOc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21066932\/1416517374","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 09 19:05:22 +0000 2019","id":1182009173787045888,"id_str":"1182009173787045888","full_text":"Poster + ready for #aect19. Now I just need to start on those presentations... https:\/\/t.co\/vgnlj9qz37","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"aect19","indices":[17,24]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1182009169903112192,"id_str":"1182009169903112192","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","url":"https:\/\/t.co\/vgnlj9qz37","display_url":"pic.twitter.com\/vgnlj9qz37","expanded_url":"https:\/\/twitter.com\/roycekimmons\/status\/1182009173787045888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1800,"h":1277,"resize":"fit"},"small":{"w":680,"h":482,"resize":"fit"},"medium":{"w":1200,"h":851,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182009169903112192,"id_str":"1182009169903112192","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGdXE9VUUAAWyYs.jpg","url":"https:\/\/t.co\/vgnlj9qz37","display_url":"pic.twitter.com\/vgnlj9qz37","expanded_url":"https:\/\/twitter.com\/roycekimmons\/status\/1182009173787045888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1800,"h":1277,"resize":"fit"},"small":{"w":680,"h":482,"resize":"fit"},"medium":{"w":1200,"h":851,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":104967963,"id_str":"104967963","name":"Royce + Kimmons","screen_name":"roycekimmons","location":"Provo, UT","description":"Associate + professor, BYU-IPT: openness, OER, tech in education, social media. https:\/\/t.co\/iktkhjAzCw + https:\/\/t.co\/vhHYSEYZSN https:\/\/t.co\/9E4HWYRF9R","url":"https:\/\/t.co\/KsbltQYZa0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/KsbltQYZa0","expanded_url":"http:\/\/roycekimmons.com","display_url":"roycekimmons.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/iktkhjAzCw","expanded_url":"http:\/\/edtechbooks.org","display_url":"edtechbooks.org","indices":[78,101]},{"url":"https:\/\/t.co\/vhHYSEYZSN","expanded_url":"http:\/\/equitypress.org","display_url":"equitypress.org","indices":[102,125]},{"url":"https:\/\/t.co\/9E4HWYRF9R","expanded_url":"http:\/\/edtechnica.org","display_url":"edtechnica.org","indices":[126,149]}]}},"protected":false,"followers_count":1430,"friends_count":2250,"listed_count":57,"created_at":"Thu + Jan 14 23:25:41 +0000 2010","favourites_count":930,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1841,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1255911402822201344\/KenKNSgE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104967963\/1585782658","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"354770","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EDF0FF","profile_text_color":"1A1A1A","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":25,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 08 02:07:12 +0000 2019","id":1181390556674609152,"id_str":"1181390556674609152","full_text":"RT + @michaelmgrant: @AECT, what\u2019s your story to share?\n@LearnEngage \n@gsa_aect + \n@aectclt \n@AECTTechTrends \n#aect19inspired \n#inspiredme http\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[106,121]},{"text":"inspiredme","indices":[123,134]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[19,24]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[54,66]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[68,77]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[79,87]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[89,104]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905212118127042560,"id_str":"905212118127042560","name":"AECT_CLT","screen_name":"aectclt","location":"","description":"AECT + Division Exploring culture, learning, and technology with particular emphases + on championing inclusiveness and equity. Conversation at #aectclt","url":"https:\/\/t.co\/yc2CmqxA5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yc2CmqxA5M","expanded_url":"https:\/\/sites.google.com\/view\/clt-home","display_url":"sites.google.com\/view\/clt-home","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":26,"listed_count":4,"created_at":"Tue + Sep 05 23:32:41 +0000 2017","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":486,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905212118127042560\/1506184813","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 07 13:59:38 +0000 2019","id":1181207459752378368,"id_str":"1181207459752378368","full_text":"@AECT, + what\u2019s your story to share?\n@LearnEngage \n@gsa_aect \n@aectclt \n@AECTTechTrends + \n#aect19inspired \n#inspiredme https:\/\/t.co\/RSM1fSKI7Q","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect19inspired","indices":[87,102]},{"text":"inspiredme","indices":[104,115]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[35,47]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[49,58]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[60,68]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[70,85]}],"urls":[],"media":[{"id":1181207443059036162,"id_str":"1181207443059036162","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","url":"https:\/\/t.co\/RSM1fSKI7Q","display_url":"pic.twitter.com\/RSM1fSKI7Q","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181207443059036162,"id_str":"1181207443059036162","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","url":"https:\/\/t.co\/RSM1fSKI7Q","display_url":"pic.twitter.com\/RSM1fSKI7Q","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 09 15:31:42 +0000 2019","id":1181955403963346944,"id_str":"1181955403963346944","full_text":"RT + @gsa_aect: Come and join this panel discussion, moderated by Pauline Muljana + and Tugce Aldemir, on Oct 23 from 3:00 to 3:50 pm, at Conve\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 23:00:34 +0000 2019","id":1181705975230799875,"id_str":"1181705975230799875","full_text":"Come + and join this panel discussion, moderated by Pauline Muljana and Tugce Aldemir, + on Oct 23 from 3:00 to 3:50 pm, at Convention Center, Conference Rm 4. The + panelists will discuss why and how we embrace accessibility in order to meet + diverse learning needs. #aect19inspired https:\/\/t.co\/qyHaN7KLbO","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"aect19inspired","indices":[262,277]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181705973720858625,"id_str":"1181705973720858625","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","url":"https:\/\/t.co\/qyHaN7KLbO","display_url":"pic.twitter.com\/qyHaN7KLbO","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181705973720858625,"id_str":"1181705973720858625","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","url":"https:\/\/t.co\/qyHaN7KLbO","display_url":"pic.twitter.com\/qyHaN7KLbO","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 10 22:54:32 +0000 2019","id":1182429235257970694,"id_str":"1182429235257970694","full_text":"DDL + INSPIRE! FORD THE RIVER -Thu, Oct 24, 2:00 to 2:50pm, Convention Center, Pavilion + 10\nParticipants (with devices) will leave comfortable Proprietary Textville + to set off on a bumpy, cross-content journey toward the lush, fertile soil + of the OER valley. #aect19inspired https:\/\/t.co\/Oepaeyygw6","truncated":false,"display_text_range":[0,271],"entities":{"hashtags":[{"text":"aect19inspired","indices":[256,271]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1182429229503438848,"id_str":"1182429229503438848","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EGjVHpSXYAAa4yW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGjVHpSXYAAa4yW.jpg","url":"https:\/\/t.co\/Oepaeyygw6","display_url":"pic.twitter.com\/Oepaeyygw6","expanded_url":"https:\/\/twitter.com\/aectddl\/status\/1182429235257970694\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1182429229503438848,"id_str":"1182429229503438848","indices":[272,295],"media_url":"http:\/\/pbs.twimg.com\/media\/EGjVHpSXYAAa4yW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGjVHpSXYAAa4yW.jpg","url":"https:\/\/t.co\/Oepaeyygw6","display_url":"pic.twitter.com\/Oepaeyygw6","expanded_url":"https:\/\/twitter.com\/aectddl\/status\/1182429235257970694\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1088189033266798598,"id_str":"1088189033266798598","name":"AECT + Division of Distance Learning","screen_name":"aectddl","location":"","description":"The + Division of Distance Learning is a special interest group of the Association + for Educational Communications and Technology (AECT).","url":"https:\/\/t.co\/Rg9uXQTkSM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Rg9uXQTkSM","expanded_url":"https:\/\/aect.org\/ddl.php","display_url":"aect.org\/ddl.php","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":861,"friends_count":482,"listed_count":6,"created_at":"Wed + Jan 23 21:37:37 +0000 2019","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088189033266798598\/1548280679","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Oct 07 17:34:02 +0000 2019","id":1181261413081214976,"id_str":"1181261413081214976","full_text":"RT + @LearnEngage: Who inspired you to get to where you are now? To change where + you''re heading? Tag #aect19inspired @AECT #aect19 to share y\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[99,114]},{"text":"aect19","indices":[121,128]}],"symbols":[],"user_mentions":[{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[3,15]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[115,120]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 07 15:45:42 +0000 2019","id":1181234150780497921,"id_str":"1181234150780497921","full_text":"Who + inspired you to get to where you are now? To change where you''re heading? + Tag #aect19inspired @AECT #aect19 to share your story! https:\/\/t.co\/GOZcSEcesS","truncated":false,"display_text_range":[0,132],"entities":{"hashtags":[{"text":"aect19inspired","indices":[82,97]},{"text":"aect19","indices":[104,111]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[98,103]}],"urls":[{"url":"https:\/\/t.co\/GOZcSEcesS","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368","display_url":"twitter.com\/michaelmgrant\/\u2026","indices":[133,156]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873231910369198080,"id_str":"873231910369198080","name":"AECT + Learner Engagement Division","screen_name":"LearnEngage","location":"","description":"Helping + build engaging #learning and promote innovative #teaching and #instructionaldesign + research and strategies. Proud new division of @AECT.","url":"https:\/\/t.co\/kiLjFRfWbg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kiLjFRfWbg","expanded_url":"https:\/\/www.linkedin.com\/groups\/12051132","display_url":"linkedin.com\/groups\/12051132","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":489,"friends_count":1224,"listed_count":4,"created_at":"Fri + Jun 09 17:34:46 +0000 2017","favourites_count":286,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":192,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070735867629645824\/WVDDK-Vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873231910369198080\/1544117856","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FFB600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1181207459752378368,"quoted_status_id_str":"1181207459752378368","quoted_status_permalink":{"url":"https:\/\/t.co\/GOZcSEcesS","expanded":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368","display":"twitter.com\/michaelmgrant\/\u2026"},"quoted_status":{"created_at":"Mon + Oct 07 13:59:38 +0000 2019","id":1181207459752378368,"id_str":"1181207459752378368","full_text":"@AECT, + what\u2019s your story to share?\n@LearnEngage \n@gsa_aect \n@aectclt \n@AECTTechTrends + \n#aect19inspired \n#inspiredme https:\/\/t.co\/RSM1fSKI7Q","truncated":false,"display_text_range":[0,115],"entities":{"hashtags":[{"text":"aect19inspired","indices":[87,102]},{"text":"inspiredme","indices":[104,115]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]},{"screen_name":"LearnEngage","name":"AECT + Learner Engagement Division","id":873231910369198080,"id_str":"873231910369198080","indices":[35,47]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[49,58]},{"screen_name":"aectclt","name":"AECT_CLT","id":905212118127042560,"id_str":"905212118127042560","indices":[60,68]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[70,85]}],"urls":[],"media":[{"id":1181207443059036162,"id_str":"1181207443059036162","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","url":"https:\/\/t.co\/RSM1fSKI7Q","display_url":"pic.twitter.com\/RSM1fSKI7Q","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181207443059036162,"id_str":"1181207443059036162","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGR96UGU0AIU2W0.jpg","url":"https:\/\/t.co\/RSM1fSKI7Q","display_url":"pic.twitter.com\/RSM1fSKI7Q","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1181207459752378368,"quoted_status_id_str":"1181207459752378368","quoted_status_permalink":{"url":"https:\/\/t.co\/GOZcSEcesS","expanded":"https:\/\/twitter.com\/michaelmgrant\/status\/1181207459752378368","display":"twitter.com\/michaelmgrant\/\u2026"},"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 09 02:11:37 +0000 2019","id":1181754057867829248,"id_str":"1181754057867829248","full_text":"RT + @PaulineMuljana: Get inspired by ideas on how to design with accessibility + in mind through the discussion with our panelists: @AmyLomell\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"PaulineMuljana","name":"Pauline + Muljana","id":214979874,"id_str":"214979874","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":702658623621586944,"id_str":"702658623621586944","name":"Tugce + Aldemir","screen_name":"tugcealdemirpsu","location":"State College, PA","description":"Postdoc + researcher at @UCONN. PhD in Learning, Design and Technology Program from + @Penn_State","url":"https:\/\/t.co\/8Skd5LnNW4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/8Skd5LnNW4","expanded_url":"https:\/\/sites.psu.edu\/aldemirtugce\/","display_url":"sites.psu.edu\/aldemirtugce\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":769,"friends_count":909,"listed_count":6,"created_at":"Thu + Feb 25 00:57:25 +0000 2016","favourites_count":7061,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":852,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/991920179381768192\/40RJr3Fd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/991920179381768192\/40RJr3Fd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/702658623621586944\/1613448191","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 08 23:46:32 +0000 2019","id":1181717546048688129,"id_str":"1181717546048688129","full_text":"Get + inspired by ideas on how to design with accessibility in mind through the + discussion with our panelists: @AmyLomellini_ID , @UmbrellaMichela , and Dr. + @JenM . @tugcealdemirpsu and I will be moderating. #aect19inspired #aect19 + https:\/\/t.co\/IYUgckRnwL","truncated":false,"display_text_range":[0,230],"entities":{"hashtags":[{"text":"aect19inspired","indices":[206,221]},{"text":"aect19","indices":[223,230]}],"symbols":[],"user_mentions":[{"screen_name":"AmyLomellini_ID","name":"Amy + Lomellini","id":910574724748644353,"id_str":"910574724748644353","indices":[109,125]},{"screen_name":"UmbrellaMichela","name":"Esther + Michela","id":940824276307009536,"id_str":"940824276307009536","indices":[128,144]},{"screen_name":"JenM","name":"Jennifer + Maddrell","id":13515,"id_str":"13515","indices":[155,160]},{"screen_name":"tugcealdemirpsu","name":"Tugce + Aldemir","id":702658623621586944,"id_str":"702658623621586944","indices":[163,179]}],"urls":[{"url":"https:\/\/t.co\/IYUgckRnwL","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875","display_url":"twitter.com\/gsa_aect\/statu\u2026","indices":[231,254]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214979874,"id_str":"214979874","name":"Pauline + Muljana","screen_name":"PaulineMuljana","location":"California, USA","description":"PhD + in IDT - Former Inst. Designer @calpolypomona - @gsa_aect Past President - + Dir of Continuous Improvement @LumenLearning - Views are my own","url":"https:\/\/t.co\/6Ca2ciCqQ0","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/6Ca2ciCqQ0","expanded_url":"http:\/\/bit.ly\/paulinemuljana","display_url":"bit.ly\/paulinemuljana","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":841,"friends_count":1074,"listed_count":5,"created_at":"Fri + Nov 12 18:14:20 +0000 2010","favourites_count":10717,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2299,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1380193221850980352\/eGjqmNwc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214979874\/1512350995","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"EDA5C7","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1181705975230799875,"quoted_status_id_str":"1181705975230799875","quoted_status_permalink":{"url":"https:\/\/t.co\/IYUgckRnwL","expanded":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875","display":"twitter.com\/gsa_aect\/statu\u2026"},"quoted_status":{"created_at":"Tue + Oct 08 23:00:34 +0000 2019","id":1181705975230799875,"id_str":"1181705975230799875","full_text":"Come + and join this panel discussion, moderated by Pauline Muljana and Tugce Aldemir, + on Oct 23 from 3:00 to 3:50 pm, at Convention Center, Conference Rm 4. The + panelists will discuss why and how we embrace accessibility in order to meet + diverse learning needs. #aect19inspired https:\/\/t.co\/qyHaN7KLbO","truncated":false,"display_text_range":[0,277],"entities":{"hashtags":[{"text":"aect19inspired","indices":[262,277]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1181705973720858625,"id_str":"1181705973720858625","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","url":"https:\/\/t.co\/qyHaN7KLbO","display_url":"pic.twitter.com\/qyHaN7KLbO","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181705973720858625,"id_str":"1181705973720858625","indices":[278,301],"media_url":"http:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGZDUniWwAE0AuK.jpg","url":"https:\/\/t.co\/qyHaN7KLbO","display_url":"pic.twitter.com\/qyHaN7KLbO","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":675,"resize":"fit"},"large":{"w":1280,"h":720,"resize":"fit"},"small":{"w":680,"h":383,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":2,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1181705975230799875,"quoted_status_id_str":"1181705975230799875","quoted_status_permalink":{"url":"https:\/\/t.co\/IYUgckRnwL","expanded":"https:\/\/twitter.com\/gsa_aect\/status\/1181705975230799875","display":"twitter.com\/gsa_aect\/statu\u2026"},"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Oct 07 17:33:47 +0000 2019","id":1181261352184221701,"id_str":"1181261352184221701","full_text":"RT + @dctrcurry: @michaelmgrant and NBA legend, Bob Cousy, and I want to see you + at #aect19inspired in FOURTEEN DAYS! https:\/\/t.co\/aY6r9W6bu5\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[82,97]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[3,13]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[15,29]}],"urls":[{"url":"https:\/\/t.co\/aY6r9W6bu5","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181205621141463040","display_url":"twitter.com\/michaelmgrant\/\u2026","indices":[116,139]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Oct 07 16:31:35 +0000 2019","id":1181245698739539968,"id_str":"1181245698739539968","full_text":"@michaelmgrant + and NBA legend, Bob Cousy, and I want to see you at #aect19inspired in FOURTEEN + DAYS! https:\/\/t.co\/aY6r9W6bu5 https:\/\/t.co\/g7uVL6Kt75","truncated":false,"display_text_range":[0,124],"entities":{"hashtags":[{"text":"aect19inspired","indices":[67,82]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/aY6r9W6bu5","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1181205621141463040","display_url":"twitter.com\/michaelmgrant\/\u2026","indices":[101,124]}],"media":[{"id":1181245694503309312,"id_str":"1181245694503309312","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EGSgs11UUAAzony.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGSgs11UUAAzony.jpg","url":"https:\/\/t.co\/g7uVL6Kt75","display_url":"pic.twitter.com\/g7uVL6Kt75","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181245698739539968\/photo\/1","type":"photo","sizes":{"small":{"w":550,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":744,"h":920,"resize":"fit"},"medium":{"w":744,"h":920,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1181245694503309312,"id_str":"1181245694503309312","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EGSgs11UUAAzony.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGSgs11UUAAzony.jpg","url":"https:\/\/t.co\/g7uVL6Kt75","display_url":"pic.twitter.com\/g7uVL6Kt75","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1181245698739539968\/photo\/1","type":"photo","sizes":{"small":{"w":550,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":744,"h":920,"resize":"fit"},"medium":{"w":744,"h":920,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":132653457,"in_reply_to_user_id_str":"132653457","in_reply_to_screen_name":"michaelmgrant","user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1181205621141463040,"quoted_status_id_str":"1181205621141463040","quoted_status_permalink":{"url":"https:\/\/t.co\/aY6r9W6bu5","expanded":"https:\/\/twitter.com\/michaelmgrant\/status\/1181205621141463040","display":"twitter.com\/michaelmgrant\/\u2026"},"quoted_status":{"created_at":"Mon + Oct 07 13:52:20 +0000 2019","id":1181205621141463040,"id_str":"1181205621141463040","full_text":"@dctrcurry + How many days till @AECT #aect19inspired ?","truncated":false,"display_text_range":[0,53],"entities":{"hashtags":[{"text":"aect19inspired","indices":[36,51]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[0,10]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[30,35]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":14116271,"in_reply_to_user_id_str":"14116271","in_reply_to_screen_name":"dctrcurry","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1181205621141463040,"quoted_status_id_str":"1181205621141463040","quoted_status_permalink":{"url":"https:\/\/t.co\/aY6r9W6bu5","expanded":"https:\/\/twitter.com\/michaelmgrant\/status\/1181205621141463040","display":"twitter.com\/michaelmgrant\/\u2026"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Sat + Oct 05 13:51:26 +0000 2019","id":1180480618515304448,"id_str":"1180480618515304448","full_text":"#FSU + #FSUCOE #ISLT family, if you are attending #AECT19 there is a First Timer''s + Orientation on Monday, 10\/21 @ 4PM in Pavilion 11.","truncated":false,"display_text_range":[0,131],"entities":{"hashtags":[{"text":"FSU","indices":[0,4]},{"text":"FSUCOE","indices":[5,12]},{"text":"ISLT","indices":[13,18]},{"text":"AECT19","indices":[48,55]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59857759,"id_str":"59857759","name":"ISLT + @ FSU","screen_name":"ISLT_FSU","location":"Tallahassee, FL","description":"Official + Twitter of @floridastate Instructional Systems and Learning Technologies graduate + programs | Share your stories with #FSUISLT","url":"https:\/\/t.co\/rWzhKhBVmQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rWzhKhBVmQ","expanded_url":"https:\/\/linktr.ee\/ISLT_FSU","display_url":"linktr.ee\/ISLT_FSU","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":643,"friends_count":615,"listed_count":14,"created_at":"Fri + Jul 24 18:59:30 +0000 2009","favourites_count":737,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1133,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486086096907902984\/YE39ghdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59857759\/1539576347","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1180244081513029632%2C1180242498008096769%2C1180242363534467072%2C1180241259740270592%2C1180240006440460289%2C1180230648231088129%2C1180230431586885633%2C1180222608194670592%2C1180222260553994240%2C1180203141519806466%2C1180161452407230466%2C1180158250836058113%2C1180097520137113601%2C1179901103066030085%2C1179844747063631872%2C1179844624329912321%2C1179834269121822721%2C1179814561765044225%2C1179772000946020353%2C1179740062101233664%2C1179738964380401665%2C1179735206271623168%2C1179734877542989825%2C1179730818022944770%2C1179730781058539520%2C1179730739438465032%2C1179730712561405954%2C1179729401564614661%2C1179723669448396800%2C1179598690027212800%2C1179568005585485824%2C1179456296749326338%2C1179451519881682944%2C1179451441393606657%2C1179440284167372801%2C1179437330177896450%2C1179436162219302912%2C1179432912300597248%2C1179423080961236995%2C1179397501503365120%2C1179388678793306112%2C1179383025492250624%2C1179381101502062592%2C1179336357006757889%2C1179292563695636480%2C1179211043148615683%2C1179204128649744386%2C1179166121104158720%2C1179153991797805057%2C1179152872296128512%2C1179152671112138752%2C1179139159425998848%2C1179048322096652289%2C1179045409815031811%2C1179017280623132673%2C1178998811970154496%2C1178818517627482118%2C1178805034194259969%2C1178800525292298240%2C1178791520587145218%2C1178785395351396353%2C1178784834249838592%2C1178769257578057729%2C1178769257578057729&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:48:59 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:48:59 GMT + x-transaction: 01bc256d21b94dc1 + content-length: '31549' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '269' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '250' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Fri Oct 04 21:17:17 +0000 2019","id":1180230431586885633,"id_str":"1180230431586885633","full_text":"RT + @tadousay: Will #AECT19 be your first @AECT convention? Be sure to join us + for the First Timer''s Orientation on Monday, 10\/21 @ 4PM in P\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[19,26]}],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[41,46]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 04 20:44:49 +0000 2019","id":1180222260553994240,"id_str":"1180222260553994240","full_text":"Will + #AECT19 be your first @AECT convention? Be sure to join us for the First Timer''s + Orientation on Monday, 10\/21 @ 4PM in Pavilion 11. Meet new friends with + #AECTBingo & learn about the #AECTPokerRun for your chance at books & + swag. #aect19inspired #inspiredme https:\/\/t.co\/8MigSV9QHF","truncated":false,"display_text_range":[0,270],"entities":{"hashtags":[{"text":"AECT19","indices":[5,12]},{"text":"AECTBingo","indices":[159,169]},{"text":"AECTPokerRun","indices":[192,205]},{"text":"aect19inspired","indices":[243,258]},{"text":"inspiredme","indices":[259,270]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]}],"urls":[],"media":[{"id":1180222096309252096,"id_str":"1180222096309252096","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","url":"https:\/\/t.co\/8MigSV9QHF","display_url":"pic.twitter.com\/8MigSV9QHF","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1180222260553994240\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":604,"h":680,"resize":"fit"},"large":{"w":1252,"h":1410,"resize":"fit"},"medium":{"w":1066,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1180222096309252096,"id_str":"1180222096309252096","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","url":"https:\/\/t.co\/8MigSV9QHF","display_url":"pic.twitter.com\/8MigSV9QHF","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1180222260553994240\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":604,"h":680,"resize":"fit"},"large":{"w":1252,"h":1410,"resize":"fit"},"medium":{"w":1066,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 03 12:44:22 +0000 2019","id":1179738964380401665,"id_str":"1179738964380401665","full_text":"RT + @FredWBaker: AECT''s Systems Thinking & Change Division released a Call + for Proposals for our special issue of @AECTTechTrends!! Please c\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[117,132]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 02 13:32:27 +0000 2019","id":1179388678793306112,"id_str":"1179388678793306112","full_text":"AECT''s + Systems Thinking & Change Division released a Call for Proposals for our + special issue of @AECTTechTrends!! Please consider submitting a proposal, + and please share with your colleagues! #aectstc #aect19 https:\/\/t.co\/ygldlqUE5o","truncated":false,"display_text_range":[0,237],"entities":{"hashtags":[{"text":"aectstc","indices":[197,205]},{"text":"aect19","indices":[206,213]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[101,116]}],"urls":[{"url":"https:\/\/t.co\/ygldlqUE5o","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view?usp=sharing","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[214,237]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 03 12:11:34 +0000 2019","id":1179730712561405954,"id_str":"1179730712561405954","full_text":"RT + @gsa_aect: Here are some ideas on how to follow up on your convention experience. + Take some notes, write brief journal and reflect on th\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 02 16:50:51 +0000 2019","id":1179438608018657280,"id_str":"1179438608018657280","full_text":"Here + are some ideas on how to follow up on your convention experience. Take some + notes, write brief journal and reflect on them when you are home. Don\u2019t + forget to take further action such as staying in touch with the people you\u2019ve + connected during the convention.\n#aect19","truncated":false,"display_text_range":[0,271],"entities":{"hashtags":[{"text":"aect19","indices":[264,271]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 01 21:54:39 +0000 2019","id":1179152671112138752,"id_str":"1179152671112138752","full_text":"RT + @gsa_aect: Join us on Oct 2nd, 12 PM EDT for our webinar \u201cWhat Happens + in Vegas Does Not Stay in Vegas.\u201d Drs. @michaelmgrant, John Curry\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[113,127]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 01 21:00:57 +0000 2019","id":1179139159425998848,"id_str":"1179139159425998848","full_text":"Join + us on Oct 2nd, 12 PM EDT for our webinar \u201cWhat Happens in Vegas Does + Not Stay in Vegas.\u201d Drs. @michaelmgrant, John Curry, and Rebecca Reese + will share insights on navigating learning & networking opportunities + during the #AECT19 convention.Register at https:\/\/t.co\/WWv929H2wu https:\/\/t.co\/sV0ffXn2wX","truncated":false,"display_text_range":[0,284],"entities":{"hashtags":[{"text":"AECT19","indices":[230,237]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[99,113]}],"urls":[{"url":"https:\/\/t.co\/WWv929H2wu","expanded_url":"http:\/\/bit.ly\/aect-gsa-2019-6","display_url":"bit.ly\/aect-gsa-2019-6","indices":[261,284]}],"media":[{"id":1179139157400199169,"id_str":"1179139157400199169","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EF0k0PmXoAEhhlP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF0k0PmXoAEhhlP.jpg","url":"https:\/\/t.co\/sV0ffXn2wX","display_url":"pic.twitter.com\/sV0ffXn2wX","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1179139159425998848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1179139157400199169,"id_str":"1179139157400199169","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EF0k0PmXoAEhhlP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF0k0PmXoAEhhlP.jpg","url":"https:\/\/t.co\/sV0ffXn2wX","display_url":"pic.twitter.com\/sV0ffXn2wX","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1179139159425998848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 02 07:10:32 +0000 2019","id":1179292563695636480,"id_str":"1179292563695636480","full_text":"RT + @valarywithawhy: If you are attending #aect19inspired and want to explore + options of using #gamification to improve learner engagement and outcomes, + there are still spots available in my workshop 4 Cs to an A+ Learning Experience","truncated":false,"display_text_range":[0,232],"entities":{"hashtags":[{"text":"aect19inspired","indices":[41,56]},{"text":"gamification","indices":[94,107]}],"symbols":[],"user_mentions":[{"screen_name":"valarywithawhy","name":"Valary + Oleinik","id":111391715,"id_str":"111391715","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":292998487,"id_str":"292998487","name":"Sard + Imperium","screen_name":"SardImperium","location":"Canada","description":"#News + in several languages about #gamification #seriousgaming with \ud83e\udd16\ud83d\udc31\ud83d\ude00 + - \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f\ud83c\udfaf","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2427,"friends_count":282,"listed_count":184,"created_at":"Wed + May 04 15:54:49 +0000 2011","favourites_count":9680,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":118124,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1360722277030125568\/tBI7CzWF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1360722277030125568\/tBI7CzWF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/292998487\/1613256447","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 02 13:32:27 +0000 2019","id":1179388678793306112,"id_str":"1179388678793306112","full_text":"AECT''s + Systems Thinking & Change Division released a Call for Proposals for our + special issue of @AECTTechTrends!! Please consider submitting a proposal, + and please share with your colleagues! #aectstc #aect19 https:\/\/t.co\/ygldlqUE5o","truncated":false,"display_text_range":[0,237],"entities":{"hashtags":[{"text":"aectstc","indices":[197,205]},{"text":"aect19","indices":[206,213]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[101,116]}],"urls":[{"url":"https:\/\/t.co\/ygldlqUE5o","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view?usp=sharing","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[214,237]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 03 23:28:39 +0000 2019","id":1179901103066030085,"id_str":"1179901103066030085","full_text":"RT + @dctrcurry: How long until #AECT19Inspired? https:\/\/t.co\/jkenBKQ2Ig","truncated":false,"display_text_range":[0,70],"entities":{"hashtags":[{"text":"AECT19Inspired","indices":[30,45]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[3,13]}],"urls":[],"media":[{"id":1179824703927545856,"id_str":"1179824703927545856","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/EF-UUTbU8AAWESs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF-UUTbU8AAWESs.jpg","url":"https:\/\/t.co\/jkenBKQ2Ig","display_url":"pic.twitter.com\/jkenBKQ2Ig","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1179824706511204353\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":650,"resize":"fit"},"large":{"w":800,"h":650,"resize":"fit"},"small":{"w":680,"h":553,"resize":"fit"}},"source_status_id":1179824706511204353,"source_status_id_str":"1179824706511204353","source_user_id":14116271,"source_user_id_str":"14116271"}]},"extended_entities":{"media":[{"id":1179824703927545856,"id_str":"1179824703927545856","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/EF-UUTbU8AAWESs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF-UUTbU8AAWESs.jpg","url":"https:\/\/t.co\/jkenBKQ2Ig","display_url":"pic.twitter.com\/jkenBKQ2Ig","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1179824706511204353\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":650,"resize":"fit"},"large":{"w":800,"h":650,"resize":"fit"},"small":{"w":680,"h":553,"resize":"fit"}},"source_status_id":1179824706511204353,"source_status_id_str":"1179824706511204353","source_user_id":14116271,"source_user_id_str":"14116271","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 03 18:25:04 +0000 2019","id":1179824706511204353,"id_str":"1179824706511204353","full_text":"How + long until #AECT19Inspired? https:\/\/t.co\/jkenBKQ2Ig","truncated":false,"display_text_range":[0,31],"entities":{"hashtags":[{"text":"AECT19Inspired","indices":[15,30]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1179824703927545856,"id_str":"1179824703927545856","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/EF-UUTbU8AAWESs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF-UUTbU8AAWESs.jpg","url":"https:\/\/t.co\/jkenBKQ2Ig","display_url":"pic.twitter.com\/jkenBKQ2Ig","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1179824706511204353\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":650,"resize":"fit"},"large":{"w":800,"h":650,"resize":"fit"},"small":{"w":680,"h":553,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1179824703927545856,"id_str":"1179824703927545856","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/EF-UUTbU8AAWESs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF-UUTbU8AAWESs.jpg","url":"https:\/\/t.co\/jkenBKQ2Ig","display_url":"pic.twitter.com\/jkenBKQ2Ig","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1179824706511204353\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":650,"resize":"fit"},"large":{"w":800,"h":650,"resize":"fit"},"small":{"w":680,"h":553,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 03 12:11:41 +0000 2019","id":1179730739438465032,"id_str":"1179730739438465032","full_text":"RT + @gsa_aect: Don\u2019t forget about the Journal & Book Editors roundtable. + This is a great opportunity to meet with the editors. Wed, Oct 23,\u2026","truncated":false,"display_text_range":[0,143],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 02 16:20:56 +0000 2019","id":1179431077745758214,"id_str":"1179431077745758214","full_text":"Don\u2019t + forget about the Journal & Book Editors roundtable. This is a great opportunity + to meet with the editors. Wed, Oct 23, 4:00 to 4:50pm at Paradise North. #aect19 + #aect19inspired","truncated":false,"display_text_range":[0,186],"entities":{"hashtags":[{"text":"aect19","indices":[163,170]},{"text":"aect19inspired","indices":[171,186]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 03 12:06:22 +0000 2019","id":1179729401564614661,"id_str":"1179729401564614661","full_text":"RT + @gsa_aect: Dear the GSA''s amazing members, our Fall 2019 newsletter is here! + \ud83e\udd29\u2728 #aect19inspired #aectgsa\nhttps:\/\/t.co\/VcqRGeZhIh https:\/\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[83,98]},{"text":"aectgsa","indices":[99,107]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/VcqRGeZhIh","expanded_url":"http:\/\/ow.ly\/Zw0C50wA4JU","display_url":"ow.ly\/Zw0C50wA4JU","indices":[108,131]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":91361410,"id_str":"91361410","name":"Frances + Alvarado","screen_name":"francesmarg","location":"Earth","description":"Learning, + Design, & Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":82,"friends_count":146,"listed_count":1,"created_at":"Fri + Nov 20 15:25:28 +0000 2009","favourites_count":3639,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":567,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1333933432435568645\/WGnKKjwS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1333933432435568645\/WGnKKjwS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/91361410\/1533572819","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 03 01:25:02 +0000 2019","id":1179568005585485824,"id_str":"1179568005585485824","full_text":"Dear + the GSA''s amazing members, our Fall 2019 newsletter is here! \ud83e\udd29\u2728 + #aect19inspired #aectgsa\nhttps:\/\/t.co\/VcqRGeZhIh https:\/\/t.co\/6HP1GFu0xd","truncated":false,"display_text_range":[0,117],"entities":{"hashtags":[{"text":"aect19inspired","indices":[69,84]},{"text":"aectgsa","indices":[85,93]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VcqRGeZhIh","expanded_url":"http:\/\/ow.ly\/Zw0C50wA4JU","display_url":"ow.ly\/Zw0C50wA4JU","indices":[94,117]}],"media":[{"id":1179568001428930563,"id_str":"1179568001428930563","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EF6q2QGWwAMKFfh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF6q2QGWwAMKFfh.jpg","url":"https:\/\/t.co\/6HP1GFu0xd","display_url":"pic.twitter.com\/6HP1GFu0xd","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1179568005585485824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1280,"resize":"fit"},"small":{"w":680,"h":425,"resize":"fit"},"medium":{"w":1200,"h":750,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1179568001428930563,"id_str":"1179568001428930563","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EF6q2QGWwAMKFfh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF6q2QGWwAMKFfh.jpg","url":"https:\/\/t.co\/6HP1GFu0xd","display_url":"pic.twitter.com\/6HP1GFu0xd","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1179568005585485824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1280,"resize":"fit"},"small":{"w":680,"h":425,"resize":"fit"},"medium":{"w":1200,"h":750,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 02 18:01:09 +0000 2019","id":1179456296749326338,"id_str":"1179456296749326338","full_text":"RT + @valarywithawhy: If you are attending #aect19inspired and want to explore + options of using #gamification to improve learner engagement a\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[41,56]},{"text":"gamification","indices":[94,107]}],"symbols":[],"user_mentions":[{"screen_name":"valarywithawhy","name":"Valary + Oleinik","id":111391715,"id_str":"111391715","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 02 01:46:36 +0000 2019","id":1179211043148615683,"id_str":"1179211043148615683","full_text":"If + you are attending #aect19inspired and want to explore options of using #gamification + to improve learner engagement and outcomes, there are still spots available + in my workshop 4 Cs to an A+ Learning Experience","truncated":false,"display_text_range":[0,212],"entities":{"hashtags":[{"text":"aect19inspired","indices":[21,36]},{"text":"gamification","indices":[74,87]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":111391715,"id_str":"111391715","name":"Valary + Oleinik","screen_name":"valarywithawhy","location":"New York, NY","description":"speaker + | engager of learners | gamifier of things | unleasher of creativity | geek + | writer | queriest","url":"https:\/\/t.co\/5XjhvhYTqb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5XjhvhYTqb","expanded_url":"http:\/\/www.valarywithawhy.com","display_url":"valarywithawhy.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1251,"friends_count":1550,"listed_count":60,"created_at":"Thu + Feb 04 19:24:07 +0000 2010","favourites_count":9041,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4317,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111391715\/1454624226","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 02 15:49:09 +0000 2019","id":1179423080961236995,"id_str":"1179423080961236995","full_text":"Counting + down to this @aect @gsa_aect webinar about what will happen in Vegas. Drs. + @michaelmgrant, @dctrcurry and @rmreese1 are our special guest panelists.\nYou + can register at https:\/\/t.co\/WWv929H2wu and will receive the webinar link + immediately after the registration.\n#aect19 https:\/\/t.co\/EOGwkrQG0K","truncated":false,"display_text_range":[0,279],"entities":{"hashtags":[{"text":"aect19","indices":[272,279]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[22,27]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[28,37]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[84,98]},{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[100,110]},{"screen_name":"rmreese1","name":"rmreese","id":8005732,"id_str":"8005732","indices":[115,124]}],"urls":[{"url":"https:\/\/t.co\/WWv929H2wu","expanded_url":"http:\/\/bit.ly\/aect-gsa-2019-6","display_url":"bit.ly\/aect-gsa-2019-6","indices":[178,201]},{"url":"https:\/\/t.co\/EOGwkrQG0K","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1179381101502062592","display_url":"twitter.com\/gsa_aect\/statu\u2026","indices":[280,303]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1179381101502062592,"quoted_status_id_str":"1179381101502062592","quoted_status_permalink":{"url":"https:\/\/t.co\/EOGwkrQG0K","expanded":"https:\/\/twitter.com\/gsa_aect\/status\/1179381101502062592","display":"twitter.com\/gsa_aect\/statu\u2026"},"quoted_status":{"created_at":"Wed + Oct 02 13:02:21 +0000 2019","id":1179381101502062592,"id_str":"1179381101502062592","full_text":"Join + us on Oct 2nd, 12 PM EDT for our webinar \u201cWhat Happens in Vegas Does + Not Stay in Vegas.\u201d Drs. @michaelmgrant, John Curry, and Rebecca Reese + will share insights on navigating learning & networking opportunities + during the #AECT19 convention.Register at https:\/\/t.co\/WWv929H2wu https:\/\/t.co\/8clTHMJEuf","truncated":false,"display_text_range":[0,284],"entities":{"hashtags":[{"text":"AECT19","indices":[230,237]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[99,113]}],"urls":[{"url":"https:\/\/t.co\/WWv929H2wu","expanded_url":"http:\/\/bit.ly\/aect-gsa-2019-6","display_url":"bit.ly\/aect-gsa-2019-6","indices":[261,284]}],"media":[{"id":1179381099258093576,"id_str":"1179381099258093576","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EF4A3HQWoAg1xpl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF4A3HQWoAg1xpl.jpg","url":"https:\/\/t.co\/8clTHMJEuf","display_url":"pic.twitter.com\/8clTHMJEuf","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1179381101502062592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1179381099258093576,"id_str":"1179381099258093576","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EF4A3HQWoAg1xpl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF4A3HQWoAg1xpl.jpg","url":"https:\/\/t.co\/8clTHMJEuf","display_url":"pic.twitter.com\/8clTHMJEuf","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1179381101502062592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 04 19:28:50 +0000 2019","id":1180203141519806466,"id_str":"1180203141519806466","full_text":"Can + someone pls remind me how to access the mobile version of the #aect19inspired + conference schedule? I uninstalled the app we used last year. --tia!!\n#aect19","truncated":false,"display_text_range":[0,159],"entities":{"hashtags":[{"text":"aect19inspired","indices":[66,81]},{"text":"aect19","indices":[152,159]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64769037,"id_str":"64769037","name":"jenn\u03b9\u0493er + engl\u03c5nd","screen_name":"jmenglund03","location":"Settler on Dakota homelands","description":"@UMN_CI + LT PhD Candidate \u2022 @UMNews instructional designer \u2022 @GOGN_OER scholar + \u2022 @femedtech member \u2022 #OEP advocate \u2022 Pronouns: she\/her","url":"https:\/\/t.co\/cjLLex1JDn","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cjLLex1JDn","expanded_url":"https:\/\/jenniferenglund.net\/","display_url":"jenniferenglund.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":662,"friends_count":627,"listed_count":72,"created_at":"Tue + Aug 11 17:10:00 +0000 2009","favourites_count":2052,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2918,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B7C8E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1070397759709036544\/0NP88KH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64769037\/1500750705","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"452568","profile_sidebar_border_color":"204207","profile_sidebar_fill_color":"060A00","profile_text_color":"618238","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 03 14:55:38 +0000 2019","id":1179772000946020353,"id_str":"1179772000946020353","full_text":"RT + @FredWBaker: AECT''s Systems Thinking & Change Division released a Call + for Proposals for our special issue of @AECTTechTrends!! Please c\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[117,132]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":146938117,"id_str":"146938117","name":"Ela + Castellanos-Reyes","screen_name":"ElaTheGrad","location":"Lafayette, IN","description":"\ud83c\udde8\ud83c\uddf4 + #OnlineLearning #NetworkAnalysis #Latina #PotterHead","url":"https:\/\/t.co\/5SMOrW0p1I","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5SMOrW0p1I","expanded_url":"https:\/\/www.elacastellanosreyes.com","display_url":"elacastellanosreyes.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":455,"friends_count":1188,"listed_count":2,"created_at":"Sat + May 22 19:07:17 +0000 2010","favourites_count":3862,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1995,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183161043293560834\/vtLxUlIX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183161043293560834\/vtLxUlIX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/146938117\/1420603624","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 02 13:32:27 +0000 2019","id":1179388678793306112,"id_str":"1179388678793306112","full_text":"AECT''s + Systems Thinking & Change Division released a Call for Proposals for our + special issue of @AECTTechTrends!! Please consider submitting a proposal, + and please share with your colleagues! #aectstc #aect19 https:\/\/t.co\/ygldlqUE5o","truncated":false,"display_text_range":[0,237],"entities":{"hashtags":[{"text":"aectstc","indices":[197,205]},{"text":"aect19","indices":[206,213]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[101,116]}],"urls":[{"url":"https:\/\/t.co\/ygldlqUE5o","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view?usp=sharing","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[214,237]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 03 01:25:02 +0000 2019","id":1179568005585485824,"id_str":"1179568005585485824","full_text":"Dear + the GSA''s amazing members, our Fall 2019 newsletter is here! \ud83e\udd29\u2728 + #aect19inspired #aectgsa\nhttps:\/\/t.co\/VcqRGeZhIh https:\/\/t.co\/6HP1GFu0xd","truncated":false,"display_text_range":[0,117],"entities":{"hashtags":[{"text":"aect19inspired","indices":[69,84]},{"text":"aectgsa","indices":[85,93]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VcqRGeZhIh","expanded_url":"http:\/\/ow.ly\/Zw0C50wA4JU","display_url":"ow.ly\/Zw0C50wA4JU","indices":[94,117]}],"media":[{"id":1179568001428930563,"id_str":"1179568001428930563","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EF6q2QGWwAMKFfh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF6q2QGWwAMKFfh.jpg","url":"https:\/\/t.co\/6HP1GFu0xd","display_url":"pic.twitter.com\/6HP1GFu0xd","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1179568005585485824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1280,"resize":"fit"},"small":{"w":680,"h":425,"resize":"fit"},"medium":{"w":1200,"h":750,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1179568001428930563,"id_str":"1179568001428930563","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EF6q2QGWwAMKFfh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF6q2QGWwAMKFfh.jpg","url":"https:\/\/t.co\/6HP1GFu0xd","display_url":"pic.twitter.com\/6HP1GFu0xd","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1179568005585485824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1280,"resize":"fit"},"small":{"w":680,"h":425,"resize":"fit"},"medium":{"w":1200,"h":750,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 02 17:41:51 +0000 2019","id":1179451441393606657,"id_str":"1179451441393606657","full_text":"RT + @gsa_aect: Join us on Oct 2nd, 12 PM EDT for our webinar \u201cWhat Happens + in Vegas Does Not Stay in Vegas.\u201d Drs. @michaelmgrant, John Curry\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[113,127]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 02 13:02:21 +0000 2019","id":1179381101502062592,"id_str":"1179381101502062592","full_text":"Join + us on Oct 2nd, 12 PM EDT for our webinar \u201cWhat Happens in Vegas Does + Not Stay in Vegas.\u201d Drs. @michaelmgrant, John Curry, and Rebecca Reese + will share insights on navigating learning & networking opportunities + during the #AECT19 convention.Register at https:\/\/t.co\/WWv929H2wu https:\/\/t.co\/8clTHMJEuf","truncated":false,"display_text_range":[0,284],"entities":{"hashtags":[{"text":"AECT19","indices":[230,237]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[99,113]}],"urls":[{"url":"https:\/\/t.co\/WWv929H2wu","expanded_url":"http:\/\/bit.ly\/aect-gsa-2019-6","display_url":"bit.ly\/aect-gsa-2019-6","indices":[261,284]}],"media":[{"id":1179381099258093576,"id_str":"1179381099258093576","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EF4A3HQWoAg1xpl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF4A3HQWoAg1xpl.jpg","url":"https:\/\/t.co\/8clTHMJEuf","display_url":"pic.twitter.com\/8clTHMJEuf","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1179381101502062592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1179381099258093576,"id_str":"1179381099258093576","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EF4A3HQWoAg1xpl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF4A3HQWoAg1xpl.jpg","url":"https:\/\/t.co\/8clTHMJEuf","display_url":"pic.twitter.com\/8clTHMJEuf","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1179381101502062592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 03 19:44:13 +0000 2019","id":1179844624329912321,"id_str":"1179844624329912321","full_text":"RT + @EdTech_UofSC: @UofSCEducation prof to lead international association for + learning technologies & research: https:\/\/t.co\/KeDvxEceA8\n#aec\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EdTech_UofSC","name":"LD&T + and EdTech at UofSC","id":2835369671,"id_str":"2835369671","indices":[3,16]},{"screen_name":"UofSCEducation","name":"UofSC + Education","id":1269656353,"id_str":"1269656353","indices":[18,33]}],"urls":[{"url":"https:\/\/t.co\/KeDvxEceA8","expanded_url":"https:\/\/viral-notebook.com\/2019\/10\/02\/uofsc-prof-to-lead-international-association-for-learning-technologies-and-research\/","display_url":"viral-notebook.com\/2019\/10\/02\/uof\u2026","indices":[115,138]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 03 11:43:35 +0000 2019","id":1179723669448396800,"id_str":"1179723669448396800","full_text":"@UofSCEducation + prof to lead international association for learning technologies & research: + https:\/\/t.co\/KeDvxEceA8\n#aect19inspired https:\/\/t.co\/ww0KaPKBHd","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19inspired","indices":[121,136]}],"symbols":[],"user_mentions":[{"screen_name":"UofSCEducation","name":"UofSC + Education","id":1269656353,"id_str":"1269656353","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/KeDvxEceA8","expanded_url":"https:\/\/viral-notebook.com\/2019\/10\/02\/uofsc-prof-to-lead-international-association-for-learning-technologies-and-research\/","display_url":"viral-notebook.com\/2019\/10\/02\/uof\u2026","indices":[97,120]}],"media":[{"id":1179723665094713344,"id_str":"1179723665094713344","indices":[137,160],"media_url":"http:\/\/pbs.twimg.com\/media\/EF84bEcXoAA-yHI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF84bEcXoAA-yHI.jpg","url":"https:\/\/t.co\/ww0KaPKBHd","display_url":"pic.twitter.com\/ww0KaPKBHd","expanded_url":"https:\/\/twitter.com\/EdTech_UofSC\/status\/1179723669448396800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":672,"resize":"fit"},"large":{"w":768,"h":759,"resize":"fit"},"medium":{"w":768,"h":759,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1179723665094713344,"id_str":"1179723665094713344","indices":[137,160],"media_url":"http:\/\/pbs.twimg.com\/media\/EF84bEcXoAA-yHI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF84bEcXoAA-yHI.jpg","url":"https:\/\/t.co\/ww0KaPKBHd","display_url":"pic.twitter.com\/ww0KaPKBHd","expanded_url":"https:\/\/twitter.com\/EdTech_UofSC\/status\/1179723669448396800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":672,"resize":"fit"},"large":{"w":768,"h":759,"resize":"fit"},"medium":{"w":768,"h":759,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1269656353,"in_reply_to_user_id_str":"1269656353","in_reply_to_screen_name":"UofSCEducation","user":{"id":2835369671,"id_str":"2835369671","name":"LD&T + and EdTech at UofSC","screen_name":"EdTech_UofSC","location":"South Carolina","description":"Our + LD&T\/EdTech programs are shared with USC-Columbia & USC-Aiken. We offer Masters + & doctoral degrees + distance education certification \u2014 all 100% online!","url":"https:\/\/t.co\/S5lHVmmaud","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/S5lHVmmaud","expanded_url":"https:\/\/sc.edu\/study\/colleges_schools\/education\/study\/advanced_study_in_education\/learning_design_te","display_url":"sc.edu\/study\/colleges\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":455,"friends_count":50,"listed_count":16,"created_at":"Fri + Oct 17 18:52:36 +0000 2014","favourites_count":353,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":667,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1265318847764148226\/-Y6YxrdB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1265318847764148226\/-Y6YxrdB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2835369671\/1590519327","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 03 12:11:51 +0000 2019","id":1179730781058539520,"id_str":"1179730781058539520","full_text":"RT + @gsa_aect: The Poster sessions on Oct 22, 4 pm will be a great showcase of + over 100 studies and projects, welcoming attendees. There wil\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 02 16:17:19 +0000 2019","id":1179430166294085633,"id_str":"1179430166294085633","full_text":"The + Poster sessions on Oct 22, 4 pm will be a great showcase of over 100 studies + and projects, welcoming attendees. There will be no other sessions scheduled + during this time. So, make sure you come and enjoy it. #aect19 #aect19inspired","truncated":false,"display_text_range":[0,236],"entities":{"hashtags":[{"text":"aect19","indices":[213,220]},{"text":"aect19inspired","indices":[221,236]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 04 12:29:08 +0000 2019","id":1180097520137113601,"id_str":"1180097520137113601","full_text":"@EdTech_UofSC + @UofSCEducation Thanks @EdTech_UofSC, @AECT & @UofSCEducation folks for + the kind kind words and wishes! \n#aect19inspired","truncated":false,"display_text_range":[30,139],"entities":{"hashtags":[{"text":"aect19inspired","indices":[124,139]}],"symbols":[],"user_mentions":[{"screen_name":"EdTech_UofSC","name":"LD&T + and EdTech at UofSC","id":2835369671,"id_str":"2835369671","indices":[0,13]},{"screen_name":"UofSCEducation","name":"UofSC + Education","id":1269656353,"id_str":"1269656353","indices":[14,29]},{"screen_name":"EdTech_UofSC","name":"LD&T + and EdTech at UofSC","id":2835369671,"id_str":"2835369671","indices":[37,50]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[52,57]},{"screen_name":"UofSCEducation","name":"UofSC + Education","id":1269656353,"id_str":"1269656353","indices":[64,79]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1179723669448396800,"in_reply_to_status_id_str":"1179723669448396800","in_reply_to_user_id":2835369671,"in_reply_to_user_id_str":"2835369671","in_reply_to_screen_name":"EdTech_UofSC","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 03 19:03:04 +0000 2019","id":1179834269121822721,"id_str":"1179834269121822721","full_text":"RT + @gsa_aect: Dear the GSA''s amazing members, our Fall 2019 newsletter is here! + \ud83e\udd29\u2728 #aect19inspired #aectgsa\nhttps:\/\/t.co\/VcqRGeZhIh https:\/\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[83,98]},{"text":"aectgsa","indices":[99,107]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[{"url":"https:\/\/t.co\/VcqRGeZhIh","expanded_url":"http:\/\/ow.ly\/Zw0C50wA4JU","display_url":"ow.ly\/Zw0C50wA4JU","indices":[108,131]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":600653284,"id_str":"600653284","name":"Nate + Turcotte","screen_name":"nateturcotte22","location":"Fort Myers, FL","description":"Assistant + Professor at @fgcu_coe | Researching embodied forms of teaching & learning + with data | New England Patriots | Duke Basketball","url":"https:\/\/t.co\/uu8axyn0Bq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uu8axyn0Bq","expanded_url":"http:\/\/nateturcotte.com","display_url":"nateturcotte.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":313,"friends_count":606,"listed_count":4,"created_at":"Wed + Jun 06 03:44:26 +0000 2012","favourites_count":4300,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1349,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/992405823736500225\/mbjge9V0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/600653284\/1440433455","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 03 01:25:02 +0000 2019","id":1179568005585485824,"id_str":"1179568005585485824","full_text":"Dear + the GSA''s amazing members, our Fall 2019 newsletter is here! \ud83e\udd29\u2728 + #aect19inspired #aectgsa\nhttps:\/\/t.co\/VcqRGeZhIh https:\/\/t.co\/6HP1GFu0xd","truncated":false,"display_text_range":[0,117],"entities":{"hashtags":[{"text":"aect19inspired","indices":[69,84]},{"text":"aectgsa","indices":[85,93]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/VcqRGeZhIh","expanded_url":"http:\/\/ow.ly\/Zw0C50wA4JU","display_url":"ow.ly\/Zw0C50wA4JU","indices":[94,117]}],"media":[{"id":1179568001428930563,"id_str":"1179568001428930563","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EF6q2QGWwAMKFfh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF6q2QGWwAMKFfh.jpg","url":"https:\/\/t.co\/6HP1GFu0xd","display_url":"pic.twitter.com\/6HP1GFu0xd","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1179568005585485824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1280,"resize":"fit"},"small":{"w":680,"h":425,"resize":"fit"},"medium":{"w":1200,"h":750,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1179568001428930563,"id_str":"1179568001428930563","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/EF6q2QGWwAMKFfh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF6q2QGWwAMKFfh.jpg","url":"https:\/\/t.co\/6HP1GFu0xd","display_url":"pic.twitter.com\/6HP1GFu0xd","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1179568005585485824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1280,"resize":"fit"},"small":{"w":680,"h":425,"resize":"fit"},"medium":{"w":1200,"h":750,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Oct 01 15:00:00 +0000 2019","id":1179048322096652289,"id_str":"1179048322096652289","full_text":"@AECT + Who has inspired you? Share a story. Post a pic. Tag a colleague\/friend.\n#aect19inspired + https:\/\/t.co\/jpaMbNkiX2","truncated":false,"display_text_range":[0,94],"entities":{"hashtags":[{"text":"aect19inspired","indices":[79,94]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]}],"urls":[],"media":[{"id":1178714053566271488,"id_str":"1178714053566271488","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/EFuiL8aUEAAcpv7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EFuiL8aUEAAcpv7.jpg","url":"https:\/\/t.co\/jpaMbNkiX2","display_url":"pic.twitter.com\/jpaMbNkiX2","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1179048322096652289\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1178714053566271488,"id_str":"1178714053566271488","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/EFuiL8aUEAAcpv7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EFuiL8aUEAAcpv7.jpg","url":"https:\/\/t.co\/jpaMbNkiX2","display_url":"pic.twitter.com\/jpaMbNkiX2","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1179048322096652289\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 04 16:43:11 +0000 2019","id":1180161452407230466,"id_str":"1180161452407230466","full_text":"RT + @dctrcurry: We''re going to keep counting down, so you may as well accept + it!\n\nSee you all at #aect19inspired! https:\/\/t.co\/ZMKYsDwMmV","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19inspired","indices":[96,111]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[3,13]}],"urls":[],"media":[{"id":1180158247551913984,"id_str":"1180158247551913984","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/EGDDrGQUUAAaQP-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGDDrGQUUAAaQP-.jpg","url":"https:\/\/t.co\/ZMKYsDwMmV","display_url":"pic.twitter.com\/ZMKYsDwMmV","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1180158250836058113\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":441,"h":478,"resize":"fit"},"medium":{"w":441,"h":478,"resize":"fit"},"large":{"w":441,"h":478,"resize":"fit"}},"source_status_id":1180158250836058113,"source_status_id_str":"1180158250836058113","source_user_id":14116271,"source_user_id_str":"14116271"}]},"extended_entities":{"media":[{"id":1180158247551913984,"id_str":"1180158247551913984","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/EGDDrGQUUAAaQP-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGDDrGQUUAAaQP-.jpg","url":"https:\/\/t.co\/ZMKYsDwMmV","display_url":"pic.twitter.com\/ZMKYsDwMmV","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1180158250836058113\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":441,"h":478,"resize":"fit"},"medium":{"w":441,"h":478,"resize":"fit"},"large":{"w":441,"h":478,"resize":"fit"}},"source_status_id":1180158250836058113,"source_status_id_str":"1180158250836058113","source_user_id":14116271,"source_user_id_str":"14116271","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 04 16:30:27 +0000 2019","id":1180158250836058113,"id_str":"1180158250836058113","full_text":"We''re + going to keep counting down, so you may as well accept it!\n\nSee you all + at #aect19inspired! https:\/\/t.co\/ZMKYsDwMmV","truncated":false,"display_text_range":[0,97],"entities":{"hashtags":[{"text":"aect19inspired","indices":[81,96]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1180158247551913984,"id_str":"1180158247551913984","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/EGDDrGQUUAAaQP-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGDDrGQUUAAaQP-.jpg","url":"https:\/\/t.co\/ZMKYsDwMmV","display_url":"pic.twitter.com\/ZMKYsDwMmV","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1180158250836058113\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":441,"h":478,"resize":"fit"},"medium":{"w":441,"h":478,"resize":"fit"},"large":{"w":441,"h":478,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1180158247551913984,"id_str":"1180158247551913984","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/EGDDrGQUUAAaQP-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGDDrGQUUAAaQP-.jpg","url":"https:\/\/t.co\/ZMKYsDwMmV","display_url":"pic.twitter.com\/ZMKYsDwMmV","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1180158250836058113\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":441,"h":478,"resize":"fit"},"medium":{"w":441,"h":478,"resize":"fit"},"large":{"w":441,"h":478,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 03 11:43:35 +0000 2019","id":1179723669448396800,"id_str":"1179723669448396800","full_text":"@UofSCEducation + prof to lead international association for learning technologies & research: + https:\/\/t.co\/KeDvxEceA8\n#aect19inspired https:\/\/t.co\/ww0KaPKBHd","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19inspired","indices":[121,136]}],"symbols":[],"user_mentions":[{"screen_name":"UofSCEducation","name":"UofSC + Education","id":1269656353,"id_str":"1269656353","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/KeDvxEceA8","expanded_url":"https:\/\/viral-notebook.com\/2019\/10\/02\/uofsc-prof-to-lead-international-association-for-learning-technologies-and-research\/","display_url":"viral-notebook.com\/2019\/10\/02\/uof\u2026","indices":[97,120]}],"media":[{"id":1179723665094713344,"id_str":"1179723665094713344","indices":[137,160],"media_url":"http:\/\/pbs.twimg.com\/media\/EF84bEcXoAA-yHI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF84bEcXoAA-yHI.jpg","url":"https:\/\/t.co\/ww0KaPKBHd","display_url":"pic.twitter.com\/ww0KaPKBHd","expanded_url":"https:\/\/twitter.com\/EdTech_UofSC\/status\/1179723669448396800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":672,"resize":"fit"},"large":{"w":768,"h":759,"resize":"fit"},"medium":{"w":768,"h":759,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1179723665094713344,"id_str":"1179723665094713344","indices":[137,160],"media_url":"http:\/\/pbs.twimg.com\/media\/EF84bEcXoAA-yHI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF84bEcXoAA-yHI.jpg","url":"https:\/\/t.co\/ww0KaPKBHd","display_url":"pic.twitter.com\/ww0KaPKBHd","expanded_url":"https:\/\/twitter.com\/EdTech_UofSC\/status\/1179723669448396800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":672,"resize":"fit"},"large":{"w":768,"h":759,"resize":"fit"},"medium":{"w":768,"h":759,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1269656353,"in_reply_to_user_id_str":"1269656353","in_reply_to_screen_name":"UofSCEducation","user":{"id":2835369671,"id_str":"2835369671","name":"LD&T + and EdTech at UofSC","screen_name":"EdTech_UofSC","location":"South Carolina","description":"Our + LD&T\/EdTech programs are shared with USC-Columbia & USC-Aiken. We offer Masters + & doctoral degrees + distance education certification \u2014 all 100% online!","url":"https:\/\/t.co\/S5lHVmmaud","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/S5lHVmmaud","expanded_url":"https:\/\/sc.edu\/study\/colleges_schools\/education\/study\/advanced_study_in_education\/learning_design_te","display_url":"sc.edu\/study\/colleges\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":455,"friends_count":50,"listed_count":16,"created_at":"Fri + Oct 17 18:52:36 +0000 2014","favourites_count":353,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":667,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1265318847764148226\/-Y6YxrdB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1265318847764148226\/-Y6YxrdB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2835369671\/1590519327","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 02 13:02:21 +0000 2019","id":1179381101502062592,"id_str":"1179381101502062592","full_text":"Join + us on Oct 2nd, 12 PM EDT for our webinar \u201cWhat Happens in Vegas Does + Not Stay in Vegas.\u201d Drs. @michaelmgrant, John Curry, and Rebecca Reese + will share insights on navigating learning & networking opportunities + during the #AECT19 convention.Register at https:\/\/t.co\/WWv929H2wu https:\/\/t.co\/8clTHMJEuf","truncated":false,"display_text_range":[0,284],"entities":{"hashtags":[{"text":"AECT19","indices":[230,237]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[99,113]}],"urls":[{"url":"https:\/\/t.co\/WWv929H2wu","expanded_url":"http:\/\/bit.ly\/aect-gsa-2019-6","display_url":"bit.ly\/aect-gsa-2019-6","indices":[261,284]}],"media":[{"id":1179381099258093576,"id_str":"1179381099258093576","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EF4A3HQWoAg1xpl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF4A3HQWoAg1xpl.jpg","url":"https:\/\/t.co\/8clTHMJEuf","display_url":"pic.twitter.com\/8clTHMJEuf","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1179381101502062592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1179381099258093576,"id_str":"1179381099258093576","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EF4A3HQWoAg1xpl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF4A3HQWoAg1xpl.jpg","url":"https:\/\/t.co\/8clTHMJEuf","display_url":"pic.twitter.com\/8clTHMJEuf","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1179381101502062592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Sep 30 20:31:06 +0000 2019","id":1178769257578057729,"id_str":"1178769257578057729","full_text":"RT + @michaelmgrant: @AECT Check out the universities participating as part of + the joint reception on Thurs, 10\/24. \n#aect19inspired https:\/\/\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19inspired","indices":[115,130]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[19,24]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Sep 30 18:55:34 +0000 2019","id":1178745219405287424,"id_str":"1178745219405287424","full_text":"@AECT + Check out the universities participating as part of the joint reception on + Thurs, 10\/24. \n#aect19inspired https:\/\/t.co\/XZduGbo9U9","truncated":false,"display_text_range":[0,111],"entities":{"hashtags":[{"text":"aect19inspired","indices":[96,111]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]}],"urls":[],"media":[{"id":1178745214808313856,"id_str":"1178745214808313856","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/EFu-hxFXUAAK7v1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EFu-hxFXUAAK7v1.jpg","url":"https:\/\/t.co\/XZduGbo9U9","display_url":"pic.twitter.com\/XZduGbo9U9","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1178745219405287424\/photo\/1","type":"photo","sizes":{"small":{"w":515,"h":680,"resize":"fit"},"large":{"w":750,"h":990,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":990,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1178745214808313856,"id_str":"1178745214808313856","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/EFu-hxFXUAAK7v1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EFu-hxFXUAAK7v1.jpg","url":"https:\/\/t.co\/XZduGbo9U9","display_url":"pic.twitter.com\/XZduGbo9U9","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1178745219405287424\/photo\/1","type":"photo","sizes":{"small":{"w":515,"h":680,"resize":"fit"},"large":{"w":750,"h":990,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":990,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"6057f1e35bcc6c20","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/6057f1e35bcc6c20.json","place_type":"admin","name":"South + Carolina","full_name":"South Carolina, USA","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-83.353955,32.04683],[-78.499301,32.04683],[-78.499301,35.215449],[-83.353955,35.215449]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 02 13:09:59 +0000 2019","id":1179383025492250624,"id_str":"1179383025492250624","full_text":"@gsa_aect + Looking forward to it! #aect19inspired #inspiredme","truncated":false,"display_text_range":[10,60],"entities":{"hashtags":[{"text":"aect19inspired","indices":[33,48]},{"text":"inspiredme","indices":[49,60]}],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[0,9]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1179381101502062592,"in_reply_to_status_id_str":"1179381101502062592","in_reply_to_user_id":922536306437181440,"in_reply_to_user_id_str":"922536306437181440","in_reply_to_screen_name":"gsa_aect","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 04 22:05:14 +0000 2019","id":1180242498008096769,"id_str":"1180242498008096769","full_text":"RT + @AnnaRoseLeach: @michaelmgrant @AECT @caranorth11 inspires me to think deeply + about how I approach and present materials for my classes\u2026","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AnnaRoseLeach","name":"Anna + Leach","id":769261047312035840,"id_str":"769261047312035840","indices":[3,17]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[19,33]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[34,39]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[40,52]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 04 22:00:18 +0000 2019","id":1180241259740270592,"id_str":"1180241259740270592","full_text":"@michaelmgrant + @AECT @caranorth11 inspires me to think deeply about how I approach and present + materials for my classes #aect19inspired","truncated":false,"display_text_range":[21,135],"entities":{"hashtags":[{"text":"aect19inspired","indices":[120,135]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[0,14]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[15,20]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[21,33]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1179731379942240256,"in_reply_to_status_id_str":"1179731379942240256","in_reply_to_user_id":132653457,"in_reply_to_user_id_str":"132653457","in_reply_to_screen_name":"michaelmgrant","user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"013379ee5729a5e6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/013379ee5729a5e6.json","place_type":"city","name":"Tucson","full_name":"Tucson, + AZ","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-111.083219,32.057802],[-110.747928,32.057802],[-110.747928,32.320979],[-111.083219,32.320979]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 03 12:29:26 +0000 2019","id":1179735206271623168,"id_str":"1179735206271623168","full_text":"RT + @FredWBaker: AECT''s Systems Thinking & Change Division released a Call + for Proposals for our special issue of @AECTTechTrends!! Please c\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[117,132]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 02 13:32:27 +0000 2019","id":1179388678793306112,"id_str":"1179388678793306112","full_text":"AECT''s + Systems Thinking & Change Division released a Call for Proposals for our + special issue of @AECTTechTrends!! Please consider submitting a proposal, + and please share with your colleagues! #aectstc #aect19 https:\/\/t.co\/ygldlqUE5o","truncated":false,"display_text_range":[0,237],"entities":{"hashtags":[{"text":"aectstc","indices":[197,205]},{"text":"aect19","indices":[206,213]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[101,116]}],"urls":[{"url":"https:\/\/t.co\/ygldlqUE5o","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view?usp=sharing","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[214,237]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Sep 30 21:59:34 +0000 2019","id":1178791520587145218,"id_str":"1178791520587145218","full_text":"I''m + going to be there and get me some sweet swag. I need some new pens. #aect19inspired + https:\/\/t.co\/KPuQiq7AzR","truncated":false,"display_text_range":[0,87],"entities":{"hashtags":[{"text":"aect19inspired","indices":[72,87]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KPuQiq7AzR","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1178745219405287424","display_url":"twitter.com\/michaelmgrant\/\u2026","indices":[88,111]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17467478,"id_str":"17467478","name":"Marshall + G. Jones","screen_name":"marshallgjones","location":"Rock Hill, SC USA","description":"Professor + of Learning Design & Technology. Musician. Photographer. Tweeting about learning, + technology & whatever else strikes me. Tweets are my own.","url":"https:\/\/t.co\/HGRry3tHo4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HGRry3tHo4","expanded_url":"http:\/\/marshallgjones.com","display_url":"marshallgjones.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1022,"friends_count":889,"listed_count":71,"created_at":"Tue + Nov 18 18:26:51 +0000 2008","favourites_count":7553,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8342,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17467478\/1570054414","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1178745219405287424,"quoted_status_id_str":"1178745219405287424","quoted_status_permalink":{"url":"https:\/\/t.co\/KPuQiq7AzR","expanded":"https:\/\/twitter.com\/michaelmgrant\/status\/1178745219405287424","display":"twitter.com\/michaelmgrant\/\u2026"},"quoted_status":{"created_at":"Mon + Sep 30 18:55:34 +0000 2019","id":1178745219405287424,"id_str":"1178745219405287424","full_text":"@AECT + Check out the universities participating as part of the joint reception on + Thurs, 10\/24. \n#aect19inspired https:\/\/t.co\/XZduGbo9U9","truncated":false,"display_text_range":[0,111],"entities":{"hashtags":[{"text":"aect19inspired","indices":[96,111]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]}],"urls":[],"media":[{"id":1178745214808313856,"id_str":"1178745214808313856","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/EFu-hxFXUAAK7v1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EFu-hxFXUAAK7v1.jpg","url":"https:\/\/t.co\/XZduGbo9U9","display_url":"pic.twitter.com\/XZduGbo9U9","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1178745219405287424\/photo\/1","type":"photo","sizes":{"small":{"w":515,"h":680,"resize":"fit"},"large":{"w":750,"h":990,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":990,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1178745214808313856,"id_str":"1178745214808313856","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/EFu-hxFXUAAK7v1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EFu-hxFXUAAK7v1.jpg","url":"https:\/\/t.co\/XZduGbo9U9","display_url":"pic.twitter.com\/XZduGbo9U9","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1178745219405287424\/photo\/1","type":"photo","sizes":{"small":{"w":515,"h":680,"resize":"fit"},"large":{"w":750,"h":990,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":750,"h":990,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"6057f1e35bcc6c20","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/6057f1e35bcc6c20.json","place_type":"admin","name":"South + Carolina","full_name":"South Carolina, USA","country_code":"US","country":"United + States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-83.353955,32.04683],[-78.499301,32.04683],[-78.499301,35.215449],[-83.353955,35.215449]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 02 10:04:33 +0000 2019","id":1179336357006757889,"id_str":"1179336357006757889","full_text":"RT + @gsa_aect: Join us on Oct 2nd, 12 PM EDT for our webinar \u201cWhat Happens + in Vegas Does Not Stay in Vegas.\u201d Drs. @michaelmgrant, John Curry\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[113,127]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":966397466475204608,"id_str":"966397466475204608","name":"AECT + Internship","screen_name":"AectInternship","location":"","description":"The + AECT Addie Kinsinger Leadership Development Internship Program supports future + leaders in AECT and the field of IDT.","url":"https:\/\/t.co\/rUfOKlczyK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rUfOKlczyK","expanded_url":"http:\/\/aect.org\/internprogram","display_url":"aect.org\/internprogram","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":180,"friends_count":101,"listed_count":2,"created_at":"Wed + Feb 21 19:41:25 +0000 2018","favourites_count":99,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":92,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/969229525635788802\/x8Bbhxpx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/969229525635788802\/x8Bbhxpx_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 01 21:00:57 +0000 2019","id":1179139159425998848,"id_str":"1179139159425998848","full_text":"Join + us on Oct 2nd, 12 PM EDT for our webinar \u201cWhat Happens in Vegas Does + Not Stay in Vegas.\u201d Drs. @michaelmgrant, John Curry, and Rebecca Reese + will share insights on navigating learning & networking opportunities + during the #AECT19 convention.Register at https:\/\/t.co\/WWv929H2wu https:\/\/t.co\/sV0ffXn2wX","truncated":false,"display_text_range":[0,284],"entities":{"hashtags":[{"text":"AECT19","indices":[230,237]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[99,113]}],"urls":[{"url":"https:\/\/t.co\/WWv929H2wu","expanded_url":"http:\/\/bit.ly\/aect-gsa-2019-6","display_url":"bit.ly\/aect-gsa-2019-6","indices":[261,284]}],"media":[{"id":1179139157400199169,"id_str":"1179139157400199169","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EF0k0PmXoAEhhlP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF0k0PmXoAEhhlP.jpg","url":"https:\/\/t.co\/sV0ffXn2wX","display_url":"pic.twitter.com\/sV0ffXn2wX","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1179139159425998848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1179139157400199169,"id_str":"1179139157400199169","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EF0k0PmXoAEhhlP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF0k0PmXoAEhhlP.jpg","url":"https:\/\/t.co\/sV0ffXn2wX","display_url":"pic.twitter.com\/sV0ffXn2wX","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1179139159425998848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 04 22:04:41 +0000 2019","id":1180242363534467072,"id_str":"1180242363534467072","full_text":"RT + @dctrcurry: We''re going to keep counting down, so you may as well accept + it!\n\nSee you all at #aect19inspired! https:\/\/t.co\/ZMKYsDwMmV","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19inspired","indices":[96,111]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[3,13]}],"urls":[],"media":[{"id":1180158247551913984,"id_str":"1180158247551913984","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/EGDDrGQUUAAaQP-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGDDrGQUUAAaQP-.jpg","url":"https:\/\/t.co\/ZMKYsDwMmV","display_url":"pic.twitter.com\/ZMKYsDwMmV","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1180158250836058113\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":441,"h":478,"resize":"fit"},"medium":{"w":441,"h":478,"resize":"fit"},"large":{"w":441,"h":478,"resize":"fit"}},"source_status_id":1180158250836058113,"source_status_id_str":"1180158250836058113","source_user_id":14116271,"source_user_id_str":"14116271"}]},"extended_entities":{"media":[{"id":1180158247551913984,"id_str":"1180158247551913984","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/EGDDrGQUUAAaQP-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGDDrGQUUAAaQP-.jpg","url":"https:\/\/t.co\/ZMKYsDwMmV","display_url":"pic.twitter.com\/ZMKYsDwMmV","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1180158250836058113\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":441,"h":478,"resize":"fit"},"medium":{"w":441,"h":478,"resize":"fit"},"large":{"w":441,"h":478,"resize":"fit"}},"source_status_id":1180158250836058113,"source_status_id_str":"1180158250836058113","source_user_id":14116271,"source_user_id_str":"14116271","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 04 16:30:27 +0000 2019","id":1180158250836058113,"id_str":"1180158250836058113","full_text":"We''re + going to keep counting down, so you may as well accept it!\n\nSee you all + at #aect19inspired! https:\/\/t.co\/ZMKYsDwMmV","truncated":false,"display_text_range":[0,97],"entities":{"hashtags":[{"text":"aect19inspired","indices":[81,96]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1180158247551913984,"id_str":"1180158247551913984","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/EGDDrGQUUAAaQP-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGDDrGQUUAAaQP-.jpg","url":"https:\/\/t.co\/ZMKYsDwMmV","display_url":"pic.twitter.com\/ZMKYsDwMmV","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1180158250836058113\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":441,"h":478,"resize":"fit"},"medium":{"w":441,"h":478,"resize":"fit"},"large":{"w":441,"h":478,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1180158247551913984,"id_str":"1180158247551913984","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/EGDDrGQUUAAaQP-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGDDrGQUUAAaQP-.jpg","url":"https:\/\/t.co\/ZMKYsDwMmV","display_url":"pic.twitter.com\/ZMKYsDwMmV","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1180158250836058113\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":441,"h":478,"resize":"fit"},"medium":{"w":441,"h":478,"resize":"fit"},"large":{"w":441,"h":478,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 02 17:42:10 +0000 2019","id":1179451519881682944,"id_str":"1179451519881682944","full_text":"RT + @gsa_aect: Remember, the convention offers workshop sessions every day, including + the invited workshop, according to @michaelmgrant. Mak\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]},{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[120,134]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 02 16:10:53 +0000 2019","id":1179428549947805697,"id_str":"1179428549947805697","full_text":"Remember, + the convention offers workshop sessions every day, including the invited workshop, + according to @michaelmgrant. Make sure you check it out. #aect19 #aect19inspired","truncated":false,"display_text_range":[0,173],"entities":{"hashtags":[{"text":"aect19","indices":[150,157]},{"text":"aect19inspired","indices":[158,173]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[106,120]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Thu + Oct 03 19:44:42 +0000 2019","id":1179844747063631872,"id_str":"1179844747063631872","full_text":"RT + @dctrcurry: How long until #AECT19Inspired? https:\/\/t.co\/jkenBKQ2Ig","truncated":false,"display_text_range":[0,70],"entities":{"hashtags":[{"text":"AECT19Inspired","indices":[30,45]}],"symbols":[],"user_mentions":[{"screen_name":"dctrcurry","name":"John + H. Curry","id":14116271,"id_str":"14116271","indices":[3,13]}],"urls":[],"media":[{"id":1179824703927545856,"id_str":"1179824703927545856","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/EF-UUTbU8AAWESs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF-UUTbU8AAWESs.jpg","url":"https:\/\/t.co\/jkenBKQ2Ig","display_url":"pic.twitter.com\/jkenBKQ2Ig","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1179824706511204353\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":650,"resize":"fit"},"large":{"w":800,"h":650,"resize":"fit"},"small":{"w":680,"h":553,"resize":"fit"}},"source_status_id":1179824706511204353,"source_status_id_str":"1179824706511204353","source_user_id":14116271,"source_user_id_str":"14116271"}]},"extended_entities":{"media":[{"id":1179824703927545856,"id_str":"1179824703927545856","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/EF-UUTbU8AAWESs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF-UUTbU8AAWESs.jpg","url":"https:\/\/t.co\/jkenBKQ2Ig","display_url":"pic.twitter.com\/jkenBKQ2Ig","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1179824706511204353\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":650,"resize":"fit"},"large":{"w":800,"h":650,"resize":"fit"},"small":{"w":680,"h":553,"resize":"fit"}},"source_status_id":1179824706511204353,"source_status_id_str":"1179824706511204353","source_user_id":14116271,"source_user_id_str":"14116271","ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 03 18:25:04 +0000 2019","id":1179824706511204353,"id_str":"1179824706511204353","full_text":"How + long until #AECT19Inspired? https:\/\/t.co\/jkenBKQ2Ig","truncated":false,"display_text_range":[0,31],"entities":{"hashtags":[{"text":"AECT19Inspired","indices":[15,30]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1179824703927545856,"id_str":"1179824703927545856","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/EF-UUTbU8AAWESs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF-UUTbU8AAWESs.jpg","url":"https:\/\/t.co\/jkenBKQ2Ig","display_url":"pic.twitter.com\/jkenBKQ2Ig","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1179824706511204353\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":650,"resize":"fit"},"large":{"w":800,"h":650,"resize":"fit"},"small":{"w":680,"h":553,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1179824703927545856,"id_str":"1179824703927545856","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/EF-UUTbU8AAWESs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF-UUTbU8AAWESs.jpg","url":"https:\/\/t.co\/jkenBKQ2Ig","display_url":"pic.twitter.com\/jkenBKQ2Ig","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1179824706511204353\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":800,"h":650,"resize":"fit"},"large":{"w":800,"h":650,"resize":"fit"},"small":{"w":680,"h":553,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 02 01:19:07 +0000 2019","id":1179204128649744386,"id_str":"1179204128649744386","full_text":"RT + @ThomasLamey1: Remember to use #aect19 for social media posts while there. + We\u2019d love to see what you\u2019re presenting, attending, or showin\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"aect19","indices":[34,41]}],"symbols":[],"user_mentions":[{"screen_name":"ThomasLamey1","name":"Thomas + Lamey","id":1426994293898629126,"id_str":"1426994293898629126","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Sep 28 00:07:03 +0000 2019","id":1177736442941976576,"id_str":"1177736442941976576","full_text":"Remember + to use #aect19 for social media posts while there. We\u2019d love to see what + you\u2019re presenting, attending, or showing off! https:\/\/t.co\/p0rZfsFE4S","truncated":false,"display_text_range":[0,151],"entities":{"hashtags":[{"text":"aect19","indices":[16,23]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/p0rZfsFE4S","expanded_url":"https:\/\/www.instagram.com\/p\/B27yY2tDTKt\/?igshid=9xp04arjbxy0","display_url":"instagram.com\/p\/B27yY2tDTKt\/\u2026","indices":[128,151]}]},"source":"\u003ca + href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 02 16:28:13 +0000 2019","id":1179432912300597248,"id_str":"1179432912300597248","full_text":"If + you are a Twitter user, don\u2019t be shy to share your #aect19 experiences. + Make sure you use the tags: #aect19 #aect19inspired #InspiredMe #InspiresMe","truncated":false,"display_text_range":[0,151],"entities":{"hashtags":[{"text":"aect19","indices":[54,61]},{"text":"aect19","indices":[103,110]},{"text":"aect19inspired","indices":[111,126]},{"text":"InspiredMe","indices":[128,139]},{"text":"InspiresMe","indices":[140,151]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 01 12:56:39 +0000 2019","id":1179017280623132673,"id_str":"1179017280623132673","full_text":"RT + @AECT: Remember to use #AECT19 for sharing social media posts about the convention! + https:\/\/t.co\/lShAIQIhcC","truncated":false,"display_text_range":[0,110],"entities":{"hashtags":[{"text":"AECT19","indices":[26,33]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[],"media":[{"id":1178811171291447298,"id_str":"1178811171291447298","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1178811171291447298\/pu\/img\/2aKUCzMFrnaumYeu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1178811171291447298\/pu\/img\/2aKUCzMFrnaumYeu.jpg","url":"https:\/\/t.co\/lShAIQIhcC","display_url":"pic.twitter.com\/lShAIQIhcC","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1178811185493348352\/video\/1","type":"photo","sizes":{"large":{"w":480,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":416,"resize":"fit"},"small":{"w":480,"h":416,"resize":"fit"}},"source_status_id":1178811185493348352,"source_status_id_str":"1178811185493348352","source_user_id":12030342,"source_user_id_str":"12030342"}]},"extended_entities":{"media":[{"id":1178811171291447298,"id_str":"1178811171291447298","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1178811171291447298\/pu\/img\/2aKUCzMFrnaumYeu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1178811171291447298\/pu\/img\/2aKUCzMFrnaumYeu.jpg","url":"https:\/\/t.co\/lShAIQIhcC","display_url":"pic.twitter.com\/lShAIQIhcC","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1178811185493348352\/video\/1","type":"video","sizes":{"large":{"w":480,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":416,"resize":"fit"},"small":{"w":480,"h":416,"resize":"fit"}},"source_status_id":1178811185493348352,"source_status_id_str":"1178811185493348352","source_user_id":12030342,"source_user_id_str":"12030342","video_info":{"aspect_ratio":[15,13],"duration_millis":5000,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1178811171291447298\/pu\/vid\/310x270\/6E5SOY7_uUlRnwnU.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1178811171291447298\/pu\/vid\/480x416\/XE0QZuxNzOyC6KQ-.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1178811171291447298\/pu\/pl\/AdEJwHMVXwI50zFj.m3u8?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false,"source_user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]}}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Sep 30 23:17:42 +0000 2019","id":1178811185493348352,"id_str":"1178811185493348352","full_text":"Remember + to use #AECT19 for sharing social media posts about the convention! https:\/\/t.co\/lShAIQIhcC","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"AECT19","indices":[16,23]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1178811171291447298,"id_str":"1178811171291447298","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1178811171291447298\/pu\/img\/2aKUCzMFrnaumYeu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1178811171291447298\/pu\/img\/2aKUCzMFrnaumYeu.jpg","url":"https:\/\/t.co\/lShAIQIhcC","display_url":"pic.twitter.com\/lShAIQIhcC","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1178811185493348352\/video\/1","type":"photo","sizes":{"large":{"w":480,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":416,"resize":"fit"},"small":{"w":480,"h":416,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1178811171291447298,"id_str":"1178811171291447298","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1178811171291447298\/pu\/img\/2aKUCzMFrnaumYeu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1178811171291447298\/pu\/img\/2aKUCzMFrnaumYeu.jpg","url":"https:\/\/t.co\/lShAIQIhcC","display_url":"pic.twitter.com\/lShAIQIhcC","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1178811185493348352\/video\/1","type":"video","sizes":{"large":{"w":480,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":416,"resize":"fit"},"small":{"w":480,"h":416,"resize":"fit"}},"video_info":{"aspect_ratio":[15,13],"duration_millis":5000,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1178811171291447298\/pu\/vid\/310x270\/6E5SOY7_uUlRnwnU.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1178811171291447298\/pu\/vid\/480x416\/XE0QZuxNzOyC6KQ-.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1178811171291447298\/pu\/pl\/AdEJwHMVXwI50zFj.m3u8?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 04 22:00:18 +0000 2019","id":1180241259740270592,"id_str":"1180241259740270592","full_text":"@michaelmgrant + @AECT @caranorth11 inspires me to think deeply about how I approach and present + materials for my classes #aect19inspired","truncated":false,"display_text_range":[21,135],"entities":{"hashtags":[{"text":"aect19inspired","indices":[120,135]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[0,14]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[15,20]},{"screen_name":"caranorth11","name":"Cara + North","id":715304516791451648,"id_str":"715304516791451648","indices":[21,33]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1179731379942240256,"in_reply_to_status_id_str":"1179731379942240256","in_reply_to_user_id":132653457,"in_reply_to_user_id_str":"132653457","in_reply_to_screen_name":"michaelmgrant","user":{"id":769261047312035840,"id_str":"769261047312035840","name":"Anna + Leach","screen_name":"AnnaRoseLeach","location":"Tucson, AZ","description":"A + PhD student at University of Arizona iSchool. My attention varies between + information, technology, and people. In my free time I get Netflix bingey + & crochet.","url":"https:\/\/t.co\/EXypHIGOOQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/EXypHIGOOQ","expanded_url":"https:\/\/annaroseleach.com\/","display_url":"annaroseleach.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":595,"friends_count":517,"listed_count":14,"created_at":"Fri + Aug 26 19:51:40 +0000 2016","favourites_count":1783,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2838,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1114295322824458241\/lN4shXKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769261047312035840\/1524406181","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"013379ee5729a5e6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/013379ee5729a5e6.json","place_type":"city","name":"Tucson","full_name":"Tucson, + AZ","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-111.083219,32.057802],[-110.747928,32.057802],[-110.747928,32.320979],[-111.083219,32.320979]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 04 22:11:31 +0000 2019","id":1180244081513029632,"id_str":"1180244081513029632","full_text":"@jmenglund03 + Search AECT in the App Store. The app will be updated soon for #AECT19. In + the meantime you can find the schedule at https:\/\/t.co\/HLbut9liTM.","truncated":false,"display_text_range":[13,154],"entities":{"hashtags":[{"text":"AECT19","indices":[76,83]}],"symbols":[],"user_mentions":[{"screen_name":"jmenglund03","name":"jenn\u03b9\u0493er + engl\u03c5nd","id":64769037,"id_str":"64769037","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/HLbut9liTM","expanded_url":"http:\/\/bit.ly\/AECT19program","display_url":"bit.ly\/AECT19program","indices":[130,153]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1180203141519806466,"in_reply_to_status_id_str":"1180203141519806466","in_reply_to_user_id":64769037,"in_reply_to_user_id_str":"64769037","in_reply_to_screen_name":"jmenglund03","user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 02 16:41:08 +0000 2019","id":1179436162219302912,"id_str":"1179436162219302912","full_text":"The + University Reception on Thursday evening provides an opportunity to get connected + with colleagues and graduate students from other universities. You can ask + them questions related to research ideas, future career opportunity or similar + interests. #aect19 #aect19inspired","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"aect19","indices":[251,258]},{"text":"aect19inspired","indices":[260,275]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 01 21:55:27 +0000 2019","id":1179152872296128512,"id_str":"1179152872296128512","full_text":"RT + @michaelmgrant: @AECT Who has inspired you? Share a story. Post a pic. Tag + a colleague\/friend.\n#aect19inspired https:\/\/t.co\/jpaMbNkiX2","truncated":false,"display_text_range":[0,137],"entities":{"hashtags":[{"text":"aect19inspired","indices":[98,113]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[3,17]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[19,24]}],"urls":[],"media":[{"id":1178714053566271488,"id_str":"1178714053566271488","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/EFuiL8aUEAAcpv7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EFuiL8aUEAAcpv7.jpg","url":"https:\/\/t.co\/jpaMbNkiX2","display_url":"pic.twitter.com\/jpaMbNkiX2","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1179048322096652289\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}},"source_status_id":1179048322096652289,"source_status_id_str":"1179048322096652289","source_user_id":132653457,"source_user_id_str":"132653457"}]},"extended_entities":{"media":[{"id":1178714053566271488,"id_str":"1178714053566271488","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/EFuiL8aUEAAcpv7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EFuiL8aUEAAcpv7.jpg","url":"https:\/\/t.co\/jpaMbNkiX2","display_url":"pic.twitter.com\/jpaMbNkiX2","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1179048322096652289\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}},"source_status_id":1179048322096652289,"source_status_id_str":"1179048322096652289","source_user_id":132653457,"source_user_id_str":"132653457","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Oct 01 15:00:00 +0000 2019","id":1179048322096652289,"id_str":"1179048322096652289","full_text":"@AECT + Who has inspired you? Share a story. Post a pic. Tag a colleague\/friend.\n#aect19inspired + https:\/\/t.co\/jpaMbNkiX2","truncated":false,"display_text_range":[0,94],"entities":{"hashtags":[{"text":"aect19inspired","indices":[79,94]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]}],"urls":[],"media":[{"id":1178714053566271488,"id_str":"1178714053566271488","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/EFuiL8aUEAAcpv7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EFuiL8aUEAAcpv7.jpg","url":"https:\/\/t.co\/jpaMbNkiX2","display_url":"pic.twitter.com\/jpaMbNkiX2","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1179048322096652289\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1178714053566271488,"id_str":"1178714053566271488","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/EFuiL8aUEAAcpv7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EFuiL8aUEAAcpv7.jpg","url":"https:\/\/t.co\/jpaMbNkiX2","display_url":"pic.twitter.com\/jpaMbNkiX2","expanded_url":"https:\/\/twitter.com\/michaelmgrant\/status\/1179048322096652289\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1200,"h":417,"resize":"fit"},"small":{"w":680,"h":236,"resize":"fit"},"medium":{"w":1200,"h":417,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Sep 30 21:35:13 +0000 2019","id":1178785395351396353,"id_str":"1178785395351396353","full_text":"RT + @AECT: Have you seen the line up of #AECT19 invited workshops? Don''t miss + Inspiring Phenomenological Research & Ed Practice w\/Keri Valen\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[{"text":"AECT19","indices":[39,46]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":47010668,"id_str":"47010668","name":"dr. + cassie scharber","screen_name":"cscharber","location":"Minneapolis, MN","description":"associate + professor @UMNews \u2022 @LT_UMN \u2022 director L+T Collaborative \u2022 + leadership team @CSforAllMN \u2022 edtech + CSEd \u2022 bookworm \u2022 thoughts + = mine \u2022 she\/her\/hers","url":"https:\/\/t.co\/zJo2mBCMSS","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zJo2mBCMSS","expanded_url":"http:\/\/lt.umn.edu","display_url":"lt.umn.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1543,"friends_count":3276,"listed_count":132,"created_at":"Sun + Jun 14 02:05:26 +0000 2009","favourites_count":27137,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4747,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1054508347049865216\/0Usr8wi8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1054508347049865216\/0Usr8wi8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/47010668\/1412905415","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Sep 12 19:00:01 +0000 2019","id":1172223355526582272,"id_str":"1172223355526582272","full_text":"Have + you seen the line up of #AECT19 invited workshops? Don''t miss Inspiring Phenomenological + Research & Ed Practice w\/Keri Valentine, Mark Vagle, Jolie Kennedy, & + Angelica Pazurek on 10\/24 1-3:50! And don''t miss our special ONE-DAY DEAL + on fee-based workshops! #aect19inspired https:\/\/t.co\/UPYiubCGgU","truncated":false,"display_text_range":[0,285],"entities":{"hashtags":[{"text":"AECT19","indices":[29,36]},{"text":"aect19inspired","indices":[270,285]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1172177755426844672,"id_str":"1172177755426844672","indices":[286,309],"media_url":"http:\/\/pbs.twimg.com\/media\/EERpdUXU8AAFlso.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EERpdUXU8AAFlso.jpg","url":"https:\/\/t.co\/UPYiubCGgU","display_url":"pic.twitter.com\/UPYiubCGgU","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1172223355526582272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1172177755426844672,"id_str":"1172177755426844672","indices":[286,309],"media_url":"http:\/\/pbs.twimg.com\/media\/EERpdUXU8AAFlso.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EERpdUXU8AAFlso.jpg","url":"https:\/\/t.co\/UPYiubCGgU","display_url":"pic.twitter.com\/UPYiubCGgU","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1172223355526582272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1080,"h":1080,"resize":"fit"},"large":{"w":1080,"h":1080,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 01 21:59:53 +0000 2019","id":1179153991797805057,"id_str":"1179153991797805057","full_text":"RT + @ThomasLamey1: You know he\u2019ll be there, so when you attend #aect19inspired + let him know about it via #aect19 https:\/\/t.co\/XQs04pKPvb","truncated":false,"display_text_range":[0,135],"entities":{"hashtags":[{"text":"aect19inspired","indices":[62,77]},{"text":"aect19","indices":[104,111]}],"symbols":[],"user_mentions":[{"screen_name":"ThomasLamey1","name":"Thomas + Lamey","id":1426994293898629126,"id_str":"1426994293898629126","indices":[3,16]}],"urls":[],"media":[{"id":1177737114991124481,"id_str":"1177737114991124481","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/EFgpqonW4AEB4ki.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EFgpqonW4AEB4ki.jpg","url":"https:\/\/t.co\/XQs04pKPvb","display_url":"pic.twitter.com\/XQs04pKPvb","expanded_url":"https:\/\/twitter.com\/ThomasLamey1\/status\/1177737118686306304\/photo\/1","type":"photo","sizes":{"small":{"w":458,"h":655,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":458,"h":655,"resize":"fit"},"large":{"w":458,"h":655,"resize":"fit"}},"source_status_id":1177737118686306304,"source_status_id_str":"1177737118686306304","source_user_id":488020419,"source_user_id_str":"488020419"}]},"extended_entities":{"media":[{"id":1177737114991124481,"id_str":"1177737114991124481","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/EFgpqonW4AEB4ki.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EFgpqonW4AEB4ki.jpg","url":"https:\/\/t.co\/XQs04pKPvb","display_url":"pic.twitter.com\/XQs04pKPvb","expanded_url":"https:\/\/twitter.com\/ThomasLamey1\/status\/1177737118686306304\/photo\/1","type":"photo","sizes":{"small":{"w":458,"h":655,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":458,"h":655,"resize":"fit"},"large":{"w":458,"h":655,"resize":"fit"}},"source_status_id":1177737118686306304,"source_status_id_str":"1177737118686306304","source_user_id":488020419,"source_user_id_str":"488020419","ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Sep 28 00:09:45 +0000 2019","id":1177737118686306304,"id_str":"1177737118686306304","full_text":"You + know he\u2019ll be there, so when you attend #aect19inspired let him know + about it via #aect19 https:\/\/t.co\/XQs04pKPvb","truncated":false,"display_text_range":[0,93],"entities":{"hashtags":[{"text":"aect19inspired","indices":[44,59]},{"text":"aect19","indices":[86,93]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1177737114991124481,"id_str":"1177737114991124481","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/EFgpqonW4AEB4ki.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EFgpqonW4AEB4ki.jpg","url":"https:\/\/t.co\/XQs04pKPvb","display_url":"pic.twitter.com\/XQs04pKPvb","expanded_url":"https:\/\/twitter.com\/ThomasLamey1\/status\/1177737118686306304\/photo\/1","type":"photo","sizes":{"small":{"w":458,"h":655,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":458,"h":655,"resize":"fit"},"large":{"w":458,"h":655,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1177737114991124481,"id_str":"1177737114991124481","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/EFgpqonW4AEB4ki.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EFgpqonW4AEB4ki.jpg","url":"https:\/\/t.co\/XQs04pKPvb","display_url":"pic.twitter.com\/XQs04pKPvb","expanded_url":"https:\/\/twitter.com\/ThomasLamey1\/status\/1177737118686306304\/photo\/1","type":"photo","sizes":{"small":{"w":458,"h":655,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":458,"h":655,"resize":"fit"},"large":{"w":458,"h":655,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488020419,"id_str":"488020419","name":"Thomas + L.","screen_name":"SURTThomas","location":"","description":"Husband, Father, + RT Faculty, PhD, Steelers, Wrasslin, Golf. Gets a little rowdy at times. Views + are my own.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":295,"listed_count":23,"created_at":"Fri + Feb 10 00:18:45 +0000 2012","favourites_count":46395,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4889,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551018709698973696\/lZIu3QrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488020419\/1658626726","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 04 21:55:19 +0000 2019","id":1180240006440460289,"id_str":"1180240006440460289","full_text":"RT + @tadousay: Will #AECT19 be your first @AECT convention? Be sure to join us + for the First Timer''s Orientation on Monday, 10\/21 @ 4PM in P\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[19,26]}],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[41,46]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45256556,"id_str":"45256556","name":"Rob + Moore, Ph.D.","screen_name":"robmoore3","location":"Gainesville, FL","description":"Assistant + Professor, Educational Technology @UF_COE | Director @IDEATELab | Research: + MOOCs, learning analytics, digital ecologies | #GoHeels | Views are my own","url":"https:\/\/t.co\/txy253PRBZ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/txy253PRBZ","expanded_url":"https:\/\/education.ufl.edu\/faculty\/moore-rob\/","display_url":"education.ufl.edu\/faculty\/moore-\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1816,"friends_count":795,"listed_count":57,"created_at":"Sun + Jun 07 01:27:13 +0000 2009","favourites_count":740,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":18385,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527645023646490624\/fV4_EQ95_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45256556\/1630880688","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 04 20:44:49 +0000 2019","id":1180222260553994240,"id_str":"1180222260553994240","full_text":"Will + #AECT19 be your first @AECT convention? Be sure to join us for the First Timer''s + Orientation on Monday, 10\/21 @ 4PM in Pavilion 11. Meet new friends with + #AECTBingo & learn about the #AECTPokerRun for your chance at books & + swag. #aect19inspired #inspiredme https:\/\/t.co\/8MigSV9QHF","truncated":false,"display_text_range":[0,270],"entities":{"hashtags":[{"text":"AECT19","indices":[5,12]},{"text":"AECTBingo","indices":[159,169]},{"text":"AECTPokerRun","indices":[192,205]},{"text":"aect19inspired","indices":[243,258]},{"text":"inspiredme","indices":[259,270]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]}],"urls":[],"media":[{"id":1180222096309252096,"id_str":"1180222096309252096","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","url":"https:\/\/t.co\/8MigSV9QHF","display_url":"pic.twitter.com\/8MigSV9QHF","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1180222260553994240\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":604,"h":680,"resize":"fit"},"large":{"w":1252,"h":1410,"resize":"fit"},"medium":{"w":1066,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1180222096309252096,"id_str":"1180222096309252096","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","url":"https:\/\/t.co\/8MigSV9QHF","display_url":"pic.twitter.com\/8MigSV9QHF","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1180222260553994240\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":604,"h":680,"resize":"fit"},"large":{"w":1252,"h":1410,"resize":"fit"},"medium":{"w":1066,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 01 22:48:05 +0000 2019","id":1179166121104158720,"id_str":"1179166121104158720","full_text":"#aect19inspired + hive mind: can you share or contribute? https:\/\/t.co\/jSCo4oNw0Q","truncated":false,"display_text_range":[0,55],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/jSCo4oNw0Q","expanded_url":"https:\/\/twitter.com\/Profpatrice\/status\/1179080959922040832","display_url":"twitter.com\/Profpatrice\/st\u2026","indices":[56,79]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17467478,"id_str":"17467478","name":"Marshall + G. Jones","screen_name":"marshallgjones","location":"Rock Hill, SC USA","description":"Professor + of Learning Design & Technology. Musician. Photographer. Tweeting about learning, + technology & whatever else strikes me. Tweets are my own.","url":"https:\/\/t.co\/HGRry3tHo4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HGRry3tHo4","expanded_url":"http:\/\/marshallgjones.com","display_url":"marshallgjones.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1022,"friends_count":889,"listed_count":71,"created_at":"Tue + Nov 18 18:26:51 +0000 2008","favourites_count":7553,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8342,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17467478\/1570054414","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1179080959922040832,"quoted_status_id_str":"1179080959922040832","quoted_status_permalink":{"url":"https:\/\/t.co\/jSCo4oNw0Q","expanded":"https:\/\/twitter.com\/Profpatrice\/status\/1179080959922040832","display":"twitter.com\/Profpatrice\/st\u2026"},"quoted_status":{"created_at":"Tue + Oct 01 17:09:41 +0000 2019","id":1179080959922040832,"id_str":"1179080959922040832","full_text":"We + are doing research on what learning design courses look like at other institutions. + Wondering if anyone has syllabi they would share. Courses that cover core + topics or skills related to learning or instructional design, would be especially + helpful. @rjhogue @tadousay","truncated":false,"display_text_range":[0,270],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rjhogue","name":"Rebecca + J. Hogue","id":63568814,"id_str":"63568814","indices":[252,260]},{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[261,270]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":117825013,"id_str":"117825013","name":"Dr. + Patrice Torcivia Prusko","screen_name":"Profpatrice","location":"Cambridge, + MA","description":"@hgse #designthinking #OER Lecturer @ESCGradSchool @invinofab + podcast #invinofab #womeninSTEM cultivator of curiosity digital learning","url":"https:\/\/t.co\/oLbYBMUrte","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/oLbYBMUrte","expanded_url":"https:\/\/edtechisgorges.com","display_url":"edtechisgorges.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1819,"friends_count":1300,"listed_count":166,"created_at":"Fri + Feb 26 18:54:23 +0000 2010","favourites_count":12872,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10547,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/474995137336971264\/h8fRcYWm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/474995137336971264\/h8fRcYWm_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/117825013\/1402083052","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"7100B3","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":14,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Sep 30 22:53:15 +0000 2019","id":1178805034194259969,"id_str":"1178805034194259969","full_text":"The + #AECT19 convention is in just three weeks! Join us in Vegas October 21-25 + and be inspired by the latest research in learning, design, and technology.\n\nRegister: + https:\/\/t.co\/nZ8EUxpwMx https:\/\/t.co\/C006sw8977","truncated":false,"display_text_range":[0,188],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/nZ8EUxpwMx","expanded_url":"http:\/\/bit.ly\/AECT19registration","display_url":"bit.ly\/AECT19registra\u2026","indices":[165,188]}],"media":[{"id":1178805030243258368,"id_str":"1178805030243258368","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EFv07e8X0AAeF67.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EFv07e8X0AAeF67.jpg","url":"https:\/\/t.co\/C006sw8977","display_url":"pic.twitter.com\/C006sw8977","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1178805034194259969\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"},"small":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1178805030243258368,"id_str":"1178805030243258368","indices":[189,212],"media_url":"http:\/\/pbs.twimg.com\/media\/EFv07e8X0AAeF67.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EFv07e8X0AAeF67.jpg","url":"https:\/\/t.co\/C006sw8977","display_url":"pic.twitter.com\/C006sw8977","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1178805034194259969\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"},"small":{"w":600,"h":600,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 03 12:12:00 +0000 2019","id":1179730818022944770,"id_str":"1179730818022944770","full_text":"RT + @gsa_aect: Birds of a feather sessions are new this year. There will be 61 + tables hosted by divisions, discussing various timely, releva\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_extensions_alt_text":null,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 02 16:23:47 +0000 2019","id":1179431795701489664,"id_str":"1179431795701489664","full_text":"Birds + of a feather sessions are new this year. There will be 61 tables hosted by + divisions, discussing various timely, relevant topics that may be of your + interest. Oct 23, 5 pm, Paradise North. #aect19 #aect19inspired","truncated":false,"display_text_range":[0,218],"entities":{"hashtags":[{"text":"aect19","indices":[195,202]},{"text":"aect19inspired","indices":[203,218]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 02 16:57:31 +0000 2019","id":1179440284167372801,"id_str":"1179440284167372801","full_text":"This + webinar moderated in May will inspire you with ideas on how to navigate the + leadership opportunities in AECT. The discussion is timely as we''re getting + ready for #aect19 #aect19inspired https:\/\/t.co\/wTQxX0DbsE","truncated":false,"display_text_range":[0,190],"entities":{"hashtags":[{"text":"aect19","indices":[167,174]},{"text":"aect19inspired","indices":[175,190]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/wTQxX0DbsE","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1126263021750374400","display_url":"twitter.com\/gsa_aect\/statu\u2026","indices":[191,214]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1126263021750374400,"quoted_status_id_str":"1126263021750374400","quoted_status_permalink":{"url":"https:\/\/t.co\/wTQxX0DbsE","expanded":"https:\/\/twitter.com\/gsa_aect\/status\/1126263021750374400","display":"twitter.com\/gsa_aect\/statu\u2026"},"quoted_status":{"created_at":"Wed + May 08 23:10:03 +0000 2019","id":1126263021750374400,"id_str":"1126263021750374400","full_text":"This + is the recording of the webinar \u201cNavigating Leadership Opportunities + in AECT\u201d that took place today, May 8, at 1 pm EDT: https:\/\/t.co\/13hxrcIK0Y. + https:\/\/t.co\/GreEt1AkOI","truncated":false,"display_text_range":[0,150],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/13hxrcIK0Y","expanded_url":"https:\/\/youtu.be\/4lTE2Rk3DNs","display_url":"youtu.be\/4lTE2Rk3DNs","indices":[126,149]}],"media":[{"id":1126263020131442688,"id_str":"1126263020131442688","indices":[151,174],"media_url":"http:\/\/pbs.twimg.com\/media\/D6FKP-aX4AABuAT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/D6FKP-aX4AABuAT.jpg","url":"https:\/\/t.co\/GreEt1AkOI","display_url":"pic.twitter.com\/GreEt1AkOI","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1126263021750374400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":360,"resize":"fit"},"large":{"w":480,"h":360,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1126263020131442688,"id_str":"1126263020131442688","indices":[151,174],"media_url":"http:\/\/pbs.twimg.com\/media\/D6FKP-aX4AABuAT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/D6FKP-aX4AABuAT.jpg","url":"https:\/\/t.co\/GreEt1AkOI","display_url":"pic.twitter.com\/GreEt1AkOI","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1126263021750374400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":480,"h":360,"resize":"fit"},"large":{"w":480,"h":360,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 04 20:46:11 +0000 2019","id":1180222608194670592,"id_str":"1180222608194670592","full_text":"RT + @tadousay: Will #AECT19 be your first @AECT convention? Be sure to join us + for the First Timer''s Orientation on Monday, 10\/21 @ 4PM in P\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[19,26]}],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[41,46]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 04 20:44:49 +0000 2019","id":1180222260553994240,"id_str":"1180222260553994240","full_text":"Will + #AECT19 be your first @AECT convention? Be sure to join us for the First Timer''s + Orientation on Monday, 10\/21 @ 4PM in Pavilion 11. Meet new friends with + #AECTBingo & learn about the #AECTPokerRun for your chance at books & + swag. #aect19inspired #inspiredme https:\/\/t.co\/8MigSV9QHF","truncated":false,"display_text_range":[0,270],"entities":{"hashtags":[{"text":"AECT19","indices":[5,12]},{"text":"AECTBingo","indices":[159,169]},{"text":"AECTPokerRun","indices":[192,205]},{"text":"aect19inspired","indices":[243,258]},{"text":"inspiredme","indices":[259,270]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]}],"urls":[],"media":[{"id":1180222096309252096,"id_str":"1180222096309252096","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","url":"https:\/\/t.co\/8MigSV9QHF","display_url":"pic.twitter.com\/8MigSV9QHF","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1180222260553994240\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":604,"h":680,"resize":"fit"},"large":{"w":1252,"h":1410,"resize":"fit"},"medium":{"w":1066,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1180222096309252096,"id_str":"1180222096309252096","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","url":"https:\/\/t.co\/8MigSV9QHF","display_url":"pic.twitter.com\/8MigSV9QHF","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1180222260553994240\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":604,"h":680,"resize":"fit"},"large":{"w":1252,"h":1410,"resize":"fit"},"medium":{"w":1066,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 01 14:48:25 +0000 2019","id":1179045409815031811,"id_str":"1179045409815031811","full_text":"@AECT + that''s some good meme giffage right there...\n\n#aect19 https:\/\/t.co\/n767LTGYu6","truncated":false,"display_text_range":[6,59],"entities":{"hashtags":[{"text":"aect19","indices":[52,59]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[0,5]}],"urls":[],"media":[{"id":1179045170999742466,"id_str":"1179045170999742466","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EFzPVg-UUAIDvHz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EFzPVg-UUAIDvHz.jpg","url":"https:\/\/t.co\/n767LTGYu6","display_url":"pic.twitter.com\/n767LTGYu6","expanded_url":"https:\/\/twitter.com\/taevans\/status\/1179045409815031811\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":220,"h":220,"resize":"fit"},"small":{"w":220,"h":220,"resize":"fit"},"medium":{"w":220,"h":220,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1179045170999742466,"id_str":"1179045170999742466","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/EFzPVg-UUAIDvHz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/EFzPVg-UUAIDvHz.jpg","url":"https:\/\/t.co\/n767LTGYu6","display_url":"pic.twitter.com\/n767LTGYu6","expanded_url":"https:\/\/twitter.com\/taevans\/status\/1179045409815031811\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":220,"h":220,"resize":"fit"},"small":{"w":220,"h":220,"resize":"fit"},"medium":{"w":220,"h":220,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/tweet_video\/EFzPVg-UUAIDvHz.mp4"}]},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":1178811185493348352,"in_reply_to_status_id_str":"1178811185493348352","in_reply_to_user_id":12030342,"in_reply_to_user_id_str":"12030342","in_reply_to_screen_name":"AECT","user":{"id":17996583,"id_str":"17996583","name":"Tom + Evans","screen_name":"taevans","location":"Columbus, OH","description":"I + write words better than speak words\u2014I''m a quiet Canadian; educator; + husband; grandad; chef; musician; introvert with random extravert tendencies + (he\/him\/his)","url":"https:\/\/t.co\/AUjzLNFlpD","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/AUjzLNFlpD","expanded_url":"http:\/\/two95.wordpress.com","display_url":"two95.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1529,"friends_count":1514,"listed_count":106,"created_at":"Tue + Dec 09 17:37:52 +0000 2008","favourites_count":15369,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12399,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232418337029668865\/UJIdV3UM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232418337029668865\/UJIdV3UM_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17996583\/1507939212","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"000080","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 03 12:28:07 +0000 2019","id":1179734877542989825,"id_str":"1179734877542989825","full_text":"RT + @EdTech_UofSC: @UofSCEducation prof to lead international association for + learning technologies & research: https:\/\/t.co\/KeDvxEceA8\n#aec\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"EdTech_UofSC","name":"LD&T + and EdTech at UofSC","id":2835369671,"id_str":"2835369671","indices":[3,16]},{"screen_name":"UofSCEducation","name":"UofSC + Education","id":1269656353,"id_str":"1269656353","indices":[18,33]}],"urls":[{"url":"https:\/\/t.co\/KeDvxEceA8","expanded_url":"https:\/\/viral-notebook.com\/2019\/10\/02\/uofsc-prof-to-lead-international-association-for-learning-technologies-and-research\/","display_url":"viral-notebook.com\/2019\/10\/02\/uof\u2026","indices":[115,138]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":482227724,"id_str":"482227724","name":"Hengtao + Tang","screen_name":"Happy_Tao","location":"Columbia, SC","description":"Assistant + Professor @edtech_uofsc. #Gamecock Live love teach! @psuldt alumni. We are....","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":390,"friends_count":870,"listed_count":13,"created_at":"Fri + Feb 03 17:29:31 +0000 2012","favourites_count":2095,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1127,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1804992888\/h_large_CCWB_7b22000080c72f76_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1804992888\/h_large_CCWB_7b22000080c72f76_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/482227724\/1578336887","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Oct 03 11:43:35 +0000 2019","id":1179723669448396800,"id_str":"1179723669448396800","full_text":"@UofSCEducation + prof to lead international association for learning technologies & research: + https:\/\/t.co\/KeDvxEceA8\n#aect19inspired https:\/\/t.co\/ww0KaPKBHd","truncated":false,"display_text_range":[0,136],"entities":{"hashtags":[{"text":"aect19inspired","indices":[121,136]}],"symbols":[],"user_mentions":[{"screen_name":"UofSCEducation","name":"UofSC + Education","id":1269656353,"id_str":"1269656353","indices":[0,15]}],"urls":[{"url":"https:\/\/t.co\/KeDvxEceA8","expanded_url":"https:\/\/viral-notebook.com\/2019\/10\/02\/uofsc-prof-to-lead-international-association-for-learning-technologies-and-research\/","display_url":"viral-notebook.com\/2019\/10\/02\/uof\u2026","indices":[97,120]}],"media":[{"id":1179723665094713344,"id_str":"1179723665094713344","indices":[137,160],"media_url":"http:\/\/pbs.twimg.com\/media\/EF84bEcXoAA-yHI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF84bEcXoAA-yHI.jpg","url":"https:\/\/t.co\/ww0KaPKBHd","display_url":"pic.twitter.com\/ww0KaPKBHd","expanded_url":"https:\/\/twitter.com\/EdTech_UofSC\/status\/1179723669448396800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":672,"resize":"fit"},"large":{"w":768,"h":759,"resize":"fit"},"medium":{"w":768,"h":759,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1179723665094713344,"id_str":"1179723665094713344","indices":[137,160],"media_url":"http:\/\/pbs.twimg.com\/media\/EF84bEcXoAA-yHI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF84bEcXoAA-yHI.jpg","url":"https:\/\/t.co\/ww0KaPKBHd","display_url":"pic.twitter.com\/ww0KaPKBHd","expanded_url":"https:\/\/twitter.com\/EdTech_UofSC\/status\/1179723669448396800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":672,"resize":"fit"},"large":{"w":768,"h":759,"resize":"fit"},"medium":{"w":768,"h":759,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1269656353,"in_reply_to_user_id_str":"1269656353","in_reply_to_screen_name":"UofSCEducation","user":{"id":2835369671,"id_str":"2835369671","name":"LD&T + and EdTech at UofSC","screen_name":"EdTech_UofSC","location":"South Carolina","description":"Our + LD&T\/EdTech programs are shared with USC-Columbia & USC-Aiken. We offer Masters + & doctoral degrees + distance education certification \u2014 all 100% online!","url":"https:\/\/t.co\/S5lHVmmaud","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/S5lHVmmaud","expanded_url":"https:\/\/sc.edu\/study\/colleges_schools\/education\/study\/advanced_study_in_education\/learning_design_te","display_url":"sc.edu\/study\/colleges\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":455,"friends_count":50,"listed_count":16,"created_at":"Fri + Oct 17 18:52:36 +0000 2014","favourites_count":353,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":667,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1265318847764148226\/-Y6YxrdB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1265318847764148226\/-Y6YxrdB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2835369671\/1590519327","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Mon + Sep 30 23:46:50 +0000 2019","id":1178818517627482118,"id_str":"1178818517627482118","full_text":"RT + @AECT: Remember to use #AECT19 for sharing social media posts about the convention! + https:\/\/t.co\/lShAIQIhcC","truncated":false,"display_text_range":[0,110],"entities":{"hashtags":[{"text":"AECT19","indices":[26,33]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[],"media":[{"id":1178811171291447298,"id_str":"1178811171291447298","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1178811171291447298\/pu\/img\/2aKUCzMFrnaumYeu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1178811171291447298\/pu\/img\/2aKUCzMFrnaumYeu.jpg","url":"https:\/\/t.co\/lShAIQIhcC","display_url":"pic.twitter.com\/lShAIQIhcC","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1178811185493348352\/video\/1","type":"photo","sizes":{"large":{"w":480,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":416,"resize":"fit"},"small":{"w":480,"h":416,"resize":"fit"}},"source_status_id":1178811185493348352,"source_status_id_str":"1178811185493348352","source_user_id":12030342,"source_user_id_str":"12030342"}]},"extended_entities":{"media":[{"id":1178811171291447298,"id_str":"1178811171291447298","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1178811171291447298\/pu\/img\/2aKUCzMFrnaumYeu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1178811171291447298\/pu\/img\/2aKUCzMFrnaumYeu.jpg","url":"https:\/\/t.co\/lShAIQIhcC","display_url":"pic.twitter.com\/lShAIQIhcC","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1178811185493348352\/video\/1","type":"video","sizes":{"large":{"w":480,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":416,"resize":"fit"},"small":{"w":480,"h":416,"resize":"fit"}},"source_status_id":1178811185493348352,"source_status_id_str":"1178811185493348352","source_user_id":12030342,"source_user_id_str":"12030342","video_info":{"aspect_ratio":[15,13],"duration_millis":5000,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1178811171291447298\/pu\/vid\/310x270\/6E5SOY7_uUlRnwnU.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1178811171291447298\/pu\/vid\/480x416\/XE0QZuxNzOyC6KQ-.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1178811171291447298\/pu\/pl\/AdEJwHMVXwI50zFj.m3u8?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false,"source_user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]}}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392067318,"id_str":"392067318","name":"Kui + Xie \u8c22\u9b41","screen_name":"KuiXiePHD","location":"Columbus, OH","description":"Cyphert + Distinguished Professor of #EdTech #EdPsych @OhioState; Director @DLResearchLab; + Research in tech integration, motivation, engagement, learning design.","url":"https:\/\/t.co\/JCZmYiEIKf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/JCZmYiEIKf","expanded_url":"https:\/\/dl.ehe.osu.edu\/","display_url":"dl.ehe.osu.edu","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":929,"friends_count":90,"listed_count":6,"created_at":"Sun + Oct 16 14:20:08 +0000 2011","favourites_count":2434,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1496,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1339862445897216000\/HDPCmgmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392067318\/1573169619","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Sep 30 23:17:42 +0000 2019","id":1178811185493348352,"id_str":"1178811185493348352","full_text":"Remember + to use #AECT19 for sharing social media posts about the convention! https:\/\/t.co\/lShAIQIhcC","truncated":false,"display_text_range":[0,76],"entities":{"hashtags":[{"text":"AECT19","indices":[16,23]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1178811171291447298,"id_str":"1178811171291447298","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1178811171291447298\/pu\/img\/2aKUCzMFrnaumYeu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1178811171291447298\/pu\/img\/2aKUCzMFrnaumYeu.jpg","url":"https:\/\/t.co\/lShAIQIhcC","display_url":"pic.twitter.com\/lShAIQIhcC","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1178811185493348352\/video\/1","type":"photo","sizes":{"large":{"w":480,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":416,"resize":"fit"},"small":{"w":480,"h":416,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1178811171291447298,"id_str":"1178811171291447298","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1178811171291447298\/pu\/img\/2aKUCzMFrnaumYeu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/1178811171291447298\/pu\/img\/2aKUCzMFrnaumYeu.jpg","url":"https:\/\/t.co\/lShAIQIhcC","display_url":"pic.twitter.com\/lShAIQIhcC","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1178811185493348352\/video\/1","type":"video","sizes":{"large":{"w":480,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":416,"resize":"fit"},"small":{"w":480,"h":416,"resize":"fit"}},"video_info":{"aspect_ratio":[15,13],"duration_millis":5000,"variants":[{"bitrate":256000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1178811171291447298\/pu\/vid\/310x270\/6E5SOY7_uUlRnwnU.mp4?tag=10"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/1178811171291447298\/pu\/vid\/480x416\/XE0QZuxNzOyC6KQ-.mp4?tag=10"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/1178811171291447298\/pu\/pl\/AdEJwHMVXwI50zFj.m3u8?tag=10"}]},"ext_alt_text":null,"additional_media_info":{"monetizable":false}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":12,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 04 16:30:27 +0000 2019","id":1180158250836058113,"id_str":"1180158250836058113","full_text":"We''re + going to keep counting down, so you may as well accept it!\n\nSee you all + at #aect19inspired! https:\/\/t.co\/ZMKYsDwMmV","truncated":false,"display_text_range":[0,97],"entities":{"hashtags":[{"text":"aect19inspired","indices":[81,96]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1180158247551913984,"id_str":"1180158247551913984","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/EGDDrGQUUAAaQP-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGDDrGQUUAAaQP-.jpg","url":"https:\/\/t.co\/ZMKYsDwMmV","display_url":"pic.twitter.com\/ZMKYsDwMmV","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1180158250836058113\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":441,"h":478,"resize":"fit"},"medium":{"w":441,"h":478,"resize":"fit"},"large":{"w":441,"h":478,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1180158247551913984,"id_str":"1180158247551913984","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/EGDDrGQUUAAaQP-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGDDrGQUUAAaQP-.jpg","url":"https:\/\/t.co\/ZMKYsDwMmV","display_url":"pic.twitter.com\/ZMKYsDwMmV","expanded_url":"https:\/\/twitter.com\/dctrcurry\/status\/1180158250836058113\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":441,"h":478,"resize":"fit"},"medium":{"w":441,"h":478,"resize":"fit"},"large":{"w":441,"h":478,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14116271,"id_str":"14116271","name":"John + H. Curry","screen_name":"dctrcurry","location":"Pocatello, Idaho","description":"Associate + Professor and Department Chair at Idaho State University","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":437,"friends_count":244,"listed_count":14,"created_at":"Mon + Mar 10 18:38:29 +0000 2008","favourites_count":114,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":822,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1F5E1C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450986395134210048\/zuqWYIjA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14116271\/1568929380","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F5E1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF6600","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Wed + Oct 02 16:45:47 +0000 2019","id":1179437330177896450,"id_str":"1179437330177896450","full_text":"Identify + the key people who\u2019ve been studying the topics of your interest. Meet + them or attend their session. You can also search for the sessions that might + be of your interest by using the filtering feature in the online schedule. #aect19 #aect19inspired","truncated":false,"display_text_range":[0,257],"entities":{"hashtags":[{"text":"aect19","indices":[233,240]},{"text":"aect19inspired","indices":[242,257]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 02 14:07:31 +0000 2019","id":1179397501503365120,"id_str":"1179397501503365120","full_text":"RT + @FredWBaker: AECT''s Systems Thinking & Change Division released a Call + for Proposals for our special issue of @AECTTechTrends!! Please c\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[117,132]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 02 13:32:27 +0000 2019","id":1179388678793306112,"id_str":"1179388678793306112","full_text":"AECT''s + Systems Thinking & Change Division released a Call for Proposals for our + special issue of @AECTTechTrends!! Please consider submitting a proposal, + and please share with your colleagues! #aectstc #aect19 https:\/\/t.co\/ygldlqUE5o","truncated":false,"display_text_range":[0,237],"entities":{"hashtags":[{"text":"aectstc","indices":[197,205]},{"text":"aect19","indices":[206,213]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[101,116]}],"urls":[{"url":"https:\/\/t.co\/ygldlqUE5o","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view?usp=sharing","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[214,237]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Tue + Oct 01 21:00:57 +0000 2019","id":1179139159425998848,"id_str":"1179139159425998848","full_text":"Join + us on Oct 2nd, 12 PM EDT for our webinar \u201cWhat Happens in Vegas Does + Not Stay in Vegas.\u201d Drs. @michaelmgrant, John Curry, and Rebecca Reese + will share insights on navigating learning & networking opportunities + during the #AECT19 convention.Register at https:\/\/t.co\/WWv929H2wu https:\/\/t.co\/sV0ffXn2wX","truncated":false,"display_text_range":[0,284],"entities":{"hashtags":[{"text":"AECT19","indices":[230,237]}],"symbols":[],"user_mentions":[{"screen_name":"michaelmgrant","name":"Michael + M. Grant PhD","id":132653457,"id_str":"132653457","indices":[99,113]}],"urls":[{"url":"https:\/\/t.co\/WWv929H2wu","expanded_url":"http:\/\/bit.ly\/aect-gsa-2019-6","display_url":"bit.ly\/aect-gsa-2019-6","indices":[261,284]}],"media":[{"id":1179139157400199169,"id_str":"1179139157400199169","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EF0k0PmXoAEhhlP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF0k0PmXoAEhhlP.jpg","url":"https:\/\/t.co\/sV0ffXn2wX","display_url":"pic.twitter.com\/sV0ffXn2wX","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1179139159425998848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1179139157400199169,"id_str":"1179139157400199169","indices":[285,308],"media_url":"http:\/\/pbs.twimg.com\/media\/EF0k0PmXoAEhhlP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EF0k0PmXoAEhhlP.jpg","url":"https:\/\/t.co\/sV0ffXn2wX","display_url":"pic.twitter.com\/sV0ffXn2wX","expanded_url":"https:\/\/twitter.com\/gsa_aect\/status\/1179139159425998848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":383,"resize":"fit"},"large":{"w":1200,"h":675,"resize":"fit"},"medium":{"w":1200,"h":675,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Oct 04 20:44:49 +0000 2019","id":1180222260553994240,"id_str":"1180222260553994240","full_text":"Will + #AECT19 be your first @AECT convention? Be sure to join us for the First Timer''s + Orientation on Monday, 10\/21 @ 4PM in Pavilion 11. Meet new friends with + #AECTBingo & learn about the #AECTPokerRun for your chance at books & + swag. #aect19inspired #inspiredme https:\/\/t.co\/8MigSV9QHF","truncated":false,"display_text_range":[0,270],"entities":{"hashtags":[{"text":"AECT19","indices":[5,12]},{"text":"AECTBingo","indices":[159,169]},{"text":"AECTPokerRun","indices":[192,205]},{"text":"aect19inspired","indices":[243,258]},{"text":"inspiredme","indices":[259,270]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]}],"urls":[],"media":[{"id":1180222096309252096,"id_str":"1180222096309252096","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","url":"https:\/\/t.co\/8MigSV9QHF","display_url":"pic.twitter.com\/8MigSV9QHF","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1180222260553994240\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":604,"h":680,"resize":"fit"},"large":{"w":1252,"h":1410,"resize":"fit"},"medium":{"w":1066,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1180222096309252096,"id_str":"1180222096309252096","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","url":"https:\/\/t.co\/8MigSV9QHF","display_url":"pic.twitter.com\/8MigSV9QHF","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1180222260553994240\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":604,"h":680,"resize":"fit"},"large":{"w":1252,"h":1410,"resize":"fit"},"medium":{"w":1066,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 03 12:48:43 +0000 2019","id":1179740062101233664,"id_str":"1179740062101233664","full_text":"RT + @FredWBaker: AECT''s Systems Thinking & Change Division released a Call + for Proposals for our special issue of @AECTTechTrends!! Please c\u2026","truncated":false,"display_text_range":[0,144],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"FredWBaker","name":"Fred + Baker","id":28471923,"id_str":"28471923","indices":[3,14]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[117,132]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17943802,"id_str":"17943802","name":"guy + w wallace","screen_name":"guywwallace","location":"\u00dcT: 35.49343,-80.89431","description":"Performance + Analyst & Instructional Architect for Enterprise T&D since 1979 & ISD Consultant + since 1982 - Semi-Retired. ISPI''s Honorary Life Member Award 2010.","url":"https:\/\/t.co\/5lvhPoRtUc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5lvhPoRtUc","expanded_url":"http:\/\/eppic.biz","display_url":"eppic.biz","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4961,"friends_count":4797,"listed_count":232,"created_at":"Sun + Dec 07 17:16:59 +0000 2008","favourites_count":21635,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":90501,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1429440466647502848\/xzthjCxQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1429440466647502848\/xzthjCxQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17943802\/1614339966","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1F98C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"131266","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 02 13:32:27 +0000 2019","id":1179388678793306112,"id_str":"1179388678793306112","full_text":"AECT''s + Systems Thinking & Change Division released a Call for Proposals for our + special issue of @AECTTechTrends!! Please consider submitting a proposal, + and please share with your colleagues! #aectstc #aect19 https:\/\/t.co\/ygldlqUE5o","truncated":false,"display_text_range":[0,237],"entities":{"hashtags":[{"text":"aectstc","indices":[197,205]},{"text":"aect19","indices":[206,213]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[101,116]}],"urls":[{"url":"https:\/\/t.co\/ygldlqUE5o","expanded_url":"https:\/\/drive.google.com\/file\/d\/1Xl_WAPyjwi82UdSXkxb1Bq-_CNF6haVx\/view?usp=sharing","display_url":"drive.google.com\/file\/d\/1Xl_WAP\u2026","indices":[214,237]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28471923,"id_str":"28471923","name":"Fred + Baker","screen_name":"FredWBaker","location":"Remote","description":"Family + Man | Consultant | Project Manager | Instructional Designer | Recovering Academic + | Tweets are my very own.","url":"https:\/\/t.co\/5AekAr9SDF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5AekAr9SDF","expanded_url":"http:\/\/www.integratedhuman.consulting","display_url":"integratedhuman.consulting","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1509,"friends_count":1518,"listed_count":108,"created_at":"Fri + Apr 03 01:36:25 +0000 2009","favourites_count":29724,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20677,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FC8608","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057319289370243072\/_M9oQwCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28471923\/1423168591","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"2AFA0A","profile_sidebar_border_color":"98D90B","profile_sidebar_fill_color":"FF8C00","profile_text_color":"050000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Oct 02 01:46:36 +0000 2019","id":1179211043148615683,"id_str":"1179211043148615683","full_text":"If + you are attending #aect19inspired and want to explore options of using #gamification + to improve learner engagement and outcomes, there are still spots available + in my workshop 4 Cs to an A+ Learning Experience","truncated":false,"display_text_range":[0,212],"entities":{"hashtags":[{"text":"aect19inspired","indices":[21,36]},{"text":"gamification","indices":[74,87]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":111391715,"id_str":"111391715","name":"Valary + Oleinik","screen_name":"valarywithawhy","location":"New York, NY","description":"speaker + | engager of learners | gamifier of things | unleasher of creativity | geek + | writer | queriest","url":"https:\/\/t.co\/5XjhvhYTqb","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/5XjhvhYTqb","expanded_url":"http:\/\/www.valarywithawhy.com","display_url":"valarywithawhy.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1251,"friends_count":1550,"listed_count":60,"created_at":"Thu + Feb 04 19:24:07 +0000 2010","favourites_count":9041,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4317,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1158173139802759170\/bZgqSf2v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111391715\/1454624226","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 04 21:18:08 +0000 2019","id":1180230648231088129,"id_str":"1180230648231088129","full_text":"RT + @tadousay: Will #AECT19 be your first @AECT convention? Be sure to join us + for the First Timer''s Orientation on Monday, 10\/21 @ 4PM in P\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[19,26]}],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[41,46]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715304516791451648,"id_str":"715304516791451648","name":"Cara + North","screen_name":"caranorth11","location":"\ud83c\udfe0Columbus, OH \u2764\ufe0f + in Kentucky","description":"Director of L&D, speaker & researcher, Adjunct + faculty @boisestate, Co-host @redesignpodcast, Community Manager\/Host @TLDCast","url":"https:\/\/t.co\/mp8xWEugav","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mp8xWEugav","expanded_url":"https:\/\/stan.store\/caranorth","display_url":"stan.store\/caranorth","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":9166,"friends_count":3893,"listed_count":210,"created_at":"Wed + Mar 30 22:27:41 +0000 2016","favourites_count":38150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":21850,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1526555519749607425\/EKog09Xo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715304516791451648\/1582827816","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"3366CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Oct 04 20:44:49 +0000 2019","id":1180222260553994240,"id_str":"1180222260553994240","full_text":"Will + #AECT19 be your first @AECT convention? Be sure to join us for the First Timer''s + Orientation on Monday, 10\/21 @ 4PM in Pavilion 11. Meet new friends with + #AECTBingo & learn about the #AECTPokerRun for your chance at books & + swag. #aect19inspired #inspiredme https:\/\/t.co\/8MigSV9QHF","truncated":false,"display_text_range":[0,270],"entities":{"hashtags":[{"text":"AECT19","indices":[5,12]},{"text":"AECTBingo","indices":[159,169]},{"text":"AECTPokerRun","indices":[192,205]},{"text":"aect19inspired","indices":[243,258]},{"text":"inspiredme","indices":[259,270]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[27,32]}],"urls":[],"media":[{"id":1180222096309252096,"id_str":"1180222096309252096","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","url":"https:\/\/t.co\/8MigSV9QHF","display_url":"pic.twitter.com\/8MigSV9QHF","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1180222260553994240\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":604,"h":680,"resize":"fit"},"large":{"w":1252,"h":1410,"resize":"fit"},"medium":{"w":1066,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1180222096309252096,"id_str":"1180222096309252096","indices":[271,294],"media_url":"http:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EGD9vlaUcAAab1Q.jpg","url":"https:\/\/t.co\/8MigSV9QHF","display_url":"pic.twitter.com\/8MigSV9QHF","expanded_url":"https:\/\/twitter.com\/tadousay\/status\/1180222260553994240\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":604,"h":680,"resize":"fit"},"large":{"w":1252,"h":1410,"resize":"fit"},"medium":{"w":1066,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1190391531900932098%2C1189962468686041088%2C1187476829327650816%2C1187791907855822849%2C1187788119937970176%2C1187773984596578304&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:15 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:15 GMT + x-transaction: 3898f25978ac9ff5 + content-length: '3805' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '268' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '42' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Thu Oct 24 21:11:53 +0000 2019","id":1187476829327650816,"id_str":"1187476829327650816","full_text":"Fourth + day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 @khebrat_edu + @S_Meemar @onaizahedu. Exploring How People Solve Problems https:\/\/t.co\/WgDo5RcHJU","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]},{"text":"AECTech2019","indices":[27,39]},{"text":"aect19inspired","indices":[40,55]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[56,67]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[68,80]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[81,90]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[91,102]}],"urls":[],"media":[{"id":1187476823984099328,"id_str":"1187476823984099328","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrD4UCU0AAK-0D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrD4UCU0AAK-0D.jpg","url":"https:\/\/t.co\/WgDo5RcHJU","display_url":"pic.twitter.com\/WgDo5RcHJU","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187476829327650816\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187476823984099328,"id_str":"1187476823984099328","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrD4UCU0AAK-0D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrD4UCU0AAK-0D.jpg","url":"https:\/\/t.co\/WgDo5RcHJU","display_url":"pic.twitter.com\/WgDo5RcHJU","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187476829327650816\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187476824009261057,"id_str":"1187476824009261057","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrD4UIUwAEjOIb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrD4UIUwAEjOIb.jpg","url":"https:\/\/t.co\/WgDo5RcHJU","display_url":"pic.twitter.com\/WgDo5RcHJU","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187476829327650816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187462120612364293,"in_reply_to_status_id_str":"1187462120612364293","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Nov 01 22:13:52 +0000 2019","id":1190391531900932098,"id_str":"1190391531900932098","full_text":"We + are a research team, but also an academic family \u2014 and we celebrate major + life events together. Today we surprised @ISLT_FSU PhD student @kariknisely + aka Mrs. (soon to be Dr.) Word. She and her sweetie eloped after the #AECT + conf last week! Also: Dr. Word? Amazing, right? https:\/\/t.co\/TkBQwSjnp4","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"AECT","indices":[222,227]}],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[118,127]}],"urls":[],"media":[{"id":1190391521637543937,"id_str":"1190391521637543937","indices":[276,299],"media_url":"http:\/\/pbs.twimg.com\/media\/EIUeyC7XsAEoEsY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIUeyC7XsAEoEsY.jpg","url":"https:\/\/t.co\/TkBQwSjnp4","display_url":"pic.twitter.com\/TkBQwSjnp4","expanded_url":"https:\/\/twitter.com\/vdennen\/status\/1190391531900932098\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1190391521637543937,"id_str":"1190391521637543937","indices":[276,299],"media_url":"http:\/\/pbs.twimg.com\/media\/EIUeyC7XsAEoEsY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIUeyC7XsAEoEsY.jpg","url":"https:\/\/t.co\/TkBQwSjnp4","display_url":"pic.twitter.com\/TkBQwSjnp4","expanded_url":"https:\/\/twitter.com\/vdennen\/status\/1190391531900932098\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":142359679,"id_str":"142359679","name":"Vanessa + Dennen","screen_name":"vdennen","location":"Tallahassee, FL","description":"Professor + of Instructional Systems & Learning Technologies at FSU (views are my own), + avid traveler, amateur gardener, she\/her","url":"https:\/\/t.co\/2brlz0Rnzr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2brlz0Rnzr","expanded_url":"http:\/\/vanessadennen.com","display_url":"vanessadennen.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1151,"friends_count":759,"listed_count":40,"created_at":"Mon + May 10 17:39:35 +0000 2010","favourites_count":1097,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2102,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1137140666771918848\/ghs_iYhS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1137140666771918848\/ghs_iYhS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/142359679\/1584134048","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"ecbe2aea853af44e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/ecbe2aea853af44e.json","place_type":"city","name":"Tallahassee","full_name":"Tallahassee, + FL","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-84.386548,30.365093],[-84.1458,30.365093],[-84.1458,30.587338],[-84.386548,30.587338]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":38,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 31 17:48:55 +0000 2019","id":1189962468686041088,"id_str":"1189962468686041088","full_text":"@Cambrian_Jess + @jmenglund03 @H5PTechnology Thanks for posting the slide deck. I wasn''t aware + of the Pressbooks + H5P partnership. It just keeps getting better... :-)","truncated":false,"display_text_range":[43,165],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jmenglund03","name":"jenn\u03b9\u0493er + engl\u03c5nd","id":64769037,"id_str":"64769037","indices":[15,27]},{"screen_name":"H5PTechnology","name":"H5P","id":2216405440,"id_str":"2216405440","indices":[28,42]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1189959959955439616,"in_reply_to_status_id_str":"1189959959955439616","in_reply_to_user_id":780577329814704128,"in_reply_to_user_id_str":"780577329814704128","in_reply_to_screen_name":"Jess_Oh_Reilly","user":{"id":14777884,"id_str":"14777884","name":"Bonni + Stachowiak","screen_name":"bonni208","location":"Orange County, CA","description":"Host, + Teaching in Higher Ed #podcast (@tihighered); dean, teaching + learning; professor; + learner; encourager; geek; married to @davestachowiak + mother of two.","url":"https:\/\/t.co\/x8QwWmFDHq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/x8QwWmFDHq","expanded_url":"http:\/\/www.teachinginhighered.com","display_url":"teachinginhighered.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7415,"friends_count":3538,"listed_count":294,"created_at":"Wed + May 14 20:11:07 +0000 2008","favourites_count":23383,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20642,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527687799423414273\/y2WHa_eY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527687799423414273\/y2WHa_eY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14777884\/1653064129","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:48:50 +0000 2019","id":1187788119937970176,"id_str":"1187788119937970176","full_text":"Good + disentangling by Anthony Saba. An Integrated Model of Social Presence and + Immediacy: Disentangling Foundational Theories for Teaching and Learning https:\/\/t.co\/XS1RpSKKgM + https:\/\/t.co\/oveZe18tD6","truncated":false,"display_text_range":[0,175],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XS1RpSKKgM","expanded_url":"http:\/\/l.core-apps.com\/aect19\/event?event=b038d05c063d8ab60ed1330fb730ac1d","display_url":"l.core-apps.com\/aect19\/event?e\u2026","indices":[152,175]}],"media":[{"id":1187788111482195968,"id_str":"1187788111482195968","indices":[176,199],"media_url":"http:\/\/pbs.twimg.com\/media\/EHve_oVUEAAWRuH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHve_oVUEAAWRuH.jpg","url":"https:\/\/t.co\/oveZe18tD6","display_url":"pic.twitter.com\/oveZe18tD6","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187788119937970176\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":733,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1251,"resize":"fit"},"small":{"w":680,"h":415,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187788111482195968,"id_str":"1187788111482195968","indices":[176,199],"media_url":"http:\/\/pbs.twimg.com\/media\/EHve_oVUEAAWRuH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHve_oVUEAAWRuH.jpg","url":"https:\/\/t.co\/oveZe18tD6","display_url":"pic.twitter.com\/oveZe18tD6","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187788119937970176\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":733,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1251,"resize":"fit"},"small":{"w":680,"h":415,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1190391531900932098%2C1189962468686041088%2C1187476829327650816%2C1187791907855822849%2C1187788119937970176%2C1187773984596578304&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:16 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:16 GMT + x-transaction: 67459d066c3d558e + content-length: '3805' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '267' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '36' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Thu Oct 24 21:11:53 +0000 2019","id":1187476829327650816,"id_str":"1187476829327650816","full_text":"Fourth + day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 @khebrat_edu + @S_Meemar @onaizahedu. Exploring How People Solve Problems https:\/\/t.co\/WgDo5RcHJU","truncated":false,"display_text_range":[0,139],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]},{"text":"AECTech2019","indices":[27,39]},{"text":"aect19inspired","indices":[40,55]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[56,67]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[68,80]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[81,90]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[91,102]}],"urls":[],"media":[{"id":1187476823984099328,"id_str":"1187476823984099328","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrD4UCU0AAK-0D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrD4UCU0AAK-0D.jpg","url":"https:\/\/t.co\/WgDo5RcHJU","display_url":"pic.twitter.com\/WgDo5RcHJU","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187476829327650816\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187476823984099328,"id_str":"1187476823984099328","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrD4UCU0AAK-0D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrD4UCU0AAK-0D.jpg","url":"https:\/\/t.co\/WgDo5RcHJU","display_url":"pic.twitter.com\/WgDo5RcHJU","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187476829327650816\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1187476824009261057,"id_str":"1187476824009261057","indices":[140,163],"media_url":"http:\/\/pbs.twimg.com\/media\/EHrD4UIUwAEjOIb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHrD4UIUwAEjOIb.jpg","url":"https:\/\/t.co\/WgDo5RcHJU","display_url":"pic.twitter.com\/WgDo5RcHJU","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187476829327650816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187462120612364293,"in_reply_to_status_id_str":"1187462120612364293","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Fri + Nov 01 22:13:52 +0000 2019","id":1190391531900932098,"id_str":"1190391531900932098","full_text":"We + are a research team, but also an academic family \u2014 and we celebrate major + life events together. Today we surprised @ISLT_FSU PhD student @kariknisely + aka Mrs. (soon to be Dr.) Word. She and her sweetie eloped after the #AECT + conf last week! Also: Dr. Word? Amazing, right? https:\/\/t.co\/TkBQwSjnp4","truncated":false,"display_text_range":[0,275],"entities":{"hashtags":[{"text":"AECT","indices":[222,227]}],"symbols":[],"user_mentions":[{"screen_name":"ISLT_FSU","name":"ISLT + @ FSU","id":59857759,"id_str":"59857759","indices":[118,127]}],"urls":[],"media":[{"id":1190391521637543937,"id_str":"1190391521637543937","indices":[276,299],"media_url":"http:\/\/pbs.twimg.com\/media\/EIUeyC7XsAEoEsY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIUeyC7XsAEoEsY.jpg","url":"https:\/\/t.co\/TkBQwSjnp4","display_url":"pic.twitter.com\/TkBQwSjnp4","expanded_url":"https:\/\/twitter.com\/vdennen\/status\/1190391531900932098\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1190391521637543937,"id_str":"1190391521637543937","indices":[276,299],"media_url":"http:\/\/pbs.twimg.com\/media\/EIUeyC7XsAEoEsY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EIUeyC7XsAEoEsY.jpg","url":"https:\/\/t.co\/TkBQwSjnp4","display_url":"pic.twitter.com\/TkBQwSjnp4","expanded_url":"https:\/\/twitter.com\/vdennen\/status\/1190391531900932098\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":680,"resize":"fit"},"medium":{"w":1200,"h":1200,"resize":"fit"},"large":{"w":2048,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":142359679,"id_str":"142359679","name":"Vanessa + Dennen","screen_name":"vdennen","location":"Tallahassee, FL","description":"Professor + of Instructional Systems & Learning Technologies at FSU (views are my own), + avid traveler, amateur gardener, she\/her","url":"https:\/\/t.co\/2brlz0Rnzr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2brlz0Rnzr","expanded_url":"http:\/\/vanessadennen.com","display_url":"vanessadennen.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1151,"friends_count":759,"listed_count":40,"created_at":"Mon + May 10 17:39:35 +0000 2010","favourites_count":1097,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2102,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1137140666771918848\/ghs_iYhS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1137140666771918848\/ghs_iYhS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/142359679\/1584134048","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":{"id":"ecbe2aea853af44e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/ecbe2aea853af44e.json","place_type":"city","name":"Tallahassee","full_name":"Tallahassee, + FL","country_code":"US","country":"United States","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[-84.386548,30.365093],[-84.1458,30.365093],[-84.1458,30.587338],[-84.386548,30.587338]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":38,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 31 17:48:55 +0000 2019","id":1189962468686041088,"id_str":"1189962468686041088","full_text":"@Cambrian_Jess + @jmenglund03 @H5PTechnology Thanks for posting the slide deck. I wasn''t aware + of the Pressbooks + H5P partnership. It just keeps getting better... :-)","truncated":false,"display_text_range":[43,165],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"jmenglund03","name":"jenn\u03b9\u0493er + engl\u03c5nd","id":64769037,"id_str":"64769037","indices":[15,27]},{"screen_name":"H5PTechnology","name":"H5P","id":2216405440,"id_str":"2216405440","indices":[28,42]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1189959959955439616,"in_reply_to_status_id_str":"1189959959955439616","in_reply_to_user_id":780577329814704128,"in_reply_to_user_id_str":"780577329814704128","in_reply_to_screen_name":"Jess_Oh_Reilly","user":{"id":14777884,"id_str":"14777884","name":"Bonni + Stachowiak","screen_name":"bonni208","location":"Orange County, CA","description":"Host, + Teaching in Higher Ed #podcast (@tihighered); dean, teaching + learning; professor; + learner; encourager; geek; married to @davestachowiak + mother of two.","url":"https:\/\/t.co\/x8QwWmFDHq","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/x8QwWmFDHq","expanded_url":"http:\/\/www.teachinginhighered.com","display_url":"teachinginhighered.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7415,"friends_count":3538,"listed_count":294,"created_at":"Wed + May 14 20:11:07 +0000 2008","favourites_count":23383,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20642,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1527687799423414273\/y2WHa_eY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1527687799423414273\/y2WHa_eY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14777884\/1653064129","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Fri + Oct 25 17:48:50 +0000 2019","id":1187788119937970176,"id_str":"1187788119937970176","full_text":"Good + disentangling by Anthony Saba. An Integrated Model of Social Presence and + Immediacy: Disentangling Foundational Theories for Teaching and Learning https:\/\/t.co\/XS1RpSKKgM + https:\/\/t.co\/oveZe18tD6","truncated":false,"display_text_range":[0,175],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XS1RpSKKgM","expanded_url":"http:\/\/l.core-apps.com\/aect19\/event?event=b038d05c063d8ab60ed1330fb730ac1d","display_url":"l.core-apps.com\/aect19\/event?e\u2026","indices":[152,175]}],"media":[{"id":1187788111482195968,"id_str":"1187788111482195968","indices":[176,199],"media_url":"http:\/\/pbs.twimg.com\/media\/EHve_oVUEAAWRuH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHve_oVUEAAWRuH.jpg","url":"https:\/\/t.co\/oveZe18tD6","display_url":"pic.twitter.com\/oveZe18tD6","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187788119937970176\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":733,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1251,"resize":"fit"},"small":{"w":680,"h":415,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187788111482195968,"id_str":"1187788111482195968","indices":[176,199],"media_url":"http:\/\/pbs.twimg.com\/media\/EHve_oVUEAAWRuH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHve_oVUEAAWRuH.jpg","url":"https:\/\/t.co\/oveZe18tD6","display_url":"pic.twitter.com\/oveZe18tD6","expanded_url":"https:\/\/twitter.com\/DKSch\/status\/1187788119937970176\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":733,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1251,"resize":"fit"},"small":{"w":680,"h":415,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38657815,"id_str":"38657815","name":"Daniel + K. Schneider","screen_name":"DKSch","location":"Geneva","description":"Educational + technologist since the late 1980\u00b4s. Former associate professor at TECFA, + University of Geneva.","url":"http:\/\/t.co\/GpB6Vja8LN","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/GpB6Vja8LN","expanded_url":"http:\/\/edutechwiki.unige.ch\/en\/","display_url":"edutechwiki.unige.ch\/en\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":290,"friends_count":86,"listed_count":15,"created_at":"Fri + May 08 12:40:22 +0000 2009","favourites_count":228,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":643,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/961961594887528449\/CipJ4KNl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38657815\/1572134306","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1189959959955439616%2C1187462120612364293&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:16 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:16 GMT + x-transaction: d676eb0333e85510 + content-length: '3013' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '266' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '39' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Thu Oct 31 17:38:57 +0000 2019","id":1189959959955439616,"id_str":"1189959959955439616","full_text":"Hi + #OpenEd19! Interested in swapping stories \/ learning more about @H5PTechnology? + Let\u2019s talk. Today @ 2:30 @ Cascade E. Learn more about H5P here: https:\/\/t.co\/9UpIxA5NdR + https:\/\/t.co\/4GcPckh9Cw","truncated":false,"display_text_range":[0,173],"entities":{"hashtags":[{"text":"OpenEd19","indices":[3,12]}],"symbols":[],"user_mentions":[{"screen_name":"H5PTechnology","name":"H5P","id":2216405440,"id_str":"2216405440","indices":[67,81]}],"urls":[{"url":"https:\/\/t.co\/9UpIxA5NdR","expanded_url":"https:\/\/docs.google.com\/presentation\/d\/19hYeg3ExsfgITIGxE_kMfxnupG6mfn5hvXEJde73xhE","display_url":"docs.google.com\/presentation\/d\u2026","indices":[150,173]},{"url":"https:\/\/t.co\/4GcPckh9Cw","expanded_url":"https:\/\/twitter.com\/kylemackie\/status\/1189954754744471554","display_url":"twitter.com\/kylemackie\/sta\u2026","indices":[174,197]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":780577329814704128,"id_str":"780577329814704128","name":"Jess + O''Reilly","screen_name":"Jess_Oh_Reilly","location":"Greater Sudbury","description":"I\u2019m + not doing the professional Twitter thing right now.","url":"https:\/\/t.co\/2UPqTXmLcP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2UPqTXmLcP","expanded_url":"https:\/\/jessoreilly.ca\/","display_url":"jessoreilly.ca","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":755,"friends_count":1451,"listed_count":24,"created_at":"Tue + Sep 27 01:18:32 +0000 2016","favourites_count":4053,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1491,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1113537970722803713\/mew_go4n_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1113537970722803713\/mew_go4n_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/780577329814704128\/1536955430","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1189954754744471554,"quoted_status_id_str":"1189954754744471554","quoted_status_permalink":{"url":"https:\/\/t.co\/4GcPckh9Cw","expanded":"https:\/\/twitter.com\/kylemackie\/status\/1189954754744471554","display":"twitter.com\/kylemackie\/sta\u2026"},"quoted_status":{"created_at":"Thu + Oct 31 17:18:16 +0000 2019","id":1189954754744471554,"id_str":"1189954754744471554","full_text":"@jennihayman + @Cambrian_Jess @melyoung00 @AmyatCambrian @H5PTechnology Here we go: ad hoc + H5P users meetup at #opened19. Thursday Oct 31. 2:30 to 3:30. Cascade E (lower + level). Spread the word.","truncated":false,"display_text_range":[70,192],"entities":{"hashtags":[{"text":"opened19","indices":[109,118]}],"symbols":[],"user_mentions":[{"screen_name":"jennihayman","name":"Dr. + Jenni Hayman using whatever talent I have","id":403948550,"id_str":"403948550","indices":[0,12]},{"screen_name":"melyoung00","name":"Mel + Young","id":3069828447,"id_str":"3069828447","indices":[28,39]},{"screen_name":"AmyatCambrian","name":"Amy + Cliff","id":1029395914794983424,"id_str":"1029395914794983424","indices":[40,54]},{"screen_name":"H5PTechnology","name":"H5P","id":2216405440,"id_str":"2216405440","indices":[55,69]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1189845006070276096,"in_reply_to_status_id_str":"1189845006070276096","in_reply_to_user_id":403948550,"in_reply_to_user_id_str":"403948550","in_reply_to_screen_name":"jennihayman","user":{"id":18153298,"id_str":"18153298","name":"kyle + mackie (he\/him)","screen_name":"kylemackie","location":"Ancestral lands of + the Attawandaron people and the treaty lands and territory of the Mississaugas + of the Credit. Guelph, Ontario.","description":"Education, Community, Technology, + Digital Identities, Learning Environments, Accessibility & Inclusive Design...running, + cycling, bread and bowls and beer\u2026.","url":"https:\/\/t.co\/mNCII2eEmr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNCII2eEmr","expanded_url":"http:\/\/kylemackie.ca","display_url":"kylemackie.ca","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2809,"friends_count":2501,"listed_count":179,"created_at":"Tue + Dec 16 02:05:57 +0000 2008","favourites_count":9687,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":23100,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1496216494165970951\/sriGJp28_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1496216494165970951\/sriGJp28_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18153298\/1645560902","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 20:13:26 +0000 2019","id":1187462120612364293,"id_str":"1187462120612364293","full_text":"Fourth + day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 @khebrat_edu + @S_Meemar @onaizahedu Tips and Tricks for Journal Publishing: Advice from + the Editors https:\/\/t.co\/7KvmCFuKDS","truncated":false,"display_text_range":[0,166],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]},{"text":"AECTech2019","indices":[27,39]},{"text":"aect19inspired","indices":[40,55]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[56,67]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[68,80]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[81,90]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[91,102]}],"urls":[],"media":[{"id":1187462115306561537,"id_str":"1187462115306561537","indices":[167,190],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq2gJ8U4AE5QDk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq2gJ8U4AE5QDk.jpg","url":"https:\/\/t.co\/7KvmCFuKDS","display_url":"pic.twitter.com\/7KvmCFuKDS","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187462120612364293\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187462115306561537,"id_str":"1187462115306561537","indices":[167,190],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq2gJ8U4AE5QDk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq2gJ8U4AE5QDk.jpg","url":"https:\/\/t.co\/7KvmCFuKDS","display_url":"pic.twitter.com\/7KvmCFuKDS","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187462120612364293\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187445385603637249,"in_reply_to_status_id_str":"1187445385603637249","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1189959959955439616%2C1187462120612364293&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:16 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:16 GMT + x-transaction: 8119390232a64b1a + content-length: '3013' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '265' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '44' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Thu Oct 31 17:38:57 +0000 2019","id":1189959959955439616,"id_str":"1189959959955439616","full_text":"Hi + #OpenEd19! Interested in swapping stories \/ learning more about @H5PTechnology? + Let\u2019s talk. Today @ 2:30 @ Cascade E. Learn more about H5P here: https:\/\/t.co\/9UpIxA5NdR + https:\/\/t.co\/4GcPckh9Cw","truncated":false,"display_text_range":[0,173],"entities":{"hashtags":[{"text":"OpenEd19","indices":[3,12]}],"symbols":[],"user_mentions":[{"screen_name":"H5PTechnology","name":"H5P","id":2216405440,"id_str":"2216405440","indices":[67,81]}],"urls":[{"url":"https:\/\/t.co\/9UpIxA5NdR","expanded_url":"https:\/\/docs.google.com\/presentation\/d\/19hYeg3ExsfgITIGxE_kMfxnupG6mfn5hvXEJde73xhE","display_url":"docs.google.com\/presentation\/d\u2026","indices":[150,173]},{"url":"https:\/\/t.co\/4GcPckh9Cw","expanded_url":"https:\/\/twitter.com\/kylemackie\/status\/1189954754744471554","display_url":"twitter.com\/kylemackie\/sta\u2026","indices":[174,197]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":780577329814704128,"id_str":"780577329814704128","name":"Jess + O''Reilly","screen_name":"Jess_Oh_Reilly","location":"Greater Sudbury","description":"I\u2019m + not doing the professional Twitter thing right now.","url":"https:\/\/t.co\/2UPqTXmLcP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/2UPqTXmLcP","expanded_url":"https:\/\/jessoreilly.ca\/","display_url":"jessoreilly.ca","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":755,"friends_count":1451,"listed_count":24,"created_at":"Tue + Sep 27 01:18:32 +0000 2016","favourites_count":4053,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1491,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1113537970722803713\/mew_go4n_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1113537970722803713\/mew_go4n_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/780577329814704128\/1536955430","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FF691F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1189954754744471554,"quoted_status_id_str":"1189954754744471554","quoted_status_permalink":{"url":"https:\/\/t.co\/4GcPckh9Cw","expanded":"https:\/\/twitter.com\/kylemackie\/status\/1189954754744471554","display":"twitter.com\/kylemackie\/sta\u2026"},"quoted_status":{"created_at":"Thu + Oct 31 17:18:16 +0000 2019","id":1189954754744471554,"id_str":"1189954754744471554","full_text":"@jennihayman + @Cambrian_Jess @melyoung00 @AmyatCambrian @H5PTechnology Here we go: ad hoc + H5P users meetup at #opened19. Thursday Oct 31. 2:30 to 3:30. Cascade E (lower + level). Spread the word.","truncated":false,"display_text_range":[70,192],"entities":{"hashtags":[{"text":"opened19","indices":[109,118]}],"symbols":[],"user_mentions":[{"screen_name":"jennihayman","name":"Dr. + Jenni Hayman using whatever talent I have","id":403948550,"id_str":"403948550","indices":[0,12]},{"screen_name":"melyoung00","name":"Mel + Young","id":3069828447,"id_str":"3069828447","indices":[28,39]},{"screen_name":"AmyatCambrian","name":"Amy + Cliff","id":1029395914794983424,"id_str":"1029395914794983424","indices":[40,54]},{"screen_name":"H5PTechnology","name":"H5P","id":2216405440,"id_str":"2216405440","indices":[55,69]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1189845006070276096,"in_reply_to_status_id_str":"1189845006070276096","in_reply_to_user_id":403948550,"in_reply_to_user_id_str":"403948550","in_reply_to_screen_name":"jennihayman","user":{"id":18153298,"id_str":"18153298","name":"kyle + mackie (he\/him)","screen_name":"kylemackie","location":"Ancestral lands of + the Attawandaron people and the treaty lands and territory of the Mississaugas + of the Credit. Guelph, Ontario.","description":"Education, Community, Technology, + Digital Identities, Learning Environments, Accessibility & Inclusive Design...running, + cycling, bread and bowls and beer\u2026.","url":"https:\/\/t.co\/mNCII2eEmr","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNCII2eEmr","expanded_url":"http:\/\/kylemackie.ca","display_url":"kylemackie.ca","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2809,"friends_count":2501,"listed_count":179,"created_at":"Tue + Dec 16 02:05:57 +0000 2008","favourites_count":9687,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":23100,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1496216494165970951\/sriGJp28_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1496216494165970951\/sriGJp28_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18153298\/1645560902","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"retweet_count":2,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Thu + Oct 24 20:13:26 +0000 2019","id":1187462120612364293,"id_str":"1187462120612364293","full_text":"Fourth + day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 @khebrat_edu + @S_Meemar @onaizahedu Tips and Tricks for Journal Publishing: Advice from + the Editors https:\/\/t.co\/7KvmCFuKDS","truncated":false,"display_text_range":[0,166],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]},{"text":"AECTech2019","indices":[27,39]},{"text":"aect19inspired","indices":[40,55]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[56,67]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[68,80]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[81,90]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[91,102]}],"urls":[],"media":[{"id":1187462115306561537,"id_str":"1187462115306561537","indices":[167,190],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq2gJ8U4AE5QDk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq2gJ8U4AE5QDk.jpg","url":"https:\/\/t.co\/7KvmCFuKDS","display_url":"pic.twitter.com\/7KvmCFuKDS","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187462120612364293\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187462115306561537,"id_str":"1187462115306561537","indices":[167,190],"media_url":"http:\/\/pbs.twimg.com\/media\/EHq2gJ8U4AE5QDk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHq2gJ8U4AE5QDk.jpg","url":"https:\/\/t.co\/7KvmCFuKDS","display_url":"pic.twitter.com\/7KvmCFuKDS","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187462120612364293\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187445385603637249,"in_reply_to_status_id_str":"1187445385603637249","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1187445385603637249&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:16 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:16 GMT + x-transaction: 1ecfd8e4e7eb9867 + content-length: '1670' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '264' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '26' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Thu Oct 24 19:06:56 +0000 2019","id":1187445385603637249,"id_str":"1187445385603637249","full_text":"Fourth + day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 @khebrat_edu + @S_Meemar @onaizahedu round tables sessions https:\/\/t.co\/zn9pMmBAyt","truncated":false,"display_text_range":[0,124],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]},{"text":"AECTech2019","indices":[27,39]},{"text":"aect19inspired","indices":[40,55]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[56,67]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[68,80]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[81,90]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[91,102]}],"urls":[],"media":[{"id":1187445377806389249,"id_str":"1187445377806389249","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqnR55UUAEVpIH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqnR55UUAEVpIH.jpg","url":"https:\/\/t.co\/zn9pMmBAyt","display_url":"pic.twitter.com\/zn9pMmBAyt","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187445385603637249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187445377806389249,"id_str":"1187445377806389249","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqnR55UUAEVpIH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqnR55UUAEVpIH.jpg","url":"https:\/\/t.co\/zn9pMmBAyt","display_url":"pic.twitter.com\/zn9pMmBAyt","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187445385603637249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187445377789620224,"id_str":"1187445377789620224","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqnR51UcAA3KaK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqnR51UcAA3KaK.jpg","url":"https:\/\/t.co\/zn9pMmBAyt","display_url":"pic.twitter.com\/zn9pMmBAyt","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187445385603637249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187445378234191872,"id_str":"1187445378234191872","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqnR7fUEAAa4aX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqnR7fUEAAa4aX.jpg","url":"https:\/\/t.co\/zn9pMmBAyt","display_url":"pic.twitter.com\/zn9pMmBAyt","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187445385603637249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187098337842843648,"in_reply_to_status_id_str":"1187098337842843648","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1187445385603637249&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:17 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:17 GMT + x-transaction: 1b382c073674195c + content-length: '1670' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '263' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '25' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Thu Oct 24 19:06:56 +0000 2019","id":1187445385603637249,"id_str":"1187445385603637249","full_text":"Fourth + day #aect19inspired #AECTech2019 #aect19inspired @KhbratKSU3 @khebrat_edu + @S_Meemar @onaizahedu round tables sessions https:\/\/t.co\/zn9pMmBAyt","truncated":false,"display_text_range":[0,124],"entities":{"hashtags":[{"text":"aect19inspired","indices":[11,26]},{"text":"AECTech2019","indices":[27,39]},{"text":"aect19inspired","indices":[40,55]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[56,67]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[68,80]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[81,90]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[91,102]}],"urls":[],"media":[{"id":1187445377806389249,"id_str":"1187445377806389249","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqnR55UUAEVpIH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqnR55UUAEVpIH.jpg","url":"https:\/\/t.co\/zn9pMmBAyt","display_url":"pic.twitter.com\/zn9pMmBAyt","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187445385603637249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187445377806389249,"id_str":"1187445377806389249","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqnR55UUAEVpIH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqnR55UUAEVpIH.jpg","url":"https:\/\/t.co\/zn9pMmBAyt","display_url":"pic.twitter.com\/zn9pMmBAyt","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187445385603637249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187445377789620224,"id_str":"1187445377789620224","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqnR51UcAA3KaK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqnR51UcAA3KaK.jpg","url":"https:\/\/t.co\/zn9pMmBAyt","display_url":"pic.twitter.com\/zn9pMmBAyt","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187445385603637249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null},{"id":1187445378234191872,"id_str":"1187445378234191872","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/EHqnR7fUEAAa4aX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHqnR7fUEAAa4aX.jpg","url":"https:\/\/t.co\/zn9pMmBAyt","display_url":"pic.twitter.com\/zn9pMmBAyt","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187445385603637249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187098337842843648,"in_reply_to_status_id_str":"1187098337842843648","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1187098337842843648&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:17 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:17 GMT + x-transaction: 9873ab5d2983838b + content-length: '1364' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '262' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '27' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Oct 23 20:07:53 +0000 2019","id":1187098337842843648,"id_str":"1187098337842843648","full_text":"Third + day #aect19inspired #AECTech2019 #aect19inspired ITV and Apple TV + https:\/\/t.co\/YwKD2PuCaJ","truncated":false,"display_text_range":[0,79],"entities":{"hashtags":[{"text":"aect19inspired","indices":[10,25]},{"text":"AECTech2019","indices":[26,38]},{"text":"aect19inspired","indices":[39,54]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187098223267041280,"id_str":"1187098223267041280","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlri2dUUAANZWE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlri2dUUAANZWE.jpg","url":"https:\/\/t.co\/YwKD2PuCaJ","display_url":"pic.twitter.com\/YwKD2PuCaJ","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187098337842843648\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187098223267041280,"id_str":"1187098223267041280","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlri2dUUAANZWE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlri2dUUAANZWE.jpg","url":"https:\/\/t.co\/YwKD2PuCaJ","display_url":"pic.twitter.com\/YwKD2PuCaJ","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187098337842843648\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187068404655505410,"in_reply_to_status_id_str":"1187068404655505410","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1187098337842843648&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:17 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:17 GMT + x-transaction: d94371ffb4f7ffa2 + content-length: '1364' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '261' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '28' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Oct 23 20:07:53 +0000 2019","id":1187098337842843648,"id_str":"1187098337842843648","full_text":"Third + day #aect19inspired #AECTech2019 #aect19inspired ITV and Apple TV + https:\/\/t.co\/YwKD2PuCaJ","truncated":false,"display_text_range":[0,79],"entities":{"hashtags":[{"text":"aect19inspired","indices":[10,25]},{"text":"AECTech2019","indices":[26,38]},{"text":"aect19inspired","indices":[39,54]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187098223267041280,"id_str":"1187098223267041280","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlri2dUUAANZWE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlri2dUUAANZWE.jpg","url":"https:\/\/t.co\/YwKD2PuCaJ","display_url":"pic.twitter.com\/YwKD2PuCaJ","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187098337842843648\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187098223267041280,"id_str":"1187098223267041280","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlri2dUUAANZWE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlri2dUUAANZWE.jpg","url":"https:\/\/t.co\/YwKD2PuCaJ","display_url":"pic.twitter.com\/YwKD2PuCaJ","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187098337842843648\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187068404655505410,"in_reply_to_status_id_str":"1187068404655505410","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1187068404655505410&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:17 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:17 GMT + x-transaction: 7d3127e020cac2b4 + content-length: '1350' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '260' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '26' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Oct 23 18:08:56 +0000 2019","id":1187068404655505410,"id_str":"1187068404655505410","full_text":"Third + day #aect19inspired #AECTech2019 #aect19inspired Be inspired https:\/\/t.co\/OdpkOCJKOG","truncated":false,"display_text_range":[0,66],"entities":{"hashtags":[{"text":"aect19inspired","indices":[10,25]},{"text":"AECTech2019","indices":[26,38]},{"text":"aect19inspired","indices":[39,54]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187068399836266496,"id_str":"1187068399836266496","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","url":"https:\/\/t.co\/OdpkOCJKOG","display_url":"pic.twitter.com\/OdpkOCJKOG","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187068399836266496,"id_str":"1187068399836266496","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","url":"https:\/\/t.co\/OdpkOCJKOG","display_url":"pic.twitter.com\/OdpkOCJKOG","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187052419324055552,"in_reply_to_status_id_str":"1187052419324055552","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1187068404655505410&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:18 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:18 GMT + x-transaction: 4646bf37fdbaf42b + content-length: '1350' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '259' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '27' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Oct 23 18:08:56 +0000 2019","id":1187068404655505410,"id_str":"1187068404655505410","full_text":"Third + day #aect19inspired #AECTech2019 #aect19inspired Be inspired https:\/\/t.co\/OdpkOCJKOG","truncated":false,"display_text_range":[0,66],"entities":{"hashtags":[{"text":"aect19inspired","indices":[10,25]},{"text":"AECTech2019","indices":[26,38]},{"text":"aect19inspired","indices":[39,54]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187068399836266496,"id_str":"1187068399836266496","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","url":"https:\/\/t.co\/OdpkOCJKOG","display_url":"pic.twitter.com\/OdpkOCJKOG","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187068399836266496,"id_str":"1187068399836266496","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlQa5hVAAAKEGn.jpg","url":"https:\/\/t.co\/OdpkOCJKOG","display_url":"pic.twitter.com\/OdpkOCJKOG","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187068404655505410\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187052419324055552,"in_reply_to_status_id_str":"1187052419324055552","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1187052419324055552&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:18 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:18 GMT + x-transaction: 79195e33c83a52f7 + content-length: '1364' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '258' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '28' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Oct 23 17:05:25 +0000 2019","id":1187052419324055552,"id_str":"1187052419324055552","full_text":"Third + day #aect19inspired #AECTech2019 #aect19inspired Using a Visual Design Plan + Worksheet https:\/\/t.co\/q66FPHzSTm","truncated":false,"display_text_range":[0,91],"entities":{"hashtags":[{"text":"aect19inspired","indices":[10,25]},{"text":"AECTech2019","indices":[26,38]},{"text":"aect19inspired","indices":[39,54]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187052405428350976,"id_str":"1187052405428350976","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlB35tUcAAZzWc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlB35tUcAAZzWc.jpg","url":"https:\/\/t.co\/q66FPHzSTm","display_url":"pic.twitter.com\/q66FPHzSTm","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187052419324055552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187052405428350976,"id_str":"1187052405428350976","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlB35tUcAAZzWc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlB35tUcAAZzWc.jpg","url":"https:\/\/t.co\/q66FPHzSTm","display_url":"pic.twitter.com\/q66FPHzSTm","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187052419324055552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187042627306131456,"in_reply_to_status_id_str":"1187042627306131456","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1187052419324055552&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:18 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:18 GMT + x-transaction: fda5399b770ef584 + content-length: '1364' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '257' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '28' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Oct 23 17:05:25 +0000 2019","id":1187052419324055552,"id_str":"1187052419324055552","full_text":"Third + day #aect19inspired #AECTech2019 #aect19inspired Using a Visual Design Plan + Worksheet https:\/\/t.co\/q66FPHzSTm","truncated":false,"display_text_range":[0,91],"entities":{"hashtags":[{"text":"aect19inspired","indices":[10,25]},{"text":"AECTech2019","indices":[26,38]},{"text":"aect19inspired","indices":[39,54]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187052405428350976,"id_str":"1187052405428350976","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlB35tUcAAZzWc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlB35tUcAAZzWc.jpg","url":"https:\/\/t.co\/q66FPHzSTm","display_url":"pic.twitter.com\/q66FPHzSTm","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187052419324055552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187052405428350976,"id_str":"1187052405428350976","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/EHlB35tUcAAZzWc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHlB35tUcAAZzWc.jpg","url":"https:\/\/t.co\/q66FPHzSTm","display_url":"pic.twitter.com\/q66FPHzSTm","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187052419324055552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":1024,"h":768,"resize":"fit"},"medium":{"w":1024,"h":768,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1187042627306131456,"in_reply_to_status_id_str":"1187042627306131456","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1187042627306131456&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:18 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:18 GMT + x-transaction: 406783ae1b4ab648 + content-length: '1388' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '256' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '30' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Oct 23 16:26:31 +0000 2019","id":1187042627306131456,"id_str":"1187042627306131456","full_text":"Third + day #aect19inspired #AECTech2019 #aect19inspired Lessons in Leadership in + the Field of Educational Technology. https:\/\/t.co\/PblCJn7gy3","truncated":false,"display_text_range":[0,116],"entities":{"hashtags":[{"text":"aect19inspired","indices":[10,25]},{"text":"AECTech2019","indices":[26,38]},{"text":"aect19inspired","indices":[39,54]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187042606791843840,"id_str":"1187042606791843840","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk49i8U4AAbyL0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk49i8U4AAbyL0.jpg","url":"https:\/\/t.co\/PblCJn7gy3","display_url":"pic.twitter.com\/PblCJn7gy3","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187042627306131456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187042606791843840,"id_str":"1187042606791843840","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk49i8U4AAbyL0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk49i8U4AAbyL0.jpg","url":"https:\/\/t.co\/PblCJn7gy3","display_url":"pic.twitter.com\/PblCJn7gy3","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187042627306131456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186794729691705344,"in_reply_to_status_id_str":"1186794729691705344","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1187042627306131456&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:19 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:19 GMT + x-transaction: b67e26dd12101682 + content-length: '1388' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '255' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '32' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Oct 23 16:26:31 +0000 2019","id":1187042627306131456,"id_str":"1187042627306131456","full_text":"Third + day #aect19inspired #AECTech2019 #aect19inspired Lessons in Leadership in + the Field of Educational Technology. https:\/\/t.co\/PblCJn7gy3","truncated":false,"display_text_range":[0,116],"entities":{"hashtags":[{"text":"aect19inspired","indices":[10,25]},{"text":"AECTech2019","indices":[26,38]},{"text":"aect19inspired","indices":[39,54]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187042606791843840,"id_str":"1187042606791843840","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk49i8U4AAbyL0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk49i8U4AAbyL0.jpg","url":"https:\/\/t.co\/PblCJn7gy3","display_url":"pic.twitter.com\/PblCJn7gy3","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187042627306131456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187042606791843840,"id_str":"1187042606791843840","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/EHk49i8U4AAbyL0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHk49i8U4AAbyL0.jpg","url":"https:\/\/t.co\/PblCJn7gy3","display_url":"pic.twitter.com\/PblCJn7gy3","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1187042627306131456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186794729691705344,"in_reply_to_status_id_str":"1186794729691705344","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1186794729691705344&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:19 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:19 GMT + x-transaction: bd999a0f99d60b3c + content-length: '1477' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '254' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '24' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Oct 23 00:01:27 +0000 2019","id":1186794729691705344,"id_str":"1186794729691705344","full_text":"#aect19inspired + #acet2019 Poster Sessions https:\/\/t.co\/bkIkXmD8I4","truncated":false,"display_text_range":[0,48],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]},{"text":"acet2019","indices":[16,25]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186794723236671488,"id_str":"1186794723236671488","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186794723236671488,"id_str":"1186794723236671488","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}},"ext_alt_text":null},{"id":1186794723240890368,"id_str":"1186794723240890368","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg0wU0AAiXBP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg0wU0AAiXBP.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1186794723282845697,"id_str":"1186794723282845697","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg06VAAE_iQD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg06VAAE_iQD.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1334,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1186794723287035905,"id_str":"1186794723287035905","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg07U8AEE5Ce.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg07U8AEE5Ce.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186765163602436097,"in_reply_to_status_id_str":"1186765163602436097","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1186794729691705344&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:19 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:19 GMT + x-transaction: 0360b6c11c4ecb75 + content-length: '1477' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '253' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '26' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Oct 23 00:01:27 +0000 2019","id":1186794729691705344,"id_str":"1186794729691705344","full_text":"#aect19inspired + #acet2019 Poster Sessions https:\/\/t.co\/bkIkXmD8I4","truncated":false,"display_text_range":[0,48],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]},{"text":"acet2019","indices":[16,25]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186794723236671488,"id_str":"1186794723236671488","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186794723236671488,"id_str":"1186794723236671488","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg0vUcAASNBs.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":675,"h":1200,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}},"ext_alt_text":null},{"id":1186794723240890368,"id_str":"1186794723240890368","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg0wU0AAiXBP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg0wU0AAiXBP.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":382,"h":680,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1186794723282845697,"id_str":"1186794723282845697","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg06VAAE_iQD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg06VAAE_iQD.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1334,"resize":"fit"},"small":{"w":382,"h":680,"resize":"fit"},"medium":{"w":675,"h":1200,"resize":"fit"}},"ext_alt_text":null},{"id":1186794723287035905,"id_str":"1186794723287035905","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/EHhXg07U8AEE5Ce.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHhXg07U8AEE5Ce.jpg","url":"https:\/\/t.co\/bkIkXmD8I4","display_url":"pic.twitter.com\/bkIkXmD8I4","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186794729691705344\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186765163602436097,"in_reply_to_status_id_str":"1186765163602436097","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1186765163602436097&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:19 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:19 GMT + x-transaction: 4a76e22d191c7c86 + content-length: '1347' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '252' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '27' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Tue Oct 22 22:03:58 +0000 2019","id":1186765163602436097,"id_str":"1186765163602436097","full_text":"#aect19inspired + #AECTech2019 Improving Student Performance https:\/\/t.co\/jB2BHlipl0","truncated":false,"display_text_range":[0,63],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]},{"text":"AECTech2019","indices":[16,28]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186765154261749760,"id_str":"1186765154261749760","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","url":"https:\/\/t.co\/jB2BHlipl0","display_url":"pic.twitter.com\/jB2BHlipl0","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186765163602436097\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186765154261749760,"id_str":"1186765154261749760","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","url":"https:\/\/t.co\/jB2BHlipl0","display_url":"pic.twitter.com\/jB2BHlipl0","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186765163602436097\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186759650869268480,"in_reply_to_status_id_str":"1186759650869268480","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1186765163602436097&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:20 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:20 GMT + x-transaction: fd67c47cdb890531 + content-length: '1347' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '251' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '27' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Tue Oct 22 22:03:58 +0000 2019","id":1186765163602436097,"id_str":"1186765163602436097","full_text":"#aect19inspired + #AECTech2019 Improving Student Performance https:\/\/t.co\/jB2BHlipl0","truncated":false,"display_text_range":[0,63],"entities":{"hashtags":[{"text":"aect19inspired","indices":[0,15]},{"text":"AECTech2019","indices":[16,28]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186765154261749760,"id_str":"1186765154261749760","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","url":"https:\/\/t.co\/jB2BHlipl0","display_url":"pic.twitter.com\/jB2BHlipl0","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186765163602436097\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186765154261749760,"id_str":"1186765154261749760","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg8nruVUAAYtGZ.jpg","url":"https:\/\/t.co\/jB2BHlipl0","display_url":"pic.twitter.com\/jB2BHlipl0","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186765163602436097\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186759650869268480,"in_reply_to_status_id_str":"1186759650869268480","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1186759650869268480&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:20 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:20 GMT + x-transaction: 7c41d88e0eacff82 + content-length: '1382' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '250' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '42' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Tue Oct 22 21:42:04 +0000 2019","id":1186759650869268480,"id_str":"1186759650869268480","full_text":"Design + Solutions in Higher Education https:\/\/t.co\/X9dQVklC9W","truncated":false,"display_text_range":[0,36],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186759642665209857,"id_str":"1186759642665209857","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg3m3bUUAE6Y_B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg3m3bUUAE6Y_B.jpg","url":"https:\/\/t.co\/X9dQVklC9W","display_url":"pic.twitter.com\/X9dQVklC9W","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186759650869268480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186759642665209857,"id_str":"1186759642665209857","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg3m3bUUAE6Y_B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg3m3bUUAE6Y_B.jpg","url":"https:\/\/t.co\/X9dQVklC9W","display_url":"pic.twitter.com\/X9dQVklC9W","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186759650869268480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186759642669445120,"id_str":"1186759642669445120","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg3m3cU8AAWCNJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg3m3cU8AAWCNJ.jpg","url":"https:\/\/t.co\/X9dQVklC9W","display_url":"pic.twitter.com\/X9dQVklC9W","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186759650869268480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186759642669441024,"id_str":"1186759642669441024","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg3m3cU4AA32zH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg3m3cU4AA32zH.jpg","url":"https:\/\/t.co\/X9dQVklC9W","display_url":"pic.twitter.com\/X9dQVklC9W","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186759650869268480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186728910710378496,"in_reply_to_status_id_str":"1186728910710378496","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1186759650869268480&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:20 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:20 GMT + x-transaction: 1a8d593df645db16 + content-length: '1382' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '249' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '28' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Tue Oct 22 21:42:04 +0000 2019","id":1186759650869268480,"id_str":"1186759650869268480","full_text":"Design + Solutions in Higher Education https:\/\/t.co\/X9dQVklC9W","truncated":false,"display_text_range":[0,36],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186759642665209857,"id_str":"1186759642665209857","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg3m3bUUAE6Y_B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg3m3bUUAE6Y_B.jpg","url":"https:\/\/t.co\/X9dQVklC9W","display_url":"pic.twitter.com\/X9dQVklC9W","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186759650869268480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186759642665209857,"id_str":"1186759642665209857","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg3m3bUUAE6Y_B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg3m3bUUAE6Y_B.jpg","url":"https:\/\/t.co\/X9dQVklC9W","display_url":"pic.twitter.com\/X9dQVklC9W","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186759650869268480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186759642669445120,"id_str":"1186759642669445120","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg3m3cU8AAWCNJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg3m3cU8AAWCNJ.jpg","url":"https:\/\/t.co\/X9dQVklC9W","display_url":"pic.twitter.com\/X9dQVklC9W","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186759650869268480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186759642669441024,"id_str":"1186759642669441024","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/EHg3m3cU4AA32zH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHg3m3cU4AA32zH.jpg","url":"https:\/\/t.co\/X9dQVklC9W","display_url":"pic.twitter.com\/X9dQVklC9W","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186759650869268480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":510,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"medium":{"w":1200,"h":900,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186728910710378496,"in_reply_to_status_id_str":"1186728910710378496","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1186728910710378496&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:21 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:21 GMT + x-transaction: 27ec54f6d0cf7e3f + content-length: '1269' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '248' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '25' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Tue Oct 22 19:39:55 +0000 2019","id":1186728910710378496,"id_str":"1186728910710378496","full_text":"https:\/\/t.co\/X7k9qXGxM2","truncated":false,"display_text_range":[0,0],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186728902716055552,"id_str":"1186728902716055552","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgbpkMUYAAkBCF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgbpkMUYAAkBCF.jpg","url":"https:\/\/t.co\/X7k9qXGxM2","display_url":"pic.twitter.com\/X7k9qXGxM2","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186728910710378496\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186728902716055552,"id_str":"1186728902716055552","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgbpkMUYAAkBCF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgbpkMUYAAkBCF.jpg","url":"https:\/\/t.co\/X7k9qXGxM2","display_url":"pic.twitter.com\/X7k9qXGxM2","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186728910710378496\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186428011089809408,"in_reply_to_status_id_str":"1186428011089809408","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"zxx"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1186728910710378496&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:21 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:21 GMT + x-transaction: e8120977fa1abfee + content-length: '1269' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '247' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '23' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Tue Oct 22 19:39:55 +0000 2019","id":1186728910710378496,"id_str":"1186728910710378496","full_text":"https:\/\/t.co\/X7k9qXGxM2","truncated":false,"display_text_range":[0,0],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186728902716055552,"id_str":"1186728902716055552","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgbpkMUYAAkBCF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgbpkMUYAAkBCF.jpg","url":"https:\/\/t.co\/X7k9qXGxM2","display_url":"pic.twitter.com\/X7k9qXGxM2","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186728910710378496\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186728902716055552,"id_str":"1186728902716055552","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/EHgbpkMUYAAkBCF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHgbpkMUYAAkBCF.jpg","url":"https:\/\/t.co\/X7k9qXGxM2","display_url":"pic.twitter.com\/X7k9qXGxM2","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186728910710378496\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186428011089809408,"in_reply_to_status_id_str":"1186428011089809408","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"zxx"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1186428011089809408&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:21 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:21 GMT + x-transaction: 5add9ed346cd9f4f + content-length: '1295' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '246' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '34' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Mon Oct 21 23:44:15 +0000 2019","id":1186428011089809408,"id_str":"1186428011089809408","full_text":"How + lucky! I got BINGO https:\/\/t.co\/Y7lGdYWfVY","truncated":false,"display_text_range":[0,22],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186428004173434880,"id_str":"1186428004173434880","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcJ-9xVUAAEiRR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcJ-9xVUAAEiRR.jpg","url":"https:\/\/t.co\/Y7lGdYWfVY","display_url":"pic.twitter.com\/Y7lGdYWfVY","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186428011089809408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186428004173434880,"id_str":"1186428004173434880","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcJ-9xVUAAEiRR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcJ-9xVUAAEiRR.jpg","url":"https:\/\/t.co\/Y7lGdYWfVY","display_url":"pic.twitter.com\/Y7lGdYWfVY","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186428011089809408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186415133083389952,"in_reply_to_status_id_str":"1186415133083389952","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1186428011089809408&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:21 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:21 GMT + x-transaction: 9e916b23a30328bc + content-length: '1295' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '245' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '26' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Mon Oct 21 23:44:15 +0000 2019","id":1186428011089809408,"id_str":"1186428011089809408","full_text":"How + lucky! I got BINGO https:\/\/t.co\/Y7lGdYWfVY","truncated":false,"display_text_range":[0,22],"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1186428004173434880,"id_str":"1186428004173434880","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcJ-9xVUAAEiRR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcJ-9xVUAAEiRR.jpg","url":"https:\/\/t.co\/Y7lGdYWfVY","display_url":"pic.twitter.com\/Y7lGdYWfVY","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186428011089809408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186428004173434880,"id_str":"1186428004173434880","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/EHcJ-9xVUAAEiRR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHcJ-9xVUAAEiRR.jpg","url":"https:\/\/t.co\/Y7lGdYWfVY","display_url":"pic.twitter.com\/Y7lGdYWfVY","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186428011089809408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186415133083389952,"in_reply_to_status_id_str":"1186415133083389952","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1186415133083389952&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:22 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:22 GMT + x-transaction: 514b604f29be8a83 + content-length: '1391' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '244' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '29' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Mon Oct 21 22:53:04 +0000 2019","id":1186415133083389952,"id_str":"1186415133083389952","full_text":"I + got this for free from @rogerwagner at @AECT Thank you alot https:\/\/t.co\/tPx2UBLK13","truncated":false,"display_text_range":[0,65],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rogerwagner","name":"rogerwagner","id":9920032,"id_str":"9920032","indices":[25,37]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[42,47]}],"urls":[],"media":[{"id":1186415126607355904,"id_str":"1186415126607355904","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EHb-RZGU4AAYVCj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHb-RZGU4AAYVCj.jpg","url":"https:\/\/t.co\/tPx2UBLK13","display_url":"pic.twitter.com\/tPx2UBLK13","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186415133083389952\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186415126607355904,"id_str":"1186415126607355904","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EHb-RZGU4AAYVCj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHb-RZGU4AAYVCj.jpg","url":"https:\/\/t.co\/tPx2UBLK13","display_url":"pic.twitter.com\/tPx2UBLK13","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186415133083389952\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186412261893500928,"in_reply_to_status_id_str":"1186412261893500928","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1186415133083389952&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:22 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:22 GMT + x-transaction: 98697ffb4bf32c72 + content-length: '1391' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '243' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '23' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Mon Oct 21 22:53:04 +0000 2019","id":1186415133083389952,"id_str":"1186415133083389952","full_text":"I + got this for free from @rogerwagner at @AECT Thank you alot https:\/\/t.co\/tPx2UBLK13","truncated":false,"display_text_range":[0,65],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"rogerwagner","name":"rogerwagner","id":9920032,"id_str":"9920032","indices":[25,37]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[42,47]}],"urls":[],"media":[{"id":1186415126607355904,"id_str":"1186415126607355904","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EHb-RZGU4AAYVCj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHb-RZGU4AAYVCj.jpg","url":"https:\/\/t.co\/tPx2UBLK13","display_url":"pic.twitter.com\/tPx2UBLK13","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186415133083389952\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186415126607355904,"id_str":"1186415126607355904","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/EHb-RZGU4AAYVCj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHb-RZGU4AAYVCj.jpg","url":"https:\/\/t.co\/tPx2UBLK13","display_url":"pic.twitter.com\/tPx2UBLK13","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186415133083389952\/photo\/1","type":"photo","sizes":{"large":{"w":1536,"h":2048,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1186412261893500928,"in_reply_to_status_id_str":"1186412261893500928","in_reply_to_user_id":370132373,"in_reply_to_user_id_str":"370132373","in_reply_to_screen_name":"SultanMutlaq","user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1186412261893500928&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:22 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:22 GMT + x-transaction: 565d9d26d0184d20 + content-length: '1766' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '242' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '92' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Mon Oct 21 22:41:40 +0000 2019","id":1186412261893500928,"id_str":"1186412261893500928","full_text":"#AECTech2019 + @KhbratKSU3 @khebrat_edu @S_Meemar @train_un @onaizahedu @AECT https:\/\/t.co\/h2tOetBdOO","truncated":false,"display_text_range":[0,75],"entities":{"hashtags":[{"text":"AECTech2019","indices":[0,12]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[13,24]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[25,37]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[38,47]},{"screen_name":"train_un","name":"\u0627\u0644\u062a\u062f\u0631\u064a\u0628 + \u0641\u064a \u062a\u0639\u0644\u064a\u0645 \u0639\u0646\u064a\u0632\u0629","id":2872932721,"id_str":"2872932721","indices":[48,57]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[58,69]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[70,75]}],"urls":[],"media":[{"id":1186412177005002753,"id_str":"1186412177005002753","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHb7ls-UwAElqFp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHb7ls-UwAElqFp.jpg","url":"https:\/\/t.co\/h2tOetBdOO","display_url":"pic.twitter.com\/h2tOetBdOO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186412261893500928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186412177005002753,"id_str":"1186412177005002753","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHb7ls-UwAElqFp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHb7ls-UwAElqFp.jpg","url":"https:\/\/t.co\/h2tOetBdOO","display_url":"pic.twitter.com\/h2tOetBdOO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186412261893500928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1186412177055338496,"id_str":"1186412177055338496","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHb7ltKU0AAQjwU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHb7ltKU0AAQjwU.jpg","url":"https:\/\/t.co\/h2tOetBdOO","display_url":"pic.twitter.com\/h2tOetBdOO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186412261893500928\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1186412177940344833,"id_str":"1186412177940344833","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHb7lwdU8AEGrql.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHb7lwdU8AEGrql.jpg","url":"https:\/\/t.co\/h2tOetBdOO","display_url":"pic.twitter.com\/h2tOetBdOO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186412261893500928\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186412178280026114,"id_str":"1186412178280026114","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHb7lxuUEAI8yUp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHb7lxuUEAI8yUp.jpg","url":"https:\/\/t.co\/h2tOetBdOO","display_url":"pic.twitter.com\/h2tOetBdOO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186412261893500928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304%2C1186412261893500928&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:23 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:23 GMT + x-transaction: 360b40acf943cdc0 + content-length: '1766' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '241' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '31' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Mon Oct 21 22:41:40 +0000 2019","id":1186412261893500928,"id_str":"1186412261893500928","full_text":"#AECTech2019 + @KhbratKSU3 @khebrat_edu @S_Meemar @train_un @onaizahedu @AECT https:\/\/t.co\/h2tOetBdOO","truncated":false,"display_text_range":[0,75],"entities":{"hashtags":[{"text":"AECTech2019","indices":[0,12]}],"symbols":[],"user_mentions":[{"screen_name":"KhbratKSU3","name":"Khbrat + - Kansas State University","id":1141787839044182018,"id_str":"1141787839044182018","indices":[13,24]},{"screen_name":"khebrat_edu","name":"khebrat + \u0628\u0631\u0646\u0627\u0645\u062c \u062e\u0628\u0631\u0627\u062a","id":786572042388709376,"id_str":"786572042388709376","indices":[25,37]},{"screen_name":"S_Meemar","name":"\u062f. + \u0635\u0644\u0627\u062d \u0645\u0639\u0645\u0627\u0631","id":309043071,"id_str":"309043071","indices":[38,47]},{"screen_name":"train_un","name":"\u0627\u0644\u062a\u062f\u0631\u064a\u0628 + \u0641\u064a \u062a\u0639\u0644\u064a\u0645 \u0639\u0646\u064a\u0632\u0629","id":2872932721,"id_str":"2872932721","indices":[48,57]},{"screen_name":"onaizahedu","name":"\u062a\u0645 + \u0627\u0644\u062a\u063a\u064a\u064a\u0631","id":1263910760687775744,"id_str":"1263910760687775744","indices":[58,69]},{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[70,75]}],"urls":[],"media":[{"id":1186412177005002753,"id_str":"1186412177005002753","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHb7ls-UwAElqFp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHb7ls-UwAElqFp.jpg","url":"https:\/\/t.co\/h2tOetBdOO","display_url":"pic.twitter.com\/h2tOetBdOO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186412261893500928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1186412177005002753,"id_str":"1186412177005002753","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHb7ls-UwAElqFp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHb7ls-UwAElqFp.jpg","url":"https:\/\/t.co\/h2tOetBdOO","display_url":"pic.twitter.com\/h2tOetBdOO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186412261893500928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":900,"h":1200,"resize":"fit"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null},{"id":1186412177055338496,"id_str":"1186412177055338496","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHb7ltKU0AAQjwU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHb7ltKU0AAQjwU.jpg","url":"https:\/\/t.co\/h2tOetBdOO","display_url":"pic.twitter.com\/h2tOetBdOO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186412261893500928\/photo\/1","type":"photo","sizes":{"medium":{"w":1200,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":2048,"h":1536,"resize":"fit"},"small":{"w":680,"h":510,"resize":"fit"}},"ext_alt_text":null},{"id":1186412177940344833,"id_str":"1186412177940344833","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHb7lwdU8AEGrql.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHb7lwdU8AEGrql.jpg","url":"https:\/\/t.co\/h2tOetBdOO","display_url":"pic.twitter.com\/h2tOetBdOO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186412261893500928\/photo\/1","type":"photo","sizes":{"small":{"w":680,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":900,"resize":"fit"},"large":{"w":2048,"h":1536,"resize":"fit"}},"ext_alt_text":null},{"id":1186412178280026114,"id_str":"1186412178280026114","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/EHb7lxuUEAI8yUp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHb7lxuUEAI8yUp.jpg","url":"https:\/\/t.co\/h2tOetBdOO","display_url":"pic.twitter.com\/h2tOetBdOO","expanded_url":"https:\/\/twitter.com\/SultanMutlaq\/status\/1186412261893500928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":370132373,"id_str":"370132373","name":"SultanMutlaq","screen_name":"SultanMutlaq","location":"Manhattan, + KS","description":"Sultan Almutairi , #computer science, Bowie State University + ,Maryland,USA, Exchange Program from Kansas State University, (\u062e\u0648\u0627\u0637\u0631\u064a + \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 )","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":457,"friends_count":388,"listed_count":0,"created_at":"Thu + Sep 08 14:28:55 +0000 2011","favourites_count":438,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":713,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556556323529138176\/8oXVdJ3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370132373\/1657666963","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"qme"}]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1194337180057047041%2C1187791907855822849%2C1187773984596578304&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:23 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:23 GMT + x-transaction: 4f789890f498f30f + content-length: '28' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '240' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '63' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[]' + recorded_at: 2022-08-09 02:49:23 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 diff --git a/tests/fixtures/upstream_tweets_empty.yml b/tests/fixtures/upstream_tweets_empty.yml new file mode 100644 index 0000000..b1a3f0b --- /dev/null +++ b/tests/fixtures/upstream_tweets_empty.yml @@ -0,0 +1,180 @@ +http_interactions: +- request: + method: get + uri: https://api.twitter.com/1.1/statuses/lookup.json?id=1251954312772812801%2C1248064163211096064%2C1234206946732830720%2C1229405350178127872%2C1227652243870097408%2C1225505187453964288%2C1225137879921385472%2C1225122317849657345%2C1219758386436165633%2C1219043574555299840&tweet_mode=extended&include_ext_alt_text=true + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:49:24 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:49:24 GMT + x-transaction: cb8fb019f956e8c4 + content-length: '5113' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014132' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '239' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '59' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"created_at":"Wed Feb 05 18:21:36 +0000 2020","id":1225122317849657345,"id_str":"1225122317849657345","full_text":"Many + thanks to @AECTTechTrends for supporting our @gsa_aect with the Grad Member + Musings column! The latest guest author is #uidaho''s Ken Cox, a first year + doc student in our C&I program and a member of my #UISTEMEdRG. https:\/\/t.co\/8MuP9Mza8f + #aect #aect20 #aect19","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"uidaho","indices":[124,131]},{"text":"UISTEMEdRG","indices":[210,221]},{"text":"aect","indices":[247,252]},{"text":"aect20","indices":[253,260]},{"text":"aect19","indices":[261,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[15,30]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[50,59]}],"urls":[{"url":"https:\/\/t.co\/8MuP9Mza8f","expanded_url":"https:\/\/doi.org\/10.1007\/s11528-020-00477-5","display_url":"doi.org\/10.1007\/s11528\u2026","indices":[223,246]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},{"created_at":"Tue + Jan 21 23:07:15 +0000 2020","id":1219758386436165633,"id_str":"1219758386436165633","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Apr 19 19:22:23 +0000 2020","id":1251954312772812801,"id_str":"1251954312772812801","full_text":"RT + @RoutledgeEd: Congrats to authors Joseph Rene Corbeil, Maria Elena Corbeil, + and (not pictured) Badrul Khan, who received the Outstanding\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"RoutledgeEd","name":"Routledge + Education Books","id":27606068,"id_str":"27606068","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1251951804398669825,"id_str":"1251951804398669825","name":"Harriet + Watkins","screen_name":"Harriet96152202","location":"","description":"Love + educational technology, online learning and just all the things \u2026 higher + ed!","url":"https:\/\/t.co\/ztRaRj9BLo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ztRaRj9BLo","expanded_url":"https:\/\/harrietwatkins.com\/","display_url":"harrietwatkins.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":17,"listed_count":0,"created_at":"Sun + Apr 19 19:12:33 +0000 2020","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1251951950163255299\/cxSX369n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1251951950163255299\/cxSX369n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251951804398669825\/1587323939","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Oct 23 21:58:17 +0000 2019","id":1187126122376392704,"id_str":"1187126122376392704","full_text":"Congrats + to authors Joseph Rene Corbeil, Maria Elena Corbeil, and (not pictured) Badrul + Khan, who received the Outstanding Book Award from #AECT2019\u2019s Culture, + Learning, and Technology division \u2014 a global treatment of #learninganalytics + and #educationaldatamining. https:\/\/t.co\/aG1kf7a5ew","truncated":false,"display_text_range":[0,264],"entities":{"hashtags":[{"text":"AECT2019","indices":[139,148]},{"text":"learninganalytics","indices":[218,236]},{"text":"educationaldatamining","indices":[241,263]}],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1187126100159164416,"id_str":"1187126100159164416","indices":[265,288],"media_url":"http:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EHmE5f-U8AA6_mM.jpg","url":"https:\/\/t.co\/aG1kf7a5ew","display_url":"pic.twitter.com\/aG1kf7a5ew","expanded_url":"https:\/\/twitter.com\/RoutledgeEd\/status\/1187126122376392704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1536,"h":2048,"resize":"fit"},"medium":{"w":900,"h":1200,"resize":"fit"},"small":{"w":510,"h":680,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27606068,"id_str":"27606068","name":"Routledge + Education Books","screen_name":"RoutledgeEd","location":"Global","description":"Supporting + educators, teachers, scholars and students with informative and practical + books based on leading research and classroom practice.","url":"http:\/\/t.co\/j4LZK9ypti","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/j4LZK9ypti","expanded_url":"http:\/\/www.routledge.com\/education","display_url":"routledge.com\/education","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":13833,"friends_count":3278,"listed_count":230,"created_at":"Mon + Mar 30 08:33:32 +0000 2009","favourites_count":2658,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10107,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"6A9ADA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27606068\/1629726175","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"6A9ADA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Mon + Feb 17 14:00:51 +0000 2020","id":1229405350178127872,"id_str":"1229405350178127872","full_text":"RT + @tadousay: Many thanks to @AECTTechTrends for supporting our @gsa_aect with + the Grad Member Musings column! The latest guest author is #\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[29,44]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[64,73]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Feb 05 18:21:36 +0000 2020","id":1225122317849657345,"id_str":"1225122317849657345","full_text":"Many + thanks to @AECTTechTrends for supporting our @gsa_aect with the Grad Member + Musings column! The latest guest author is #uidaho''s Ken Cox, a first year + doc student in our C&I program and a member of my #UISTEMEdRG. https:\/\/t.co\/8MuP9Mza8f + #aect #aect20 #aect19","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"uidaho","indices":[124,131]},{"text":"UISTEMEdRG","indices":[210,221]},{"text":"aect","indices":[247,252]},{"text":"aect20","indices":[253,260]},{"text":"aect19","indices":[261,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[15,30]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[50,59]}],"urls":[{"url":"https:\/\/t.co\/8MuP9Mza8f","expanded_url":"https:\/\/doi.org\/10.1007\/s11528-020-00477-5","display_url":"doi.org\/10.1007\/s11528\u2026","indices":[223,246]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Jan 19 23:46:51 +0000 2020","id":1219043574555299840,"id_str":"1219043574555299840","full_text":"RT + @AECT: The #AECT19 convention proceedings are available! The papers published + in these volumes were presented at the annual AECT Convent\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[{"text":"AECT19","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1088189033266798598,"id_str":"1088189033266798598","name":"AECT + Division of Distance Learning","screen_name":"aectddl","location":"","description":"The + Division of Distance Learning is a special interest group of the Association + for Educational Communications and Technology (AECT).","url":"https:\/\/t.co\/Rg9uXQTkSM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Rg9uXQTkSM","expanded_url":"https:\/\/aect.org\/ddl.php","display_url":"aect.org\/ddl.php","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":861,"friends_count":482,"listed_count":6,"created_at":"Wed + Jan 23 21:37:37 +0000 2019","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088189033266798598\/1548280679","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Jan 18 15:00:08 +0000 2020","id":1218548635333545984,"id_str":"1218548635333545984","full_text":"The + #AECT19 convention proceedings are available! The papers published in these + volumes were presented at the annual AECT Convention in Las Vegas last October. + https:\/\/t.co\/YWd4W72eEn https:\/\/t.co\/gGnVfbJ7vu","truncated":false,"display_text_range":[0,183],"entities":{"hashtags":[{"text":"AECT19","indices":[4,11]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/YWd4W72eEn","expanded_url":"http:\/\/bit.ly\/AECT19proceedings","display_url":"bit.ly\/AECT19proceedi\u2026","indices":[160,183]}],"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1218548626764587008,"id_str":"1218548626764587008","indices":[184,207],"media_url":"http:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/EOknhRfX4AAM1M2.jpg","url":"https:\/\/t.co\/gGnVfbJ7vu","display_url":"pic.twitter.com\/gGnVfbJ7vu","expanded_url":"https:\/\/twitter.com\/AECT\/status\/1218548635333545984\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":1200,"h":628,"resize":"fit"},"small":{"w":680,"h":356,"resize":"fit"},"large":{"w":1200,"h":628,"resize":"fit"}},"ext_alt_text":null}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Sun + Mar 01 20:00:41 +0000 2020","id":1234206946732830720,"id_str":"1234206946732830720","full_text":"RT + @veletsianos: Reminder: Call for Chapter Proposals: Critical Digital Pedagogy + \u2013 Broadening Horizons, Bridging Theory and Practice: \n\nhtt\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"veletsianos","name":"George + Veletsianos, PhD","id":17883918,"id_str":"17883918","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3294167372,"id_str":"3294167372","name":"Augusta + Avram","screen_name":"ELTAugusta","location":"British Columbia, Canada","description":"Language + Education #CdnELTchat","url":"https:\/\/t.co\/OpLrmtQUDp","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OpLrmtQUDp","expanded_url":"https:\/\/twitter.com\/LINCclass","display_url":"twitter.com\/LINCclass","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":789,"friends_count":1325,"listed_count":78,"created_at":"Sun + Jul 26 02:40:59 +0000 2015","favourites_count":5096,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7313,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/704165359020978176\/wbBjVGk1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/704165359020978176\/wbBjVGk1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3294167372\/1437949131","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Nov 12 14:01:12 +0000 2019","id":1194253817304498177,"id_str":"1194253817304498177","full_text":"Reminder: + Call for Chapter Proposals: Critical Digital Pedagogy \u2013 Broadening Horizons, + Bridging Theory and Practice: \n\nhttps:\/\/t.co\/IFksBMs8MV #edtech #oer20 + #opened #aect19 #digped","truncated":false,"display_text_range":[0,181],"entities":{"hashtags":[{"text":"edtech","indices":[143,150]},{"text":"oer20","indices":[151,157]},{"text":"opened","indices":[158,165]},{"text":"aect19","indices":[166,173]},{"text":"digped","indices":[174,181]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/IFksBMs8MV","expanded_url":"https:\/\/www.veletsianos.com\/2019\/10\/09\/call-for-chapter-proposals-critical-digital-pedagogy-broadening-horizons-bridging-theory-and-practice\/","display_url":"veletsianos.com\/2019\/10\/09\/cal\u2026","indices":[119,142]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17883918,"id_str":"17883918","name":"George + Veletsianos, PhD","screen_name":"veletsianos","location":"\ud83c\udde8\ud83c\udde6\ud83c\udde8\ud83c\uddfe\ud83c\uddea\ud83c\uddfa","description":"Professor. + Canada Research Chair in Learning & Tech @royalroads. Online & flexible learning, + equity, futures, networked scholarship. \ud83c\udf31for the animals","url":"https:\/\/t.co\/g2hQX7soEy","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/g2hQX7soEy","expanded_url":"http:\/\/www.veletsianos.com","display_url":"veletsianos.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":8395,"friends_count":6008,"listed_count":481,"created_at":"Thu + Dec 04 23:58:32 +0000 2008","favourites_count":6764,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2815,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1336398184814321664\/Mj1SlnuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17883918\/1609951015","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":30,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":28,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},{"created_at":"Wed + Feb 05 19:23:27 +0000 2020","id":1225137879921385472,"id_str":"1225137879921385472","full_text":"RT + @tadousay: Many thanks to @AECTTechTrends for supporting our @gsa_aect with + the Grad Member Musings column! The latest guest author is #\u2026","truncated":false,"display_text_range":[0,140],"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tadousay","name":"Dr. + Tonia A. Dousay","id":14215524,"id_str":"14215524","indices":[3,12]},{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[29,44]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[64,73]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":804807943,"id_str":"804807943","name":"TechTrends + Editor","screen_name":"AECTTechTrends","location":"","description":"Tweets + from the Editor of TechTrends, an AECT journal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2050,"friends_count":15,"listed_count":57,"created_at":"Wed + Sep 05 15:17:03 +0000 2012","favourites_count":772,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1388,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/804807943\/1483653902","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Feb 05 18:21:36 +0000 2020","id":1225122317849657345,"id_str":"1225122317849657345","full_text":"Many + thanks to @AECTTechTrends for supporting our @gsa_aect with the Grad Member + Musings column! The latest guest author is #uidaho''s Ken Cox, a first year + doc student in our C&I program and a member of my #UISTEMEdRG. https:\/\/t.co\/8MuP9Mza8f + #aect #aect20 #aect19","truncated":false,"display_text_range":[0,268],"entities":{"hashtags":[{"text":"uidaho","indices":[124,131]},{"text":"UISTEMEdRG","indices":[210,221]},{"text":"aect","indices":[247,252]},{"text":"aect20","indices":[253,260]},{"text":"aect19","indices":[261,268]}],"symbols":[],"user_mentions":[{"screen_name":"AECTTechTrends","name":"TechTrends + Editor","id":804807943,"id_str":"804807943","indices":[15,30]},{"screen_name":"gsa_aect","name":"AECT + GSA","id":922536306437181440,"id_str":"922536306437181440","indices":[50,59]}],"urls":[{"url":"https:\/\/t.co\/8MuP9Mza8f","expanded_url":"https:\/\/doi.org\/10.1007\/s11528-020-00477-5","display_url":"doi.org\/10.1007\/s11528\u2026","indices":[223,246]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14215524,"id_str":"14215524","name":"Dr. + Tonia A. Dousay","screen_name":"tadousay","location":"Moscow, ID","description":"\u2756 + @UAAnchorage Professor \u22c4 Director of #UAASOE \u22c4 @TAMU BS ''98 MS + ''00 \u22c4 @UniversityofGA PhD ''13 \u22c4 #disted \u22c4 #edtech \u22c4 + #teachered \u22c4 #instructionaldesign \u2756","url":"https:\/\/t.co\/mNe8apZBwK","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mNe8apZBwK","expanded_url":"http:\/\/about.me\/tadousay","display_url":"about.me\/tadousay","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2253,"friends_count":1362,"listed_count":178,"created_at":"Tue + Mar 25 13:56:07 +0000 2008","favourites_count":4252,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12144,"lang":null,"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1458504088186884100\/6Ndz0qCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14215524\/1657302769","profile_image_extensions_alt_text":null,"profile_banner_extensions_alt_text":null,"profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"}]' + recorded_at: 2022-08-09 02:49:24 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 diff --git a/tests/fixtures/url_domains.yml b/tests/fixtures/url_domains.yml new file mode 100644 index 0000000..1468d60 --- /dev/null +++ b/tests/fixtures/url_domains.yml @@ -0,0 +1,142 @@ +http_interactions: +- request: + method: head + uri: https://www.tidyverse.org/ + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + age: '0' + cache-control: public, max-age=0, must-revalidate + content-encoding: gzip + content-type: text/html; charset=UTF-8 + date: Tue, 09 Aug 2022 02:49:38 GMT + etag: '"6b8f789a0f6ad9906d27cb7dd69a3b89-ssl-df"' + server: Netlify + strict-transport-security: max-age=31536000 + vary: Accept-Encoding + x-nf-request-id: 01GA083YSNFMH0YACSJ8530Z1H + body: + encoding: UTF-8 + file: no + string: '' + recorded_at: 2022-08-09 02:49:39 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: head + uri: https://www.tidyverse.org/packages/ + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + age: '0' + cache-control: public, max-age=0, must-revalidate + content-encoding: gzip + content-type: text/html; charset=UTF-8 + date: Tue, 09 Aug 2022 02:49:38 GMT + etag: '"efc04cef8461097e9d3dc3c311b86dc8-ssl-df"' + server: Netlify + strict-transport-security: max-age=31536000 + vary: Accept-Encoding + x-nf-request-id: 01GA083YXNT22B3635HKF1XSWR + body: + encoding: UTF-8 + file: no + string: '' + recorded_at: 2022-08-09 02:49:39 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: head + uri: https://dplyr.tidyverse.org/ + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + server: GitHub.com + content-type: text/html; charset=utf-8 + last-modified: Mon, 08 Aug 2022 20:40:25 GMT + access-control-allow-origin: '*' + etag: W/"62f174b9-63df" + expires: Mon, 08 Aug 2022 21:02:10 GMT + cache-control: max-age=600 + content-encoding: gzip + x-proxy-cache: MISS + x-github-request-id: 648A:8F70:31377E:71C662:62F1777A + accept-ranges: bytes + date: Tue, 09 Aug 2022 02:49:38 GMT + via: 1.1 varnish + age: '0' + x-served-by: cache-iad-kiad7000032-IAD + x-cache: HIT + x-cache-hits: '1' + x-timer: S1660013379.740709,VS0,VE10 + vary: Accept-Encoding + x-fastly-request-id: 975632f21d3478237f0cfaf411b27ba714382d83 + content-length: '6355' + body: + encoding: UTF-8 + file: no + string: '' + recorded_at: 2022-08-09 02:49:39 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 +- request: + method: head + uri: https://www.npr.org/sections/technology/ + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + content-type: text/html; charset=UTF-8 + x-cache-npr: HIT + access-control-allow-origin: '*' + access-control-allow-credentials: 'true' + x-npr-trace-id: rendhJiWnMu + x-content-type-options: nosniff + x-xss-protection: 1; mode=block + x-served-by: pod-www-render-nginx-f756665cb-v876b + referrer-policy: no-referrer-when-downgrade + strict-transport-security: max-age=15724800; includeSubDomains + vary: Accept-Encoding + content-encoding: gzip + cache-control: no-cache + expires: Tue, 09 Aug 2022 02:49:39 GMT + date: Tue, 09 Aug 2022 02:49:39 GMT + content-length: '20' + body: + encoding: UTF-8 + file: no + string: '' + recorded_at: 2022-08-09 02:49:39 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 diff --git a/tests/fixtures/users_info.yml b/tests/fixtures/users_info.yml new file mode 100644 index 0000000..81aef1b --- /dev/null +++ b/tests/fixtures/users_info.yml @@ -0,0 +1,674 @@ +http_interactions: +- request: + method: get + uri: https://api.twitter.com/1.1/users/lookup.json?screen_name=nicolapallitt%2CHarriet96152202%2CELTAugusta%2Cgsa_aect%2CAECTTechTrends%2Caectddl%2CCherylHW%2Ctutaleni%2Ctreymartindale%2CSebLopJr%2Ccorreia65%2Cmarshallgjones%2CLiuJh_Christie%2CDrFrankGomez%2CGabrielKonayuma%2CDavidGilbertVO%2Cthe80kcrew%2Cifyouaskbetty%2Cpattishank%2Cclement_abai%2Cshonn2nd%2CAECT%2Cwavinya66%2Caectclt%2Ccarolinem2040%2Cmarkoteras%2Ckoubenec%2CMohamedmetwa%2ClbukunAA%2CMattheaMarquart%2Charmonygritz%2Cconstatively%2CUMassLinguistic%2Clsbu_crit%2Cmichaelmgrant%2Cvt_idt%2Conmyway2here%2Chodgesc%2CETHEjournal%2CemergeAfrica%2Cvrodes%2C_COER_%2Csukainaw%2Cleohavemann%2CMarkJ_ohnson%2CMargyMacLibrary%2CLucyappert%2Ccherybrown%2CChri5rowell%2CRitaFennelly%2CSuzanKoseoglu%2CTech_DrL%2Ceromerohall%2CRoutledgeEd + body: + encoding: '' + string: '' + headers: + Accept: application/json, text/xml, application/xml, */* + Authorization: My bearer token is safe + response: + status: + status_code: 200 + category: Success + reason: OK + message: 'Success: (200) OK' + headers: + date: Tue, 09 Aug 2022 02:47:28 GMT + pragma: no-cache + server: tsa_b + status: 200 OK + expires: Tue, 31 Mar 1981 05:00:00 GMT + content-type: application/json;charset=utf-8 + cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 + last-modified: Tue, 09 Aug 2022 02:47:28 GMT + x-transaction: 7f8563ce6c7d1f4c + content-length: '28021' + x-access-level: read + x-frame-options: SAMEORIGIN + content-encoding: gzip + x-xss-protection: '0' + x-rate-limit-limit: '300' + x-rate-limit-reset: '1660014148' + content-disposition: attachment; filename=json.json + x-content-type-options: nosniff + x-rate-limit-remaining: '299' + x-twitter-response-tags: BouncerCompliant + strict-transport-security: max-age=631138519 + x-response-time: '117' + x-connection-hash: 3430450614040805dbc8e410c38178d8e2d4c244043b90fa0daa27247a292f6b + body: + encoding: UTF-8 + file: no + string: '[{"id":118368334,"id_str":"118368334","name":"Dr Nicola Pallitt","screen_name":"nicolapallitt","location":"Grahamstown, + South Africa","description":"EdTech @Rhodes_Uni working in @CHERTL_RU & member + of @emergeAfrica team, #FacilitateOnline critical perspective #EdTech researcher","url":"https:\/\/t.co\/p1veXbw0pP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/p1veXbw0pP","expanded_url":"https:\/\/scholar.google.co.za\/citations?user=rtUfOYMAAAAJ&hl=en&oi=ao","display_url":"scholar.google.co.za\/citations?user\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1753,"friends_count":1924,"listed_count":127,"created_at":"Sun + Feb 28 13:13:53 +0000 2010","favourites_count":2040,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":7157,"lang":null,"status":{"created_at":"Fri + Jun 17 07:25:35 +0000 2022","id":1537697954072608769,"id_str":"1537697954072608769","text":"RT + @Neil_Selwyn: ''Frontiers in #EdTech'' - very happy to be part of this online + seminar series hosted by @OxfordDeptofEd ... some big topics\u2026","truncated":false,"entities":{"hashtags":[{"text":"EdTech","indices":[31,38]}],"symbols":[],"user_mentions":[{"screen_name":"Neil_Selwyn","name":"Neil + Selwyn","id":142598896,"id_str":"142598896","indices":[3,15]},{"screen_name":"OxfordDeptofEd","name":"Department + of Education","id":1031888863843819524,"id_str":"1031888863843819524","indices":[104,119]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Jun 17 01:53:31 +0000 2022","id":1537614386541768704,"id_str":"1537614386541768704","text":"''Frontiers + in #EdTech'' - very happy to be part of this online seminar series hosted + by @OxfordDeptofEd ... some big\u2026 https:\/\/t.co\/A5S22ruFj7","truncated":true,"entities":{"hashtags":[{"text":"EdTech","indices":[14,21]}],"symbols":[],"user_mentions":[{"screen_name":"OxfordDeptofEd","name":"Department + of Education","id":1031888863843819524,"id_str":"1031888863843819524","indices":[87,102]}],"urls":[{"url":"https:\/\/t.co\/A5S22ruFj7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1537614386541768704","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":32,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":13,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B5F3DF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1220796671065501696\/-eiGjIEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118368334\/1417529001","profile_link_color":"4DC1A8","profile_sidebar_border_color":"C4C9F1","profile_sidebar_fill_color":"C3D9FD","profile_text_color":"DCFDD6","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":1251951804398669825,"id_str":"1251951804398669825","name":"Harriet + Watkins","screen_name":"Harriet96152202","location":"","description":"Love + educational technology, online learning and just all the things \u2026 higher + ed!","url":"https:\/\/t.co\/ztRaRj9BLo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ztRaRj9BLo","expanded_url":"https:\/\/harrietwatkins.com\/","display_url":"harrietwatkins.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7,"friends_count":17,"listed_count":0,"created_at":"Sun + Apr 19 19:12:33 +0000 2020","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9,"lang":null,"status":{"created_at":"Wed + Jun 03 20:09:53 +0000 2020","id":1268273722428985346,"id_str":"1268273722428985346","text":"Combating + the Crisis with Training Digitization https:\/\/t.co\/tdZxeESf39","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/tdZxeESf39","expanded_url":"https:\/\/paper.li\/TechTeacher1381\/1576778284?read=https%3A%2F%2Fwww.miningweekly.com%2Farticle%2Fcombating-the-crisis-with-training-digitization-2020-06-02%2Frep_id%3A3861","display_url":"paper.li\/TechTeacher138\u2026","indices":[48,71]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1251951950163255299\/cxSX369n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1251951950163255299\/cxSX369n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251951804398669825\/1587323939","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":3294167372,"id_str":"3294167372","name":"Augusta + Avram","screen_name":"ELTAugusta","location":"British Columbia, Canada","description":"Language + Education #CdnELTchat","url":"https:\/\/t.co\/OpLrmtQUDp","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/OpLrmtQUDp","expanded_url":"https:\/\/twitter.com\/LINCclass","display_url":"twitter.com\/LINCclass","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":789,"friends_count":1325,"listed_count":78,"created_at":"Sun + Jul 26 02:40:59 +0000 2015","favourites_count":5096,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7313,"lang":null,"status":{"created_at":"Sun + May 08 17:31:18 +0000 2022","id":1523354870907998208,"id_str":"1523354870907998208","text":"RT + @CanadaPaintings: Cradled Loons\nNingeokuluk Teevee ~ Inuit\n2009 https:\/\/t.co\/9VO1AfMjIy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CanadaPaintings","name":"Canadian + Paintings","id":1079749615082033152,"id_str":"1079749615082033152","indices":[3,19]}],"urls":[],"media":[{"id":1522986863837028353,"id_str":"1522986863837028353","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/FSK8e8iXoAEryO7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FSK8e8iXoAEryO7.jpg","url":"https:\/\/t.co\/9VO1AfMjIy","display_url":"pic.twitter.com\/9VO1AfMjIy","expanded_url":"https:\/\/twitter.com\/CanadaPaintings\/status\/1523025122352762880\/photo\/1","type":"photo","sizes":{"medium":{"w":1000,"h":827,"resize":"fit"},"small":{"w":680,"h":562,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":827,"resize":"fit"}},"source_status_id":1523025122352762880,"source_status_id_str":"1523025122352762880","source_user_id":1079749615082033152,"source_user_id_str":"1079749615082033152"}]},"extended_entities":{"media":[{"id":1522986863837028353,"id_str":"1522986863837028353","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/FSK8e8iXoAEryO7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FSK8e8iXoAEryO7.jpg","url":"https:\/\/t.co\/9VO1AfMjIy","display_url":"pic.twitter.com\/9VO1AfMjIy","expanded_url":"https:\/\/twitter.com\/CanadaPaintings\/status\/1523025122352762880\/photo\/1","type":"photo","sizes":{"medium":{"w":1000,"h":827,"resize":"fit"},"small":{"w":680,"h":562,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":827,"resize":"fit"}},"source_status_id":1523025122352762880,"source_status_id_str":"1523025122352762880","source_user_id":1079749615082033152,"source_user_id_str":"1079749615082033152"}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + May 07 19:41:00 +0000 2022","id":1523025122352762880,"id_str":"1523025122352762880","text":"Cradled + Loons\nNingeokuluk Teevee ~ Inuit\n2009 https:\/\/t.co\/9VO1AfMjIy","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[],"media":[{"id":1522986863837028353,"id_str":"1522986863837028353","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/FSK8e8iXoAEryO7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FSK8e8iXoAEryO7.jpg","url":"https:\/\/t.co\/9VO1AfMjIy","display_url":"pic.twitter.com\/9VO1AfMjIy","expanded_url":"https:\/\/twitter.com\/CanadaPaintings\/status\/1523025122352762880\/photo\/1","type":"photo","sizes":{"medium":{"w":1000,"h":827,"resize":"fit"},"small":{"w":680,"h":562,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":827,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1522986863837028353,"id_str":"1522986863837028353","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/FSK8e8iXoAEryO7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FSK8e8iXoAEryO7.jpg","url":"https:\/\/t.co\/9VO1AfMjIy","display_url":"pic.twitter.com\/9VO1AfMjIy","expanded_url":"https:\/\/twitter.com\/CanadaPaintings\/status\/1523025122352762880\/photo\/1","type":"photo","sizes":{"medium":{"w":1000,"h":827,"resize":"fit"},"small":{"w":680,"h":562,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":827,"resize":"fit"}}}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":442,"favorite_count":3523,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"is_quote_status":false,"retweet_count":442,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"et"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/704165359020978176\/wbBjVGk1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/704165359020978176\/wbBjVGk1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3294167372\/1437949131","profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":922536306437181440,"id_str":"922536306437181440","name":"AECT + GSA","screen_name":"gsa_aect","location":"","description":"The official account + of the Graduate Student Assembly for the Association of EducationalCommunications + and Technology","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":452,"friends_count":47,"listed_count":4,"created_at":"Mon + Oct 23 18:52:50 +0000 2017","favourites_count":147,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2351,"lang":null,"status":{"created_at":"Sat + Aug 06 13:02:34 +0000 2022","id":1555902148403253251,"id_str":"1555902148403253251","text":"RT + @AECT: Early bird registrations portend a great convention with hundreds coming + to Las Vegas and hundreds more joining virtually. It wil\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[3,8]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Aug 03 13:08:22 +0000 2022","id":1554816446215213057,"id_str":"1554816446215213057","text":"Early + bird registrations portend a great convention with hundreds coming to Las + Vegas and hundreds more joining vir\u2026 https:\/\/t.co\/l8jlUlUjSp","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/l8jlUlUjSp","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1554816446215213057","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1025847363615641600\/1UylGRlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922536306437181440\/1531449088","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":804807943,"id_str":"804807943","name":"TechTrends + Editor","screen_name":"AECTTechTrends","location":"","description":"Tweets + from the Editor of TechTrends, an AECT journal","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2050,"friends_count":15,"listed_count":57,"created_at":"Wed + Sep 05 15:17:03 +0000 2012","favourites_count":772,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1388,"lang":null,"status":{"created_at":"Tue + Aug 02 17:38:53 +0000 2022","id":1554522137679077388,"id_str":"1554522137679077388","text":"Congrats + to Eamonn Powers & \n@robmoore3\n for their recent award from \n@aectddl\n + for the TechTrends article, \"When F\u2026 https:\/\/t.co\/0WqfK1XU4w","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"robmoore3","name":"Rob + Moore, Ph.D.","id":45256556,"id_str":"45256556","indices":[33,43]},{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[74,82]}],"urls":[{"url":"https:\/\/t.co\/0WqfK1XU4w","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1554522137679077388","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/817129539809714177\/Px0jTTcg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/804807943\/1483653902","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":1088189033266798598,"id_str":"1088189033266798598","name":"AECT + Division of Distance Learning","screen_name":"aectddl","location":"","description":"The + Division of Distance Learning is a special interest group of the Association + for Educational Communications and Technology (AECT).","url":"https:\/\/t.co\/Rg9uXQTkSM","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Rg9uXQTkSM","expanded_url":"https:\/\/aect.org\/ddl.php","display_url":"aect.org\/ddl.php","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":861,"friends_count":482,"listed_count":6,"created_at":"Wed + Jan 23 21:37:37 +0000 2019","favourites_count":254,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":261,"lang":null,"status":{"created_at":"Tue + Aug 02 16:47:15 +0000 2022","id":1554509141204520961,"id_str":"1554509141204520961","text":"Congratulations + to our 2022 DDL award winners\nhttps:\/\/t.co\/Pv3Mzy0foK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Pv3Mzy0foK","expanded_url":"https:\/\/sites.google.com\/site\/ddlaect\/ddl-award-winners","display_url":"sites.google.com\/site\/ddlaect\/d\u2026","indices":[46,69]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1371865688034451461\/12PtxK7K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088189033266798598\/1548280679","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":89691945,"id_str":"89691945","name":"Cheryl + Hodgkinson-Williams","screen_name":"CherylHW","location":"Cape Town","description":"Open + Education and Social Justice Advocate. Emeritus Associate Professor, Centre + for Innovation in Learning & Teaching, University of Cape Town.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1553,"friends_count":714,"listed_count":61,"created_at":"Fri + Nov 13 12:51:42 +0000 2009","favourites_count":4681,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4980,"lang":null,"status":{"created_at":"Mon + May 23 18:30:50 +0000 2022","id":1528805672535613442,"id_str":"1528805672535613442","text":"@GOGN_OER + @carinabossu @BeckPitt @philosopher1978 @PacoIniesto Missing all of you! Enjoy + the conference for me!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"GOGN_OER","name":"GO-GN","id":2574966348,"id_str":"2574966348","indices":[0,9]},{"screen_name":"carinabossu","name":"Carina + Bossu","id":199556838,"id_str":"199556838","indices":[10,22]},{"screen_name":"BeckPitt","name":"Dr. + Beck Pitt","id":176841064,"id_str":"176841064","indices":[23,32]},{"screen_name":"philosopher1978","name":"Rob + Farrow","id":64362109,"id_str":"64362109","indices":[33,49]},{"screen_name":"PacoIniesto","name":"Francisco + Iniesto","id":407214645,"id_str":"407214645","indices":[50,62]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1528649018355724288,"in_reply_to_status_id_str":"1528649018355724288","in_reply_to_user_id":2574966348,"in_reply_to_user_id_str":"2574966348","in_reply_to_screen_name":"GOGN_OER","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/468384357388804097\/jD8SSxSC_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/468384357388804097\/jD8SSxSC_normal.jpeg","profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":48223678,"id_str":"48223678","name":"Tutaleni","screen_name":"tutaleni","location":"","description":"Learning, + Design, & Technology Researcher. Comparative International Education Enthusiast. + I really like mobiles! At heart - omumati gwo komukunda!","url":"https:\/\/t.co\/m1jFZu2oBL","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/m1jFZu2oBL","expanded_url":"http:\/\/tutaleniasino.com","display_url":"tutaleniasino.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1719,"friends_count":728,"listed_count":149,"created_at":"Thu + Jun 18 03:07:17 +0000 2009","favourites_count":6669,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11826,"lang":null,"status":{"created_at":"Fri + Aug 05 11:36:59 +0000 2022","id":1555518226326511616,"id_str":"1555518226326511616","text":"RT + @timeshighered: What\u2019s next for #artificialintelligence in higher education? + From #assessment to ethics, a @Jisc report highlights AI\u2019s\u2026","truncated":false,"entities":{"hashtags":[{"text":"artificialintelligence","indices":[35,58]},{"text":"assessment","indices":[85,96]}],"symbols":[],"user_mentions":[{"screen_name":"timeshighered","name":"Times + Higher Education","id":23602600,"id_str":"23602600","indices":[3,17]},{"screen_name":"Jisc","name":"Jisc","id":18829580,"id_str":"18829580","indices":[110,115]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Aug 05 11:06:01 +0000 2022","id":1555510430277292037,"id_str":"1555510430277292037","text":"What\u2019s + next for #artificialintelligence in higher education? From #assessment to + ethics, a @Jisc report highlights\u2026 https:\/\/t.co\/9A85JnvtCS","truncated":true,"entities":{"hashtags":[{"text":"artificialintelligence","indices":[16,39]},{"text":"assessment","indices":[66,77]}],"symbols":[],"user_mentions":[{"screen_name":"Jisc","name":"Jisc","id":18829580,"id_str":"18829580","indices":[91,96]}],"urls":[{"url":"https:\/\/t.co\/9A85JnvtCS","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1555510430277292037","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca + href=\"https:\/\/sproutsocial.com\" rel=\"nofollow\"\u003eSprout Social\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1530064603627016194\/lwHnVdol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48223678\/1496586938","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":14125173,"id_str":"14125173","name":"Trey + Martindale","screen_name":"treymartindale","location":"","description":"News + about #instructionaldesign and #onlinelearning , mostly in #highered .","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1170,"friends_count":0,"listed_count":98,"created_at":"Tue + Mar 11 16:32:25 +0000 2008","favourites_count":110,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4164,"lang":null,"status":{"created_at":"Sun + Aug 07 21:53:26 +0000 2022","id":1556398134170984448,"id_str":"1556398134170984448","text":"Two + Years After Promising a \u2018Transformational\u2019 Partnership, the U. of + Arizona and Zovio Part Ways https:\/\/t.co\/NFwmhfKxtx","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/NFwmhfKxtx","expanded_url":"https:\/\/www.chronicle.com\/article\/two-years-after-promising-a-transformational-partnership-the-u-of-arizona-and-zovio-part-ways","display_url":"chronicle.com\/article\/two-ye\u2026","indices":[98,121]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1291200178553327619\/BcPSjP2-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1291200178553327619\/BcPSjP2-_normal.jpg","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":2563684237,"id_str":"2563684237","name":"\ud835\ude1a\ud835\ude26\ud835\ude23\ud835\ude22\ud835\ude34\ud835\ude35\ud835\ude2a\ud835\ude22\ud835\ude2f + \ud835\ude13\ud835\ude30\ud835\ude31\ud835\ude26\ud835\ude3b \ud835\ude11\ud835\ude33., + M.Ed.","screen_name":"SebLopJr","location":"Beaumont, TX","description":"-Network + Admin -Ed.D student at @ISDT_SHSU -M.Ed. of Inst Tech from @SamHoustonState + -BAAS from @LamarUniversity -Google EDU *views expressed are my own*","url":"https:\/\/t.co\/UzLzwoVtIk","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/UzLzwoVtIk","expanded_url":"http:\/\/SebLopezJr.net","display_url":"SebLopezJr.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":760,"friends_count":2605,"listed_count":12,"created_at":"Thu + Jun 12 16:09:12 +0000 2014","favourites_count":13587,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2025,"lang":null,"status":{"created_at":"Fri + Jul 15 00:28:12 +0000 2022","id":1547739774500216832,"id_str":"1547739774500216832","text":"RT + @mrshowell24: Create a Google Form that sends a birthday card atomically to + your staff or students! Thanks @pertuzluisfer for teaching m\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"mrshowell24","name":"Stephanie + Howell","id":2882501298,"id_str":"2882501298","indices":[3,15]},{"screen_name":"pertuzluisfer","name":"Luis + Fernando Pertuz Escribano","id":818825005001834496,"id_str":"818825005001834496","indices":[110,124]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Jul 14 00:25:00 +0000 2022","id":1547376580070187008,"id_str":"1547376580070187008","text":"Create + a Google Form that sends a birthday card atomically to your staff or students! + Thanks @pertuzluisfer for tea\u2026 https:\/\/t.co\/pANixCqMo1","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"pertuzluisfer","name":"Luis + Fernando Pertuz Escribano","id":818825005001834496,"id_str":"818825005001834496","indices":[93,107]}],"urls":[{"url":"https:\/\/t.co\/pANixCqMo1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1547376580070187008","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":543,"favorite_count":3307,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":543,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1129071740854951937\/YDv04AoR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1129071740854951937\/YDv04AoR_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2563684237\/1405631793","profile_link_color":"0000A0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":153141293,"id_str":"153141293","name":"Ana-Paula + Correia \u2600\ufe0f","screen_name":"correia65","location":"","description":"Professor + of Learning Technologies @OhioState @OSUehe. Director of @OSUcete. Learning + Designer. Researcher. Leader. @LEDresearch \ud83c\uddfa\ud83c\uddf8\ud83c\uddf5\ud83c\uddf9","url":"https:\/\/t.co\/mgeGAbT0AP","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/mgeGAbT0AP","expanded_url":"https:\/\/www.ana-paulacorreia.com\/","display_url":"ana-paulacorreia.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3494,"friends_count":3241,"listed_count":29,"created_at":"Mon + Jun 07 20:00:45 +0000 2010","favourites_count":10293,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":654,"lang":null,"status":{"created_at":"Tue + Jun 28 14:08:47 +0000 2022","id":1541785689003630592,"id_str":"1541785689003630592","text":"Please + join me in congratulating Dr. Clarke-Dorrell (@ekclarke18) on a successful + #PhD #Dissertation defense last w\u2026 https:\/\/t.co\/xy2kMPSawO","truncated":true,"entities":{"hashtags":[{"text":"PhD","indices":[82,86]},{"text":"Dissertation","indices":[87,100]}],"symbols":[],"user_mentions":[{"screen_name":"ekclarke18","name":"Erin + Clarke-Dorrell","id":3504438375,"id_str":"3504438375","indices":[53,64]}],"urls":[{"url":"https:\/\/t.co\/xy2kMPSawO","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1541785689003630592","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":23,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1149684446838345728\/1XaCxgEx_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1149684446838345728\/1XaCxgEx_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153141293\/1562941057","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":17467478,"id_str":"17467478","name":"Marshall + G. Jones","screen_name":"marshallgjones","location":"Rock Hill, SC USA","description":"Professor + of Learning Design & Technology. Musician. Photographer. Tweeting about learning, + technology & whatever else strikes me. Tweets are my own.","url":"https:\/\/t.co\/HGRry3tHo4","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/HGRry3tHo4","expanded_url":"http:\/\/marshallgjones.com","display_url":"marshallgjones.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1022,"friends_count":889,"listed_count":71,"created_at":"Tue + Nov 18 18:26:51 +0000 2008","favourites_count":7553,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8342,"lang":null,"status":{"created_at":"Sun + Aug 07 00:05:01 +0000 2022","id":1556068860188581889,"id_str":"1556068860188581889","text":"I\u2019m + posting this for two reasons. 1. The Pawtuckets are an amazing band from + Memphis you\u2019ve likely never heard of.\u2026 https:\/\/t.co\/awdQAfQBEI","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/awdQAfQBEI","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1556068860188581889","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490489101564403715\/Uuypbkum_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17467478\/1570054414","profile_link_color":"0084B4","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":321423678,"id_str":"321423678","name":"Dr. + Juhong Christie Liu","screen_name":"LiuJh_Christie","location":"","description":"Director + of Instructional Design @JMUlibraries -- Associate Professor @JMU -- wife, + mother, daughter, instructional designer, scholar \ud83c\udf0e\ud83c\udf0d\ud83c\udf0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":411,"friends_count":671,"listed_count":35,"created_at":"Tue + Jun 21 15:10:52 +0000 2011","favourites_count":5992,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3757,"lang":null,"status":{"created_at":"Sun + Aug 07 18:19:37 +0000 2022","id":1556344326548033536,"id_str":"1556344326548033536","text":"valued + time: editing w\/ known collaborators & reviewing for unknown colleagues... + AND the additional nourishing tim\u2026 https:\/\/t.co\/11tZbX0b63","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/11tZbX0b63","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1556344326548033536","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1556079563955904517,"in_reply_to_status_id_str":"1556079563955904517","in_reply_to_user_id":321423678,"in_reply_to_user_id_str":"321423678","in_reply_to_screen_name":"LiuJh_Christie","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"CAEDE8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520246734223548421\/TXWrMhE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321423678\/1613854240","profile_link_color":"2A0EB3","profile_sidebar_border_color":"806E80","profile_sidebar_fill_color":"D4C9D4","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":3192842900,"id_str":"3192842900","name":"FG\u272amez2, + Ed.D.\u2606\u5f61","screen_name":"DrFrankGomez","location":"","description":"Educator\u2022Ed + Tech\u2022Poet\u2022@edtechbsu Alumni\u2022\u03a6\u039a\u03a6 Member\u2022Research: + Digital Pedagogy & Technopedagogical Self-efficacy\u2022Striving for excellence\u2022Retweets + \u2260 Endorsements.","url":"https:\/\/t.co\/CNWGWDlenf","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/CNWGWDlenf","expanded_url":"http:\/\/goo.gl\/m8BYno","display_url":"goo.gl\/m8BYno","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":391,"friends_count":722,"listed_count":123,"created_at":"Tue + May 12 05:33:37 +0000 2015","favourites_count":6547,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3185,"lang":null,"status":{"created_at":"Sat + Jun 18 23:07:00 +0000 2022","id":1538297256876527616,"id_str":"1538297256876527616","text":"Looking + for a great collection of FREE Office #Calendar Templates, including #academic + and #school calendar templat\u2026 https:\/\/t.co\/L0EfXZqqkw","truncated":true,"entities":{"hashtags":[{"text":"Calendar","indices":[46,55]},{"text":"academic","indices":[77,86]},{"text":"school","indices":[91,98]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/L0EfXZqqkw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1538297256876527616","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598000520553369601\/tiaY0maa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598000520553369601\/tiaY0maa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3192842900\/1435711772","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":52675234,"id_str":"52675234","name":"Gabriel + Konayuma","screen_name":"GabrielKonayuma","location":"Lusaka, Zambia","description":"A + Christian, Vocational Training educator specialised in learning, entrepreneurship, + educational technology.\n#edtech, #vocational_education, #entrepreneurship","url":"https:\/\/t.co\/ajMvMd1Eyh","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/ajMvMd1Eyh","expanded_url":"https:\/\/goo.gl\/nzZwHm","display_url":"goo.gl\/nzZwHm","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":571,"friends_count":1525,"listed_count":10,"created_at":"Wed + Jul 01 08:57:05 +0000 2009","favourites_count":3473,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4828,"lang":null,"status":{"created_at":"Wed + Aug 03 15:35:37 +0000 2022","id":1554853501511127040,"id_str":"1554853501511127040","text":"RT + @daily_thetha: \"A degree itself means nothing. What gives it value is its + specialty. So be careful what you are studying and what the ou\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"daily_thetha","name":"Official + Daily Thetha","id":819488066251423744,"id_str":"819488066251423744","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jan 30 09:18:29 +0000 2018","id":958268166777573377,"id_str":"958268166777573377","text":"\"A + degree itself means nothing. What gives it value is its specialty. So be careful + what you are studying and what\u2026 https:\/\/t.co\/0ko4vFtr2S","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/0ko4vFtr2S","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/958268166777573377","display_url":"twitter.com\/i\/web\/status\/9\u2026","indices":[116,139]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":17,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":8,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643929621214437376\/9Q7jHSOH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643929621214437376\/9Q7jHSOH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52675234\/1608527579","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":171693619,"id_str":"171693619","name":"\ud83c\udfa4David + Gilbert Voice Over \ud83c\udfa4 #Easy24HourVoiceOver","screen_name":"DavidGilbertVO","location":"Global","description":"\"Giving + YOUR business a voice.\"\n#voiceover #corporate #elearning #commercial #explainer + #IVR\n\nGet a quote: david@davidgilbertvoiceover.com\n\n#Easy24HourVoiceOver","url":"https:\/\/t.co\/uBL3Hgo2Vg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/uBL3Hgo2Vg","expanded_url":"https:\/\/sleek.bio\/davidgilbertvo","display_url":"sleek.bio\/davidgilbertvo","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":3290,"friends_count":4967,"listed_count":62,"created_at":"Tue + Jul 27 23:21:56 +0000 2010","favourites_count":168945,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":76802,"lang":null,"status":{"created_at":"Tue + Aug 09 02:28:42 +0000 2022","id":1556829797682233346,"id_str":"1556829797682233346","text":"RT + @deOrygun: @HannahDCox #StopLying \n\nMUST.PROTECT.DONORS!\n\n\"The U.S. is + losing $1 trillion in unpaid taxes every year, Rettig estimated.\u2026","truncated":false,"entities":{"hashtags":[{"text":"StopLying","indices":[26,36]}],"symbols":[],"user_mentions":[{"screen_name":"deOrygun","name":"\ud835\udd7e\ud835\udd99\ud835\udd94\ud835\udd97\ud835\udd92\ud835\udd9c\ud835\udd86\ud835\udd99\ud835\udd88\ud835\udd8d","id":1233107892602957825,"id_str":"1233107892602957825","indices":[3,12]},{"screen_name":"HannahDCox","name":"Hannah + Cox","id":331464013,"id_str":"331464013","indices":[14,25]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Aug 08 19:30:24 +0000 2022","id":1556724525454086145,"id_str":"1556724525454086145","text":"@HannahDCox + #StopLying \n\nMUST.PROTECT.DONORS!\n\n\"The U.S. is losing $1 trillion in + unpaid taxes every year, Rettig e\u2026 https:\/\/t.co\/V1bLKXZ3T6","truncated":true,"entities":{"hashtags":[{"text":"StopLying","indices":[12,22]}],"symbols":[],"user_mentions":[{"screen_name":"HannahDCox","name":"Hannah + Cox","id":331464013,"id_str":"331464013","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/V1bLKXZ3T6","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1556724525454086145","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1556637243628036104,"in_reply_to_status_id_str":"1556637243628036104","in_reply_to_user_id":331464013,"in_reply_to_user_id_str":"331464013","in_reply_to_screen_name":"HannahDCox","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":38,"favorite_count":120,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":38,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1453064381051416577\/V4EuhqhN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1453064381051416577\/V4EuhqhN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/171693619\/1634848574","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":1059123581156700160,"id_str":"1059123581156700160","name":"80K + at Wembley","screen_name":"the80kcrew","location":"","description":"Quality + content from a quality bloke. Quote tweeted by John Cusack once. #boxing mostly","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":307,"friends_count":252,"listed_count":3,"created_at":"Sun + Nov 04 16:41:54 +0000 2018","favourites_count":8676,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7212,"lang":null,"status":{"created_at":"Tue + Jul 19 03:00:27 +0000 2022","id":1549227638928973824,"id_str":"1549227638928973824","text":"@Homer + I can def relate to having AC breal down on a hot day. Put some water on your\u2026.","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Homer","name":"Homer","id":171179590,"id_str":"171179590","indices":[0,6]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1549222815190188032,"in_reply_to_status_id_str":"1549222815190188032","in_reply_to_user_id":171179590,"in_reply_to_user_id_str":"171179590","in_reply_to_screen_name":"Homer","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1494825221924081667\/yw2J2Rvj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1494825221924081667\/yw2J2Rvj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1059123581156700160\/1582607612","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":32396916,"id_str":"32396916","name":"Betty + Dannewitz","screen_name":"ifyouaskbetty","location":"Detroit, MI","description":"","url":"https:\/\/t.co\/9W1hC09FJi","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9W1hC09FJi","expanded_url":"http:\/\/www.ifyouaskbetty.com","display_url":"ifyouaskbetty.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":555,"friends_count":356,"listed_count":18,"created_at":"Fri + Apr 17 13:09:02 +0000 2009","favourites_count":3212,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1836,"lang":null,"status":{"created_at":"Mon + Aug 08 15:15:44 +0000 2022","id":1556660439169236992,"id_str":"1556660439169236992","text":"@marklearns + @nickfloro @cindyhugg @mshEducation @roamingallowed @KristenLearning @StyleLearn + @Craig_Sybert\u2026 https:\/\/t.co\/stmkB9Juwt","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"marklearns","name":"Mark + L. Sheppard","id":255155890,"id_str":"255155890","indices":[0,11]},{"screen_name":"nickfloro","name":"Nick + Floro","id":15578710,"id_str":"15578710","indices":[12,22]},{"screen_name":"cindyhugg","name":"Cindy + Huggett","id":15515538,"id_str":"15515538","indices":[23,33]},{"screen_name":"mshEducation","name":"M. + Sean Hickey (he\/him)","id":803693643475390464,"id_str":"803693643475390464","indices":[34,47]},{"screen_name":"roamingallowed","name":"Christiana + Houck, PhD (she\/her) #nomad \u26f5","id":821048288174477316,"id_str":"821048288174477316","indices":[48,63]},{"screen_name":"KristenLearning","name":"Kristen + Hayden Safdie","id":827198845020876801,"id_str":"827198845020876801","indices":[64,80]},{"screen_name":"StyleLearn","name":"Alexander + Salas","id":2573909211,"id_str":"2573909211","indices":[81,92]},{"screen_name":"Craig_Sybert","name":"Craig + Sybert","id":771363401234784256,"id_str":"771363401234784256","indices":[93,106]}],"urls":[{"url":"https:\/\/t.co\/stmkB9Juwt","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1556660439169236992","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[108,131]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":1556638062939078661,"in_reply_to_status_id_str":"1556638062939078661","in_reply_to_user_id":255155890,"in_reply_to_user_id_str":"255155890","in_reply_to_screen_name":"marklearns","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1144765013145481216\/tQ8oD5Y-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1144765013145481216\/tQ8oD5Y-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/32396916\/1573763103","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":21444864,"id_str":"21444864","name":"pattishank","screen_name":"pattishank","location":"Denver, + CO, USA","description":"Evidence-based instructional design for better workplace + #training, #learning, and #performance outcomes. Get my books on Amazon. https:\/\/t.co\/2E2tHK85j3","url":"http:\/\/t.co\/jjiHAb2wCj","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/jjiHAb2wCj","expanded_url":"http:\/\/www.pattishank.com","display_url":"pattishank.com","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/2E2tHK85j3","expanded_url":"http:\/\/pattishank.com","display_url":"pattishank.com","indices":[130,153]}]}},"protected":false,"followers_count":10691,"friends_count":5299,"listed_count":606,"created_at":"Fri + Feb 20 23:10:52 +0000 2009","favourites_count":4589,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":31816,"lang":null,"status":{"created_at":"Mon + Aug 08 20:15:01 +0000 2022","id":1556735754499399681,"id_str":"1556735754499399681","text":"https:\/\/t.co\/iu3yzOqTO4 + It''s amazing how much we typically get wrong about designing instruction. + Memorization is\u2026 https:\/\/t.co\/7llcSkKzQc","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/iu3yzOqTO4","expanded_url":"https:\/\/twitter.com\/christophhuegle\/status\/1555536754597306368","display_url":"twitter.com\/christophhuegl\u2026","indices":[0,23]},{"url":"https:\/\/t.co\/7llcSkKzQc","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1556735754499399681","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1555536754597306368,"quoted_status_id_str":"1555536754597306368","retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"59472F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1396505354297438209\/tpgmHuMD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1396505354297438209\/tpgmHuMD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21444864\/1632256053","profile_link_color":"FAB81E","profile_sidebar_border_color":"000515","profile_sidebar_fill_color":"061127","profile_text_color":"827972","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":907084983390662656,"id_str":"907084983390662656","name":"Clement + Abai","screen_name":"clement_abai","location":"Stillwater, OK","description":"PhD + student in Learning, Design and Technology. Design-Based Research. Augmented + Reality, Virtual Reality, Mixed Reality and Learning","url":"https:\/\/t.co\/Be4qEbOXsm","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Be4qEbOXsm","expanded_url":"http:\/\/clementabai.com","display_url":"clementabai.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":24,"friends_count":37,"listed_count":0,"created_at":"Mon + Sep 11 03:34:47 +0000 2017","favourites_count":190,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":134,"lang":null,"status":{"created_at":"Wed + Jul 13 11:28:13 +0000 2022","id":1547181098538508290,"id_str":"1547181098538508290","text":"RT + @tutaleni: It was an honour to give the opening keynote address at #IASL2022. + Thank you for the opportunity to spend time in conversatio\u2026","truncated":false,"entities":{"hashtags":[{"text":"IASL2022","indices":[70,79]}],"symbols":[],"user_mentions":[{"screen_name":"tutaleni","name":"Tutaleni","id":48223678,"id_str":"48223678","indices":[3,12]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jul 12 20:56:07 +0000 2022","id":1546961627089616901,"id_str":"1546961627089616901","text":"It + was an honour to give the opening keynote address at #IASL2022. Thank you + for the opportunity to spend time in c\u2026 https:\/\/t.co\/HAQIORMXoC","truncated":true,"entities":{"hashtags":[{"text":"IASL2022","indices":[56,65]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/HAQIORMXoC","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1546961627089616901","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1512529733891895302\/DVRTYqgA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1512529733891895302\/DVRTYqgA_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":197077129,"id_str":"197077129","name":"Shonn + Cheng","screen_name":"shonn2nd","location":"Huntsville, Texas","description":"Assistant + Professor of Instructional Systems Design & Technology @SamHoustonState | + mastery goal orientation | \u3055\u3068\u307f \u3057\u3085\u3046\u3058","url":"https:\/\/t.co\/suOZ2lqHZO","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/suOZ2lqHZO","expanded_url":"http:\/\/shonnslc.com","display_url":"shonnslc.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":577,"friends_count":1340,"listed_count":20,"created_at":"Thu + Sep 30 16:04:19 +0000 2010","favourites_count":6293,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1871,"lang":null,"status":{"created_at":"Sat + Aug 06 05:49:27 +0000 2022","id":1555793150895161344,"id_str":"1555793150895161344","text":"@eromerohall + Congratulations!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"eromerohall","name":"Dr. + Enilda Romero-Hall (She\/Her)","id":918747876,"id_str":"918747876","indices":[0,12]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1555669307350302722,"in_reply_to_status_id_str":"1555669307350302722","in_reply_to_user_id":918747876,"in_reply_to_user_id_str":"918747876","in_reply_to_screen_name":"eromerohall","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1518784831479373824\/dksWzjgF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1518784831479373824\/dksWzjgF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/197077129\/1555358405","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":12030342,"id_str":"12030342","name":"\u2735 + AECT \u2735","screen_name":"AECT","location":"Worldwide","description":"[Association + for Educational Communications & Technology] Supporting #educators & #professionals + dedicated to improving #instruction through #technology.","url":"https:\/\/t.co\/s2f9IMQQQ6","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/s2f9IMQQQ6","expanded_url":"http:\/\/aect.org","display_url":"aect.org","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4711,"friends_count":556,"listed_count":125,"created_at":"Wed + Jan 09 15:38:18 +0000 2008","favourites_count":3574,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3177,"lang":null,"status":{"created_at":"Thu + Aug 04 19:57:09 +0000 2022","id":1555281709720932354,"id_str":"1555281709720932354","text":"RT + @aectddl: Congratulations to our 2022 DDL award winners\nhttps:\/\/t.co\/Pv3Mzy0foK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aectddl","name":"AECT + Division of Distance Learning","id":1088189033266798598,"id_str":"1088189033266798598","indices":[3,11]}],"urls":[{"url":"https:\/\/t.co\/Pv3Mzy0foK","expanded_url":"https:\/\/sites.google.com\/site\/ddlaect\/ddl-award-winners","display_url":"sites.google.com\/site\/ddlaect\/d\u2026","indices":[59,82]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Aug 02 16:47:15 +0000 2022","id":1554509141204520961,"id_str":"1554509141204520961","text":"Congratulations + to our 2022 DDL award winners\nhttps:\/\/t.co\/Pv3Mzy0foK","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/Pv3Mzy0foK","expanded_url":"https:\/\/sites.google.com\/site\/ddlaect\/ddl-award-winners","display_url":"sites.google.com\/site\/ddlaect\/d\u2026","indices":[46,69]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1057649830879748096\/-gzHp1_5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12030342\/1640037645","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":123168263,"id_str":"123168263","name":"Irene + Maweu \ud83c\udf3b\ud83c\udf3b","screen_name":"wavinya66","location":"Kenya","description":"By + Faith \/ With Respect \/ Facilitating from the heart \/ Liberating Structures + Gospel \/ IAF Member","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":762,"friends_count":772,"listed_count":9,"created_at":"Mon + Mar 15 06:31:31 +0000 2010","favourites_count":10218,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":5795,"lang":null,"status":{"created_at":"Wed + Aug 03 06:35:42 +0000 2022","id":1554717628740112387,"id_str":"1554717628740112387","text":"RT + @Bali_Maha: #LiberaringStructures aha moment at #MYFest22 by @HAKretschmer\nInspired + first by @wavinya66\n@tony_emerge & then later, sessi\u2026","truncated":false,"entities":{"hashtags":[{"text":"LiberaringStructures","indices":[15,36]},{"text":"MYFest22","indices":[51,60]}],"symbols":[],"user_mentions":[{"screen_name":"Bali_Maha","name":"Maha + Bali, PhD \u0645\u0647\u0627 \u0628\u0627\u0644\u064a \ud83c\udf35","id":1535273520,"id_str":"1535273520","indices":[3,13]},{"screen_name":"HAKretschmer","name":"Heather + Kretschmer","id":1492155646988464139,"id_str":"1492155646988464139","indices":[64,77]},{"screen_name":"wavinya66","name":"Irene + Maweu \ud83c\udf3b\ud83c\udf3b","id":123168263,"id_str":"123168263","indices":[96,106]},{"screen_name":"tony_emerge","name":"tony_emerge","id":15326097,"id_str":"15326097","indices":[107,119]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Aug 02 23:35:48 +0000 2022","id":1554611954999824384,"id_str":"1554611954999824384","text":"#LiberaringStructures + aha moment at #MYFest22 by @HAKretschmer\nInspired first by @wavinya66\n@tony_emerge + & then lat\u2026 https:\/\/t.co\/WU3Tyb4lE1","truncated":true,"entities":{"hashtags":[{"text":"LiberaringStructures","indices":[0,21]},{"text":"MYFest22","indices":[36,45]}],"symbols":[],"user_mentions":[{"screen_name":"HAKretschmer","name":"Heather + Kretschmer","id":1492155646988464139,"id_str":"1492155646988464139","indices":[49,62]},{"screen_name":"wavinya66","name":"Irene + Maweu \ud83c\udf3b\ud83c\udf3b","id":123168263,"id_str":"123168263","indices":[81,91]},{"screen_name":"tony_emerge","name":"tony_emerge","id":15326097,"id_str":"15326097","indices":[92,104]}],"urls":[{"url":"https:\/\/t.co\/WU3Tyb4lE1","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1554611954999824384","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1080116800329793536\/bhbSToyc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123168263\/1610274071","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":905212118127042560,"id_str":"905212118127042560","name":"AECT_CLT","screen_name":"aectclt","location":"","description":"AECT + Division Exploring culture, learning, and technology with particular emphases + on championing inclusiveness and equity. Conversation at #aectclt","url":"https:\/\/t.co\/yc2CmqxA5M","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/yc2CmqxA5M","expanded_url":"https:\/\/sites.google.com\/view\/clt-home","display_url":"sites.google.com\/view\/clt-home","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":449,"friends_count":26,"listed_count":4,"created_at":"Tue + Sep 05 23:32:41 +0000 2017","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":486,"lang":null,"status":{"created_at":"Fri + Aug 05 17:36:14 +0000 2022","id":1555608631415934977,"id_str":"1555608631415934977","text":"Join + us (AECT Culture, Learning & Technology) on Mon Aug 8 at 2 pm ET for a + discussion on Design Justice. Check yo\u2026 https:\/\/t.co\/72FscFhrhB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/72FscFhrhB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1555608631415934977","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/911629418736451585\/pUzcym84_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905212118127042560\/1506184813","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":1168887502817697794,"id_str":"1168887502817697794","name":"caroline","screen_name":"carolinem2040","location":"","description":"EME + 2040\ud83e\udd13\ud83d\udcd5\u270f\ufe0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":18,"listed_count":0,"created_at":"Tue + Sep 03 14:04:40 +0000 2019","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":36,"lang":null,"status":{"created_at":"Tue + Nov 19 00:43:58 +0000 2019","id":1196589898863542272,"id_str":"1196589898863542272","text":"My + sorority\u2019s philanthropy is #ReadLeadAchieve which benefits kids who do + not know how to read! I love how this relates to my future!","truncated":false,"entities":{"hashtags":[{"text":"ReadLeadAchieve","indices":[30,46]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":null,"profile_background_image_url_https":null,"profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1168888173704949765\/FFnAmK2a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1168888173704949765\/FFnAmK2a_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":16645388,"id_str":"16645388","name":"Marko + Ter\u00e4s","screen_name":"markoteras","location":"Finland","description":"Critical + research of digitalization and datafication \/ speculative fiction \/ poetry + & arts as critique https:\/\/t.co\/plfWGV4Gdu \/ @_CreditEd network \/ @TampereUniSOC","url":"https:\/\/t.co\/tWEQqtKUoF","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/tWEQqtKUoF","expanded_url":"https:\/\/markoteras.com","display_url":"markoteras.com","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/plfWGV4Gdu","expanded_url":"http:\/\/carde.group","display_url":"carde.group","indices":[103,126]}]}},"protected":false,"followers_count":1042,"friends_count":1200,"listed_count":81,"created_at":"Wed + Oct 08 05:53:06 +0000 2008","favourites_count":508,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3802,"lang":null,"status":{"created_at":"Mon + Jun 20 10:15:17 +0000 2022","id":1538827824022298624,"id_str":"1538827824022298624","text":"RT + @NelliPiattoeva: https:\/\/t.co\/UYFsv6T0ls","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"NelliPiattoeva","name":"Piat\/to\/eva + Nelli","id":2874816676,"id_str":"2874816676","indices":[3,18]}],"urls":[{"url":"https:\/\/t.co\/UYFsv6T0ls","expanded_url":"https:\/\/news.stanford.edu\/2019\/02\/28\/ancient-myths-reveal-early-fantasies-artificial-life\/","display_url":"news.stanford.edu\/2019\/02\/28\/anc\u2026","indices":[20,43]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Jun 20 07:59:26 +0000 2022","id":1538793632806879234,"id_str":"1538793632806879234","text":"https:\/\/t.co\/UYFsv6T0ls","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/UYFsv6T0ls","expanded_url":"https:\/\/news.stanford.edu\/2019\/02\/28\/ancient-myths-reveal-early-fantasies-artificial-life\/","display_url":"news.stanford.edu\/2019\/02\/28\/anc\u2026","indices":[0,23]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"zxx"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"zxx"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1329065146593972226\/wicrsODl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1329065146593972226\/wicrsODl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16645388\/1616438817","profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"423B31","profile_text_color":"8F8F8F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":153965652,"id_str":"153965652","name":"Noah + Koubenec","screen_name":"koubenec","location":"Charleston, SC","description":"down + to my last kernel of rationality","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":639,"listed_count":0,"created_at":"Thu + Jun 10 01:10:14 +0000 2010","favourites_count":1892,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":760,"lang":null,"status":{"created_at":"Fri + Jan 29 16:39:52 +0000 2021","id":1355193955827261440,"id_str":"1355193955827261440","text":"RT + @tinagroeger: Important thread about state-level school privatization bills + being rolled out across the country right now:","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"tinagroeger","name":"Cristina + Groeger \ud83c\udf39","id":614698501,"id_str":"614698501","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Jan 29 15:31:44 +0000 2021","id":1355176813132185600,"id_str":"1355176813132185600","text":"Important + thread about state-level school privatization bills being rolled out across + the country right now: https:\/\/t.co\/KEt7jGUMLL","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KEt7jGUMLL","expanded_url":"https:\/\/twitter.com\/Edu_Historian\/status\/1355164408671055873","display_url":"twitter.com\/Edu_Historian\/\u2026","indices":[109,132]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1355164408671055873,"quoted_status_id_str":"1355164408671055873","retweet_count":6,"favorite_count":7,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1355164408671055873,"quoted_status_id_str":"1355164408671055873","retweet_count":6,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"847C4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1183464252943806467\/fHYi0ixt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153965652\/1579446141","profile_link_color":"847C4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":2457094130,"id_str":"2457094130","name":"Dr. + Mohamed Ahmed","screen_name":"Mohamedmetwa","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":340,"friends_count":1710,"listed_count":1,"created_at":"Mon + Apr 21 20:32:18 +0000 2014","favourites_count":1448,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":357,"lang":null,"status":{"created_at":"Mon + Aug 08 18:40:36 +0000 2022","id":1556711996279738368,"id_str":"1556711996279738368","text":"RT + @COL4D: \u201cODeL institutions need to align more closely with the needs + of their societies and promote research that leads to sustainable d\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"COL4D","name":"COL","id":25601132,"id_str":"25601132","indices":[3,9]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Aug 04 00:00:19 +0000 2022","id":1554980512669831168,"id_str":"1554980512669831168","text":"\u201cODeL + institutions need to align more closely with the needs of their societies + and promote research that leads to\u2026 https:\/\/t.co\/pdhcTNqM3S","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/pdhcTNqM3S","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1554980512669831168","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":9,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":5,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458343771407540224\/U64vcDqn_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458343771407540224\/U64vcDqn_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2457094130\/1398189550","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":2950104673,"id_str":"2950104673","name":"Ayodeji + Ibukun","screen_name":"lbukunAA","location":"Oklahoma, USA","description":"B.Engrg + MS MNSE","url":"https:\/\/t.co\/kVfuPQQfYs","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/kVfuPQQfYs","expanded_url":"http:\/\/www.ayoibukun.com","display_url":"ayoibukun.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":47,"friends_count":489,"listed_count":0,"created_at":"Mon + Dec 29 12:06:33 +0000 2014","favourites_count":665,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":154,"lang":null,"status":{"created_at":"Sun + Aug 07 10:44:08 +0000 2022","id":1556229700242006016,"id_str":"1556229700242006016","text":"RT + @susan_dagostino: Would you attend #college in the #Metaverse?\n\nProponents + say #VirtualReality boosts student engagement, achievement &\u2026","truncated":false,"entities":{"hashtags":[{"text":"college","indices":[38,46]},{"text":"Metaverse","indices":[54,64]},{"text":"VirtualReality","indices":[82,97]}],"symbols":[],"user_mentions":[{"screen_name":"susan_dagostino","name":"Dr. + Susan D''Agostino","id":896094324341039104,"id_str":"896094324341039104","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Aug 03 10:54:55 +0000 2022","id":1554782864235012100,"id_str":"1554782864235012100","text":"Would + you attend #college in the #Metaverse?\n\nProponents say #VirtualReality boosts + student engagement, achievement\u2026 https:\/\/t.co\/oXwxgqFyLJ","truncated":true,"entities":{"hashtags":[{"text":"college","indices":[17,25]},{"text":"Metaverse","indices":[33,43]},{"text":"VirtualReality","indices":[61,76]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/oXwxgqFyLJ","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1554782864235012100","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":16,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":14,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1086275206274895874\/ABYBQO8H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2950104673\/1574622610","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":114633938,"id_str":"114633938","name":"Matthea + Marquart - Please wear a mask","screen_name":"MattheaMarquart","location":"","description":"#OnlineEd + #SWTech #SocialWork #NonprofitManagement #HigherEd. Online Campus asst dean + & lecturer at @ColumbiaSSW. Educator, speaker, writer, API. Own opinions.","url":"https:\/\/t.co\/IOukCxS9HQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/IOukCxS9HQ","expanded_url":"https:\/\/www.mattheamarquart.com\/","display_url":"mattheamarquart.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1977,"friends_count":4915,"listed_count":0,"created_at":"Tue + Feb 16 03:20:17 +0000 2010","favourites_count":22811,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6209,"lang":null,"status":{"created_at":"Wed + Jun 29 00:17:44 +0000 2022","id":1541938932799180801,"id_str":"1541938932799180801","text":"Polls + close at 9pm \u2014 there\u2019s still a little time left to #Vote tonight + #VoteNYC https:\/\/t.co\/2GsVpnVRr9 https:\/\/t.co\/WCmawQXnOQ","truncated":false,"entities":{"hashtags":[{"text":"Vote","indices":[57,62]},{"text":"VoteNYC","indices":[71,79]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2GsVpnVRr9","expanded_url":"https:\/\/twitter.com\/nycgov\/status\/1541723087757901824","display_url":"twitter.com\/nycgov\/status\/\u2026","indices":[80,103]}],"media":[{"id":1541938928814624769,"id_str":"1541938928814624769","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/FWYRSUVXkAEI_7Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FWYRSUVXkAEI_7Y.jpg","url":"https:\/\/t.co\/WCmawQXnOQ","display_url":"pic.twitter.com\/WCmawQXnOQ","expanded_url":"https:\/\/twitter.com\/MattheaMarquart\/status\/1541938932799180801\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":514,"resize":"fit"},"large":{"w":2048,"h":1549,"resize":"fit"},"medium":{"w":1200,"h":908,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":1541938928814624769,"id_str":"1541938928814624769","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/FWYRSUVXkAEI_7Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/FWYRSUVXkAEI_7Y.jpg","url":"https:\/\/t.co\/WCmawQXnOQ","display_url":"pic.twitter.com\/WCmawQXnOQ","expanded_url":"https:\/\/twitter.com\/MattheaMarquart\/status\/1541938932799180801\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":680,"h":514,"resize":"fit"},"large":{"w":2048,"h":1549,"resize":"fit"},"medium":{"w":1200,"h":908,"resize":"fit"}}}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1541723087757901824,"quoted_status_id_str":"1541723087757901824","retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1354180279691341824\/qsFbxLLY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1354180279691341824\/qsFbxLLY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/114633938\/1582152770","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":155090409,"id_str":"155090409","name":"George + Station","screen_name":"harmonygritz","location":"California Central Coast","description":"#HigherEd + cruise ship has hit the Coronavirus iceberg; the orchestra plays on. My status: + unremitting beta, awaiting moderation. RT\/Like: just a bookmark, folks","url":"https:\/\/t.co\/gt8xIos5nQ","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/gt8xIos5nQ","expanded_url":"http:\/\/riftofthemagi.blogspot.com","display_url":"riftofthemagi.blogspot.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2276,"friends_count":4230,"listed_count":418,"created_at":"Sun + Jun 13 02:58:11 +0000 2010","favourites_count":24699,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":62781,"lang":null,"status":{"created_at":"Tue + Aug 09 01:00:48 +0000 2022","id":1556807675014516738,"id_str":"1556807675014516738","text":"The + latest Social Learning, Networks, & Tech! https:\/\/t.co\/bGbbu1Qi0J Thanks + to @esMktDigital @ghosTM55\u2026 https:\/\/t.co\/nOgIGGYMpN","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"esMktDigital","name":"\ud83c\udd74\ud83c\udd82 + \ud83c\udd7c\ud83c\udd70\ud83c\udd81\ud83c\udd7a\ud83c\udd74\ud83c\udd83\ud83c\udd78\ud83c\udd7d\ud83c\udd76 + \ud83c\udd73\ud83c\udd78\ud83c\udd76\ud83c\udd78\ud83c\udd83\ud83c\udd70\ud83c\udd7b","id":936235920,"id_str":"936235920","indices":[84,97]},{"screen_name":"ghosTM55","name":"Thomas + Yao","id":50504091,"id_str":"50504091","indices":[98,107]}],"urls":[{"url":"https:\/\/t.co\/bGbbu1Qi0J","expanded_url":"https:\/\/paper.li\/harmonygritz\/1308959937?edition_id=b4a39150-177e-11ed-95c4-fa163eed9ef2","display_url":"paper.li\/harmonygritz\/1\u2026","indices":[50,73]},{"url":"https:\/\/t.co\/nOgIGGYMpN","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1556807675014516738","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[109,132]}]},"source":"\u003ca + href=\"https:\/\/paper.li\" rel=\"nofollow\"\u003ePaper.li\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/570966498199494656\/StyDbq8-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/570966498199494656\/StyDbq8-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/155090409\/1620276700","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"B7F5F7","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":15654288,"id_str":"15654288","name":"Scott + J. Warren","screen_name":"constatively","location":"Denton, TX","description":"Professor + of learning tech; instructional design; ethics and greening schools\/orgs; + Business research - systems dev, operations, strategy","url":"https:\/\/t.co\/n5xEkVLkO1","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/n5xEkVLkO1","expanded_url":"http:\/\/www.scottjwarren.net","display_url":"scottjwarren.net","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2186,"friends_count":4880,"listed_count":112,"created_at":"Wed + Jul 30 00:56:48 +0000 2008","favourites_count":62322,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":15995,"lang":null,"status":{"created_at":"Mon + Aug 08 01:30:31 +0000 2022","id":1556452765660057601,"id_str":"1556452765660057601","text":"RT + @DearLeaderLorca: Never forget that Dems exempted private equity firms from + a 15% minimum corporate tax today.\n\nWhen BlackRock buys all\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DearLeaderLorca","name":"Lorca + Did Nothing Wrong! \u26be\ufe0f","id":75321341,"id_str":"75321341","indices":[3,19]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Aug 08 00:23:59 +0000 2022","id":1556436022380048384,"id_str":"1556436022380048384","text":"Never + forget that Dems exempted private equity firms from a 15% minimum corporate + tax today.\n\nWhen BlackRock buys a\u2026 https:\/\/t.co\/XKvZdhVKHd","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/XKvZdhVKHd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1556436022380048384","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":51,"favorite_count":106,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":51,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1391548718940409862\/optqE67f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1391548718940409862\/optqE67f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15654288\/1523275532","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":149239362,"id_str":"149239362","name":"umasslinguistics","screen_name":"UMassLinguistic","location":"Boston","description":"The + University Of Massachusetts Boston Applied Linguistics Department. Account + managed by @koutropoulos","url":"https:\/\/t.co\/rzrwRrVdjC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/rzrwRrVdjC","expanded_url":"http:\/\/www.umb.edu\/umasslinguistics","display_url":"umb.edu\/umasslinguisti\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1627,"friends_count":763,"listed_count":58,"created_at":"Fri + May 28 19:49:42 +0000 2010","favourites_count":1545,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13393,"lang":null,"status":{"created_at":"Fri + Aug 05 21:00:56 +0000 2022","id":1555660146537373696,"id_str":"1555660146537373696","text":"Time + for a social media break \ud83d\ude0e\ud83c\udf1e\u26f1. Stay safe, remain + curious, and see you at the beginning of the semester! :-)","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite Inc.\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":4,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1518633375443173376\/epKXDCzk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1518633375443173376\/epKXDCzk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/149239362\/1390833190","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":961192358015627264,"id_str":"961192358015627264","name":"CRIT","screen_name":"lsbu_crit","location":"London, + England","description":"The Centre for Research Informed Teaching (CRIT) supports + colleagues across LSBU to develop teaching and learning, curriculum design + and pedagogic scholarship.","url":"https:\/\/t.co\/VVIUot3qHg","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/VVIUot3qHg","expanded_url":"http:\/\/www.lsbu.ac.uk\/about-us\/professional-services\/centre-for-research-informed-teaching","display_url":"lsbu.ac.uk\/about-us\/profe\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":242,"friends_count":312,"listed_count":3,"created_at":"Wed + Feb 07 10:58:11 +0000 2018","favourites_count":1493,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":578,"lang":null,"status":{"created_at":"Thu + Jan 14 10:00:46 +0000 2021","id":1349657702314745856,"id_str":"1349657702314745856","text":"RT + @CClements29: Does anyone have films, playlists, videos etc that they are + using and willing to share to liven up online teaching on Twen\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"CClements29","name":"Charlotte + Clements","id":185741480,"id_str":"185741480","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Jan 13 15:41:05 +0000 2021","id":1349380959204990979,"id_str":"1349380959204990979","text":"Does + anyone have films, playlists, videos etc that they are using and willing to + share to liven up online teaching\u2026 https:\/\/t.co\/OVrtGDIZ9c","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/OVrtGDIZ9c","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1349380959204990979","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1081147310158028805\/T0-KcQJr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1081147310158028805\/T0-KcQJr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/961192358015627264\/1546602308","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":132653457,"id_str":"132653457","name":"Michael + M. Grant PhD","screen_name":"michaelmgrant","location":"Columbia | University + of SC","description":"Passionate professor. Rigorous researcher. Life skeptic. + Lousy abbreviator. My tweets are my own.","url":"http:\/\/t.co\/a88SXDcDfC","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/a88SXDcDfC","expanded_url":"http:\/\/viral-notebook.com","display_url":"viral-notebook.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1563,"friends_count":702,"listed_count":178,"created_at":"Tue + Apr 13 20:45:15 +0000 2010","favourites_count":9900,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":12005,"lang":null,"status":{"created_at":"Thu + Jul 21 13:41:57 +0000 2022","id":1550113856860463108,"id_str":"1550113856860463108","text":"Just + published in @AECT Interactions! ''Developing cultural empathy to design learning + for Native artists'':\u2026 https:\/\/t.co\/dAZCIN7UJ7","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AECT","name":"\u2735 + AECT \u2735","id":12030342,"id_str":"12030342","indices":[18,23]}],"urls":[{"url":"https:\/\/t.co\/dAZCIN7UJ7","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1550113856860463108","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[108,131]}]},"source":"\u003ca + href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter + for Mac\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1909347027\/mgrant2-avatar-small_normal.jpg","profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":1050002301585383424,"id_str":"1050002301585383424","name":"@VT_IDT","screen_name":"vt_idt","location":"Blacksburg, + VA USA","description":"VT IDT grad program prepares its graduates to practice + in a variety of settings including industry, K-12, higher ed, non-profit, + and government.","url":"https:\/\/t.co\/9nRnDb3LeV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9nRnDb3LeV","expanded_url":"https:\/\/tinyurl.com\/y5zbq5lb","display_url":"tinyurl.com\/y5zbq5lb","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":104,"friends_count":126,"listed_count":0,"created_at":"Wed + Oct 10 12:37:11 +0000 2018","favourites_count":707,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":253,"lang":null,"status":{"created_at":"Fri + Jun 03 18:59:29 +0000 2022","id":1532799147744669696,"id_str":"1532799147744669696","text":"FYI + Call for Proposals for @VaEdResearch 2022 annual conference 9\/15\/2022. Theme: + Educational Research and Practice\u2026 https:\/\/t.co\/f9GSl7nHRV","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"VaEdResearch","name":"VA + Ed Research Assoc","id":1398357974,"id_str":"1398357974","indices":[27,40]}],"urls":[{"url":"https:\/\/t.co\/f9GSl7nHRV","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1532799147744669696","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1050409400655986688\/1jff4TTj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1050409400655986688\/1jff4TTj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1050002301585383424\/1539374470","profile_link_color":"FAB81E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":1003232844,"id_str":"1003232844","name":"Alicia + Johnson","screen_name":"onmyway2here","location":"Christiansburg, VA","description":"Instructional + Designer of Instructional Design (ID) Instruction PhD@virginiatechIDT. Good + days = Students, ID, Instruction, Research, Edtech, & Learning.","url":"https:\/\/t.co\/cCcuGeqoTV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/cCcuGeqoTV","expanded_url":"https:\/\/liberalarts.vt.edu\/departments-and-schools\/school-of-education\/faculty\/alicia-johnson.html","display_url":"liberalarts.vt.edu\/departments-an\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":199,"friends_count":382,"listed_count":2,"created_at":"Tue + Dec 11 03:55:07 +0000 2012","favourites_count":4008,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":808,"lang":null,"status":{"created_at":"Sat + Jul 30 13:03:27 +0000 2022","id":1553365657802227714,"id_str":"1553365657802227714","text":"FYI + @UNCP_Online looking for #instructionaldesginers #highered https:\/\/t.co\/zNvxbZZfZ9","truncated":false,"entities":{"hashtags":[{"text":"instructionaldesginers","indices":[29,52]},{"text":"highered","indices":[53,62]}],"symbols":[],"user_mentions":[{"screen_name":"UNCP_Online","name":"UNCP + Office of Online Learning","id":2176129290,"id_str":"2176129290","indices":[4,16]}],"urls":[{"url":"https:\/\/t.co\/zNvxbZZfZ9","expanded_url":"https:\/\/twitter.com\/miko_nino\/status\/1550466032283930629","display_url":"twitter.com\/miko_nino\/stat\u2026","indices":[63,86]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1550466032283930629,"quoted_status_id_str":"1550466032283930629","retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3195564046\/04c6c148cecd8aeabb563780bedea34b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3195564046\/04c6c148cecd8aeabb563780bedea34b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1003232844\/1355198723","profile_link_color":"7FDBB6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":14813636,"id_str":"14813636","name":"Chuck + Hodges","screen_name":"hodgesc","location":"Coastal Georgia, USA","description":"Husband, + Dad, Professor of Instructional Technology, Editor-in-Chief, runner, Gen Xer, + Tweets are my own, Retweets are not necessarily endorsements.","url":"https:\/\/t.co\/zhRUywKjgc","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/zhRUywKjgc","expanded_url":"http:\/\/about.me\/hodges.chuck","display_url":"about.me\/hodges.chuck","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2004,"friends_count":1675,"listed_count":206,"created_at":"Sat + May 17 19:02:59 +0000 2008","favourites_count":5208,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":11248,"lang":null,"status":{"created_at":"Fri + Aug 05 16:39:47 +0000 2022","id":1555594426910740481,"id_str":"1555594426910740481","text":"RT + @drnoahglaser: Does anyone have templates they have used for recruiting a + GRA in the past? #phdlife #academictwitter #AcademicChatter #p\u2026","truncated":false,"entities":{"hashtags":[{"text":"phdlife","indices":[94,102]},{"text":"academictwitter","indices":[103,119]},{"text":"AcademicChatter","indices":[120,136]}],"symbols":[],"user_mentions":[{"screen_name":"drnoahglaser","name":"Dr. + Noah Glaser","id":1371554985251594246,"id_str":"1371554985251594246","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Aug 05 16:37:16 +0000 2022","id":1555593791184154625,"id_str":"1555593791184154625","text":"Does + anyone have templates they have used for recruiting a GRA in the past? #phdlife + #academictwitter #AcademicChatter #phdchat","truncated":false,"entities":{"hashtags":[{"text":"phdlife","indices":[76,84]},{"text":"academictwitter","indices":[85,101]},{"text":"AcademicChatter","indices":[102,118]},{"text":"phdchat","indices":[119,127]}],"symbols":[],"user_mentions":[],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1532136948348878849\/a2Do_sYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14813636\/1571620415","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":2396037342,"id_str":"2396037342","name":"ETHE + Journal","screen_name":"ETHEjournal","location":"Barcelona","description":"A + @SpringerCompSci journal in #elearning #edtech #highered edited by @UOCuniversity + @DCU @Uniandes & https:\/\/t.co\/JZUjLLPPJF\nhttps:\/\/t.co\/PA7W9Ez4h5","url":"https:\/\/t.co\/veHy8MyuHV","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/veHy8MyuHV","expanded_url":"http:\/\/ethe.uoc.edu","display_url":"ethe.uoc.edu","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/JZUjLLPPJF","expanded_url":"http:\/\/vdu.lt\/en\/","display_url":"vdu.lt\/en\/","indices":[101,124]},{"url":"https:\/\/t.co\/PA7W9Ez4h5","expanded_url":"http:\/\/facebook.com\/ETHEjournal\/","display_url":"facebook.com\/ETHEjournal\/","indices":[125,148]}]}},"protected":false,"followers_count":4301,"friends_count":1500,"listed_count":500,"created_at":"Tue + Mar 18 11:11:24 +0000 2014","favourites_count":200,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":18413,"lang":null,"status":{"created_at":"Mon + Aug 08 10:40:00 +0000 2022","id":1556591046871568390,"id_str":"1556591046871568390","text":"Why + do open and distance education students drop out? Views from various stakeholders\n\nby + @aysebgrck &\u2026 https:\/\/t.co\/sWw3gnMYgW","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"aysebgrck","name":"Ay\u015fe + Ba\u011fr\u0131ack Y\u0131lmaz","id":146118961,"id_str":"146118961","indices":[90,100]}],"urls":[{"url":"https:\/\/t.co\/sWw3gnMYgW","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1556591046871568390","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[108,131]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/687928482169532416\/txuTx5OV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/687928482169532416\/txuTx5OV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2396037342\/1554713344","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":582713322,"id_str":"582713322","name":"e\/merge + Africa","screen_name":"emergeAfrica","location":"Online","description":"e\/merge + Africa is a network mostly for educational technology researchers and practitioners + in the African higher education sector.","url":"http:\/\/t.co\/YU1MzJDfxx","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/YU1MzJDfxx","expanded_url":"http:\/\/emergeafrica.net","display_url":"emergeafrica.net","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1293,"friends_count":318,"listed_count":22,"created_at":"Thu + May 17 10:06:39 +0000 2012","favourites_count":1860,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1924,"lang":null,"status":{"created_at":"Tue + Jul 26 15:02:39 +0000 2022","id":1551946101850267652,"id_str":"1551946101850267652","text":"RT + @ruforumsec: Have you registered for the FAO- RUFORUM webinar? If not, don''t + miss out on this opportunity.\nTheme: \"Application of FAOSTA\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"ruforumsec","name":"RUFORUM","id":413087132,"id_str":"413087132","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Jul 25 10:45:06 +0000 2022","id":1551518899060998147,"id_str":"1551518899060998147","text":"Have + you registered for the FAO- RUFORUM webinar? If not, don''t miss out on this + opportunity.\nTheme: \"Application o\u2026 https:\/\/t.co\/KcwTbHn3JH","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/KcwTbHn3JH","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1551518899060998147","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":10,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1022846923915632640\/4Jdm1T6G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582713322\/1532699785","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":62065310,"id_str":"62065310","name":"Virginia + Rod\u00e9s","screen_name":"vrodes","location":"Uruguay","description":"comunicaci\u00f3n, + educaci\u00f3n, tecnolog\u00edas, organizaciones, g\u00e9nero y todas las + otras cosas mucho m\u00e1s importantes","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1724,"friends_count":512,"listed_count":118,"created_at":"Sat + Aug 01 16:25:36 +0000 2009","favourites_count":19053,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":29434,"lang":null,"status":{"created_at":"Thu + Aug 04 13:28:38 +0000 2022","id":1555183935340126209,"id_str":"1555183935340126209","text":"RT + @Ceibal_Uy: \ud83d\uddd3 Sumate este 9 de agosto, a las 10 h, a la conferencia + \u201cEntre paredes y redes: Desaf\u00edos y oportunidades tras la pandemia\u201d + c\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Ceibal_Uy","name":"Ceibal","id":216687747,"id_str":"216687747","indices":[3,13]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Jul 29 15:06:40 +0000 2022","id":1553034278090448897,"id_str":"1553034278090448897","text":"\ud83d\uddd3 + Sumate este 9 de agosto, a las 10 h, a la conferencia \u201cEntre paredes + y redes: Desaf\u00edos y oportunidades tras la pa\u2026 https:\/\/t.co\/2TrvoxHZwB","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/2TrvoxHZwB","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1553034278090448897","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":21,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"es"},"is_quote_status":false,"retweet_count":15,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"es"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"05570B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1454459426014965763\/8b6jYzNH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1454459426014965763\/8b6jYzNH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62065310\/1646621949","profile_link_color":"3E0447","profile_sidebar_border_color":"B68B9E","profile_sidebar_fill_color":"758FF5","profile_text_color":"030303","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":972084726155694080,"id_str":"972084726155694080","name":"Center + for Open Education Research (COER)","screen_name":"_COER_","location":"Oldenburg, + Germany","description":"Increase international collaborative research projects, + innovation & understanding in #OER, #edtech, #lifelonglearning & international + education.","url":"https:\/\/t.co\/sBEQLB6suC","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/sBEQLB6suC","expanded_url":"http:\/\/www.uni-oldenburg.de\/coer","display_url":"uni-oldenburg.de\/coer","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1354,"friends_count":1115,"listed_count":26,"created_at":"Fri + Mar 09 12:20:33 +0000 2018","favourites_count":1896,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1400,"lang":null,"status":{"created_at":"Fri + Aug 05 08:57:14 +0000 2022","id":1555478023277023232,"id_str":"1555478023277023232","text":"RT + @UnisaRandI: Dr @Zawacki_Richter, Professor of Educational Technology and + Director of the Center for Open Education Research (@_COER_ ),\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UnisaRandI","name":"Unisa + Research","id":701753288077746176,"id_str":"701753288077746176","indices":[3,14]},{"screen_name":"Zawacki_Richter","name":"Olaf + Zawacki-Richter","id":972102913798692864,"id_str":"972102913798692864","indices":[19,35]},{"screen_name":"_COER_","name":"Center + for Open Education Research (COER)","id":972084726155694080,"id_str":"972084726155694080","indices":[129,136]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Aug 05 08:26:57 +0000 2022","id":1555470402109022210,"id_str":"1555470402109022210","text":"Dr + @Zawacki_Richter, Professor of Educational Technology and Director of the + Center for Open Education Research (\u2026 https:\/\/t.co\/Z54wcelKfw","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Zawacki_Richter","name":"Olaf + Zawacki-Richter","id":972102913798692864,"id_str":"972102913798692864","indices":[3,19]}],"urls":[{"url":"https:\/\/t.co\/Z54wcelKfw","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1555470402109022210","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[115,138]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/972096724327116802\/7WpFWeAH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/972096724327116802\/7WpFWeAH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/972084726155694080\/1520607289","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":139627261,"id_str":"139627261","name":"Sukaina + Walji","screen_name":"sukainaw","location":"","description":"Digital education + strategy and operations. Researching: #MOOCs #UnbundledHigherEd #Assessment + She\/Her. #FemEdtech","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2273,"friends_count":3081,"listed_count":118,"created_at":"Mon + May 03 05:51:45 +0000 2010","favourites_count":8987,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":9118,"lang":null,"status":{"created_at":"Fri + Jul 22 10:40:35 +0000 2022","id":1550430601819422720,"id_str":"1550430601819422720","text":"RT + @dot4_d: Hot off the press! ''Sustainable open textbook models for social + justice'' by @Glencox, Willmers & Masuku in Frontiers in Educati\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"dot4_d","name":"Digital + Open Textbooks for Development (DOT4D)","id":1019569277861580800,"id_str":"1019569277861580800","indices":[3,10]},{"screen_name":"Glencox","name":"Glenda + Cox","id":37257460,"id_str":"37257460","indices":[88,96]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Jul 22 06:53:14 +0000 2022","id":1550373386370666496,"id_str":"1550373386370666496","text":"Hot + off the press! ''Sustainable open textbook models for social justice'' by + @Glencox, Willmers & Masuku in Frontier\u2026 https:\/\/t.co\/XGte3jq8Nf","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"Glencox","name":"Glenda + Cox","id":37257460,"id_str":"37257460","indices":[76,84]}],"urls":[{"url":"https:\/\/t.co\/XGte3jq8Nf","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1550373386370666496","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[121,144]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":14,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1401160636969664516\/grke-HQn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1401160636969664516\/grke-HQn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/139627261\/1658525255","profile_link_color":"981CEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":14788950,"id_str":"14788950","name":"Leo + Havemann","screen_name":"leohavemann","location":"London, United Kingdom","description":"Higher, + open, digital ed @UCL_ProDev @OpenUCL | PGR in open\/ed policy, @IETatOU | + Fellow, @CODE_UoL | #go_gn #altc #m25ltg #LTHEchat #aptconf","url":"https:\/\/t.co\/d17qkjMDn5","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/d17qkjMDn5","expanded_url":"http:\/\/leohavemann.wordpress.com","display_url":"leohavemann.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4344,"friends_count":5000,"listed_count":245,"created_at":"Thu + May 15 17:29:37 +0000 2008","favourites_count":89232,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27808,"lang":null,"status":{"created_at":"Mon + Aug 08 19:55:13 +0000 2022","id":1556730771024609280,"id_str":"1556730771024609280","text":"RT + @lizmorrish: @UWankings @LizzieGadd And you thought proxy measures for university + rankings were random!!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"lizmorrish","name":"Dr + Liz Morrish","id":21297634,"id_str":"21297634","indices":[3,14]},{"screen_name":"UWankings","name":"University + Wankings","id":1044582346400264193,"id_str":"1044582346400264193","indices":[16,26]},{"screen_name":"LizzieGadd","name":"Dr + Elizabeth Gadd \ud83c\uddfa\ud83c\udde6","id":47917199,"id_str":"47917199","indices":[27,38]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Aug 08 19:25:19 +0000 2022","id":1556723246132862979,"id_str":"1556723246132862979","text":"@UWankings + @LizzieGadd And you thought proxy measures for university rankings were random!! + https:\/\/t.co\/X8ZK3EWQuk","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"UWankings","name":"University + Wankings","id":1044582346400264193,"id_str":"1044582346400264193","indices":[0,10]},{"screen_name":"LizzieGadd","name":"Dr + Elizabeth Gadd \ud83c\uddfa\ud83c\udde6","id":47917199,"id_str":"47917199","indices":[11,22]}],"urls":[{"url":"https:\/\/t.co\/X8ZK3EWQuk","expanded_url":"https:\/\/twitter.com\/LangOnCourse\/status\/1556681218372116480","display_url":"twitter.com\/LangOnCourse\/s\u2026","indices":[92,115]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1044582346400264193,"in_reply_to_user_id_str":"1044582346400264193","in_reply_to_screen_name":"UWankings","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1556681218372116480,"quoted_status_id_str":"1556681218372116480","retweet_count":2,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1556681218372116480,"quoted_status_id_str":"1556681218372116480","retweet_count":2,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1218565046424547329\/1Nj9kQQA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1218565046424547329\/1Nj9kQQA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14788950\/1436434892","profile_link_color":"FF691F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F0EDFC","profile_text_color":"1C3716","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":1039965688000126977,"id_str":"1039965688000126977","name":"Mark + Johnson","screen_name":"MarkJ_ohnson","location":"United States of America","description":"Assistant + Manager at @K12Prospects. K-12 educational sales and marketing. Connecting + with educators. Business opportunities.\n#edtech #education #data","url":"https:\/\/t.co\/9DDpfIA8Ge","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/9DDpfIA8Ge","expanded_url":"https:\/\/www.k12prospects.com\/","display_url":"k12prospects.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":7370,"friends_count":6387,"listed_count":77,"created_at":"Wed + Sep 12 19:55:16 +0000 2018","favourites_count":19645,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":146990,"lang":null,"status":{"created_at":"Tue + Aug 09 02:44:32 +0000 2022","id":1556833779729178627,"id_str":"1556833779729178627","text":"RT + @AnanyaPatel804: Rajasthan Government to provide digital learning technologies + to 6500 schools - Education Today News\n\nhttps:\/\/t.co\/XlvA\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"AnanyaPatel804","name":"Ananya + Patel","id":1334061113067991040,"id_str":"1334061113067991040","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/twitter.com\/MarkJ_ohnson\" rel=\"nofollow\"\u003eMark Johnson1\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Aug 09 02:41:37 +0000 2022","id":1556833047542222850,"id_str":"1556833047542222850","text":"Rajasthan + Government to provide digital learning technologies to 6500 schools - Education + Today News\u2026 https:\/\/t.co\/gzj9N6Lsd2","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/gzj9N6Lsd2","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1556833047542222850","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[102,125]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1039966314960437248\/yKL_4LvX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1039966314960437248\/yKL_4LvX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1039965688000126977\/1643812421","profile_link_color":"1B95E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":381743098,"id_str":"381743098","name":"margy + maclibrary","screen_name":"MargyMacLibrary","location":"YYJ","description":"she\/her\/hers + Retired MRU Librarian, settler on unceded Songhees, Esquimalt & WS\u00c1NE\u0106 + territory; interests:communications\/Indigenous matters\/GLAM\/SoTL\/science","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5249,"friends_count":5198,"listed_count":303,"created_at":"Wed + Sep 28 21:22:23 +0000 2011","favourites_count":759614,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":238385,"lang":null,"status":{"created_at":"Tue + Aug 09 02:18:31 +0000 2022","id":1556827233678872576,"id_str":"1556827233678872576","text":"RT + @byjoelanderson: \"It is a sophisticated way of thinking: to be able to separate + the person from the system of ideas. This is why I think\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"byjoelanderson","name":"Joel + D. Anderson","id":16253142,"id_str":"16253142","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu + Aug 04 16:12:06 +0000 2022","id":1555225071983087621,"id_str":"1555225071983087621","text":"\"It + is a sophisticated way of thinking: to be able to separate the person from + the system of ideas. This is why I t\u2026 https:\/\/t.co\/58q0H4vJ2M","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/58q0H4vJ2M","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1555225071983087621","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":19,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":7,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1564365669\/margyphoto_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1564365669\/margyphoto_normal.JPG","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":153617129,"id_str":"153617129","name":"Lucy + Appert","screen_name":"Lucyappert","location":"New York, NY","description":"Director, + Educational Technology, New York University Faculty of Arts & Sciences","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":896,"friends_count":706,"listed_count":103,"created_at":"Wed + Jun 09 01:04:17 +0000 2010","favourites_count":3008,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6876,"lang":null,"status":{"created_at":"Wed + Jul 20 13:55:05 +0000 2022","id":1549754773070663680,"id_str":"1549754773070663680","text":"RT + @cds_collective: The CDSC is live! \n\nCheck out our new website https:\/\/t.co\/lhDskATtls","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lhDskATtls","expanded_url":"http:\/\/cdscollective.org\/","display_url":"cdscollective.org","indices":[66,89]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue + Jul 19 19:20:04 +0000 2022","id":1549474171360612353,"id_str":"1549474171360612353","text":"The + CDSC is live! \n\nCheck out our new website https:\/\/t.co\/lhDskATtls","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/lhDskATtls","expanded_url":"http:\/\/cdscollective.org\/","display_url":"cdscollective.org","indices":[46,69]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":44,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":27,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1466444229266354181\/u-3lUjfw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1466444229266354181\/u-3lUjfw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153617129\/1401729538","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":54487942,"id_str":"54487942","name":"Cheryl + Brown","screen_name":"cherybrown","location":"Christchurch City, New Zealand","description":"Assoc + Prof @UCNZ passionate about digital literacy, citizenship & identity, very + novice te Reo \u0101konga. She\/her","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1504,"friends_count":1440,"listed_count":54,"created_at":"Tue + Jul 07 08:13:16 +0000 2009","favourites_count":5708,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2194,"lang":null,"status":{"created_at":"Sat + Aug 06 05:00:36 +0000 2022","id":1555780857272471554,"id_str":"1555780857272471554","text":"RT + @naomicfisher: When parents talk to me about gaming and screens, it\u2019s + always about fear. \u2018Will they get addicted?\u2019 they ask me. \u2018I + can\u2019t\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"naomicfisher","name":"Naomi + Fisher","id":2201030595,"id_str":"2201030595","indices":[3,16]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed + Aug 03 13:53:40 +0000 2022","id":1554827846568144898,"id_str":"1554827846568144898","text":"When + parents talk to me about gaming and screens, it\u2019s always about fear. + \u2018Will they get addicted?\u2019 they ask me. \u2018I\u2026 https:\/\/t.co\/QdaRSecgqd","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/QdaRSecgqd","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1554827846568144898","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter + for iPad\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2377,"favorite_count":9736,"favorited":false,"retweeted":false,"lang":"en"},"is_quote_status":false,"retweet_count":2377,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/768075737064701952\/jZDTSdf9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/768075737064701952\/jZDTSdf9_normal.jpg","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":182762965,"id_str":"182762965","name":"Chris + Rowell","screen_name":"Chri5rowell","location":"Camberwell, London ","description":"walk-write-work-a-bit + @ual\n\nSocialist \n\n.. all views my own (except for the ones I''ve RTed) + \ud83c\udf34","url":"https:\/\/t.co\/Dwwig9Iq7y","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Dwwig9Iq7y","expanded_url":"http:\/\/totallyrewired.wordpress.com\/","display_url":"totallyrewired.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":2041,"friends_count":989,"listed_count":144,"created_at":"Wed + Aug 25 10:10:04 +0000 2010","favourites_count":58928,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":42638,"lang":null,"status":{"created_at":"Mon + Aug 08 18:32:52 +0000 2022","id":1556710047413141506,"id_str":"1556710047413141506","text":"RT + @baleboy_93: Please come and work with me, I''m nice, honest","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"baleboy_93","name":"Tom + Bale","id":395005413,"id_str":"395005413","indices":[3,14]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon + Aug 08 12:22:56 +0000 2022","id":1556616950918397952,"id_str":"1556616950918397952","text":"Please + come and work with me, I''m nice, honest https:\/\/t.co\/mL22roSdOX","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/mL22roSdOX","expanded_url":"https:\/\/twitter.com\/DulwichHamletFC\/status\/1556615605993750528","display_url":"twitter.com\/DulwichHamletF\u2026","indices":[47,70]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"quoted_status_id":1556615605993750528,"quoted_status_id_str":"1556615605993750528","retweet_count":4,"favorite_count":11,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":true,"quoted_status_id":1556615605993750528,"quoted_status_id_str":"1556615605993750528","retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1519351341512110080\/Ko6X4aMk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1519351341512110080\/Ko6X4aMk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/182762965\/1573253647","profile_link_color":"E81C4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":4188754929,"id_str":"4188754929","name":"Dr. + Rita Fennelly-Atkinson","screen_name":"RitaFennelly","location":"Austin, TX","description":"Dir. + Micro-Credentials for Digital Promise #A11y #UDL #Equity #FirstGen #LatinX + Views=own","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":508,"friends_count":542,"listed_count":14,"created_at":"Sat + Nov 14 20:16:58 +0000 2015","favourites_count":6839,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1730,"lang":null,"status":{"created_at":"Sat + Aug 06 22:25:29 +0000 2022","id":1556043812937650177,"id_str":"1556043812937650177","text":"RT + @DigitalPromise: Back to school and always learning! To help educators continue + their #ProfessionalLearning, we have curated this librar\u2026","truncated":false,"entities":{"hashtags":[{"text":"ProfessionalLearning","indices":[89,110]}],"symbols":[],"user_mentions":[{"screen_name":"DigitalPromise","name":"Digital + Promise","id":373421465,"id_str":"373421465","indices":[3,18]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat + Aug 06 16:03:00 +0000 2022","id":1555947559151194112,"id_str":"1555947559151194112","text":"Back + to school and always learning! To help educators continue their #ProfessionalLearning, + we have curated this li\u2026 https:\/\/t.co\/9cGUVs8LBg","truncated":true,"entities":{"hashtags":[{"text":"ProfessionalLearning","indices":[69,90]}],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/9cGUVs8LBg","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1555947559151194112","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"https:\/\/sproutsocial.com\" rel=\"nofollow\"\u003eSprout Social\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":4,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1448758571609505798\/cCPZxqie_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4188754929\/1494530742","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":204949740,"id_str":"204949740","name":"Suzan + K\u00f6seo\u011flu","screen_name":"SuzanKoseoglu","location":"London, England","description":"educator\/researcher. + lecturer in L&T in higher education. online pedagogy, networked learning, + open scholarship, women empowerment and equity.","url":"https:\/\/t.co\/U6qNiQYvRB","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/U6qNiQYvRB","expanded_url":"https:\/\/differentreadings.wordpress.com\/","display_url":"differentreadings.wordpress.com","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1685,"friends_count":1421,"listed_count":66,"created_at":"Tue + Oct 19 20:45:53 +0000 2010","favourites_count":6674,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4817,"lang":null,"status":{"created_at":"Wed + Aug 03 16:40:15 +0000 2022","id":1554869770243244035,"id_str":"1554869770243244035","text":"@DrPetra + @EmmaKEdDev I really would like to know how to say no to the last one on your + list without offending anyon\u2026 https:\/\/t.co\/q9Ox3H12Oe","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"DrPetra","name":"Petra + Boynton","id":82953204,"id_str":"82953204","indices":[0,8]},{"screen_name":"EmmaKEdDev","name":"Emma + Kennedy","id":88682676,"id_str":"88682676","indices":[9,20]}],"urls":[{"url":"https:\/\/t.co\/q9Ox3H12Oe","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1554869770243244035","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter + for Android\u003c\/a\u003e","in_reply_to_status_id":1554796736517898240,"in_reply_to_status_id_str":"1554796736517898240","in_reply_to_user_id":82953204,"in_reply_to_user_id_str":"82953204","in_reply_to_screen_name":"DrPetra","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":2,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1383790471776858118\/7zte4_HU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1383790471776858118\/7zte4_HU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/204949740\/1618756263","profile_link_color":"1DA1F2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":15635142,"id_str":"15635142","name":"Dr. + Kimberly N. LaPrairie","screen_name":"Tech_DrL","location":"Texas, USA","description":"\ud83d\udc69\ud83c\udffc\u200d\ud83c\udf93\ud83d\udc69\ud83c\udffc\u200d\ud83c\udfebAssoc + Prof of Instructional Systems Design & Technology\ud83d\udc69\ud83c\udffc\u200d\ud83d\udcbb\u2022 + Mom of 4\ud83d\udc68\ud83c\udffb\u200d\ud83d\udcbb\ud83d\udc71\ud83c\udffb\u200d\u2640\ufe0f\ud83d\udc67\ud83c\udffb\ud83e\uddd2\ud83c\udffc\u2022 + #FatFueled #Runner #PelotonRider\ud83e\udd51\ud83e\udd53\ud83c\udfc3\ud83c\udffc\u200d\u2640\ufe0f\ud83d\udeb4\ud83c\udffc\u200d\u2640\ufe0f","url":"https:\/\/t.co\/69VXyGUkoo","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/69VXyGUkoo","expanded_url":"https:\/\/www.instagram.com\/Tech_DrL\/","display_url":"instagram.com\/Tech_DrL\/","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":1470,"friends_count":1395,"listed_count":124,"created_at":"Mon + Jul 28 17:54:31 +0000 2008","favourites_count":4299,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6412,"lang":null,"status":{"created_at":"Sat + Aug 06 13:53:40 +0000 2022","id":1555915009103904769,"id_str":"1555915009103904769","text":"RT + @SHSUProvost: Congratulations to all our Bearkats crossing the stage tomorrow!! + For more info about graduation or to watch the livestrea\u2026","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"SHSUProvost","name":"Mike + Stephenson","id":1422274057349726209,"id_str":"1422274057349726209","indices":[3,15]}],"urls":[]},"source":"\u003ca + href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter + for iPhone\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri + Aug 05 17:28:00 +0000 2022","id":1555606559622942721,"id_str":"1555606559622942721","text":"Congratulations + to all our Bearkats crossing the stage tomorrow!! For more info about graduation + or to watch the li\u2026 https:\/\/t.co\/M7Mv2Wa0tK","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/M7Mv2Wa0tK","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1555606559622942721","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[117,140]}]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":17,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"is_quote_status":false,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1516648007651008515\/fwC4vMQz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1516648007651008515\/fwC4vMQz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15635142\/1531239446","profile_link_color":"ED822F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":918747876,"id_str":"918747876","name":"Dr. + Enilda Romero-Hall (She\/Her)","screen_name":"eromerohall","location":"\ud83c\uddf5\ud83c\udde6\ud83c\udde8\ud83c\udde6\ud83c\uddfa\ud83c\uddf8","description":"Associate + Professor @UTKnoxville | Learning Design and Technology @UTKTeacherEd | Blog: + https:\/\/t.co\/i00QYLU60L","url":"https:\/\/t.co\/bIbSToCw8t","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/bIbSToCw8t","expanded_url":"https:\/\/www.enildaromero.net\/","display_url":"enildaromero.net","indices":[0,23]}]},"description":{"urls":[{"url":"https:\/\/t.co\/i00QYLU60L","expanded_url":"http:\/\/enildaromero.com","display_url":"enildaromero.com","indices":[88,111]}]}},"protected":false,"followers_count":1773,"friends_count":1345,"listed_count":87,"created_at":"Thu + Nov 01 10:56:04 +0000 2012","favourites_count":7326,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":422,"lang":null,"status":{"created_at":"Tue + Aug 09 00:16:12 +0000 2022","id":1556796450616516608,"id_str":"1556796450616516608","text":"@marris116 + I finished reading a comic book \u201cThe silence of our friends\u201d. Highly + recommend it!","truncated":false,"entities":{"hashtags":[],"symbols":[],"user_mentions":[{"screen_name":"marris116","name":"Mariela + Martinez Siegert (she\/her)","id":15651026,"id_str":"15651026","indices":[0,10]}],"urls":[]},"source":"\u003ca + href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eTwitter Web App\u003c\/a\u003e","in_reply_to_status_id":1556611254818586626,"in_reply_to_status_id_str":"1556611254818586626","in_reply_to_user_id":15651026,"in_reply_to_user_id_str":"15651026","in_reply_to_screen_name":"marris116","geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1416413689004105730\/vCF576pR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1416413689004105730\/vCF576pR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/918747876\/1659918791","profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]},{"id":27606068,"id_str":"27606068","name":"Routledge + Education Books","screen_name":"RoutledgeEd","location":"Global","description":"Supporting + educators, teachers, scholars and students with informative and practical + books based on leading research and classroom practice.","url":"http:\/\/t.co\/j4LZK9ypti","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/j4LZK9ypti","expanded_url":"http:\/\/www.routledge.com\/education","display_url":"routledge.com\/education","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":13833,"friends_count":3278,"listed_count":230,"created_at":"Mon + Mar 30 08:33:32 +0000 2009","favourites_count":2658,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":10107,"lang":null,"status":{"created_at":"Fri + Aug 05 13:00:12 +0000 2022","id":1555539165902782469,"id_str":"1555539165902782469","text":"Transformative + Education has now published! This book provides practical methods for sustainable, + integrative, and\u2026 https:\/\/t.co\/RcvZUp1vVW","truncated":true,"entities":{"hashtags":[],"symbols":[],"user_mentions":[],"urls":[{"url":"https:\/\/t.co\/RcvZUp1vVW","expanded_url":"https:\/\/twitter.com\/i\/web\/status\/1555539165902782469","display_url":"twitter.com\/i\/web\/status\/1\u2026","indices":[116,139]}]},"source":"\u003ca + href=\"http:\/\/www.salesforce.com\" rel=\"nofollow\"\u003eSalesforce - Social + Studio\u003c\/a\u003e","in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"en"},"contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"6A9ADA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461891534913167362\/Uo2i4Z3P_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27606068\/1629726175","profile_link_color":"6A9ADA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null,"translator_type":"none","withheld_in_countries":[]}]' + recorded_at: 2022-08-09 02:47:29 GMT + recorded_with: vcr/1.0.2, webmockr/0.8.0 diff --git a/vignette-network-visualization-1.png b/vignette-network-visualization-1.png new file mode 100644 index 0000000..e56e21f Binary files /dev/null and b/vignette-network-visualization-1.png differ diff --git a/vignettes/tidytags-with-conf-hashtags.Rmd b/vignettes/tidytags-with-conf-hashtags.Rmd index 9e65c02..e6dbe8a 100644 --- a/vignettes/tidytags-with-conf-hashtags.Rmd +++ b/vignettes/tidytags-with-conf-hashtags.Rmd @@ -84,7 +84,7 @@ example_after_rtweet_A <- pull_tweet_data(id_vector = example_df_all$id_str) example_after_rtweet_B <- pull_tweet_data(url_vector = example_df_all$status_url) ``` -When this vignette was run on Aug 08 22, the TAGS tracker had collected 18 variables associated with 2564 tweets. The first method searching with `id_str` collected 66 variables associated with 2225 tweets. The second method using 'tidytags::get_char_tweet_ids()' collected 66 variables associated with 2225 tweets. +When this vignette was run on Aug 09 22, the TAGS tracker had collected 18 variables associated with 2564 tweets. The first method searching with `id_str` collected 66 variables associated with 2195 tweets. The second method using 'tidytags::get_char_tweet_ids()' collected 66 variables associated with 2195 tweets. Notice how many more variables are in the dataset after using `pull_tweet_data()`, and how many more tweets are in the dataset when using the second method. We have found that in the process of storing and retrieving tweet IDs, the long string of numbers can sometimes be interpreted as an object of type double (i.e., numeric) and subsequently converted into scientific notation form. This loses the specific identifying use of the string of numerical digits. Therefore, we strongly recommend the second method, obtaining tweet IDs from the tweet URL, which is why we have included `get_char_tweet_ids()` as an internal function in the **tidytags** package. @@ -94,7 +94,7 @@ The built-in default of `pull_tweet_data()` is to simply enter the dataframe ret ```r example_after_rtweet <- pull_tweet_data(read_tags(tags_url)) dplyr::glimpse(example_after_rtweet) -#> Rows: 2,225 +#> Rows: 2,195 #> Columns: 66 #> $ created_at 2020-04-19 15:22:23, 2020-03-01 15:00:41, 2020… #> $ id 1.251954e+18, 1.234207e+18, 1.229405e+18, 1.225… @@ -147,13 +147,13 @@ dplyr::glimpse(example_after_rtweet) #> $ description "Love educational technology, online learning a… #> $ url "https://t.co/ztRaRj9BLo", "https://t.co/OpLrmt… #> $ protected FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE… -#> $ followers_count 7, 789, 452, 2051, 2253, 452, 861, 1553, 1719, … +#> $ followers_count 7, 789, 452, 2050, 2253, 452, 861, 1553, 1719, … #> $ friends_count 17, 1325, 47, 15, 1362, 47, 482, 714, 728, 0, 1… -#> $ listed_count 0, 78, 4, 57, 178, 4, 6, 61, 149, 98, 124, 12, … +#> $ listed_count 0, 0, 4, 57, 178, 4, 6, 0, 149, 98, 124, 12, 12… #> $ user_created_at "Sun Apr 19 19:12:33 +0000 2020", "Sun Jul 26 0… #> $ favourites_count 9, 5096, 147, 772, 4252, 147, 254, 4681, 6669, … #> $ verified FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE… -#> $ statuses_count 9, 7313, 2351, 1388, 12143, 2351, 261, 4980, 11… +#> $ statuses_count 9, 7313, 2351, 1388, 12144, 2351, 261, 4980, 11… #> $ profile_image_url_https "https://pbs.twimg.com/profile_images/125195195… #> $ profile_banner_url "https://pbs.twimg.com/profile_banners/12519518… #> $ default_profile TRUE, FALSE, TRUE, TRUE, FALSE, TRUE, FALSE, FA… @@ -194,7 +194,7 @@ example_with_upstream <- get_upstream_tweets(example_after_rtweet) ``` -The dataset contained 2225 tweets at the start. Running `get_upstream_tweets()` added 34 new tweets. +The dataset contained 2195 tweets at the start. Running `get_upstream_tweets()` added 29 new tweets. Unfortunately, due to limitations in what information is provided by the Twitter API, it is not practical to retrieve *downstream* replies, or those tweets in a reply thread that follow a tweet in the dataset but neglect to include the hashtag or keyword. @@ -207,7 +207,7 @@ After `pull_tweet_data()` is used to collect additional information from TAGS tw example_processed <- process_tweets(example_after_rtweet) ``` -Notice that you now have 71 variables associated 2225 tweets. +Notice that you now have 71 variables associated 2195 tweets. At this point, depending on your research questions, you may wish to calculate some descriptive statistics associated with this tweet data. For instance, the mean and standard deviation of *hashtags per tweet*: @@ -217,7 +217,7 @@ mean_hash <- round(mean(example_processed$hashtags_count), 2) sd_hash <- round(sd(example_processed$hashtags_count), 2) ``` -This shows that the mean number of hashtags per tweet is 1.49 with a standard deviation of SD = 1.36. +This shows that the mean number of hashtags per tweet is 1.48 with a standard deviation of SD = 1.36. Or, perhaps, the mean, median, and max number of *mentions per tweet* would be useful to know: @@ -229,7 +229,7 @@ median_mentions <- median(example_processed$mentions_count) max_mentions <- max(example_processed$mentions_count) ``` -The mean number of mentions per tweet is 1.37 (SD = 1.34). The median is 1, and the maximum number of mentions in a tweet is 14. +The mean number of mentions per tweet is 1.35 (SD = 1.31). The median is 1, and the maximum number of mentions in a tweet is 14. ## get_url_domain() @@ -273,8 +273,8 @@ head(domain_table_sorted, 20) #> 8 caranorth.com 7 #> 9 nodexlgraphgallery.org 7 #> 10 sites.google.com 7 -#> 11 litnet.co.za 6 -#> 12 apps.apple.com 5 +#> 11 apps.apple.com 6 +#> 12 litnet.co.za 6 #> 13 isfsu.blogspot.com 5 #> 14 tecfa.unige.ch 5 #> 15 viral-notebook.com 5 @@ -291,7 +291,7 @@ Unsurprisingly, in this dataset, by far the most common domain (as of August 5, This function quickly subsets the data, returning just the tweets of the type indicated (e.g., `filter_by_tweet_type(df, "reply")` returns only reply tweets). The `filter_by_tweet_type()` function can also be used to look at how many tweets of each type are present in the dataset. -In the dataset of 2225 tweets, there are 75 replies, 1157 retweets, 102 quote tweets, and 457 tweets that are not replies, retweets, or quote tweets. +In the dataset of 2195 tweets, there are 62 replies, 1146 retweets, 100 quote tweets, and 457 tweets that are not replies, retweets, or quote tweets. ## create_edgelist() @@ -300,13 +300,154 @@ Another useful approach to social media research is *social network analysis*. G Run `create_edgelist()` after completing `get_upstream_tweets()` and `process_tweets()` for a complete picture of the interactions. +```r +example_edgelist <- + create_edgelist(process_tweets(example_with_upstream)) +head(example_edgelist, 20) +#> tweet_type sender receiver +#> 1 reply nicolapallitt eromerohall +#> 2 reply jeroen69 vdennen +#> 3 reply jmenglund03 bonni208 +#> 4 reply DKSch DKSch +#> 5 reply DKSch DKSch +#> 6 reply _valeriei eromerohall +#> 7 reply jmenglund03 SBarksway +#> 8 reply DrTerriC mete_akca +#> 9 reply pazureka SBarksway +#> 10 reply pazureka SBarksway +#> 11 reply TAmankwatia TAmankwatia +#> 12 reply PaulineMuljana robmoore3 +#> 13 reply yinbk DrVirtuality +#> 14 reply arasbozkurt arasbozkurt +#> 15 reply arasbozkurt arasbozkurt +#> 16 reply arasbozkurt eromerohall +#> 17 reply correia65 AnnaRoseLeach +#> 18 reply jmenglund03 PaulineMuljana +#> 19 reply PaulineMuljana AmyLomellini_ID +#> 20 reply teacherrogers teacherrogers +``` + +We can then easily visualize the edgelist as a sociogram using the **tidygraph** and **ggraph** packages. + +First, create a graph object using **tidygraph**: +```r +if (requireNamespace("tidygraph", quietly = TRUE)) { + example_graph <- + tidygraph::as_tbl_graph(example_edgelist) + example_graph <- + dplyr::mutate(example_graph, + popularity = tidygraph::centrality_degree(mode = 'in')) +} +``` + +Then plot using **ggraph**: + + +```r +if (requireNamespace("ggraph", quietly = TRUE) & + requireNamespace("ggplot2", quietly = TRUE) +) { + ggraph::ggraph(example_graph, layout = 'kk') + + ggraph::geom_edge_arc(alpha = .2, + width = .5, + strength = .5, + edge_colour = 'steelblue' + ) + + ggraph::geom_node_point(alpha = .4, ggplot2::aes(size = popularity)) + + ggplot2::scale_size(range = c(1,10)) +} +``` +plot of chunk network-visualization + +Running `create_edgelist()` also provides a simple way to re-look at how many tweets of each type are present in the dataset, using the `count()` function from **dplyr**. + + +```r +dplyr::count(example_edgelist, tweet_type, sort = TRUE) +#> tweet_type n +#> 1 retweet 1146 +#> 2 quote 108 +#> 3 reply 71 +``` + +Note that `create_edgelist()` does not yet accept `type = "mention"` or `type = "like"` parameters due to the complicated ways mentions are included in tweets as well as limitations of the information provided by the Twitter API. + +## add_users_data() + +Finally, **tidytags** also has functionality to add user-level data to an edgelist through the function `add_users_data()`. These additional features are very useful when taking an inferential approach to social network analysis, such as building *influence* or *selection* models. + + +```r +example_senders_receivers_data <- add_users_data(example_edgelist) +dplyr::glimpse(example_senders_receivers_data) +#> Rows: 1,325 +#> Columns: 47 +#> $ tweet_type "reply", "reply", "reply", "reply", "reply",… +#> $ sender "nicolapallitt", "jeroen69", "jmenglund03", … +#> $ receiver "eromerohall", "vdennen", "bonni208", "DKSch… +#> $ sender_id 1.183683e+08, 6.848632e+06, 6.476904e+07, 3.… +#> $ sender_id_str "118368334", "6848632", "64769037", "3865781… +#> $ sender_name "Dr Nicola Pallitt", "Jeroen", "jennιғer eng… +#> $ sender_location "Grahamstown, South Africa", "Boise, ID", "S… +#> $ sender_description "EdTech @Rhodes_Uni working in @CHERTL_RU & … +#> $ sender_url "https://t.co/p1veXbw0pP", "https://t.co/GEk… +#> $ sender_protected FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA… +#> $ sender_followers_count 1753, 378, 663, 290, 290, 6324, 663, 5297, 1… +#> $ sender_friends_count 1924, 379, 627, 86, 86, 6280, 627, 5825, 461… +#> $ sender_listed_count 127, 7, 72, 15, 15, 416, 72, 261, 44, 44, 33… +#> $ sender_created_at 2010-02-28 08:13:53, 2007-06-16 03:10:38, 2… +#> $ sender_favourites_count 2040, 2847, 2052, 228, 228, 15749, 2052, 946… +#> $ sender_verified FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA… +#> $ sender_statuses_count 7157, 1537, 2918, 643, 643, 57099, 2918, 269… +#> $ sender_profile_image_url_https "https://pbs.twimg.com/profile_images/122079… +#> $ sender_profile_banner_url "https://pbs.twimg.com/profile_banners/11836… +#> $ sender_default_profile FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA… +#> $ sender_default_profile_image FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA… +#> $ sender_withheld_in_countries [], [], [], [], [], [], [], [], [], [], [],… +#> $ sender_derived NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, … +#> $ sender_withheld_scope NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, … +#> $ sender_entities [[], [ $ receiver_id 9.187479e+08, 1.423597e+08, 1.477788e+07, 3.… +#> $ receiver_id_str "918747876", "142359679", "14777884", "38657… +#> $ receiver_name "Dr. Enilda Romero-Hall (She/Her)", "Vanessa… +#> $ receiver_location "🇵🇦🇨🇦🇺🇸", "Tallahassee, FL", "Orange County,… +#> $ receiver_description "Associate Professor @UTKnoxville | Learning… +#> $ receiver_url "https://t.co/bIbSToCw8t", "https://t.co/2br… +#> $ receiver_protected FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA… +#> $ receiver_followers_count 1773, 1151, 7415, 290, 290, 1773, 329, 764, … +#> $ receiver_friends_count 1345, 759, 3538, 86, 86, 1345, 480, 501, 480… +#> $ receiver_listed_count 87, 40, 294, 15, 15, 87, 5, 28, 5, 5, 33, 57… +#> $ receiver_created_at 2012-11-01 06:56:04, 2010-05-10 13:39:35, 2… +#> $ receiver_favourites_count 7326, 1097, 23383, 228, 228, 7326, 2160, 196… +#> $ receiver_verified FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA… +#> $ receiver_statuses_count 422, 2102, 20642, 643, 643, 422, 428, 1942, … +#> $ receiver_profile_image_url_https "https://pbs.twimg.com/profile_images/141641… +#> $ receiver_profile_banner_url "https://pbs.twimg.com/profile_banners/91874… +#> $ receiver_default_profile FALSE, TRUE, TRUE, FALSE, FALSE, FALSE, TRUE… +#> $ receiver_default_profile_image FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA… +#> $ receiver_withheld_in_countries [], [], [], [], [], [], [], [], [], [], [],… +#> $ receiver_derived NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, … +#> $ receiver_withheld_scope NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, … +#> $ receiver_entities [[], [